:root {
            --gold-accent: #c5a059;
            --gold-hover: #b08c46;
            --dark-bg: #141415;
            --card-bg: #1e1e20;
            --card-border: rgba(255, 255, 255, 0.08);
            --footer-bg: #0d0d0e;
        }

* {
            box-sizing: border-box;
            margin: 0; padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

html, body {
            max-width: 100% !important;
            overflow-x: hidden !important;
            position: relative;
        }

html {
            scroll-behavior: smooth;
            scroll-snap-type: y mandatory;
        }

body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--dark-bg);
            color: #ffffff;
            touch-action: manipulation;
        }

/* 1. Header Transparent */
        .header-transparent {
            position: fixed; top: 0; left: 0; width: 100%;
            z-index: 1050; padding: 15px 25px;
            background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
            backdrop-filter: blur(5px);
        }

.brand-logo-center img {
            height: 52px; width: auto;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
        }

.nav-btn-text {
            color: #ffffff; text-decoration: none; font-weight: 600;
            font-size: 0.95rem; cursor: pointer; transition: color 0.3s;
        }

.nav-btn-text:hover { color: var(--gold-accent); }

/* 2. Full-Page Sections System */
        .page-section {
            min-height: 100vh;
            width: 100%; max-width: 100vw;
            scroll-snap-align: start; position: relative;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            padding: 100px 0 60px;
            overflow: hidden !important;
        }

.video-bg {
            position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover; z-index: 1;
        }

.overlay-dark {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.35) 100%);
            z-index: 2;
        }

.section-content {
            position: relative; z-index: 10;
            max-width: 800px; padding: 0 20px;
            margin-top: auto; margin-bottom: 40px;
            align-self: flex-start;
            margin-inline-start: 6%;
        }

.section-subtitle {
            font-size: 1.1rem; font-weight: 600;
            color: var(--gold-accent); margin-bottom: 8px;
        }

.section-title {
            font-size: clamp(1.8rem, 4.5vw, 3rem);
            font-weight: 800; line-height: 1.25; margin-bottom: 15px;
            text-shadow: 0 4px 15px rgba(0,0,0,0.6);
        }

.section-desc {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6; margin-bottom: 15px;
        }

.btn-read-more {
            position: relative; z-index: 10;
            color: #fff; text-decoration: none;
            font-size: 1rem; font-weight: 700;
            border-inline-start: 3px solid #fff;
            padding-inline-start: 12px; transition: all 0.3s;
            margin-inline-start: 6%; margin-bottom: 20px;
            align-self: flex-start;
        }

.btn-read-more:hover { color: var(--gold-accent); border-color: var(--gold-accent); }

/* 3. Fixed Vertical Dots */
        .fixed-scroll-dots {
            position: fixed; top: 50%;
            inset-inline-start: 15px; transform: translateY(-50%);
            display: flex; flex-direction: column; gap: 12px; z-index: 1000;
        }

.dot-link {
            width: 10px; height: 10px; border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.35);
            border: 2px solid transparent; display: block; transition: all 0.3s ease;
        }

.dot-link.active, .dot-link:hover {
            background-color: transparent; border-color: #ffffff; transform: scale(1.3);
        }

/* 4. Clickable Project Cards Layout */
        .project-card-link {
            text-decoration: none; color: inherit; display: block; height: 100%;
        }

.card-dark {
            background: var(--card-bg); border-radius: 18px;
            border: 1px solid var(--card-border); transition: all 0.3s ease;
            overflow: hidden; height: 100%; cursor: pointer;
        }

.card-dark:hover {
            transform: translateY(-6px);
            border-color: var(--gold-accent);
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        }

.img-square-container {
            width: 100%; aspect-ratio: 1 / 1;
            overflow: hidden; border-radius: 12px; background-color: #121212;
            position: relative;
        }

.img-square-container img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.4s ease;
        }

.card-dark:hover .img-square-container img {
            transform: scale(1.05);
        }

/* 5. Footer & Offcanvas */
        footer { background-color: var(--footer-bg); color: rgba(255,255,255,0.7); padding: 40px 0 20px; width: 100%; }

