
        /* ============================
           CSS VARIABLES
           ============================ */
        :root {
            --color-navy: #0f172a;
            --color-charcoal: #1e293b;
            --color-slate: #2d3a4a;
            --color-offwhite: #f8f5f0;
            --color-offwhite-light: #faf8f5;
            --color-offwhite-warm: #f5f2ed;
            --color-champagne: #c9a96e;
            --color-champagne-light: #d4b87a;
            --color-champagne-dark: #b8944a;
            --color-gold-subtle: rgba(201, 169, 110, 0.12);
            --color-gold-rule: rgba(201, 169, 110, 0.25);
            --color-text-dark: #0f172a;
            --color-text-body: #334155;
            --color-text-muted: #64748b;
            --color-white: #ffffff;
            --color-border-light: #e8e3dc;
            --color-border-gold: rgba(201, 169, 110, 0.3);
            --color-focus-ring: rgba(201, 169, 110, 0.5);

            --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-arabic: 'Tajawal', 'Cairo', 'Almarai', sans-serif;

            --spacing-xs: 0.25rem;
            --spacing-sm: 0.5rem;
            --spacing-md: 1rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-2xl: 4rem;
            --spacing-3xl: 5rem;

            --radius-sm: 3px;
            --radius-md: 6px;
            --radius-lg: 12px;
            --radius-xl: 20px;

            --section-spacing: 5rem;
            --section-spacing-mobile: 3rem;

            --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* ============================
           RESET & BASE
           ============================ */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-white);
            color: var(--color-text-body);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        body.lang-ar {
            font-family: var(--font-arabic);
        }
        body.lang-ar .serif-display {
            font-family: var(--font-arabic);
            font-weight: 700;
        }
        body:not(.lang-ar) .serif-display {
            font-family: var(--font-serif);
        }

        body.lang-ar p,
        body.lang-ar li,
        body.lang-ar .body-text,
        body.lang-ar .nav-link,
        body.lang-ar .btn,
        body.lang-ar .form-label,
        body.lang-ar .form-control,
        body.lang-ar .stat-label,
        body.lang-ar .card-text,
        body.lang-ar .footer-text,
        body.lang-ar .snapshot-label,
        body.lang-ar .snapshot-value {
            font-family: var(--font-arabic);
        }

        body:not(.lang-ar) p,
        body:not(.lang-ar) li,
        body:not(.lang-ar) .body-text,
        body:not(.lang-ar) .nav-link,
        body:not(.lang-ar) .btn,
        body:not(.lang-ar) .form-label,
        body:not(.lang-ar) .form-control,
        body:not(.lang-ar) .stat-label,
        body:not(.lang-ar) .card-text,
        body:not(.lang-ar) .footer-text,
        body:not(.lang-ar) .snapshot-label,
        body:not(.lang-ar) .snapshot-value {
            font-family: var(--font-sans);
        }

        h1,
        h2,
        h3,
        h4,
        .heading-display {
            font-family: var(--font-serif);
            font-weight: 700;
            color: var(--color-text-dark);
            letter-spacing: -0.02em;
        }
        body.lang-ar h1,
        body.lang-ar h2,
        body.lang-ar h3,
        body.lang-ar h4,
        body.lang-ar .heading-display {
            font-family: var(--font-arabic);
            font-weight: 800;
            letter-spacing: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-inline: 1.5rem;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        :focus-visible {
            outline: 2px solid var(--color-champagne);
            outline-offset: 2px;
            border-radius: var(--radius-sm);
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
            .reveal {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* ============================
           SKIP LINK
           ============================ */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-navy);
            color: var(--color-white);
            padding: 0.75rem 1.5rem;
            border-radius: 0 0 var(--radius-md) var(--radius-md);
            z-index: 10000;
            font-weight: 600;
            transition: top 0.3s;
        }
        .skip-link:focus {
            top: 0;
        }

        /* ============================
           UTILITY
           ============================ */
        .text-champagne {
            color: var(--color-champagne);
        }
        .text-navy {
            color: var(--color-navy);
        }
        .text-muted {
            color: var(--color-text-muted);
        }
        .text-center {
            text-align: center;
        }
        .text-start {
            text-align: start;
        }
        .mt-1 {
            margin-top: var(--spacing-md);
        }
        .mt-2 {
            margin-top: var(--spacing-lg);
        }
        .mb-1 {
            margin-bottom: var(--spacing-md);
        }
        .mb-2 {
            margin-bottom: var(--spacing-lg);
        }
        .section-spacing {
            padding-block: var(--section-spacing);
        }
        @media (max-width: 768px) {
            .section-spacing {
                padding-block: var(--section-spacing-mobile);
            }
        }

        .gold-rule {
            width: 50px;
            height: 2px;
            background: var(--color-champagne);
            margin-block: 0.75rem;
            border-radius: 1px;
        }
        .gold-rule.center {
            margin-inline: auto;
        }

        .section-title {
            font-size: clamp(1.8rem, 3.2vw, 2.8rem);
            font-weight: 700;
            line-height: 1.15;
            color: var(--color-text-dark);
        }
        .section-title .highlight {
            color: var(--color-champagne);
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--color-text-muted);
            max-width: 600px;
            line-height: 1.7;
        }
        .section-subtitle.centered {
            margin-inline: auto;
            text-align: center;
        }

        /* ============================
           REVEAL ANIMATIONS
           ============================ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-24px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-right {
            opacity: 0;
            transform: translateX(24px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-scale {
            opacity: 0;
            transform: scale(0.96);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ============================
           HEADER
           ============================ */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border-light);
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }
        .header.scrolled {
            box-shadow: 0 2px 20px rgba(15, 23, 42, 0.06);
            background: rgba(255, 255, 255, 0.98);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-block: 0.7rem;
            min-height: 68px;
            gap: 1rem;
        }

        .header-logo {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-navy);
            letter-spacing: 0.04em;
            flex-shrink: 0;
        }
        .header-logo .logo-placeholder {
            display: inline-block;
            padding: 0.35rem 1rem;
            border: 1.5px solid var(--color-champagne);
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            letter-spacing: 0.12em;
            color: var(--color-navy);
            background: transparent;
            text-transform: uppercase;
        }
        body.lang-ar .header-logo .logo-placeholder {
            letter-spacing: 0.04em;
            text-transform: none;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
            align-items: center;
        }
        .nav-list a {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--color-text-body);
            transition: color 0.3s ease;
            position: relative;
            padding-block: 0.25rem;
            letter-spacing: 0.02em;
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--color-champagne);
            transition: width 0.35s ease;
        }
        .nav-list a:hover {
            color: var(--color-navy);
        }
        .nav-list a:hover::after {
            width: 100%;
        }
        html[dir="rtl"] .nav-list a::after {
            left: auto;
            right: 0;
        }

        .nav-cta-header {
            background: var(--color-navy);
            color: var(--color-white) !important;
            padding: 0.45rem 1.2rem !important;
            border-radius: 50px;
            font-weight: 600 !important;
            font-size: 0.75rem !important;
            letter-spacing: 0.04em !important;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        .nav-cta-header:hover {
            background: var(--color-charcoal) !important;
            transform: translateY(-1px);
        }
        .nav-cta-header::after {
            display: none !important;
        }

        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--color-text-muted);
            background: var(--color-offwhite);
            padding: 0.25rem 0.6rem;
            border-radius: 50px;
            border: 1px solid var(--color-border-light);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        .lang-switcher:hover {
            border-color: var(--color-champagne);
        }
        .lang-switcher .lang-sep {
            color: var(--color-border-light);
            user-select: none;
        }
        .lang-switcher button {
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: inherit;
            font-weight: inherit;
            color: inherit;
            padding: 0.1rem 0.2rem;
            transition: color 0.2s;
            border-radius: var(--radius-sm);
        }
        .lang-switcher button:hover {
            color: var(--color-navy);
        }
        .lang-switcher button.lang-active {
            color: var(--color-navy);
            font-weight: 700;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: var(--color-navy);
            cursor: pointer;
            padding: 0.25rem;
            line-height: 1;
        }

        @media (max-width: 992px) {
            .nav-list {
                gap: 1rem;
            }
            .nav-list a {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            .header-nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                flex-direction: column;
                align-items: stretch;
                padding: 0 1.5rem 1.5rem;
                border-bottom: 1px solid var(--color-border-light);
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
                transform: translateY(-8px);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: all 0.3s ease;
                gap: 0.5rem;
            }
            .header-nav.open {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .nav-list {
                flex-direction: column;
                gap: 0.25rem;
                width: 100%;
                padding-block: 0.5rem;
            }
            .nav-list a {
                font-size: 0.95rem;
                padding-block: 0.6rem;
                border-bottom: 1px solid var(--color-border-light);
                width: 100%;
            }
            .nav-list a::after {
                display: none;
            }
            .nav-cta-header {
                text-align: center;
                margin-top: 0.25rem;
            }

            .lang-switcher {
                align-self: flex-start;
                margin-top: 0.25rem;
            }

            .header-inner {
                min-height: 60px;
            }
        }

        /* ============================
           HERO
           ============================ */
        .hero {
            background: var(--color-offwhite);
            padding-block: 3rem 4.5rem;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: radial-gradient(ellipse at 70% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        @media (max-width: 768px) {
            .hero {
                padding-block: 2rem 3rem;
            }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 42% 54%;
            gap: 4%;
            align-items: center;
        }
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .hero-badge {
            display: inline-block;
            background: var(--color-gold-subtle);
            color: var(--color-champagne-dark);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            border: 1px solid var(--color-border-gold);
            align-self: flex-start;
        }
        body.lang-ar .hero-badge {
            letter-spacing: 0.04em;
            text-transform: none;
        }

        .hero h1 {
            font-size: clamp(2rem, 4.2vw, 3.4rem);
            line-height: 1.1;
            font-weight: 900;
            color: var(--color-navy);
            max-width: 12ch;
        }
        .hero h1 .highlight {
            color: var(--color-champagne);
        }
        body.lang-ar .hero h1 {
            max-width: 16ch;
        }

        .hero-sub {
            font-size: clamp(0.95rem, 1.1vw, 1.1rem);
            color: var(--color-text-body);
            max-width: 480px;
            line-height: 1.7;
            font-weight: 400;
        }

        .hero-price {
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            font-weight: 600;
            color: var(--color-navy);
            background: var(--color-white);
            padding: 0.4rem 1.25rem;
            border-radius: 50px;
            border: 1px solid var(--color-border-light);
            display: inline-block;
            align-self: flex-start;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 0.25rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            font-family: inherit;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            line-height: 1.2;
        }
        .btn-primary {
            background: var(--color-navy);
            color: var(--color-white);
        }
        .btn-primary:hover {
            background: var(--color-charcoal);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
        }
        .btn-secondary {
            background: transparent;
            color: var(--color-navy);
            border: 1.5px solid var(--color-navy);
        }
        .btn-secondary:hover {
            background: var(--color-navy);
            color: var(--color-white);
            transform: translateY(-2px);
        }
        .btn-gold {
            background: var(--color-champagne);
            color: var(--color-white);
        }
        .btn-gold:hover {
            background: var(--color-champagne-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
        }
        .btn-outline-gold {
            background: transparent;
            color: var(--color-champagne-dark);
            border: 1.5px solid var(--color-champagne);
        }
        .btn-outline-gold:hover {
            background: var(--color-champagne);
            color: var(--color-white);
            transform: translateY(-2px);
        }

        .hero-visual {
            background: var(--color-slate);
            border-radius: var(--radius-lg);
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.15);
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            position: relative;
            overflow: hidden;
            min-height: 260px;
            border: 1px solid var(--color-border-light);
            background-image:
                linear-gradient(45deg, rgba(201, 169, 110, 0.03) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(201, 169, 110, 0.03) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(201, 169, 110, 0.03) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(201, 169, 110, 0.03) 75%);
            background-size: 40px 40px;
            background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
        }
        .hero-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.2) 0%, rgba(201, 169, 110, 0.04) 100%);
            pointer-events: none;
        }
        .hero-visual .placeholder-text {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 1.5rem;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 300;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
        }
        .hero-visual .placeholder-text i {
            display: block;
            font-size: 2.8rem;
            margin-bottom: 0.75rem;
            color: rgba(201, 169, 110, 0.25);
        }
        @media (max-width: 992px) {
            .hero-visual {
                aspect-ratio: 16/9;
                min-height: 200px;
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .hero-visual {
                aspect-ratio: 4/3;
                min-height: 180px;
            }
            .hero-actions .btn {
                flex: 1;
                min-width: 140px;
            }
        }
        @media (max-width: 480px) {
            .hero-actions .btn {
                flex: 1 1 100%;
            }
        }

        /* ============================
           HIGHLIGHTS — Fact Strip
           ============================ */
        .highlights {
            background: var(--color-white);
            padding-block: 2.5rem;
            border-bottom: 1px solid var(--color-border-light);
        }
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.5rem;
            align-items: center;
        }
        @media (max-width: 768px) {
            .highlights-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }
        @media (max-width: 480px) {
            .highlights-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem;
            }
        }

        .fact-item {
            text-align: center;
            padding: 0.25rem 0.5rem;
            border-inline-end: 1px solid var(--color-border-light);
        }
        .fact-item:last-child {
            border-inline-end: none;
        }
        @media (max-width: 768px) {
            .fact-item {
                border-inline-end: none;
                padding: 0.5rem 0.25rem;
            }
            .fact-item:nth-child(2) {
                border-inline-end: none;
            }
        }

        .fact-number {
            font-size: clamp(2rem, 2.8vw, 2.6rem);
            font-weight: 700;
            color: var(--color-navy);
            font-family: var(--font-serif);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }
        body.lang-ar .fact-number {
            font-family: var(--font-arabic);
        }
        .fact-number .fact-icon {
            font-size: 0.6em;
            color: var(--color-champagne);
            vertical-align: middle;
            margin-inline-end: 0.1em;
        }
        .fact-label {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            font-weight: 400;
            margin-top: 0.1rem;
            letter-spacing: 0.02em;
        }
        body.lang-ar .fact-label {
            letter-spacing: 0;
        }
        @media (max-width: 480px) {
            .fact-number {
                font-size: 1.6rem;
            }
            .fact-label {
                font-size: 0.65rem;
            }
        }

        /* ============================
           INTRO
           ============================ */
        .intro {
            background: var(--color-offwhite-light);
            padding-block: var(--section-spacing);
        }
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        @media (max-width: 992px) {
            .intro-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .intro-text h2 {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .intro-text p {
            font-size: 1rem;
            color: var(--color-text-body);
            line-height: 1.8;
            margin-bottom: 0.75rem;
        }
        .intro-text p:last-child {
            margin-bottom: 0;
        }

        .intro-visual {
            background: var(--color-slate);
            border-radius: var(--radius-lg);
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.15);
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            overflow: hidden;
            position: relative;
            min-height: 220px;
            border: 1px solid var(--color-border-light);
            background-image:
                linear-gradient(45deg, rgba(201, 169, 110, 0.04) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(201, 169, 110, 0.04) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(201, 169, 110, 0.04) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(201, 169, 110, 0.04) 75%);
            background-size: 30px 30px;
            background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
        }
        .intro-visual .placeholder-text {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 1.5rem;
            color: rgba(255, 255, 255, 0.35);
            font-weight: 300;
        }
        .intro-visual .placeholder-text i {
            display: block;
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            color: rgba(201, 169, 110, 0.2);
        }
        @media (max-width: 768px) {
            .intro-visual {
                min-height: 180px;
            }
            .intro-text p {
                font-size: 0.95rem;
            }
        }

        /* ============================
           WHY — Icon Cards (refined)
           ============================ */
        .why {
            background: var(--color-white);
            padding-block: var(--section-spacing);
        }
        .why .section-title {
            text-align: center;
            margin-bottom: 0.25rem;
        }
        .why .section-subtitle {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }
        @media (max-width: 480px) {
            .why-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem;
            }
        }

        .why-card {
            text-align: center;
            padding: 1.5rem 1rem;
            background: var(--color-offwhite);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border-light);
            transition: all 0.35s ease;
        }
        .why-card:hover {
            transform: translateY(-3px);
            border-color: var(--color-champagne);
            box-shadow: 0 6px 20px rgba(201, 169, 110, 0.06);
        }
        .why-card i {
            font-size: 1.6rem;
            color: var(--color-champagne);
            margin-bottom: 0.5rem;
            display: block;
        }
        .why-card h4 {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-navy);
            font-family: var(--font-sans);
            letter-spacing: 0.01em;
            line-height: 1.3;
        }
        body.lang-ar .why-card h4 {
            font-family: var(--font-arabic);
            font-weight: 700;
            letter-spacing: 0;
        }
        @media (max-width: 480px) {
            .why-card {
                padding: 1rem 0.5rem;
            }
            .why-card i {
                font-size: 1.2rem;
            }
            .why-card h4 {
                font-size: 0.7rem;
            }
        }

        /* ============================
           RESIDENCES
           ============================ */
        .residences {
            background: var(--color-offwhite-warm);
            padding-block: var(--section-spacing);
        }
        .residences .section-title {
            text-align: center;
            margin-bottom: 0.25rem;
        }
        .residences .section-subtitle {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .res-table-wrap {
            display: block;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 1.5rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border-light);
            background: var(--color-white);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
        }
        .res-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 500px;
        }
        .res-table th {
            text-align: start;
            padding: 0.9rem 1.5rem;
            background: var(--color-navy);
            color: var(--color-white);
            font-weight: 500;
            font-size: 0.7rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        body.lang-ar .res-table th {
            text-transform: none;
            letter-spacing: 0.03em;
            font-weight: 600;
        }
        .res-table td {
            padding: 0.8rem 1.5rem;
            border-bottom: 1px solid var(--color-border-light);
            color: var(--color-text-body);
            font-size: 0.9rem;
        }
        .res-table tr:last-child td {
            border-bottom: none;
        }
        .res-table tr:hover td {
            background: var(--color-offwhite-light);
        }
        .res-table .unit-type {
            font-weight: 600;
            color: var(--color-navy);
            font-size: 0.95rem;
        }
        .res-table .unit-size {
            color: var(--color-text-muted);
            font-weight: 400;
        }
        .res-table .unit-price {
            font-weight: 600;
            color: var(--color-champagne-dark);
            font-size: 0.95rem;
            letter-spacing: 0.01em;
        }

        .res-cards-mobile {
            display: none;
            gap: 0.75rem;
            flex-direction: column;
        }
        .res-card-mobile {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 1rem 1.25rem;
            border: 1px solid var(--color-border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            transition: border-color 0.3s;
        }
        .res-card-mobile:hover {
            border-color: var(--color-champagne);
        }
        .res-card-mobile .left {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }
        .res-card-mobile .left .type {
            font-weight: 600;
            font-size: 1rem;
            color: var(--color-navy);
        }
        .res-card-mobile .left .size {
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }
        .res-card-mobile .price {
            font-weight: 600;
            color: var(--color-champagne-dark);
            font-size: 0.95rem;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .res-table-wrap {
                display: none;
            }
            .res-cards-mobile {
                display: flex;
            }
        }

        .res-extra {
            margin-top: 1.25rem;
            font-size: 0.9rem;
            color: var(--color-text-body);
            line-height: 1.7;
        }
        .res-disclaimer {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            margin-top: 0.5rem;
            font-style: italic;
        }

        /* ============================
           PAYMENT PLAN
           ============================ */
        .payment {
            background: var(--color-white);
            padding-block: var(--section-spacing);
        }
        .payment .section-title {
            text-align: center;
            margin-bottom: 0.25rem;
        }
        .payment .section-subtitle {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .timeline {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1rem;
            max-width: 780px;
            margin: 0 auto 2rem;
            position: relative;
            padding-inline: 0.5rem;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 2.25rem;
            left: 12%;
            right: 12%;
            height: 1.5px;
            background: var(--color-border-light);
            z-index: 0;
        }
        html[dir="rtl"] .timeline::before {
            left: 12%;
            right: 12%;
        }

        .timeline-item {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            min-width: 0;
        }
        .timeline-dot {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--color-navy);
            color: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
            border: 2px solid var(--color-white);
            box-shadow: 0 0 0 1.5px var(--color-champagne), 0 4px 12px rgba(0, 0, 0, 0.06);
        }
        body.lang-ar .timeline-dot {
            font-family: var(--font-arabic);
        }
        .timeline-label {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--color-navy);
        }
        .timeline-desc {
            font-size: 0.7rem;
            color: var(--color-text-muted);
            line-height: 1.3;
        }

        .payment-extra {
            text-align: center;
            color: var(--color-text-muted);
            font-size: 0.9rem;
            max-width: 520px;
            margin: 0 auto 1.5rem;
        }
        .payment-actions {
            text-align: center;
        }

        @media (max-width: 768px) {
            .timeline {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
                padding-inline: 0;
                max-width: 380px;
            }
            .timeline::before {
                display: none;
            }
            .timeline-item {
                flex-direction: row;
                gap: 1rem;
                text-align: start;
                padding: 0.75rem 1rem;
                background: var(--color-offwhite);
                border-radius: var(--radius-md);
                border-inline-start: 2.5px solid var(--color-champagne);
            }
            .timeline-dot {
                width: 36px;
                height: 36px;
                font-size: 0.75rem;
                flex-shrink: 0;
            }
            .timeline-item .info {
                display: flex;
                flex-direction: column;
                gap: 0.05rem;
            }
            .timeline-label {
                font-size: 0.85rem;
            }
            .timeline-desc {
                font-size: 0.7rem;
            }
        }

        /* ============================
           LIFESTYLE
           ============================ */
        .lifestyle {
            background: var(--color-offwhite-light);
            padding-block: var(--section-spacing);
        }
        .lifestyle .section-title {
            text-align: center;
            margin-bottom: 0.25rem;
        }
        .lifestyle .section-title .light {
            font-weight: 300;
            color: var(--color-text-muted);
        }
        .lifestyle .section-subtitle {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .lifestyle-visual {
            background: var(--color-slate);
            border-radius: var(--radius-lg);
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.15);
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            overflow: hidden;
            margin-bottom: 2.5rem;
            position: relative;
            min-height: 200px;
            border: 1px solid var(--color-border-light);
            background-image:
                linear-gradient(45deg, rgba(201, 169, 110, 0.04) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(201, 169, 110, 0.04) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(201, 169, 110, 0.04) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(201, 169, 110, 0.04) 75%);
            background-size: 36px 36px;
            background-position: 0 0, 0 18px, 18px -18px, -18px 0px;
        }
        .lifestyle-visual .placeholder-text {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 1.5rem;
            color: rgba(255, 255, 255, 0.35);
            font-weight: 300;
        }
        .lifestyle-visual .placeholder-text i {
            display: block;
            font-size: 2.4rem;
            margin-bottom: 0.5rem;
            color: rgba(201, 169, 110, 0.2);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        @media (max-width: 768px) {
            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .amenities-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
            }
        }

        .amenity-card {
            background: var(--color-white);
            padding: 1rem 0.75rem;
            border-radius: var(--radius-sm);
            border: 1px solid var(--color-border-light);
            text-align: center;
            transition: all 0.3s ease;
        }
        .amenity-card:hover {
            border-color: var(--color-champagne);
        }
        .amenity-card i {
            font-size: 1.2rem;
            color: var(--color-champagne);
            margin-bottom: 0.25rem;
            display: block;
        }
        .amenity-card span {
            display: block;
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--color-navy);
            line-height: 1.3;
        }
        @media (max-width: 480px) {
            .amenity-card {
                padding: 0.6rem 0.4rem;
            }
            .amenity-card i {
                font-size: 1rem;
            }
            .amenity-card span {
                font-size: 0.65rem;
            }
        }

        /* ============================
           LOCATION
           ============================ */
        .location {
            background: var(--color-white);
            padding-block: var(--section-spacing);
        }
        .location .section-title {
            margin-bottom: 0.25rem;
        }
        .location .section-subtitle {
            margin-bottom: 2rem;
        }

        .location-map {
            background: var(--color-offwhite-warm);
            border-radius: var(--radius-lg);
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-muted);
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            overflow: hidden;
            border: 1px solid var(--color-border-light);
            position: relative;
            min-height: 200px;
            margin-bottom: 2rem;
            background-image:
                radial-gradient(circle at 30% 40%, rgba(201, 169, 110, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
            background-color: var(--color-offwhite-warm);
        }
        .location-map .map-grid {
            position: absolute;
            inset: 0;
            opacity: 0.06;
            background-image:
                linear-gradient(rgba(15, 23, 42, 0.3) 1px, transparent 1px),
                linear-gradient(90deg, rgba(15, 23, 42, 0.3) 1px, transparent 1px);
            background-size: 40px 40px;
            background-position: center center;
        }
        .location-map .placeholder-text {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 1.5rem;
            color: var(--color-text-muted);
            font-weight: 300;
        }
        .location-map .placeholder-text i {
            display: block;
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            color: rgba(201, 169, 110, 0.3);
        }

        .location-labels {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            justify-content: center;
        }
        .location-labels span {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--color-text-body);
            background: var(--color-offwhite);
            padding: 0.3rem 1rem;
            border-radius: 50px;
            border: 1px solid var(--color-border-light);
        }
        .location-labels span i {
            color: var(--color-champagne);
            margin-inline-end: 0.3rem;
            font-size: 0.7rem;
        }

        /* ============================
           WHY REEM (editorial lift)
           ============================ */
        .why-reem {
            background: var(--color-offwhite-light);
            padding-block: var(--section-spacing);
            position: relative;
            overflow: hidden;
        }
        .why-reem::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: radial-gradient(ellipse at 80% 30%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
            pointer-events: none;
        }
        .why-reem .container {
            position: relative;
            z-index: 1;
        }
        .why-reem .section-title {
            margin-bottom: 0.25rem;
        }
        .why-reem .section-subtitle {
            font-size: 1.05rem;
            color: var(--color-text-body);
            max-width: 640px;
            line-height: 1.8;
            margin-bottom: 1.75rem;
        }

        .audience-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .audience-tags span {
            background: var(--color-white);
            padding: 0.4rem 1.4rem;
            border-radius: 50px;
            border: 1px solid var(--color-border-light);
            font-weight: 500;
            font-size: 0.8rem;
            color: var(--color-navy);
            transition: all 0.3s ease;
        }
        .audience-tags span:hover {
            border-color: var(--color-champagne);
            background: var(--color-gold-subtle);
        }

        /* ============================
           SNAPSHOT
           ============================ */
        .snapshot {
            background: var(--color-white);
            padding-block: var(--section-spacing);
        }
        .snapshot .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .snapshot-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.25rem 2.5rem;
            max-width: 800px;
            margin: 0 auto;
            background: var(--color-offwhite);
            padding: 2rem 2.5rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border-light);
        }
        @media (max-width: 768px) {
            .snapshot-grid {
                grid-template-columns: 1fr;
                gap: 0.1rem;
                padding: 1.25rem 1.25rem;
            }
        }

        .snapshot-item {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding-block: 0.5rem;
            border-bottom: 1px solid var(--color-border-light);
        }
        .snapshot-item:last-child {
            border-bottom: none;
        }
        .snapshot-item .label {
            font-weight: 400;
            color: var(--color-text-muted);
            font-size: 0.8rem;
            letter-spacing: 0.02em;
        }
        .snapshot-item .value {
            font-weight: 500;
            color: var(--color-navy);
            font-size: 0.85rem;
            text-align: end;
        }
        @media (max-width: 768px) {
            .snapshot-item .label {
                font-size: 0.75rem;
            }
            .snapshot-item .value {
                font-size: 0.8rem;
            }
        }

        /* ============================
           LEAD GENERATION
           ============================ */
        .lead {
            background: var(--color-navy);
            color: var(--color-white);
            padding-block: var(--section-spacing);
        }
        .lead .section-title {
            color: var(--color-white);
            margin-bottom: 0.25rem;
        }
        .lead .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
            max-width: 520px;
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .lead-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        @media (max-width: 992px) {
            .lead-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .lead-form {
            background: rgba(255, 255, 255, 0.04);
            padding: 2rem 2.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(4px);
        }
        @media (max-width: 480px) {
            .lead-form {
                padding: 1.25rem 1rem;
            }
        }

        .lead-info {
            padding-top: 0.25rem;
        }
        .lead-info h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-white);
            font-family: var(--font-sans);
            margin-bottom: 1rem;
            letter-spacing: 0.02em;
        }
        body.lang-ar .lead-info h3 {
            font-family: var(--font-arabic);
            font-weight: 700;
            letter-spacing: 0;
        }
        .lead-info ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .lead-info ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .lead-info ul li:last-child {
            border-bottom: none;
        }
        .lead-info ul li i {
            color: var(--color-champagne);
            font-size: 0.8rem;
            width: 1.2rem;
            text-align: center;
        }
        .lead-info .info-note {
            margin-top: 1.25rem;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.35);
            line-height: 1.6;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1rem;
        }

        .form-group {
            margin-bottom: 1.1rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 0.25rem;
        }
        .form-group .form-control {
            width: 100%;
            padding: 0.6rem 1rem;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.06);
            color: var(--color-white);
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s, background 0.3s;
            -webkit-appearance: none;
            appearance: none;
        }
        .form-group .form-control::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }
        .form-group .form-control:focus {
            outline: none;
            border-color: var(--color-champagne);
            background: rgba(255, 255, 255, 0.08);
        }
        .form-group .form-control.error {
            border-color: #e74c3c;
        }
        .form-group select.form-control {
            cursor: pointer;
        }
        .form-group select.form-control option {
            background: var(--color-navy);
            color: var(--color-white);
        }

        .form-error {
            color: #f1a9a0;
            font-size: 0.7rem;
            margin-top: 0.2rem;
            display: none;
        }
        .form-error.show {
            display: block;
        }

        .lead-form .btn {
            width: 100%;
            padding: 0.8rem;
            font-size: 0.95rem;
            margin-top: 0.25rem;
        }

        .form-note {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.3);
            text-align: center;
            margin-top: 0.6rem;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 1.25rem;
            background: rgba(46, 204, 113, 0.1);
            border-radius: var(--radius-md);
            border: 1px solid rgba(46, 204, 113, 0.15);
            color: #8effb5;
        }
        .form-success.show {
            display: block;
        }
        .form-success i {
            font-size: 2rem;
            display: block;
            margin-bottom: 0.3rem;
        }

        @media (max-width: 992px) {
            .lead-info {
                order: 1;
            }
            .lead-form {
                order: 2;
            }
        }

        /* ============================
           FOOTER
           ============================ */
        .footer {
            background: var(--color-charcoal);
            color: rgba(255, 255, 255, 0.5);
            padding: 2rem 0 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .footer-inner {
                flex-direction: column;
                gap: 1.25rem;
            }
        }

        .footer-brand .footer-logo {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 0.2rem;
        }
        .footer-brand .footer-logo .logo-placeholder {
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
        }
        body.lang-ar .footer-brand .footer-logo .logo-placeholder {
            text-transform: none;
            letter-spacing: 0.04em;
        }
        .footer-brand .footer-contact {
            font-size: 0.8rem;
            margin-top: 0.3rem;
            line-height: 1.8;
        }
        .footer-brand .footer-contact a {
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.3s;
        }
        .footer-brand .footer-contact a:hover {
            color: var(--color-white);
        }

        .footer-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #25d366;
            color: var(--color-white) !important;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.75rem;
            transition: background 0.3s, transform 0.3s;
            margin-top: 0.25rem;
        }
        .footer-whatsapp:hover {
            background: #1ebe5c;
            transform: scale(1.02);
        }

        .footer-links {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
            font-size: 0.8rem;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.4);
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--color-white);
        }

        .footer-disclaimer {
            width: 100%;
            margin-top: 1.25rem;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.25);
            line-height: 1.7;
            text-align: center;
        }

        /* ============================
           RESPONSIVE FINE-TUNE
           ============================ */
        @media (max-width: 480px) {
            .container {
                padding-inline: 1rem;
            }
            .hero-price {
                font-size: 0.9rem;
                padding: 0.3rem 0.9rem;
            }
            .btn {
                font-size: 0.8rem;
                padding: 0.6rem 1.2rem;
            }
            .lead-form {
                padding: 1rem 0.75rem;
            }
            .snapshot-grid {
                padding: 0.75rem 0.75rem;
            }
            .snapshot-item {
                flex-wrap: wrap;
                gap: 0.1rem;
            }
            .snapshot-item .value {
                text-align: start;
                width: 100%;
            }
            .footer-inner {
                gap: 1rem;
            }
        }

        html[dir="rtl"] .btn i.fa-arrow-left {
            transform: scaleX(-1);
        }
        html[dir="rtl"] .btn i.fa-arrow-right {
            transform: scaleX(-1);
        }
        html[dir="rtl"] .btn i.fa-paper-plane {
            transform: scaleX(-1);
        }

        /* scroll-margin-top for anchor offset */
        section[id] {
            scroll-margin-top: 80px;
        }
        @media (max-width: 768px) {
            section[id] {
                scroll-margin-top: 72px;
            }
        }

        .btn:focus-visible,
        .lang-switcher:focus-visible,
        .nav-toggle:focus-visible,
        .form-control:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--color-champagne);
            outline-offset: 2px;
        }
    

