﻿:root {
    --navy: #1B2B6B;
    --ocean: #1E6FBF;
    --gold: #F5A623;
    --gold-light: #FFD080;
    --purple: #6B2D8B;
    --white: #FFFFFF;
    --light-bg: #F4F7FC;
    --text-dark: #12203A;
    --text-mid: #4A5568;
    --text-light: #8A99B3;
    --border: #E2EAF4;
    --shadow: 0 8px 40px rgba(27,43,107,0.10);
    --shadow-lg: 0 20px 60px rgba(27,43,107,0.18);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    box-shadow: 0 2px 24px rgba(27,43,107,0.07);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

    .nav-logo img {
        height: 48px;
        width: 48px;
        border-radius: 50%;
        object-fit: cover;
    }

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

    .nav-logo-text span:first-child {
        font-family: 'Playfair Display', serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--navy);
    }

    .nav-logo-text span:last-child {
        font-size: 10px;
        font-weight: 500;
        color: var(--text-light);
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

    .nav-links a {
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-mid);
        transition: color .2s;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
            transition: width .3s;
        }

        .nav-links a:hover {
            color: var(--navy);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

        .nav-links a.active {
            color: var(--navy);
            font-weight: 600;
        }

            .nav-links a.active::after {
                width: 100%;
            }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline {
    padding: 9px 22px;
    border: 2px solid var(--navy);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: all .2s;
    background: transparent;
    cursor: pointer;
}

    .btn-outline:hover {
        background: var(--navy);
        color: var(--white);
    }

.btn-primary {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold), #E8920F);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(245,166,35,0.4);
    transition: all .2s;
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(245,166,35,0.5);
    }