.hotline-box { display: flex; align-items: center; gap: 10px; font-size: 1.8rem; font-weight: 900; color: #ffffff; }

.social-icons a { color: #ffffff; font-size: 1.2rem; margin: 0 8px; }

.offcanvas-custom { background-color: var(--dark-bg); color: #fff; max-width: 80vw; width: 320px !important; }

.offcanvas-menu-link { color: #fff; text-decoration: none; font-size: 1.1rem; font-weight: 700; display: block; padding: 12px 0; border-bottom: 1px solid var(--card-border); }

@media (max-width: 768px) {
            .header-transparent { padding: 10px 15px; }
            .brand-logo-center img { height: 38px; }
            .section-content { margin-inline-start: 4%; }
            .btn-read-more { margin-inline-start: 4%; font-size: 0.9rem; }
            .page-section { padding-top: 80px; }
        }

/* 1. Header Transparent */
        .header-transparent {
            position: fixed; top: 0; left: 0; width: 100%;
            z-index: 1050; padding: 15px 25px;
            background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
            backdrop-filter: blur(8px);
        }

.brand-logo-center img {
            height: 52px; width: auto;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
        }

/* 2. Hero Banner Style */
        .project-hero {
            position: relative;
            min-height: 45vh;
            display: flex; align-items: flex-end;
            padding-bottom: 40px;
            background: linear-gradient(180deg, rgba(20,20,21,0.6) 0%, #141415 100%), url('../img/hero-photo-1.webp') center/cover no-repeat;
        }

.hero-title-box { position: relative; z-index: 10; }

/* 3. Cards & Inputs Layout */
        .content-card-dark {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            height: 100%;
        }

.contact-info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 22px;
        }

.contact-icon-box {
            width: 50px; height: 50px;
            background: rgba(197, 160, 89, 0.1);
            border: 1px solid var(--gold-accent);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; color: var(--gold-accent);
            flex-shrink: 0;
        }

.form-control-dark {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--card-border);
            color: #fff;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

.form-control-dark:focus {
            background-color: rgba(255, 255, 255, 0.08);
            border-color: var(--gold-accent);
            color: #fff;
            box-shadow: none;
        }

.btn-gold-action {
            background-color: var(--gold-accent);
            color: #000 !important;
            font-weight: 700;
            padding: 12px 25px;
            border-radius: 10px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
        }

.btn-gold-action:hover {
            background-color: var(--gold-hover);
            transform: translateY(-2px);
        }

/* Footer & Offcanvas */
        footer { background-color: var(--footer-bg); color: rgba(255,255,255,0.6); padding: 50px 0 25px; border-top: 1px solid var(--card-border); }

.hotline-number { font-size: 2.2rem; font-weight: 900; color: #ffffff; }

.social-icons a { color: #ffffff; font-size: 1.2rem; margin: 0 10px; transition: 0.3s; }

.social-icons a:hover { color: var(--gold-accent); }

.offcanvas-custom { background-color: var(--dark-bg); color: #fff; width: 320px !important; max-width: 80vw; }

.offcanvas-menu-link.active { color: var(--gold-accent); }

@media (max-width: 768px) {
            .header-transparent { padding: 10px 15px; }
            .brand-logo-center img { height: 40px; }
            .project-hero { min-height: 38vh; padding-bottom: 25px; }
            .content-card-dark { padding: 20px; }
        }

/* 2. Hero Banner Real Estate Style */
        .project-hero {
            position: relative;
            min-height: 65vh;
            display: flex; align-items: flex-end;
            padding-bottom: 50px;
            background: linear-gradient(180deg, rgba(20,20,21,0.3) 0%, #141415 100%), url('../img/hero-photo-2.webp') center/cover no-repeat;
        }

/* 3. Feature Cards */
        .feature-card-dark {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 14px;
            padding: 22px 18px;
            transition: all 0.3s ease;
            height: 100%;
        }

.feature-card-dark:hover {
            border-color: var(--gold-accent);
            transform: translateY(-3px);
        }

.feature-icon {
            font-size: 2rem;
            color: var(--gold-accent);
            margin-bottom: 12px;
        }

/* 4. Main Details Card & Image Ratio 1:1 */
        .content-card-dark {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

.img-square-container {
            width: 100%; aspect-ratio: 1 / 1;
            overflow: hidden; border-radius: 16px;
            border: 1px solid var(--card-border);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

.img-square-container img {
            width: 100%; height: 100%; object-fit: cover;
        }

/* 5. Map Box FIX */
        .map-frame-box {
            position: relative;
            width: 100%;
            height: 380px;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid var(--card-border);
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
            background-color: #121212;
        }

.map-frame-box iframe {
            width: 100% !important;
            height: 100% !important;
            border: 0;
            display: block;
        }

.btn-gold-action {
            background-color: var(--gold-accent);
            color: #000 !important;
            font-weight: 700;
            padding: 12px 20px;
            border-radius: 10px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
        }

.btn-dark-action {
            background-color: rgba(255, 255, 255, 0.08);
            color: #fff !important;
            font-weight: 600;
            padding: 12px 20px;
            border-radius: 10px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--card-border);
            transition: all 0.3s ease;
        }

.btn-dark-action:hover {
            background-color: rgba(255, 255, 255, 0.15);
            border-color: var(--gold-accent);
        }

@media (max-width: 768px) {
            .header-transparent { padding: 10px 15px; }
            .brand-logo-center img { height: 40px; }
            .project-hero { min-height: 50vh; padding-bottom: 30px; }
            .content-card-dark { padding: 20px; }
            .map-frame-box { height: 320px; }
        }

/* 2. Hero Banner Style */
        .project-hero {
            position: relative;
            min-height: 65vh;
            display: flex; align-items: flex-end;
            padding-bottom: 50px;
            background: linear-gradient(180deg, rgba(20,20,21,0.3) 0%, #141415 100%), url('../img/hero-photo-1.webp') center/cover no-repeat;
        }

/* 3. Stat Cards Luxury Animations */
        .metric-card {
            background: linear-gradient(145deg, #1e1e20, #181819);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 25px 15px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

/* تأثير اللمعة عند تمرير الماوس */
        .metric-card::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.1), transparent);
            transition: all 0.6s ease;
        }

.metric-card:hover::before {
            left: 100%;
        }

.metric-card:hover {
            border-color: var(--gold-accent);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(197, 160, 89, 0.15);
        }

.metric-number {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--gold-accent);
            line-height: 1;
            margin-bottom: 12px;
            text-shadow: 0 2px 10px rgba(197, 160, 89, 0.3);
            transition: all 0.3s;
        }

.metric-card:hover .metric-number {
            transform: scale(1.05);
        }

.metric-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
        }

/* أنيميشن الظهور (Fade In Up) */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUpAnim 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

@keyframes fadeInUpAnim {
            to { opacity: 1; transform: translateY(0); }
        }

.delay-1 { animation-delay: 0.1s; }

.delay-2 { animation-delay: 0.3s; }

.delay-3 { animation-delay: 0.5s; }

.delay-4 { animation-delay: 0.7s; }

/* 4. Main Details Card & Interactive Gallery Carousel */
        .content-card-dark {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

.gallery-carousel-container {
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--card-border);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            position: relative;
        }

.gallery-carousel-container .carousel,
        .gallery-carousel-container .carousel-inner,
        .gallery-carousel-container .carousel-item {
            height: 100%;
            width: 100%;
        }

.gallery-carousel-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.carousel-control-prev, .carousel-control-next {
            width: 45px;
            height: 45px;
            background-color: rgba(0,0,0,0.6);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 10px;
            border: 1px solid var(--card-border);
            transition: all 0.3s ease;
        }

.carousel-control-prev:hover, .carousel-control-next:hover {
            background-color: var(--gold-accent);
            border-color: var(--gold-accent);
        }

.carousel-indicators [data-bs-target] {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            border: none;
            margin: 0 4px;
        }

.carousel-indicators .active {
            background-color: var(--gold-accent);
            width: 24px;
            border-radius: 10px;
        }

/* 5. Map Box */
        .map-frame-box {
            position: relative;
            width: 100%;
            height: 380px;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid var(--card-border);
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
            background-color: #121212;
        }

@media (max-width: 768px) {
            .header-transparent { padding: 10px 15px; }
            .brand-logo-center img { height: 40px; }
            .project-hero { min-height: 50vh; padding-bottom: 30px; }
            .content-card-dark { padding: 20px; }
            .metric-number { font-size: 1.8rem; }
            .map-frame-box { height: 320px; }
        }

/* 3. Privacy Policy Content Cards */
        .content-card-dark {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            margin-bottom: 25px;
        }

.privacy-icon {
            font-size: 1.8rem;
            color: var(--gold-accent);
            margin-inline-end: 12px;
        }

@media (max-width: 768px) {
            .header-transparent { padding: 10px 15px; }
            .brand-logo-center img { height: 40px; }
            .project-hero { min-height: 38vh; padding-bottom: 25px; }
            .content-card-dark { padding: 22px; }
        }

/* ======================================================
   THEME SYSTEM (Light = default, Dark = optional)
   الأقسام التي فيها صور/فيديو خلفية (الهيرو) تبقى داكنة
   دائماً بكل الأوضاع لأن النص الأبيض مصمم فوق صورة، أما
   باقي المحتوى (بطاقات، فورمات، فوتر) فهو الي يتغير بالثيم.
   ====================================================== */

:root {
    --dark-bg: #f5f3ef;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.08);
    --footer-bg: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: rgba(0, 0, 0, 0.55);
}

body { color: var(--text-main); }

.text-white,
.hotline-box,
.hotline-number,
.social-icons a,
.offcanvas-menu-link,
.nav-btn-text,
h1, h2, h3, h4, h5, h6 {
    color: var(--text-main) !important;
}

.text-white-50,
p.text-white-50,
small,
.small,
.text-muted {
    color: var(--text-muted) !important;
}

.bg-dark { background-color: var(--card-bg) !important; }
.border-secondary { border-color: var(--card-border) !important; }
.offcanvas-custom { background-color: var(--card-bg); color: var(--text-main); box-shadow: -4px 0 20px rgba(0,0,0,0.08); }
.card-dark,
.feature-card-dark,
.content-card-dark,
.metric-card { background-color: var(--card-bg); border-color: var(--card-border); box-shadow: 0 4px 18px rgba(0,0,0,0.06); }
.form-control-dark { background-color: #ffffff; border-color: var(--card-border); color: var(--text-main); }
.form-control-dark::placeholder { color: rgba(0,0,0,0.4); }
.btn-dark-action { background-color: rgba(0,0,0,0.04); color: var(--text-main) !important; border-color: var(--card-border); }
.btn-dark-action:hover { background-color: rgba(0,0,0,0.08); }

/* ------------------------------------------------------
   استثناء دائم: أقسام الصور/الفيديو (الهيرو) تبقى داكنة
   بنص أبيض بكل الأوضاع، لأن الخلفية صورة/فيديو وليست لون
   ------------------------------------------------------ */
.project-hero .text-white,
.project-hero h1, .project-hero h2, .project-hero h3,
.hero-title-box, .hero-title-box *,
#sec1 .section-title, #sec1 .section-subtitle, #sec1 .section-desc,
#sec1 .text-white,
#sec2 .section-title, #sec2 .section-subtitle, #sec2 .section-desc,
#sec2 .text-white,
.section-content .text-white,
.header-transparent .nav-btn-text {
    color: #ffffff !important;
}
.project-hero .text-white-50,
#sec1 .text-white-50, #sec2 .text-white-50 {
    color: rgba(255,255,255,0.85) !important;
}

/* ---------- الوضع الداكن (اختياري عبر الزر) ---------- */
:root[data-theme="dark"] {
    --dark-bg: #141415;
    --card-bg: #1e1e20;
    --card-border: rgba(255, 255, 255, 0.08);
    --footer-bg: #0d0d0e;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.65);
}

:root[data-theme="dark"] .text-white,
:root[data-theme="dark"] .hotline-box,
:root[data-theme="dark"] .hotline-number,
:root[data-theme="dark"] .social-icons a,
:root[data-theme="dark"] .offcanvas-menu-link,
:root[data-theme="dark"] .nav-btn-text,
:root[data-theme="dark"] h1, :root[data-theme="dark"] h2,
:root[data-theme="dark"] h3, :root[data-theme="dark"] h4,
:root[data-theme="dark"] h5, :root[data-theme="dark"] h6 {
    color: #ffffff !important;
}
:root[data-theme="dark"] .text-white-50,
:root[data-theme="dark"] small,
:root[data-theme="dark"] .small,
:root[data-theme="dark"] .text-muted {
    color: rgba(255,255,255,0.65) !important;
}
:root[data-theme="dark"] .bg-dark { background-color: var(--dark-bg) !important; }
:root[data-theme="dark"] .border-secondary { border-color: var(--card-border) !important; }
:root[data-theme="dark"] .offcanvas-custom { background-color: var(--dark-bg); color: #fff; box-shadow: none; }
:root[data-theme="dark"] .card-dark,
:root[data-theme="dark"] .feature-card-dark,
:root[data-theme="dark"] .content-card-dark,
:root[data-theme="dark"] .metric-card { background-color: var(--card-bg); border-color: var(--card-border); box-shadow: none; }
:root[data-theme="dark"] .form-control-dark { background-color: rgba(255,255,255,0.05); border-color: var(--card-border); color: #fff; }
:root[data-theme="dark"] .form-control-dark::placeholder { color: rgba(255,255,255,0.4); }
:root[data-theme="dark"] .btn-dark-action { background-color: rgba(255, 255, 255, 0.08); color: #fff !important; }
:root[data-theme="dark"] .btn-dark-action:hover { background-color: rgba(255, 255, 255, 0.15); }

/* Theme toggle button */
.theme-toggle-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.05rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.theme-toggle-btn:hover { color: var(--gold-accent); }

/* ======================================================
   أنواع الشقق (Unit Types) - آشور
   ====================================================== */
.unit-tabs {
    display: inline-flex;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}
:root[data-theme="dark"] .unit-tabs { background: rgba(255,255,255,0.05); }
.unit-tabs { background: rgba(0,0,0,0.04); }

.unit-tab-btn {
    border: none;
    background: transparent;
    color: var(--text-main, #fff);
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 26px;
    border-radius: 9px;
    cursor: pointer;
    transition: .2s;
}
.unit-tab-btn.active {
    background: var(--gold-accent);
    color: #000;
}
.unit-tab-btn:not(.active):hover { color: var(--gold-accent); }

.unit-plan-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    border: 1px solid var(--card-border);
    background: #fff;
}
.unit-plan-frame img { width: 100%; display: block; }
.unit-plan-zoom-hint {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    background: rgba(20,20,21,0.75); color: #fff; font-size: 0.75rem;
    padding: 6px 16px; border-radius: 20px; white-space: nowrap;
    display: flex; align-items: center; gap: 6px;
    opacity: 0; transition: opacity .25s;
}
.unit-plan-frame:hover .unit-plan-zoom-hint { opacity: 1; }
.unit-plan-zoom-hint i { color: var(--gold-accent); }

.unit-stats-row { display: flex; gap: 10px; margin-bottom: 18px; }
.unit-stat {
    flex: 1; text-align: center; background: rgba(255,255,255,0.04);
    border: 1px solid var(--card-border); border-radius: 10px; padding: 12px 6px;
}
.unit-stat-num { font-size: 1.5rem; font-weight: 900; color: var(--gold-accent); line-height: 1.2; }
.unit-stat-label { font-size: 0.68rem; color: var(--text-muted, rgba(255,255,255,0.6)); margin-top: 2px; }

.unit-highlight {
    background: rgba(197,160,89,0.08);
    border-inline-start: 3px solid var(--gold-accent);
    padding: 10px 14px;
    border-radius: 6px;
    line-height: 1.8;
    margin-bottom: 18px !important;
}

.unit-room-table { border-top: 1px solid var(--card-border); }
.unit-room-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 2px; border-bottom: 1px solid var(--card-border);
    font-size: 0.88rem;
}
.unit-room-row span:first-child { color: var(--text-main, #fff); font-weight: 600; }
.unit-room-row span:last-child { color: var(--gold-accent); font-weight: 700; direction: ltr; }

/* Lightbox */
.plan-lightbox {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(5,5,6,0.92); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 30px;
    cursor: zoom-out;
}
.plan-lightbox.show { display: flex; }
.plan-lightbox img {
    max-width: min(1400px, 96vw); max-height: 92vh;
    border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    cursor: default;
}
.plan-lightbox-close {
    position: absolute; top: 22px; inset-inline-end: 26px;
    color: #fff; font-size: 1.8rem; cursor: pointer;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
}
.plan-lightbox-close:hover { background: var(--gold-accent); color: #000; }

@media (max-width: 767px) {
    .unit-tabs { width: 100%; }
    .unit-tab-btn { flex: 1; padding: 9px 10px; }
    .unit-stat-num { font-size: 1.2rem; }
}

/* Feature list (أبراج الفردوس - أنواع الشقق) */
.unit-feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.unit-feature-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; color: var(--text-main, #fff);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    padding: 10px 14px; border-radius: 8px;
}
.unit-feature-item i { color: var(--gold-accent); font-size: 0.8rem; }

.unit-note-box {
    font-size: 0.78rem; color: var(--text-muted, rgba(255,255,255,0.6));
    background: rgba(255,255,255,0.03); border: 1px dashed var(--card-border);
    padding: 10px 14px; border-radius: 10px; line-height: 1.7;
}
