* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER RESPONSIVE ===== */
.header {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 0;
    align-items: center;
    position: relative;
    flex: 1;
    justify-content: flex-end;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 1.2rem;
    transition: all 0.3s;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.15);
}

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 0.7rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    color: #333;
    list-style: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 1000;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 0.8rem 1.2rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    border-left: 4px solid transparent;
}

.dropdown-link:hover {
    background-color: #f0f0f0;
    border-left-color: #1E88E5;
    padding-left: 1.4rem;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #1565C0;
        flex-direction: column;
        gap: 0;
        border-radius: 0;
        margin: 0;
        padding: 0;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        width: 100%;
    }

    .nav-link {
        padding: 1rem 1.2rem;
        border-radius: 0;
    }

    .dropdown .dropdown-menu {
        display: none;
        position: static;
        background: #0d47a1;
        box-shadow: none;
        border-radius: 0;
        min-width: 100%;
        margin-top: 0;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    .dropdown-link {
        padding: 0.8rem 1.2rem 0.8rem 2rem;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        color: white;
    }

    .dropdown-link:hover {
        background-color: rgba(0,0,0,0.2);
        border-left: none;
        padding-left: 2rem;
    }

    .dropdown-toggle::after {
        content: " ➜";
        transition: transform 0.3s;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(90deg);
    }
}

.hero {
    background: linear-gradient(135deg, #1E88E5 0%, #00ACC1 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: #FF9800;
    color: white;
}

.btn-primary:hover {
    background-color: #F57C00;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #1E88E5;
}

.properties-preview,
.why-us,
.page-section {
    padding: 4rem 20px;
}

h1, h2 {
    color: #1E88E5;
    margin-bottom: 1rem;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
}

h3 {
    color: #1E88E5;
}

.page-desc {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.property-card,
.why-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.property-card:hover,
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.property-card {
    display: flex;
    flex-direction: column;
}

.property-header {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: white;
    padding: 1.5rem;
}

.property-header h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.property-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.property-services {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.service-tag {
    background-color: #E3F2FD;
    color: #1E88E5;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.why-card {
    padding: 2rem;
    text-align: center;
}

.why-card h3 {
    margin-bottom: 0.5rem;
}

.info-section {
    margin: 3rem 0;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.info-section h3:first-child {
    margin-top: 0;
}

.info-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.info-section li {
    margin-bottom: 0.5rem;
}

.info-section a {
    color: #1E88E5;
    text-decoration: none;
}

.info-section a:hover {
    text-decoration: underline;
}

.taxi-list,
.shop-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.taxi-card,
.shop-card {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #1E88E5;
}

.taxi-card h4,
.shop-card h4 {
    margin-bottom: 0.5rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.location-card {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 6px;
    border: 2px solid #1E88E5;
}

.location-card h3 {
    margin-top: 0;
}

.location-card ul {
    margin-left: 1.5rem;
}

.attraction-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.attraction-card {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 6px;
    border-top: 4px solid #FF9800;
}

.attraction-card h3 {
    margin-top: 0;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.emergency-card {
    background: linear-gradient(135deg, #f44336 0%, #e53935 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.emergency-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.emergency-card p {
    font-size: 0.95rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info p {
    margin-bottom: 1rem;
}

.whatsapp-link {
    background-color: #25D366;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none !important;
    margin-top: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1E88E5;
}

.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.center-btn {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .properties-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .taxi-list,
    .shop-list,
    .location-grid,
    .attraction-list {
        grid-template-columns: 1fr;
    }
}