/* Production hardening / final refinements */
.hp-field{
    position:absolute!important;
    width:1px!important;
    height:1px!important;
    padding:0!important;
    margin:-1px!important;
    overflow:hidden!important;
    clip:rect(0,0,0,0)!important;
    clip-path:inset(50%)!important;
    white-space:nowrap!important;
    border:0!important;
    left:auto!important;
    right:auto!important;
}
.form-submit-error{display:none;margin-top:.75rem;padding:.75rem 1rem;border:1px solid rgba(239,68,68,.35);background:rgba(239,68,68,.08);color:#fecaca;border-radius:var(--radius-sm);font-size:.8rem;}
.form-submit-error.show{display:block;}
.lead-heading{margin-bottom:2rem;max-width:760px;}
.lead-heading .section-subtitle{margin-bottom:0;}
.footer-separator{color:rgba(255,255,255,.08);}
.ui-icon{display:inline-flex;align-items:center;justify-content:center;font-style:normal;line-height:1;color:inherit;}
.placeholder-text .ui-icon{font-size:2.4rem;margin-bottom:.5rem;display:block;}
.why-card .ui-icon{font-size:1.5rem;color:var(--color-champagne);margin-bottom:.5rem;display:block;}
.amenity-card .ui-icon{font-size:1.15rem;color:var(--color-champagne);margin-bottom:.25rem;display:block;}
.location-labels .ui-icon{color:var(--color-champagne);margin-inline-end:.3rem;font-size:.8rem;}
.lead-info .ui-icon{color:var(--color-champagne);font-size:.8rem;width:1.2rem;text-align:center;}
.form-success .ui-icon{font-size:2rem;display:block;margin-bottom:.3rem;}
/* CSS logical property already mirrors correctly in RTL; do not double-flip it. */
@media (max-width:768px){html[dir="rtl"] .timeline-item{border-inline-start:2.5px solid var(--color-champagne);border-inline-end:0;}}

/* ============================
   DUAL-BRAND HEADER OVERRIDE
   Project mark centered; brokerage mark at inline-start
   (right in Arabic / left in English).
   ============================ */
.header-shell {
    display: block;
}

.brand-bar {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    align-items: center;
    min-height: 88px;
    gap: 1.25rem;
    padding-block: 0.55rem 0.35rem;
}

.broker-brand,
.project-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.broker-brand {
    justify-self: start;
}

.project-brand {
    justify-self: center;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.broker-brand img {
    display: block;
    width: auto;
    height: auto;
    max-height: 42px;
    max-width: 210px;
    object-fit: contain;
}

.project-brand img {
    display: block;
    width: auto;
    height: auto;
    max-height: 82px;
    max-width: min(300px, 28vw);
    object-fit: contain;
}

/* navigation becomes a discreet second line */
.header-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 0.15rem 0.65rem;
    border-top: 1px solid rgba(201, 169, 110, 0.14);
}

.header-nav .nav-list {
    justify-content: center;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-navy);
    content: '';
    position: relative;
}
.nav-toggle-lines::before {
    position: absolute;
    top: -6px;
    inset-inline-start: 0;
}
.nav-toggle-lines::after {
    position: absolute;
    top: 6px;
    inset-inline-start: 0;
}