/* Mobile Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

    .nav-hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all 0.3s;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #0D1B4B 0%, #1B2B6B 40%, #1E6FBF 80%, #2a9fd6 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 72px;
}

.hero-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--ocean);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--purple);
    bottom: -50px;
    left: 20%;
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 30%;
    left: 5%;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-30px)
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.4);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

    .hero-badge span {
        width: 6px;
        height: 6px;
        background: var(--gold);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.4)
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px,5vw,68px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

    .hero-title em {
        font-style: normal;
        color: var(--gold);
    }

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-hero-primary {
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--gold), #E8920F);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(245,166,35,0.45);
    transition: all .25s;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(245,166,35,0.55);
    }

.btn-hero-outline {
    padding: 15px 32px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: all .25s;
}

    .btn-hero-outline:hover {
        background: rgba(255,255,255,0.12);
        border-color: rgba(255,255,255,0.7);
    }

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    color: var(--white);
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-card {
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 24px;
    padding: 36px;
    animation: slideUp .8s ease 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.search-tabs {
    display: flex;
    gap: 4px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
}

.search-tab {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
}

    .search-tab.active {
        background: var(--white);
        color: var(--navy);
        font-weight: 600;
    }

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 8px;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}

    .form-input::placeholder {
        color: rgba(255,255,255,0.4);
    }

    .form-input:focus, .form-select:focus {
        border-color: var(--gold);
    }

    .form-select option {
        background: var(--navy);
        color: var(--white);
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-search {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold), #E8920F);
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(245,166,35,0.4);
    transition: all .2s;
    margin-top: 4px;
}

    .btn-search:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 28px rgba(245,166,35,0.5);
    }

/* ── MARQUEE ── */
.marquee-wrapper {
    background: var(--navy);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── SECTIONS COMMON ── */
section {
    padding: 100px 48px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(245,166,35,0.08);
    border: 1px solid rgba(245,166,35,0.2);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px,4vw,46px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 560px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header-left {
    max-width: 600px;
}

.link-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 2px;
    border-bottom: 2px solid var(--gold);
    transition: color .2s;
    white-space: nowrap;
}

    .link-more:hover {
        color: var(--ocean);
    }

/* ── FEATURED PROJECTS ── */
.projects-section {
    background: var(--light-bg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s;
    cursor: pointer;
}

    .project-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .project-card:first-child {
        grid-column: span 2;
    }

.card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.project-card:first-child .card-img {
    height: 320px;
}

.card-img-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B2B6B, #1E6FBF);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .card-img-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
    }

.img-placeholder {
    font-size: 48px;
    opacity: .3;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
}

.badge-active {
    background: #22C55E;
    color: var(--white);
}

.badge-upcoming {
    background: var(--gold);
    color: var(--white);
}

.badge-hot {
    background: #EF4444;
    color: var(--white);
}

.card-body {
    padding: 24px;
}

.card-type {
    font-size: 11px;
    font-weight: 700;
    color: var(--ocean);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.project-card:first-child .card-name {
    font-size: 26px;
}

.card-loc {
    font-size: 13px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 16px;
}

    .card-loc svg {
        color: var(--gold);
        flex-shrink: 0;
    }

.card-meta {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.card-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-meta-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .7px;
}

.card-meta-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    background: rgba(244,247,252,0.5);
}

.card-price {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.card-price-label {
    font-size: 11px;
    color: var(--text-light);
}

.btn-card {
    padding: 8px 18px;
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

    .btn-card:hover {
        background: var(--ocean);
    }

/* ── STATS ── */
.stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 50%, var(--ocean) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 48px;
}

    .stats-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

/* ── PROPERTY TYPES ── */
.types-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.type-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform .3s;
}

    .type-card:hover {
        transform: scale(1.02);
    }

        .type-card:hover .type-overlay {
            opacity: 1;
        }

.type-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.type-bg-1 {
    background: linear-gradient(135deg, #1B2B6B, #2E4A9E);
}

.type-bg-2 {
    background: linear-gradient(135deg, #1E6FBF, #0EA5E9);
}

.type-bg-3 {
    background: linear-gradient(135deg, #6B2D8B, #9333EA);
}

.type-bg-4 {
    background: linear-gradient(135deg, #0F766E, #14B8A6);
}

.type-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity .3s;
}

.type-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.type-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.type-count {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* ── AMENITIES ── */
.amenities-section {
    background: var(--light-bg);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 16px;
}

.amenity-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all .25s;
    cursor: pointer;
}

    .amenity-card:hover {
        border-color: var(--ocean);
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(30,111,191,0.12);
    }

.amenity-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.amenity-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

/* ── HOW IT WORKS ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px;
    position: relative;
}

.steps-line {
    position: absolute;
    top: 40px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--ocean));
}

.step-card {
    text-align: center;
    position: relative;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--ocean));
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(27,43,107,0.25);
    position: relative;
    z-index: 1;
    border: 3px solid var(--white);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--navy);
}

    .testimonials-section .section-title {
        color: var(--white);
    }

    .testimonials-section .section-sub {
        color: rgba(255,255,255,0.6);
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 32px;
    transition: background .3s;
}

    .testimonial-card:hover {
        background: rgba(255,255,255,0.11);
    }

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--gold);
}

.testimonial-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--ocean));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.author-role {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ── CTA BANNER ── */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, #E8920F 50%, #D97706 100%);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
    }

    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -40px;
        width: 250px;
        height: 250px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
    }

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px,4vw,48px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.btn-cta-white {
    padding: 14px 36px;
    background: var(--white);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    transition: all .2s;
    display: inline-block;
    position: relative;
    z-index: 1;
}

    .btn-cta-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(0,0,0,0.2);
    }

/* ── FOOTER ── */
footer {
    background: #0D1B4B;
    padding: 72px 48px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .footer-logo img {
        height: 52px;
        width: 52px;
        border-radius: 50%;
    }

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    text-decoration: none;
    transition: all .2s;
}

    .social-btn:hover {
        background: var(--gold);
        color: var(--white);
        border-color: var(--gold);
    }

.footer-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-links a {
        font-size: 13px;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: color .2s;
    }

        .footer-links a:hover {
            color: var(--gold);
        }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-icon {
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

    .footer-bottom-links a {
        font-size: 13px;
        color: rgba(255,255,255,0.35);
        text-decoration: none;
    }

        .footer-bottom-links a:hover {
            color: var(--gold);
        }

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: none;
    }

/* ── USER DROPDOWN ── */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
}

    .dropdown-menu a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #333;
    }

        .dropdown-menu a:hover {
            background: #f2f2f2;
        }

.user-dropdown:hover .dropdown-menu {
    display: block;
}


