/* ═══════════════════════════════════════════════════════════════
   SELF-HOSTED FONTS (GDPR compliant — no external requests)
   ═══════════════════════════════════════════════════════════════ */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url(../fonts/inter-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url(../fonts/inter-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url(../fonts/playfair-display-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url(../fonts/playfair-display-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/playfair-display-italic-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/playfair-display-italic-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ═══════════════════════════════════════════════════════════════
   VLM Real Estate — Shared Styles
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Corporate Navy Palette */
    --navy-900: #0B1426;
    --navy-800: #0F1D35;
    --navy-700: #162544;
    --navy-600: #1B3A5C;
    --navy-500: #1E4D7B;

    /* Trust Blue */
    --blue-600: #1A6FB5;
    --blue-500: #2185D0;
    --blue-400: #4DA3E8;
    --blue-300: #8DC5F2;
    --blue-100: #E3F0FC;

    /* Premium Gold */
    --gold-500: #C5973E;
    --gold-400: #D4A84A;
    --gold-300: #E4C06E;
    --gold-200: #F0D998;

    /* Success Green */
    --green-500: #1B8A5A;
    --green-400: #27AE60;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #868E96;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--gray-700); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav--solid {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 14px 40px;
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.nav-inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    display: flex; align-items: center; gap: 12px;
}
.nav-brand-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 6px;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav--solid .nav-brand-icon {
    background: #ffffff;
}
.nav-brand-icon svg {
    width: 100%; height: 100%;
}
.nav-brand-text {
    font-family: var(--font-display); font-size: 24px; font-weight: 600;
    color: var(--white); letter-spacing: 0.5px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    transition: color 0.4s, text-shadow 0.4s;
}
.nav--solid .nav-brand-text { color: var(--navy-800); text-shadow: none; }

.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a {
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px; transition: color 0.3s;
}
.nav-menu a:hover { color: var(--white); }
.nav--solid .nav-menu a { color: var(--gray-600); }
.nav--solid .nav-menu a:hover { color: var(--navy-800); }

.nav-cta {
    padding: 10px 24px !important;
    border: 1.5px solid rgba(255,255,255,0.35) !important;
    border-radius: 6px;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    transition: all 0.3s !important;
}
.nav-cta:hover {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.6) !important;
}
.nav--solid .nav-cta {
    background: var(--navy-800) !important;
    color: var(--white) !important;
    border-color: var(--navy-800) !important;
}
.nav--solid .nav-cta:hover {
    background: var(--blue-600) !important;
    border-color: var(--blue-600) !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; z-index: 1001; padding: 6px;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px; border-radius: 1px;
    background: var(--white); transition: all 0.3s;
}
.nav--solid .nav-toggle span { background: var(--navy-800); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.nav-dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s;
}
.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: var(--white);
}
.nav-dropdown-item {
    display: block;
    padding: 10px 24px;
    background: var(--white);
    color: var(--navy-800) !important;
    font-size: 13px !important;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid var(--gray-100);
}
.nav-dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}
.nav-dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}
.nav-dropdown-item:hover {
    background: var(--gray-50);
    color: var(--blue-600) !important;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 30%;
    filter: brightness(0.45);
    transform: scale(1.02);
    transition: transform 8s ease-out;
}
.hero:hover .hero-bg { transform: scale(1.06); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(11, 20, 38, 0.85) 0%,
        rgba(15, 29, 53, 0.7) 30%,
        rgba(26, 111, 181, 0.25) 70%,
        rgba(197, 151, 62, 0.1) 100%
    );
}
.hero-inner {
    position: relative; z-index: 2;
    max-width: 1320px; margin: 0 auto;
    padding: 160px 40px 120px;
    width: 100%;
}
.hero-content { max-width: 720px; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px; border-radius: 4px;
    background: rgba(197, 151, 62, 0.15);
    border: 1px solid rgba(197, 151, 62, 0.3);
    margin-bottom: 32px;
}
.hero-tag-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold-400);
    animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero-tag-text {
    font-size: 12px; font-weight: 600; color: var(--gold-300);
    text-transform: uppercase; letter-spacing: 2px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 400; color: var(--white);
    line-height: 1.08; margin-bottom: 28px;
    letter-spacing: -0.5px;
}
.hero-title em {
    font-style: italic; color: var(--gold-300);
}
.hero-description {
    font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.7);
    line-height: 1.7; margin-bottom: 48px; max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-size: 15px; font-weight: 600;
    padding: 16px 32px; border-radius: 6px;
    cursor: pointer; transition: all 0.3s; border: none;
    letter-spacing: 0.3px;
}
.btn--primary {
    background: var(--blue-600); color: var(--white);
    box-shadow: 0 4px 16px rgba(26, 111, 181, 0.35);
}
.btn--primary:hover {
    background: var(--blue-500);
    box-shadow: 0 8px 28px rgba(26, 111, 181, 0.45);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
}
.btn--dark {
    background: var(--navy-800); color: var(--white);
}
.btn--dark:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
}
.btn--gold {
    background: var(--gold-500); color: var(--white);
}
.btn--gold:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
}
.btn-arrow { font-size: 18px; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Hero floating metrics */
.hero-metrics {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 3;
    background: rgba(11, 20, 38, 0.6);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-metrics-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 0 40px;
}
.metric {
    padding: 32px 24px;
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.metric:last-child { border-right: none; }
.metric-value {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 500;
    color: var(--white); margin-bottom: 6px;
}
.metric-value span { color: var(--gold-400); }
.metric-label {
    font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 1.5px;
}

/* ══════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════ */
.trust-bar {
    background: var(--navy-800);
    padding: 20px 40px;
    overflow: hidden;
}
.trust-bar-inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.35);
    text-transform: uppercase; letter-spacing: 2.5px;
    white-space: nowrap;
}

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.section { padding: 100px 40px; }
.section--gray { background: var(--gray-50); }
.section-container { max-width: 1320px; margin: 0 auto; }