@media (max-width: 900px) {
    .brand-bar {
        grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
        min-height: 78px;
        gap: 0.75rem;
    }
    .broker-brand img {
        max-height: 36px;
        max-width: 170px;
    }
    .project-brand img {
        max-height: 68px;
        max-width: min(250px, 34vw);
    }
}

@media (max-width: 768px) {
    .brand-bar {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "project actions"
            "broker broker";
        min-height: auto;
        padding-block: 0.55rem;
        row-gap: 0.35rem;
    }
    .project-brand {
        grid-area: project;
        justify-self: start;
    }
    .header-actions {
        grid-area: actions;
        justify-self: end;
    }
    .broker-brand {
        grid-area: broker;
        justify-self: start;
    }
    .project-brand img {
        max-height: 58px;
        max-width: min(210px, 46vw);
    }
    .broker-brand img {
        max-height: 30px;
        max-width: 150px;
    }

    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        justify-content: stretch;
        padding: 0 1.25rem 1.25rem;
        border-top: 1px solid var(--color-border-light);
    }

    .header-nav .nav-list {
        width: 100%;
        align-items: stretch;
    }
}

@media (max-width: 420px) {
    .brand-bar {
        gap: 0.45rem;
    }
    .project-brand img {
        max-height: 52px;
        max-width: 46vw;
    }
    .broker-brand img {
        max-height: 27px;
        max-width: 135px;
    }
    .lang-switcher {
        padding: 0.2rem 0.45rem;
        font-size: 0.7rem;
    }
}