/* ═══════════════════════════════════════════
   TABLET — max 1024px
═══════════════════════════════════════════ */
@media (max-width: 1024px) {

    nav {
        padding: 0 24px;
    }

    .hero-content {
        padding: 60px 24px;
        gap: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }

    .project-card:first-child {
        grid-column: span 2;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats-section {
        padding: 60px 24px;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .steps-line {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    section {
        padding: 72px 24px;
    }
}


/* ═══════════════════════════════════════════
   MOBILE — max 768px
═══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Navbar */
    nav {
        padding: 0 20px;
        height: 64px;
        position: fixed;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(27,43,107,0.10);
        z-index: 999;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links a {
            padding: 14px 24px;
            font-size: 15px;
            border-bottom: 1px solid var(--border);
            width: 100%;
        }

            .nav-links a:last-child {
                border-bottom: none;
            }

            .nav-links a::after {
                display: none;
            }

    .nav-cta {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        padding: 16px 20px 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(27,43,107,0.10);
        z-index: 998;
        gap: 10px;
    }

        .nav-cta.open {
            display: flex;
            top: auto; /* will be set by JS or stacked below links */
        }

    .nav-hamburger {
        display: flex;
    }

    .nav-logo-text span:first-child {
        font-size: 14px;
    }

    .nav-logo img {
        height: 38px;
        width: 38px;
    }

    /* Hero */
    .hero {
        padding-top: 64px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 48px 20px 40px;
        gap: 36px;
    }

    .hero-title {
        font-size: clamp(30px, 8vw, 46px);
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 36px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 24px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-num {
        font-size: 26px;
    }

    .hero-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .hero-card-title {
        font-size: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Marquee */
    .marquee-wrapper {
        padding: 12px 0;
    }

    /* Sections */
    section {
        padding: 60px 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 36px;
    }

    /* Projects */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card:first-child {
        grid-column: span 1;
    }

        .project-card:first-child .card-img {
            height: 220px;
        }

        .project-card:first-child .card-name {
            font-size: 20px;
        }

    .card-meta {
        gap: 12px;
    }

    /* Stats */
    .stats-section {
        padding: 56px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    /* Types */
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .type-card {
        height: 180px;
    }

    .type-bg {
        font-size: 48px;
    }

    /* Amenities */
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .amenity-card {
        padding: 18px 10px;
    }

    .amenity-icon {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .amenity-name {
        font-size: 11px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .steps-line {
        display: none;
    }

    .step-num {
        width: 64px;
        height: 64px;
        font-size: 20px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 20px;
    }

    .cta-sub {
        font-size: 15px;
    }

    .btn-cta-white {
        padding: 13px 28px;
        font-size: 14px;
    }

    /* Footer */
    footer {
        padding: 48px 20px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom-links {
        gap: 16px;
    }
}


/* ═══════════════════════════════════════════
   SMALL MOBILE — max 480px
═══════════════════════════════════════════ */
@media (max-width: 480px) {

    .hero-badge {
        font-size: 10px;
        padding: 5px 11px;
    }

    .hero-title {
        font-size: clamp(28px, 9vw, 38px);
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-num {
        font-size: 22px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .stat-number {
        font-size: 30px;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .type-card {
        height: 150px;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: clamp(22px, 7vw, 32px);
    }

    .footer-socials {
        flex-wrap: wrap;
    }
}
/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
    margin-left: 8px;
}

    .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ── MOBILE OVERLAY MENU ── */
@media (max-width: 768px) {

    nav {
        padding: 0 20px;
        height: 64px;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Hide desktop links and CTA by default on mobile */
    .nav-links {
        display: none !important;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 8px 0 12px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 32px rgba(27,43,107,0.13);
        z-index: 990;
    }

        .nav-links.mobile-open {
            display: flex !important;
        }

        .nav-links a {
            padding: 13px 24px;
            font-size: 15px;
            border-bottom: 1px solid #f0f4fa;
            width: 100%;
        }

            .nav-links a:last-child {
                border-bottom: none;
            }

            .nav-links a::after {
                display: none;
            }

    /* CTA buttons below links */
    .nav-cta {
        display: none !important;
        position: fixed;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 12px 20px 16px;
        border-bottom: 2px solid var(--border);
        box-shadow: 0 8px 32px rgba(27,43,107,0.13);
        z-index: 989;
        gap: 10px;
    }

        .nav-cta.mobile-open {
            display: flex !important;
        }

        .nav-cta .btn-outline,
        .nav-cta .btn-primary {
            width: 100%;
            text-align: center;
            justify-content: center;
            padding: 12px 20px;
        }

    /* Push CTA below nav-links dynamically via JS top value */
}