.section-eyebrow {
    font-size: 12px; font-weight: 600; color: var(--blue-600);
    text-transform: uppercase; letter-spacing: 2.5px;
    margin-bottom: 16px;
}
.section-heading {
    font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px);
    font-weight: 400; color: var(--navy-800);
    line-height: 1.15; margin-bottom: 20px;
}
.section-description {
    font-size: 17px; font-weight: 300; color: var(--gray-600);
    line-height: 1.7; max-width: 600px;
}
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-description { margin: 0 auto; }

/* ══════════════════════════════════════
   PROJECT CAROUSEL (replaces portfolio grid)
   ══════════════════════════════════════ */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
    min-width: 100%;
    position: relative;
}
.carousel-slide-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 480px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.carousel-image {
    position: relative;
    overflow: hidden;
}
a.carousel-image-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}
.carousel-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s;
}
.carousel-slide:hover .carousel-image img {
    transform: scale(1.04);
}
.carousel-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 4px;
    background: var(--blue-100);
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    width: fit-content;
}
.carousel-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue-600);
}
.carousel-project-name {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--navy-800);
    margin-bottom: 8px;
}
.carousel-location {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 20px;
}
.carousel-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}
.carousel-stat-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--navy-800);
}
.carousel-stat-label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.carousel-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 28px;
}
.carousel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-600);
    transition: gap 0.3s;
}
.carousel-link:hover { gap: 12px; }

/* Carousel controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.carousel-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--navy-800);
    transition: all 0.3s;
}
.carousel-btn:hover {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--white);
}
.carousel-dots {
    display: flex;
    gap: 8px;
}
.carousel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.carousel-dot.active {
    background: var(--blue-600);
    width: 28px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.carousel-dot.active::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0;
    background: rgba(255,255,255,0.35);
    border-radius: 5px;
    animation: dotProgress 5s linear;
}
@keyframes dotProgress {
    from { width: 0; }
    to { width: 100%; }
}
/* Gentle pulse on next button to hint clickability */
.carousel-btn--next {
    animation: gentlePulse 2s ease-in-out 3;
}
@keyframes gentlePulse {
    0%, 100% { box-shadow: none; }
    50% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.15); }
}

/* ══════════════════════════════════════
   ABOUT / VISION — Split layout
   ══════════════════════════════════════ */