/* ============================
   PRIVACY CONSENT / FORM HARDENING
   ============================ */
.form-consent {
    margin: 0.35rem 0 1rem;
}
.consent-label {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: start;
    color: rgba(255,255,255,0.72);
    font-size: 0.76rem;
    line-height: 1.55;
    cursor: pointer;
}
.consent-label input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-top: 0.15rem;
    accent-color: var(--color-champagne);
}
.consent-label a {
    color: var(--color-champagne-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.consent-label a:hover {
    color: var(--color-white);
}
.consent-label input.error {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}
.lead-form button[disabled] {
    opacity: 0.65;
    cursor: wait;
    transform: none !important;
}
html[dir="rtl"] .consent-label {
    grid-template-columns: auto 1fr;
}


/* ============================
   OFFICIAL PROJECT IMAGE / BRAND INTEGRATION — v6
   ============================ */
.project-kicker {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-champagne-dark);
    text-transform: uppercase;
    margin-top: -0.2rem;
}
body.lang-ar .project-kicker {
    font-family: var(--font-sans);
    letter-spacing: 0.18em;
}
.developer-line {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-top: -0.2rem;
}
.hero-visual-image,
.intro-visual-image,
.lifestyle-visual-image {
    background: none;
}
.hero-visual-image img,
.intro-visual-image img,
.lifestyle-visual-image img,
.why-reem-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.hero-visual-image img {
    object-position: center center;
}
.intro-visual-image img {
    object-position: center center;
}
.lifestyle-visual-image img {
    object-position: center center;
}
.hero-visual-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.04), rgba(15,23,42,.12));
    pointer-events: none;
}
.project-identity {
    padding-block: 4rem;
    background: var(--color-navy);
    color: var(--color-white);
}
.project-identity-grid {
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    gap: 3.5rem;
    align-items: center;
}
.project-identity-image {
    max-height: 430px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
}
.project-identity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    display: block;
}
.project-identity-copy .eyebrow {
    color: var(--color-champagne-light);
    font-size: .72rem;
    letter-spacing: .18em;
    font-weight: 700;
    margin-bottom: .8rem;
}
.project-identity-copy .section-title {
    color: var(--color-white);
    max-width: 760px;
}
.project-identity-copy .section-subtitle {
    color: rgba(255,255,255,.68);
    margin-top: 1rem;
}
.why-reem-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: center;
}
.why-reem-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 18px 50px rgba(15,23,42,.08);
}
@media (max-width: 992px) {
    .project-identity-grid,
    .why-reem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .project-identity-image {
        max-width: 520px;
        width: 100%;
        justify-self: center;
        max-height: 520px;
    }
    .why-reem-visual {
        aspect-ratio: 16/9;
    }
}
@media (max-width: 768px) {
    .project-identity {
        padding-block: 3rem;
    }
    .project-kicker {
        font-size: .72rem;
    }
    .developer-line {
        font-size: .74rem;
    }
}