.split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.split-image {
    position: relative; border-radius: 12px; overflow: hidden;
    aspect-ratio: 5/4;
}
.split-image img {
    width: 100%; height: 100%; object-fit: cover;
}
.split-image-accent {
    position: absolute; bottom: -16px; right: -16px;
    width: 120px; height: 120px; border-radius: 8px;
    background: var(--blue-600); z-index: -1;
}
.split-stat-row {
    display: flex; gap: 40px; margin-top: 40px;
    padding-top: 32px; border-top: 1px solid var(--gray-200);
}
.split-stat-value {
    font-family: var(--font-display); font-size: 36px;
    font-weight: 500; color: var(--navy-800);
}
.split-stat-label {
    font-size: 13px; color: var(--gray-500);
    margin-top: 4px;
}

/* ══════════════════════════════════════
   STRATEGY CARDS
   ══════════════════════════════════════ */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    padding: 40px 32px; border-radius: 12px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all 0.4s;
    opacity: 0; transform: translateY(20px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:nth-child(2).visible { transition-delay: 80ms; }
.service-card:nth-child(3).visible { transition-delay: 160ms; }
.service-card:hover {
    border-color: var(--blue-400);
    box-shadow: 0 16px 48px rgba(26, 111, 181, 0.1);
    transform: translateY(-4px);
}
.service-card.visible:hover { transform: translateY(-4px); }
.service-icon {
    width: 56px; height: 56px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 24px;
}
.service-icon--blue { background: var(--blue-100); color: var(--blue-600); }
.service-icon--gold { background: rgba(197,151,62,0.12); color: var(--gold-500); }
.service-icon--green { background: rgba(27,138,90,0.1); color: var(--green-500); }
.service-title {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 500; color: var(--navy-800); margin-bottom: 12px;
}
.service-text {
    font-size: 15px; color: var(--gray-600); line-height: 1.7;
    margin-bottom: 24px;
}
.service-link {
    font-size: 14px; font-weight: 600; color: var(--blue-600);
    display: inline-flex; align-items: center; gap: 6px;
}
.service-link:hover { gap: 10px; }

/* ══════════════════════════════════════
   DATA BANNER
   ══════════════════════════════════════ */
.data-banner {
    background: var(--navy-800); padding: 80px 40px;
}
.data-banner-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.data-item {
    text-align: center; padding: 32px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    opacity: 0; transform: scale(0.9);
    transition: all 0.5s ease;
}
.data-item.visible { opacity: 1; transform: scale(1); }
.data-item:nth-child(2).visible { transition-delay: 80ms; }
.data-item:nth-child(3).visible { transition-delay: 160ms; }
.data-item:nth-child(4).visible { transition-delay: 240ms; }
.data-value {
    font-family: var(--font-display); font-size: 42px;
    font-weight: 500; color: var(--white); margin-bottom: 8px;
}
.data-value .accent { color: var(--gold-400); }
.data-label {
    font-size: 13px; color: rgba(255,255,255,0.45);
    text-transform: uppercase; letter-spacing: 1.5px;
}

/* ══════════════════════════════════════
   TESTIMONIAL
   ══════════════════════════════════════ */
.testimonial-section {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    padding: 100px 40px;
    position: relative; overflow: hidden;
}
.testimonial-section::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgba(26, 111, 181, 0.06);
}
.testimonial-inner {
    max-width: 900px; margin: 0 auto; text-align: center;
    position: relative; z-index: 2;
}
.testimonial-quote-mark {
    font-family: var(--font-display); font-size: 80px;
    color: var(--gold-400); line-height: 1; margin-bottom: 16px;
    opacity: 0.4;
}
.testimonial-text {
    font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px);
    font-weight: 400; font-style: italic; color: var(--white);
    line-height: 1.5; margin-bottom: 40px;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: white;
    display: flex; align-items: center; justify-content: center;
    padding: 10px;
}
.testimonial-avatar svg {
    width: 100%; height: 100%;
}
.testimonial-author-info { text-align: left; }
.testimonial-author-name {
    font-size: 16px; font-weight: 600; color: var(--white);
}
.testimonial-author-title {
    font-size: 13px; color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════ */
.cta-section {
    position: relative; overflow: hidden;
    padding: 120px 40px;
}
.cta-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.3);
}
.cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,20,38,0.9), rgba(26,111,181,0.4));
}
.cta-inner {
    position: relative; z-index: 2;
    max-width: 700px; margin: 0 auto; text-align: center;
}
.cta-heading {
    font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px);
    font-weight: 400; color: var(--white);
    line-height: 1.15; margin-bottom: 24px;
}
.cta-text {
    font-size: 18px; color: rgba(255,255,255,0.65);
    line-height: 1.7; margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
    background: var(--navy-900); padding: 80px 40px 0;
}
.footer-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 60px;
}
.footer-brand-text {
    font-family: var(--font-display); font-size: 28px;
    font-weight: 600; color: var(--white); margin-bottom: 16px;
}
.footer-desc {
    font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.4);
    max-width: 320px;
}
.footer-heading {
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.footer-link {
    display: block; font-size: 14px; color: rgba(255,255,255,0.35);
    padding: 5px 0; transition: color 0.2s;
}
.footer-link:hover { color: var(--gold-400); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0; text-align: center;
}
.footer-bottom-text {
    font-size: 13px; color: rgba(255,255,255,0.25);
}
.footer-legal {
    display: flex; gap: 24px; justify-content: center; margin-top: 8px;
}
.footer-legal a {
    font-size: 12px; color: rgba(255,255,255,0.25);
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════
   MODALS
   ══════════════════════════════════════ */
.legal-modal {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); z-index: 10000;
    align-items: center; justify-content: center; padding: 20px;
}
.legal-modal-content {
    background: var(--white); border-radius: 12px; max-width: 720px; width: 100%;
    max-height: 80vh; overflow-y: auto; padding: 48px; position: relative;
}
.legal-modal-close {
    position: absolute; top: 16px; right: 20px; background: none; border: none;
    font-size: 28px; cursor: pointer; color: var(--navy-800); line-height: 1;
}
.legal-modal-content h2 { font-family: var(--font-display); font-size: 28px; color: var(--navy-800); margin-bottom: 24px; }
.legal-modal-content h3 { font-size: 16px; font-weight: 600; color: var(--navy-800); margin: 20px 0 8px; }
.legal-modal-content p { font-size: 14px; line-height: 1.7; color: #444; margin-bottom: 12px; }

/* ══════════════════════════════════════
   LANGUAGE TOGGLE
   ══════════════════════════════════════ */
.lang-toggle {
    display: flex; align-items: center; gap: 4px; margin-left: 12px;
    background: rgba(255,255,255,0.1); border-radius: 20px; padding: 2px;
}
.lang-btn {
    background: none; border: none; color: rgba(255,255,255,0.6);
    font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 16px;
    cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px;
}
.lang-btn.active { background: rgba(255,255,255,0.2); color: white; }
.nav--solid .lang-toggle { background: rgba(0,0,0,0.05); }
.nav--solid .lang-btn { color: rgba(0,0,0,0.4); }
.nav--solid .lang-btn.active { background: var(--navy-800); color: white; }

/* ══════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════ */
.breadcrumb {
    padding: 120px 40px 0;
    max-width: 1320px;
    margin: 0 auto;
}
.breadcrumb a, .breadcrumb span {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { margin: 0 8px; }

/* ══════════════════════════════════════
   PROJECT PAGE HERO (smaller)
   ══════════════════════════════════════ */
.project-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.project-hero .hero-bg {
    background-size: cover;
    background-position: center;
}
.project-hero .hero-inner {
    padding: 80px 40px 60px;
}
.project-hero .hero-title {
    font-size: clamp(36px, 5vw, 60px);
}

/* ══════════════════════════════════════
   PROJECT DETAILS
   ══════════════════════════════════════ */
.project-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -40px;
    position: relative;
    z-index: 4;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}
.project-detail-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.project-detail-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--navy-800);
    margin-bottom: 4px;
}
.project-detail-label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ══════════════════════════════════════
   AMENITIES GRID
   ══════════════════════════════════════ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 36px 24px 32px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: default;
}
.amenity-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--blue-200);
}
.amenity-icon {
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    color: var(--blue-600);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.amenity-item:hover .amenity-icon {
    transform: scale(1.1);
}
.amenity-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-800);
    letter-spacing: -0.01em;
}
.amenity-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-top: -8px;
}