/* ============================
   OFFICIAL FLOOR PLAN VIEWER — v8
   ============================ */
.floorplans {
    background: var(--color-white);
    padding-block: var(--section-spacing);
}
.floorplans-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.75rem;
}
.floorplans-header .eyebrow {
    color: var(--color-champagne-dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    margin-bottom: .55rem;
}
body.lang-ar .floorplans-header .eyebrow {
    letter-spacing: 0;
}
.floorplans-header .section-subtitle {
    margin-top: .75rem;
}
.floorplans-open {
    flex-shrink: 0;
}
.floorplans-shell {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-offwhite-light);
    box-shadow: 0 14px 40px rgba(15,23,42,.06);
}
.floorplans-notice {
    padding: .8rem 1rem;
    background: var(--color-offwhite);
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border-light);
    font-size: .76rem;
    text-align: start;
}
.floorplans-frame-wrap {
    width: 100%;
    height: min(78vh, 920px);
    min-height: 680px;
    background: #fff;
}
.floorplans-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #fff;
}
.floorplans-fallback {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1rem;
    border-top: 1px solid var(--color-border-light);
    background: var(--color-white);
    font-size: .76rem;
    color: var(--color-text-muted);
}
.floorplans-fallback a {
    color: var(--color-champagne-dark);
    font-weight: 700;
    white-space: nowrap;
}
.floorplans-fallback a:hover {
    color: var(--color-navy);
}
@media (max-width: 992px) {
    .floorplans-header {
        align-items: start;
        flex-direction: column;
        gap: 1rem;
    }
    .floorplans-open {
        align-self: start;
    }
    .floorplans-frame-wrap {
        min-height: 620px;
        height: 72vh;
    }
}
@media (max-width: 768px) {
    .floorplans-frame-wrap {
        min-height: 560px;
        height: 68vh;
    }
    .floorplans-fallback {
        flex-direction: column;
        align-items: start;
    }
}
@media (max-width: 480px) {
    .floorplans-frame-wrap {
        min-height: 500px;
        height: 65vh;
    }
    .floorplans-open {
        width: 100%;
    }
}


/* ============================
   AL REEM ISLAND INTERACTIVE MAP — v9
   ============================ */
.reem-map-shell {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 16px 46px rgba(15,23,42,.07);
    margin-bottom: 1.5rem;
}
.reem-map-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: var(--color-offwhite-light);
    border-bottom: 1px solid var(--color-border-light);
}
.reem-map-project {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.reem-map-project strong {
    color: var(--color-navy);
    font-family: var(--font-serif);
    font-size: 1rem;
}
body.lang-ar .reem-map-project strong {
    font-family: var(--font-arabic);
}
.reem-map-project span {
    color: var(--color-text-muted);
    font-size: .75rem;
}
.map-open-btn {
    padding: .5rem 1rem;
    font-size: .75rem;
    flex-shrink: 0;
}
.reem-map-frame {
    width: 100%;
    height: clamp(430px, 56vw, 680px);
    background: var(--color-offwhite);
}
.reem-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.map-note {
    padding: .75rem 1rem;
    color: var(--color-text-muted);
    background: var(--color-offwhite-light);
    border-top: 1px solid var(--color-border-light);
    font-size: .72rem;
    line-height: 1.55;
}
.map-destinations a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-body);
    background: var(--color-offwhite);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--color-border-light);
    transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.map-destinations a:hover {
    border-color: var(--color-champagne);
    color: var(--color-navy);
    background: var(--color-gold-subtle);
}
@media (max-width: 768px) {
    .reem-map-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
    .map-open-btn {
        width: 100%;
    }
    .reem-map-frame {
        height: 500px;
    }
}
@media (max-width: 480px) {
    .reem-map-frame {
        height: 430px;
    }
}