/* ══════════════════════════════════════
   PHOTO GALLERY
   ══════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeInUp 0.9s ease-out; }
.hero-tag { animation: fadeInUp 0.9s ease-out 0.1s both; }
.hero-title { animation: fadeInUp 0.9s ease-out 0.2s both; }
.hero-description { animation: fadeInUp 0.9s ease-out 0.35s both; }
.hero-actions { animation: fadeInUp 0.9s ease-out 0.5s both; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .data-banner-inner { grid-template-columns: repeat(2, 1fr); }
    .split { gap: 48px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .carousel-slide-inner { grid-template-columns: 1fr; }
    .carousel-image { min-height: 300px; }
    .project-details { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { padding: 16px 20px; }
    .nav--solid { padding: 12px 20px; }
    .nav-menu {
        display: none; position: fixed; inset: 0; z-index: 999;
        background: var(--navy-900);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 32px;
    }
    .nav-menu.open { display: flex; }
    .nav-menu.open a { color: rgba(255,255,255,0.85) !important; font-size: 18px; }
    .nav-toggle { display: flex; }

    /* Mobile dropdown — expanded inline */
    .nav-dropdown { text-align: center; }
    .nav-dropdown-toggle { justify-content: center; }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding-top: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown-item {
        background: transparent;
        color: rgba(255,255,255,0.6) !important;
        font-size: 15px !important;
        padding: 6px 16px;
        border-bottom: none;
        border-radius: 6px;
    }
    .nav-dropdown-item:first-child { border-radius: 6px; }
    .nav-dropdown-item:last-child { border-radius: 6px; }
    .nav-dropdown-item:hover {
        background: rgba(255,255,255,0.08);
        color: var(--white) !important;
    }

    .hero-inner { padding: 140px 20px 100px; }
    .hero-metrics-inner { grid-template-columns: repeat(2, 1fr); }
    .metric { padding: 20px 12px; }
    .metric-value { font-size: 28px; }

    .section { padding: 64px 20px; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split-image { order: -1; }
    .services-grid { grid-template-columns: 1fr; }
    .data-banner-inner { grid-template-columns: 1fr 1fr; }
    .data-banner { padding: 48px 20px; }
    .data-value { font-size: 32px; }

    .testimonial-section { padding: 64px 20px; }
    .cta-section { padding: 80px 20px; }

    .footer { padding: 48px 20px 0; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .trust-bar-inner { gap: 24px; }

    .carousel-content { padding: 32px 24px; }
    .carousel-project-name { font-size: 26px; }
    .carousel-stats { gap: 24px; }

    .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .amenity-item { padding: 28px 20px 24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .project-details { grid-template-columns: 1fr 1fr; }
    .project-hero .hero-inner { padding: 60px 20px 40px; }
    .breadcrumb { padding: 100px 20px 0; }
}

@media (max-width: 480px) {
    .hero-metrics-inner { grid-template-columns: repeat(2, 1fr); }
    .metric-value { font-size: 24px; }
    .split-stat-row { flex-direction: column; gap: 24px; }
    .data-banner-inner { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .cta-actions { flex-direction: column; align-items: center; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr; }
    .project-details { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   CONTACT FORM MODAL
   ══════════════════════════════════════ */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.contact-modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.contact-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--navy-800);
    line-height: 1;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}
.contact-modal-close:hover {
    background: var(--gray-100);
}
.contact-form-inner {
    padding: 40px 36px;
}
.contact-form-inner h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--navy-800);
    margin: 0 0 8px;
}
.contact-form-inner .contact-form-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0 0 28px;
    line-height: 1.5;
}
.contact-form-inner label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-form-inner input,
.contact-form-inner textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--navy-800);
    margin-bottom: 18px;
    transition: border-color 0.25s;
    box-sizing: border-box;
}
.contact-form-inner input:focus,
.contact-form-inner textarea:focus {
    outline: none;
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(33,133,208,0.1);
}
.contact-form-inner textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form-submit {
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    background: var(--blue-600);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.25s ease;
}
.contact-form-submit:hover {
    background: var(--navy-600);
}
.contact-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.contact-success {
    text-align: center;
    padding: 48px 36px;
}
.contact-success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.contact-success h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--navy-800);
    margin: 0 0 12px;
}
.contact-success p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0 0 24px;
    line-height: 1.5;
}
.contact-success-close {
    padding: 12px 32px;
    border-radius: 10px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--navy-800);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.25s;
}
.contact-success-close:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}
@media (max-width: 640px) {
    .contact-form-inner {
        padding: 32px 24px;
    }
    .contact-success {
        padding: 36px 24px;
    }
}