/* ============================
   FINAL PRODUCTION REFINEMENTS
   ============================ */
.footer-logo-image img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 46px;
    object-fit: contain;
    object-position: left center;
}
html[dir="rtl"] .footer-logo-image img {
    object-position: right center;
}
@media (max-width: 480px) {
    .footer-logo-image img {
        max-width: 165px;
        max-height: 42px;
    }
}

/* Ensure embedded external content never causes horizontal layout overflow. */
.floorplans-shell,
.reem-map-shell,
.floorplans-frame-wrap,
.reem-map-frame {
    max-width: 100%;
    min-width: 0;
}

/* Better focus visibility on linked destination pills. */
.map-destinations a:focus-visible,
.floorplans-fallback a:focus-visible {
    outline: 2px solid var(--color-champagne);
    outline-offset: 3px;
}

/* Crawlable language URL links styled like the original language controls. */
.lang-switcher a {
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
}
.lang-switcher a.lang-active {
    color: var(--gold, #c9a96e);
}

/* V2 final overrides */
.brand-bar{display:grid!important;grid-template-columns:1fr auto 1fr!important;grid-template-areas:"project actions broker"!important;align-items:center!important;gap:1rem!important}
.project-brand{grid-area:project!important;justify-self:start!important}.broker-brand{grid-area:broker!important;justify-self:end!important}.header-actions{grid-area:actions!important;justify-self:center!important;position:static!important;transform:none!important}
.project-brand img{width:auto!important;height:auto!important;max-height:72px!important;max-width:150px!important;object-fit:contain!important}
.broker-brand img{width:auto!important;height:auto!important;max-height:42px!important;max-width:150px!important;object-fit:contain!important}
.res-table-two th,.res-table-two td{width:50%}
.floorplan-group{margin-top:2rem}.floorplan-group-title{margin-bottom:1rem;font-size:1.35rem}.floorplan-gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}
.floorplan-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--color-border-light);border-radius:12px;overflow:hidden;min-width:0;box-shadow:0 8px 24px rgba(15,23,42,.04)}
.floorplan-card img{width:100%;aspect-ratio:4/3;object-fit:contain;background:#fbfaf8;padding:.65rem}.floorplan-card span{padding:.85rem 1rem;font-weight:600;color:var(--color-navy);border-top:1px solid var(--color-border-light)}.floorplate-gallery .floorplan-card img{aspect-ratio:1/1}.floorplan-disclaimer{margin-top:1rem;color:var(--color-text-muted);font-size:.9rem;font-style:italic}
.masterplan-section{padding:var(--section-spacing) 0;background:var(--color-offwhite-light)}.masterplan-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:3rem;align-items:center}.masterplan-image img{width:100%;border-radius:12px;box-shadow:0 18px 45px rgba(15,23,42,.08)}
html[dir="rtl"] body,body.lang-ar{direction:rtl;text-align:right}body.lang-ar .hero-content,body.lang-ar .intro-copy,body.lang-ar .project-identity-copy,body.lang-ar .lead-heading,body.lang-ar .lead-info,body.lang-ar .masterplan-copy,body.lang-ar .reem-map-project,body.lang-ar .footer-contact{text-align:right}
body.lang-ar .hero-actions,body.lang-ar .why-reem-tags,body.lang-ar .payment-actions{justify-content:flex-start}body.lang-ar input,body.lang-ar select,body.lang-ar textarea{text-align:right;direction:rtl}body.lang-ar input[type="email"],body.lang-ar input[type="tel"]{direction:ltr;text-align:right}body.lang-ar .res-table th,body.lang-ar .res-table td,body.lang-ar .floorplan-card span{text-align:right}
@media(max-width:768px){
.header-shell{padding-block:.65rem!important}.brand-bar{grid-template-columns:1fr 1fr!important;grid-template-areas:"project broker" "actions actions"!important;row-gap:.55rem!important;width:100%!important}.project-brand{justify-self:start!important}.broker-brand{justify-self:end!important}.header-actions{justify-self:stretch!important;display:flex!important;align-items:center!important;justify-content:space-between!important;width:100%!important}
.project-brand img{max-height:50px!important;max-width:112px!important}.broker-brand img{max-height:29px!important;max-width:118px!important}
.hero-grid,.intro-grid,.project-identity-grid,.why-reem-grid,.lead-grid,.masterplan-grid{grid-template-columns:1fr!important;gap:1.5rem!important}
body.lang-ar .hero-content,body.lang-ar .intro-copy,body.lang-ar .project-identity-copy,body.lang-ar .lead-heading,body.lang-ar .lead-info,body.lang-ar .masterplan-copy{text-align:right!important}
body.lang-ar .hero-actions{display:grid!important;grid-template-columns:1fr!important;width:100%!important}body.lang-ar .hero-actions .btn{width:100%!important;justify-content:center!important;text-align:center!important}
.floorplan-gallery{grid-template-columns:repeat(2,minmax(0,1fr))}.snapshot-grid{grid-template-columns:1fr!important}body.lang-ar .reem-map-toolbar{flex-direction:column!important;align-items:stretch!important}body.lang-ar .map-open-btn{align-self:flex-start!important}
}
@media(max-width:480px){.container{padding-inline:1rem!important}.project-brand img{max-height:44px!important;max-width:100px!important}.broker-brand img{max-height:25px!important;max-width:104px!important}.floorplan-gallery{grid-template-columns:1fr}body.lang-ar h1{font-size:clamp(2rem,10vw,2.65rem)!important;line-height:1.22!important}body.lang-ar .section-title{line-height:1.28!important}body.lang-ar .hero-badge,body.lang-ar .project-kicker{letter-spacing:0!important}}


/* V2.1 RTL mobile horizontal-overflow fix */
html {
    max-width: 100%;
    overflow-x: hidden;
}
body {
    max-width: 100%;
    overflow-x: hidden;
}
@supports (overflow: clip) {
    html, body {
        overflow-x: clip;
    }
}
img, video, iframe, svg {
    max-width: 100%;
}
@media (max-width: 768px) {
    body.lang-ar .site-header,
    body.lang-ar main,
    body.lang-ar section,
    body.lang-ar .container {
        max-width: 100%;
    }
    body.lang-ar .res-table-wrap {
        max-width: 100%;
        overflow-x: auto;
    }
}
