﻿/* SAMRA — Main Stylesheet | ASP.NET MVC .NET 9 | Dark/Light | AR/EN */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Tajawal:wght@300;400;500;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --gold: #C8A27A;
    --gold-hover: #DBA868;
    --gold-light: #E8C99A;
    --gold-dark: #9C6137;
    --gold-2: #69452B;
    --gold-grad: linear-gradient(231.82deg, #69452B 27.99%, #CF8855 102.97%);
    --gold-grad-text: linear-gradient(254.65deg, #69452B 10.34%, #CF8855 105.49%);
    --topbar-h: 40px;
    --nav-h: 72px;
    --radius-sm: 8px;
    --radius: 10px;
    --radius-lg: 14px;
    --transition: 0.28s ease;
}

[data-theme="light"] {
    --bg: #F7F7F7;
    --bg-nav: rgba(255,255,255,0.6);
    --bg-topbar: #FFFFFF;
    --bg-search: rgba(255,252,246,0.97);
    --bg-input: rgba(255,255,255,0.8);
    --bg-card: rgba(224,191,156,0.6);
    --text-primary: #1F2933;
    --text-secondary: #69452B;
    --text-muted: #9B7B52;
    --text-nav: #1F2933;
    --border: rgba(156,107,46,0.2);
    --border-input: rgba(218,135,75,0.4);
    --shadow: 0 4px 24px rgba(60,35,10,0.12);
    --shadow-card: 2px 3px 6px rgba(0,0,0,0.15);
    --overlay: linear-gradient(to right,rgba(30,18,6,0.55) 0%,rgba(30,18,6,0.25) 55%,rgba(30,18,6,0.08) 100%);
    --section-alt-bg: rgba(224,191,156,0.6);
    --input-text: #1F2933;
}

[data-theme="dark"] {
    --bg: #111111;
    --bg-nav: rgba(30,30,30,0.7);
    --bg-topbar: #111111;
    --bg-search: rgba(30,30,30,0.85);
    --bg-input: #2A2A2A;
    --bg-card: rgba(30,30,30,0.92);
    --text-primary: #FFFFFF;
    --text-secondary: #C8A27A;
    --text-muted: #D9D9D9;
    --text-nav: #D9D9D9;
    --border: rgba(200,162,122,0.4);
    --border-input: rgba(200,162,122,0.3);
    --shadow: 0 4px 32px rgba(0,0,0,0.55);
    --shadow-card: 3px 4px 20px rgba(200,136,90,0.6);
    --overlay: linear-gradient(270deg,rgba(0,0,0,0) 0%,rgba(126,99,80,0.4) 100%);
    --section-alt-bg: rgba(40,30,20,0.8);
    --input-text: #D9D9D9;
}

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

html {
    scroll-behavior: smooth;
}

#offers-section,
#services-section,
#about-section {
    scroll-margin-top: 80px; /* ارفع أو خفض الرقم حسب ارتفاع الـ navbar عندك */
}

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

    body[dir="rtl"] {
        font-family: 'Tajawal', sans-serif;
    }

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

ul {
    list-style: none;
}

/* ── Top Bar ── */
.topbar {
    height: var(--topbar-h);
    background: var(--bg-topbar);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    position: relative;
    z-index: 200;
    transition: background var(--transition);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-social {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
}

    .topbar-social a {
        color: var(--text-muted);
        display: flex;
        align-items: center;
        transition: color var(--transition);
    }

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

.topbar-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--text-nav);
}

    .topbar-phone svg {
        color: var(--gold);
        width: 15px;
        height: 15px;
    }

.btn-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-nav);
    font-size: 13px;
    font-weight: 500;
    padding: 3px 6px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
    font-family: inherit;
}

    .btn-lang:hover {
        color: var(--gold);
    }

    .btn-lang svg {
        width: 14px;
        height: 14px;
    }

.btn-theme {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-nav);
    font-size: 17px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color var(--transition);
}

    .btn-theme:hover {
        color: var(--gold);
    }

/* ── Navbar ── */
.navbar {
    height: var(--nav-h);
    background: var(--bg-nav);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 36px;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background var(--transition), box-shadow var(--transition);
    grid-auto-flow: column;
}

    .navbar.scrolled {
        box-shadow: var(--shadow);
    }

.nav-brand {
    grid-column: 1;
}

.nav-links {
    grid-column: 2;
}

.nav-signin-wrap {
    grid-column: 3;
}

[dir="rtl"] .nav-brand {
    grid-column: 3;
    justify-self: end;
}

[dir="rtl"] .nav-links {
    grid-column: 2;
}

[dir="rtl"] .nav-signin-wrap {
    grid-column: 1;
    justify-self: start;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    justify-self: start;
}

.nav-brand-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.nav-brand-stack {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 1px;
    align-items: flex-start;
}

[dir="rtl"] .nav-brand-stack {
    align-items: flex-end;
}

.nav-brand-text {
    font-family: 'Tajawal', serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gold-grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: .3px;
    line-height: 1.2;
}

.nav-brand-subtext {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-nav);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.65;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

.nav-links li:has(.btn-signin) {
    display: none;
}

.nav-signin-wrap {
    display: flex;
    align-items: center;
    justify-self: end;
}

.nav-link {
    color: var(--text-nav);
    font-size: 16px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: color var(--transition);
    white-space: nowrap;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 18px;
        right: 18px;
        height: 2.5px;
        background: var(--gold-2);
        border-radius: 2px;
        transform: scaleX(0);
        transition: transform var(--transition);
    }

    .nav-link:hover, .nav-link.active {
        color: var(--gold-2);
    }

        .nav-link:hover::after, .nav-link.active::after {
            transform: scaleX(1);
        }

    .nav-link.btn-signin {
        background: var(--gold-grad);
        color: #fff !important;
        font-size: 15px;
        font-weight: 700;
        padding: 10px 26px;
        border-radius: var(--radius-sm);
        transition: background var(--transition), transform var(--transition);
    }

        .nav-link.btn-signin::after {
            display: none;
        }

        .nav-link.btn-signin:hover {
            opacity: 0.88;
            transform: translateY(-1px);
        }

/* ── Hero ── */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--topbar-h) - var(--nav-h));
    min-height: 600px;
    overflow: visible;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.06);
    animation: heroZoom 22s ease-in-out infinite alternate;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

    .hero-carousel-slide.active {
        opacity: 1;
    }

.hero-slide-text {
    display: none;
    flex-direction: column;
    gap: 18px;
}

    .hero-slide-text.active {
        display: flex;
        animation: fadeUp .8s .15s both;
    }

@keyframes heroZoom {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1.13);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(252,252,252,0.01) 0%,rgba(102,102,102,0) 100%), linear-gradient(270deg,rgba(0,0,0,0) 0%,rgba(126,99,80,0.4) 100%);
}

.hero-content {
    position: absolute;
    z-index: 5;
    left: 50%;
    right: auto;
    bottom: 170px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: min(820px, calc(100% - 420px));
    max-width: 820px;
    text-align: center;
}

[dir="rtl"] .hero-content {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.hero-accent-line {
    display: none;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: 100%;
    text-align: center;
}

[dir="rtl"] .hero-text {
    align-items: center;
    text-align: center;
}

.hero-tagline {
    font-family: 'Tajawal', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
    color: #FFFFFF;
    margin: 0;
    opacity: 0;
    animation: fadeUp .8s .15s forwards;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.hero-title {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    margin: 0;
    opacity: 0;
    animation: fadeUp .8s .3s forwards;
    max-width: 820px;
    text-align: center;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

    .hero-title .highlight {
        background: linear-gradient(258.01deg,#C8A27A 12.45%,#A4723E 109.6%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

/* ── Category Cards ── */
.hero-cats {
    position: relative;
    margin-left : 60px;
    width: 220px;
    height: 620px;
    overflow: hidden;
    border-radius: 18px;
    direction: ltr;
    transform: translate(-28px, -45px);
}

.hero-cats-track {
    display: flex;
    flex-direction: column;
    gap: 18px;
    will-change: transform;
    animation: heroCatsScrollUp 46s linear infinite;
}

.hero-cats:hover .hero-cats-track {
    animation-play-state: paused;
}
.cat-card {
    position: relative;
    display: block;
    width: 100%;
    height: 170px;
    min-height: 170px;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
    background: #1a0e05;
    border: 1px solid rgba(200, 162, 122, 0.45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}
.cat-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    filter: brightness(1.58) contrast(1.02) saturate(1.10);
    transition: transform var(--transition), filter var(--transition);
}

.cat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.03) 45%, rgba(0, 0, 0, 0.07) 100% );
    pointer-events: none;
}

.cat-card:hover .cat-card-img {
    transform: scale(1.08);
}

.cat-card-label {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    min-height: 38px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 999px;
    background: rgba(26, 14, 5, 0.78);
    border: 1px solid rgba(200, 162, 122, 0.65);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    white-space: normal;
    word-break: keep-all;
}

.hero-cats::before,
.hero-cats::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 5;
    pointer-events: none;
}

.hero-cats::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg), transparent);
}

.hero-cats::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg), transparent);
}

@keyframes heroCatsScrollUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}
    /*.hero-cats {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 192px;
    height: 762px;
    overflow: hidden;
    background: rgba(255,255,255,0.6);
    border: 2px solid #AD6029;
    box-shadow: 3px 4px 20px rgba(200,136,90,0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 14px;
    padding: 16px;
}

[data-theme="dark"] .hero-cats {
    background: rgba(30,30,30,0.7);
    border-color: #C8A27A;
}

[dir="rtl"] .hero-cats {
    right: auto;
    left: 120px;
}

.hero-cats::before, .hero-cats::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 3;
    pointer-events: none;
}

.hero-cats::before {
    top: 0;
    background: linear-gradient(to bottom,rgba(255,255,255,0.55) 0%,transparent 100%);
}

.hero-cats::after {
    bottom: 0;
    background: linear-gradient(to top,rgba(255,255,255,0.55) 0%,transparent 100%);
}

[data-theme="dark"] .hero-cats::before {
    background: linear-gradient(to bottom,rgba(20,20,20,0.8) 0%,transparent 100%);
}

[data-theme="dark"] .hero-cats::after {
    background: linear-gradient(to top,rgba(20,20,20,0.8) 0%,transparent 100%);
}

.hero-cats-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    will-change: transform;
}

.hero-cats:hover .hero-cats-track {
    animation-play-state: paused;
}

.cat-card {
    width: 160px;
    height: 210px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1.5px solid #AD6029;
    transition: transform var(--transition), border-color var(--transition);
    background: #1a1a1a;
    text-decoration: none;
    display: block;
    flex-shrink: 0;
}

    .cat-card:hover {
        transform: scale(1.03);
        border-color: var(--gold-light);
    }

.cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cat-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0,0,0,0.4),rgba(0,0,0,0.4)),linear-gradient(135deg,#3D2410,#1C0E05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.cat-card-label {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    color: #000;
    font-family: 'Tajawal', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    padding: 10px;
    border-radius: 16px 0px 0px 16px;
    white-space: nowrap;
    min-width: 84px;
    text-align: right;
}

[dir="rtl"] .cat-card-label {
    right: auto;
    left: 0;
    border-radius: 0px 16px 16px 0px;
}*/
    /* ── Search Bar ── */
    .search-wrap {
        position: absolute;
        bottom: -78px;
        left: 0;
        right: 0;
        z-index: 20;
        padding: 0 120px;
        filter: drop-shadow(-8px 0px 10px rgba(255,216,188,0.6)) drop-shadow(8px -8px 10px rgba(255,216,188,0.6));
    }

    .search-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        padding: 20px 40px;
        gap: 16px;
        max-width: 1488px;
        min-height: 156px;
        margin: 0 auto;
        background: rgba(20,15,10,0.92);
        border: 1px solid #C8A27A;
        box-shadow: 2px 4px 4px rgba(0,0,0,0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 16px;
    }

    [dir="ltr"] .search-box {
        align-items: flex-start;
    }

    .search-label {
        display: flex;
        align-items: center;
        gap: 16px;
        font-family: 'Tajawal', sans-serif;
        font-size: 28px;
        font-weight: 700;
        line-height: 34px;
        color: #FFFFFF;
        width: 100%;
    }

    .search-label-bar {
        width: 0;
        height: 30px;
        border-left: 4px solid #C8A27A;
        border-radius: 2px;
        flex-shrink: 0;
    }

    [dir="rtl"] .search-label {
        justify-content: flex-start;
    }

    [dir="rtl"] .search-label-bar {
        border-left: none;
        border-right: 4px solid #C8A27A;
    }

    .search-bar {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        background: transparent;
    }

    [dir="rtl"] .search-bar {
        flex-direction: row-reverse;
    }

    .search-field {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 12px;
        border-radius: 10px;
        padding: 0 20px 0 12px;
        height: 54px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(200,162,122,0.3);
        transition: border-color var(--transition);
        min-width: 0;
    }

    [dir="rtl"] .search-field {
        flex-direction: row-reverse;
        padding: 0 12px 0 20px;
    }

    .search-field:focus-within {
        border-color: #C8A27A;
        background: rgba(255,255,255,0.1);
    }

    .search-field > svg {
        color: #C8A27A;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .search-field select, .search-field input {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        color: #D9D9D9;
        font-family: 'Tajawal', sans-serif;
        font-size: 18px;
        font-weight: 400;
        min-width: 0;
    }

    .search-field select option {
        background: #1a1208;
        color: #D9D9D9;
    }

    .search-field input::placeholder, .search-field select:invalid {
        color: rgba(217,217,217,0.6);
    }
    /* ── Categories Bar ── */
    .cats-bar-wrap {
        background: var(--bg);
        padding: 100px 120px 32px;
        transition: background var(--transition);
    }

    .cats-bar-inner {
        max-width: 1488px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 16px;
        background: rgba(20,15,10,0.06);
        border: 1px solid #C8A27A;
        border-radius: 14px;
        padding: 16px 20px;
    }

    [data-theme="dark"] .cats-bar-inner {
        background: rgba(20,15,10,0.93);
    }

    .cats-bar-arrow {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(200,162,122,0.12);
        border: 1.5px solid rgba(200,162,122,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
        color: #C8A27A;
        transition: background var(--transition), transform 0.15s;
    }

    .cats-bar-arrow:hover {
        background: rgba(200,162,122,0.25);
        transform: scale(1.08);
    }

    .cats-bar-arrow:active {
        transform: scale(0.95);
    }

    .cats-bar-viewport {
        flex: 1;
        overflow: hidden;
        position: relative;
    }

    .cats-bar-track {
        display: flex;
        gap: 12px;
        transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
        will-change: transform;
        width: auto;
    }

    .cat-bar-pill {
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        background: rgba(200,162,122,0.1);
        border: 1.5px solid rgba(200,162,122,0.35);
        border-radius: 50px;
        cursor: pointer;
        flex-shrink: 0;
        transition: background var(--transition), border-color var(--transition), transform 0.15s;
        text-decoration: none;
        white-space: nowrap;
    }

    .cat-bar-pill:hover {
        background: rgba(200,162,122,0.22);
        border-color: #C8A27A;
        transform: translateY(-2px);
    }

    .cat-bar-pill.active {
        background: var(--gold-grad);
        border-color: #CF8855;
    }

    .cat-bar-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(200,162,122,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .cat-bar-icon img {
        width: 15px !important;
        height: 15px !important;
        min-width: 15px !important;
        display: block !important;
        flex-shrink: 0 !important;
    }

    .cat-bar-pill.active .cat-bar-icon {
        background: rgba(255,255,255,0.15);
    }

    .cat-bar-icon svg {
        width: 18px;
        height: 18px;
        color: #C8A27A;
    }

    .cat-bar-pill.active .cat-bar-icon svg {
        color: #fff;
    }

    .cat-bar-label {
        font-family: 'Tajawal', sans-serif;
        font-size: 17px;
        font-weight: 500;
        color: var(--text-primary);
    }

    .cat-bar-pill.active .cat-bar-label {
        color: #fff;
    }

    [dir="ltr"] .cats-bar-rtl-only {
        display: none;
    }

    [dir="rtl"] .cats-bar-ltr-only {
        display: none;
    }

    .field-divider {
        width: 1px;
        height: 26px;
        flex-shrink: 0;
        background: rgba(200,162,122,0.4);
    }

    .chevron-icon {
        width: 12px !important;
        height: 12px !important;
        color: #C8A27A !important;
    }

    .btn-search {
        background: var(--gold-grad);
        border: none;
        cursor: pointer;
        width: 56px;
        height: 54px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: opacity var(--transition), transform var(--transition);
    }

    .btn-search:hover {
        opacity: 0.85;
        transform: scale(1.04);
    }

    .btn-search svg {
        color: #fff;
        width: 26px;
        height: 26px;
    }
    /* ── Services Section ── */
    .services-section {
        background: var(--bg);
        padding: 40px 120px 60px;
        transition: background var(--transition);
    }

    .services-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 24px;
        width: 100%;
        max-width: 1488px;
        margin: 0 auto;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
    }

    .services-grid::-webkit-scrollbar {
        height: 8px;
    }

    .services-grid::-webkit-scrollbar-thumb {
        background: #C8A27A;
        border-radius: 4px;
    }

    .services-grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .service-card {
        flex: 0 0 calc(25% - 18px);
        scroll-snap-align: start;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 32px;
        gap: 20px;
        background: var(--bg-card);
        border: 1px solid #C8A27A;
        box-shadow: var(--shadow-card);
        backdrop-filter: blur(4px);
        border-radius: 16px;
        transition: transform var(--transition), box-shadow var(--transition);
    }

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 2px 6px 20px rgba(200,136,90,0.3);
    }

    @media (max-width: 1200px) {
        .service-card {
            flex: 0 0 calc(33.333% - 16px);
        }
    }

    @media (max-width: 900px) {
        .service-card {
            flex: 0 0 calc(50% - 12px);
        }
    }

    @media (max-width: 700px) {
        .services-section {
            padding: 40px 24px 60px;
        }
    }

    @media (max-width: 560px) {
        .service-card {
            flex: 0 0 100%;
        }
    }
    /* ── Auto-scroll + drag control ── */
    .services-grid.services-scroll-on {
        display: block;
        overflow: hidden;
        position: relative;
        padding: 12px 0;
        cursor: grab;
        user-select: none;
        touch-action: pan-y;
    }

    .services-grid.services-scroll-on.is-dragging {
        cursor: grabbing;
    }

    .services-track {
        display: flex;
        flex-direction: row;
        gap: 24px;
        width: max-content;
        will-change: transform;
        transition: none;
    }

    .services-group {
        display: flex;
        flex-direction: row;
        gap: 24px;
    }

    .services-scroll-on .service-card {
        flex: 0 0 clamp(260px, 24vw, 360px);
    }

    .services-scroll-on .service-card:hover {
        transform: scale(1.05);
        z-index: 2;
        box-shadow: 2px 8px 26px rgba(200,136,90,0.35);
    }
    /* Edge hover-zones that steer direction */
    .svc-edge {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 12%;
        z-index: 3;
        display: flex;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }

    .services-scroll-on:hover .svc-edge {
        opacity: 1;
    }

    .svc-edge-left {
        left: 0;
    }

    .svc-edge-right {
        right: 0;
    }

    .svc-edge svg {
        width: 26px;
        height: 26px;
        margin: 0 12px;
        color: #C8A27A;
        filter: drop-shadow(0 1px 3px rgba(0,0,0,0.55));
    }

    @media (prefers-reduced-motion: reduce) {
        .services-grid.services-scroll-on {
            overflow-x: auto;
            cursor: auto;
        }

        .services-scroll-on .services-group[aria-hidden="true"] {
            display: none;
        }
    }

    .service-card-header {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(200,162,122,0.45);
    }

    .service-card-icon {
        width: 36px;
        height: 36px;
        color: var(--text-primary);
        flex-shrink: 0;
    }

    .service-card-title {
        font-family: 'Tajawal', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--text-primary);
    }

    .service-card-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: flex-start;
    }

    .service-card-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    [dir="ltr"] .service-card-item {
        flex-direction: row;
        justify-content: flex-start;
    }

    .service-card-bullet {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--text-primary);
        flex-shrink: 0;
        margin-top: 10px;
    }

    .service-card-text {
        font-family: 'Tajawal', sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: var(--text-primary);
        line-height: 1.5;
    }

    [dir="rtl"] .service-card-text {
        text-align: right;
    }

    [dir="ltr"] .service-card-text {
        text-align: left;
    }
    /* ── Offers Section ── */
    .offers-section {
        position: relative;
        width: 100%;
        min-height: 520px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .offers-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
    }

    .offers-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(270deg,rgba(139,139,139,0.2) 0%,rgba(0,0,0,0.65) 100%);
        backdrop-filter: blur(1px);
    }

    .offers-inner {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        gap: 137px;
        padding: 80px 0;
        max-width: 1488px;
        width: 100%;
        margin: 0 auto;
    }

    .offers-cats-strip {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 18px;
        flex-shrink: 0;
    }

    .offers-cat-col {
        width: 158px;
        height: 480px;
        border-radius: 16px;
        border: 1.5px solid rgba(173,96,41,0.55);
        box-shadow: 0 8px 32px rgba(0,0,0,0.4);
        overflow: hidden;
        position: relative;
        background: #120800;
        flex-shrink: 0;
        transition: transform .35s ease, border-color .3s ease, box-shadow .35s ease;
        cursor: grab;
    }

    .offers-cat-col:active {
        cursor: grabbing;
    }

    .offers-cat-col.translate-up {
        transform: translateY(-48px);
    }

    .offers-cat-col.translate-down {
        transform: translateY(48px);
    }

    .offers-cat-col:hover {
        border-color: #CF8855;
        box-shadow: 0 20px 56px rgba(200,136,90,0.4);
    }

    .offers-cat-col.translate-up:hover {
        transform: translateY(-48px) scale(1.03);
    }

    .offers-cat-col.translate-down:hover {
        transform: translateY(48px) scale(1.03);
    }

    .offers-cat-col:hover .oc-track {
        animation-play-state: paused !important;
    }

    .oc-track {
        display: flex;
        animation-duration: 34s;
        flex-direction: column;
        gap: 16px;
        will-change: transform;
    }

    .oc-mini-card {
        width: 100%;
        height: 210px;
        border-radius: 8px;
        border: 1.5px solid #AD6029;
        position: relative; /* ← عشان الـ label يتحط صح */
        overflow: hidden; /* ← عشان الصورة ما تطلعش */
        flex-shrink: 0;
        cursor: pointer;
        background: #1a1a1a;
        transition: transform var(--transition), border-color var(--transition);
    }

    .oc-mini-card:hover {
        transform: scale(1.03);
        border-color: var(--gold-light);
    }

    .oc-mini-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .4s ease;
    }

    .oc-mini-card:hover img {
        transform: scale(1.07);
    }

    .oc-mini-label {
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 2;
        min-height: 34px;
        padding: 7px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 999px;
        background: rgba(26, 14, 5, 0.78);
        border: 1px solid rgba(200, 162, 122, 0.65);
        backdrop-filter: blur(6px);
        color: #fff;
        font-family: 'Tajawal', sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.25;
        white-space: normal;
        word-break: keep-all;
    }

    .oc-col-fade {
        position: absolute;
        left: 0;
        right: 0;
        height: 56px;
        z-index: 3;
        pointer-events: none;
    }

    .oc-col-fade--top {
        top: 0;
        background: linear-gradient(to bottom,rgba(18,8,0,0.95) 0%,transparent 100%);
    }

    .oc-col-fade--bot {
        bottom: 0;
        background: linear-gradient(to top,rgba(18,8,0,0.95) 0%,transparent 100%);
    }

    .offers-content {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 40px;
        max-width: 765px;
    }

    [dir="ltr"] .offers-content {
        align-items: flex-start;
    }

    .offers-content-inner {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    [dir="ltr"] .offers-content-inner {
        align-items: flex-start;
    }

    .offers-title {
        font-family: 'Tajawal', sans-serif;
        font-size: 40px;
        font-weight: 700;
        color: #ffffff;
        text-align: right;
        line-height: 1.2;
    }

    [dir="ltr"] .offers-title {
        text-align: left;
    }

    .offers-desc {
        font-family: 'Tajawal', sans-serif;
        font-size: 22px;
        font-weight: 500;
        color: #FFFFFF;
        text-align: right;
        line-height: 1.7;
        max-width: 700px;
    }

    [dir="ltr"] .offers-desc {
        text-align: left;
    }

    .btn-gold {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 40px;
        height: 65px;
        min-width: 200px;
        background: var(--gold-grad);
        border-radius: 10px;
        color: #fff;
        font-family: 'Tajawal', sans-serif;
        font-size: 24px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        transition: opacity var(--transition), transform var(--transition);
        text-decoration: none;
    }

    .btn-gold:hover {
        opacity: 0.88;
        transform: translateY(-2px);
    }
    /* ── Partners Section ── */
    .partners-section {
        background: #000000;
        padding: 60px 120px;
        transition: background var(--transition);
    }

    [data-theme="light"] .partners-section {
        background: #0a0a0a;
    }

    .partners-inner {
        max-width: 1488px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .partners-title {
        font-family: 'Tajawal', sans-serif;
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        background: var(--gold-grad-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .partners-logos {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: nowrap;
        width: 100%;
    }

    .partner-logo-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 16px;
        flex: 1;
        min-width: 0;
        height: 120px;
        background: #111111;
        border: 1.5px solid #C8A27A;
        border-radius: 14px;
        transition: transform var(--transition), box-shadow var(--transition);
    }

    .partner-logo-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 20px rgba(200,162,122,0.3);
    }

    .partner-logo-placeholder {
        font-family: 'Tajawal', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: var(--gold);
        text-align: center;
    }

    [data-theme="light"] .partner-logo-card {
        background: #111111;
    }
    /* ── Units Section ── */
    .units-section {
        background: var(--section-alt-bg);
        padding: 60px 10px;
        transition: background var(--transition);
    }

    .units-inner {
        max-width: 1488px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        padding: 0 10px;
    }

    .section-title-center {
        font-family: 'Tajawal', sans-serif;
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        background: var(--gold-grad-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-desc-center {
        font-family: 'Tajawal', sans-serif;
        font-size: 22px;
        font-weight: 500;
        text-align: center;
        color: var(--text-primary);
        line-height: 1.7;
        max-width: 1400px;
    }

    .units-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .units-carousel-wrap {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .units-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 40px;
        width: 100%;
        will-change: transform;
        transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    }

    .unit-card {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 16px;
    }

    [dir="ltr"] .unit-card {
        align-items: flex-start;
    }

    .unit-card-img-wrap {
        position: relative;
        width: 100%;
        height: 320px;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 2px 4px 6px rgba(0,0,0,0.15);
    }

    .unit-card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

    .unit-card-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    [dir="ltr"] .unit-card-info {
        align-items: flex-start;
    }

    .unit-card-name {
        font-family: 'Tajawal', sans-serif;
        font-size: 22px;
        font-weight: 500;
        background: var(--gold-grad-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: right;
    }

    [dir="ltr"] .unit-card-name {
        text-align: left;
    }

    .unit-card-location {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }

    [dir="ltr"] .unit-card-location {
        justify-content: flex-start;
        flex-direction: row-reverse;
    }

    .unit-card-location svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        color: var(--text-primary);
    }

    .unit-card-location span {
        font-family: 'Tajawal', sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: var(--text-primary);
    }

    .unit-card-price {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }

    [dir="ltr"] .unit-card-price {
        justify-content: flex-start;
        flex-direction: row-reverse;
    }

    .unit-price-text {
        font-family: 'Tajawal', sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: var(--text-primary);
    }

    .unit-price-currency {
        font-family: 'Tajawal', sans-serif;
        font-size: 18px;
        font-weight: 500;
        background: var(--gold-grad-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .unit-fav-btn {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.85);
        backdrop-filter: blur(6px);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease, background 0.2s ease;
        z-index: 4;
        flex-shrink: 0;
    }

    .unit-fav-btn svg {
        width: 18px;
        height: 18px;
        stroke: #C8A27A;
        fill: none;
        transition: fill 0.2s ease, stroke 0.2s ease;
        pointer-events: none;
    }

    .unit-fav-btn:hover {
        transform: scale(1.12);
        background: #fff;
    }

    .unit-fav-btn.active svg {
        fill: #e74c3c;
        stroke: #e74c3c;
    }

    .unit-fav-btn:active {
        transform: scale(0.92);
    }

    [dir="rtl"] .carousel-arrow-prev svg, [dir="rtl"] .carousel-arrow-next svg {
        transform: scaleX(-1);
    }

    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
        color: var(--text-primary);
        transition: color var(--transition);
    }

    .carousel-arrow:hover {
        color: var(--gold);
    }

    .carousel-arrow-prev {
        left: -48px;
    }

    .carousel-arrow-next {
        right: -48px;
    }

    [dir="rtl"] .carousel-arrow-prev {
        left: auto;
        right: -48px;
    }

    [dir="rtl"] .carousel-arrow-next {
        right: auto;
        left: -48px;
    }
    /* ── About Section ── */
    .about-section {
        background: #0d0d0d;
        padding: 80px 120px;
        transition: background var(--transition);
    }

    .about-inner {
        max-width: 1488px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 133px;
    }

    [dir="ltr"] .about-inner {
        flex-direction: row-reverse;
    }

    .about-img-frame {
        position: relative;
        width: 547px;
        height: 539px;
        flex-shrink: 0;
    }

    .about-diamond-ring {
        display: block;
        position: absolute;
        border-radius: 12px;
        transform: rotate(-45deg);
    }

    .about-diamond-ring-1 {
        width: 480px;
        height: 480px;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%) rotate(-45deg);
        background: rgba(42,26,10,0.85);
        z-index: 1;
    }

    .about-diamond-ring-2 {
        width: 420px;
        height: 420px;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-42%) rotate(-45deg);
        background: rgba(58,36,14,0.7);
        z-index: 2;
    }

    .about-img-main {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        border: 1px solid rgba(105,69,43,0.5);
        box-shadow: 2px 4px 4px rgba(0,0,0,0.15);
        z-index: 3;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        gap: 40px;
        max-width: 860px;
    }

    [dir="ltr"] .about-content {
        align-items: flex-start;
    }

    .about-content-top {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    [dir="ltr"] .about-content-top {
        align-items: flex-start;
    }

    .about-title {
        font-family: 'Tajawal', sans-serif;
        font-size: 40px;
        font-weight: 700;
        text-align: right;
        background: var(--gold-grad-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        width: 100%;
    }

    [dir="ltr"] .about-title {
        text-align: left;
    }

    .about-subtitle {
        font-family: 'Tajawal', sans-serif;
        font-size: 22px;
        font-weight: 400;
        color: #ffffff;
        text-align: right;
    }

    [dir="ltr"] .about-subtitle {
        text-align: left;
    }

    .about-divider {
        width: 100%;
        height: 1px;
        background: #CF8855;
        border: none;
    }

    .about-desc {
        font-family: 'Tajawal', sans-serif;
        font-size: 22px;
        font-weight: 500;
        color: #ffffff;
        text-align: right;
        line-height: 1.7;
        width: 100%;
    }

    [dir="ltr"] .about-desc {
        text-align: left;
    }
    /* ── Contact Section ── */
    .contact-section {
        background: var(--bg);
        padding: 80px 120px;
        transition: background var(--transition);
    }

    .contact-inner {
        max-width: 1488px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 80px;
    }

    [dir="ltr"] .contact-inner {
        flex-direction: row-reverse;
    }

    .contact-img-wrap {
        position: relative;
        width: 550px;
        flex-shrink: 0;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-diamond-bg {
        position: absolute;
        border-radius: 50%;
        transform: rotate(-45deg);
    }

    .contact-diamond-bg-1 {
        width: 500px;
        height: 500px;
        background: rgba(218,135,75,0.12);
    }

    .contact-diamond-bg-2 {
        width: 440px;
        height: 440px;
        background: rgba(218,135,75,0.08);
    }

    .contact-img-wrap .contact-img-main {
        position: relative;
        z-index: 2;
        width: 100%;
        height: auto;
        object-fit: contain;
        border: none;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
    }

    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 25px;
        max-width: 800px;
        flex: 1;
        align-items: flex-end;
    }

    [dir="ltr"] .contact-content {
        align-items: flex-start;
    }

    .contact-title {
        font-family: 'Tajawal', sans-serif;
        font-size: 40px;
        font-weight: 700;
        text-align: right;
        background: var(--gold-grad-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        width: 100%;
    }

    [dir="ltr"] .contact-title {
        text-align: left;
    }

    .contact-desc {
        font-family: 'Tajawal', sans-serif;
        font-size: 22px;
        font-weight: 500;
        color: var(--text-primary);
        text-align: right;
        line-height: 1.7;
        width: 100%;
    }

    [dir="ltr"] .contact-desc {
        text-align: left;
    }

    .contact-info-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
        align-items: flex-end;
    }

    [dir="ltr"] .contact-info-grid {
        align-items: flex-start;
    }

    .contact-info-row {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
        flex-wrap: wrap;
    }

    [dir="ltr"] .contact-info-row {
        justify-content: flex-start;
    }

    .contact-info-item {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    [dir="ltr"] .contact-info-item {
        align-items: flex-start;
    }

    .contact-info-label {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    [dir="ltr"] .contact-info-label {
        flex-direction: row-reverse;
        justify-content: flex-start;
    }

    .contact-info-label svg {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        color: var(--text-primary);
    }

    .contact-info-label-text {
        font-family: 'Tajawal', sans-serif;
        font-size: 26px;
        font-weight: 500;
        color: var(--text-primary);
    }

    .contact-info-value {
        font-family: 'Tajawal', sans-serif;
        font-size: 20px;
        font-weight: 400;
        color: var(--text-primary);
        opacity: 0.8;
        text-align: right;
    }

    [dir="ltr"] .contact-info-value {
        text-align: left;
    }

    .contact-btns {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    [dir="rtl"] .contact-btns {
        flex-direction: row-reverse;
    }

    .btn-gold-sm {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        height: 65px;
        padding: 0 24px;
        background: var(--gold-grad);
        border-radius: 10px;
        color: #fff;
        font-family: 'Tajawal', sans-serif;
        font-size: 22px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        transition: opacity var(--transition), transform var(--transition);
        text-decoration: none;
        flex-shrink: 0;
    }

    .btn-gold-sm:hover {
        opacity: 0.88;
        transform: translateY(-2px);
    }

    .btn-gold-sm svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        color: #fff;
    }

    .btn-gold-wide {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 65px;
        background: var(--gold-grad);
        border-radius: 10px;
        color: #fff;
        font-family: 'Tajawal', sans-serif;
        font-size: 22px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        transition: opacity var(--transition), transform var(--transition);
        text-decoration: none;
    }

    .btn-gold-wide:hover {
        opacity: 0.88;
        transform: translateY(-2px);
    }
    /* ── App Section ── */
    .app-section {
        background: #000000;
        padding: 80px 120px;
        transition: background var(--transition);
        overflow: hidden;
    }

    [data-theme="light"] .app-section {
        background: #0a0a0a;
    }

    .app-inner {
        max-width: 1488px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 80px;
        flex-direction: row;
    }

    [dir="ltr"] .app-inner {
        flex-direction: row-reverse;
    }

    .app-phone-wrap {
        position: relative;
        width: 420px;
        height: 520px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .app-glow {
        position: absolute;
        width: 500px;
        height: 500px;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        object-fit: contain;
        z-index: 1;
        pointer-events: none;
    }

    .app-blob {
        position: absolute;
        width: 400px;
        height: 380px;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-45%);
        object-fit: contain;
        z-index: 2;
        pointer-events: none;
    }

    .app-phone-img {
        position: relative;
        z-index: 3;
        width: 300px;
        object-fit: contain;
    }

    .app-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-width: 760px;
        flex: 1;
    }

    [dir="rtl"] .app-content {
        align-items: flex-end;
    }

    [dir="ltr"] .app-content {
        align-items: flex-start;
    }

    .app-title {
        font-family: 'Tajawal', sans-serif;
        font-size: 40px;
        font-weight: 700;
        background: var(--gold-grad-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        width: 100%;
    }

    [dir="rtl"] .app-title {
        text-align: right;
    }

    [dir="ltr"] .app-title {
        text-align: left;
    }

    .app-subtitle {
        font-family: 'Tajawal', sans-serif;
        font-size: 22px;
        font-weight: 400;
        color: rgba(255,255,255,0.75);
    }

    [dir="rtl"] .app-subtitle {
        text-align: right;
    }

    [dir="ltr"] .app-subtitle {
        text-align: left;
    }

    .app-divider {
        width: 100%;
        height: 1px;
        background: #CF8855;
        border: none;
        margin: 8px 0;
    }

    .app-desc {
        font-family: 'Tajawal', sans-serif;
        font-size: 22px;
        font-weight: 500;
        color: rgba(255,255,255,0.85);
        line-height: 1.7;
        width: 100%;
    }

    [dir="rtl"] .app-desc {
        text-align: right;
    }

    [dir="ltr"] .app-desc {
        text-align: left;
    }

    .app-store-btns {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-top: 8px;
    }

    [dir="rtl"] .app-store-btns {
        justify-content: flex-end;
    }

    [dir="ltr"] .app-store-btns {
        justify-content: flex-start;
    }

    .btn-store {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        height: 64px;
        padding: 0 28px;
        background: var(--gold-grad);
        border-radius: 10px;
        color: #fff;
        font-family: 'Tajawal', sans-serif;
        font-size: 22px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        transition: opacity var(--transition), transform var(--transition);
        text-decoration: none;
    }

    .btn-store:hover {
        opacity: 0.88;
        transform: translateY(-2px);
    }

    .btn-store svg {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        color: #fff;
    }
    /* ── Stats Section ── */
    .stats-section {
        position: relative;
        padding: 60px 80px;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stats-overlay {
        position: absolute;
        inset: 0;
        background: rgba(61,51,44,0.75);
        backdrop-filter: blur(2px);
    }

    .stats-grid {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: stretch;
        justify-content: center;
        width: 100%;
        max-width: 1488px;
        gap: 0;
    }

    .stat-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding: 16px 48px;
        border-right: 2px solid rgba(255,255,255,0.2);
        gap: 12px;
    }

    .stat-item:last-child {
        border-right: none;
    }

    [dir="rtl"] .stat-item {
        border-right: none;
        border-left: 2px solid rgba(255,255,255,0.2);
        align-items: flex-end;
    }

    [dir="rtl"] .stat-item:last-child {
        border-left: none;
    }

    [dir="ltr"] .stat-item {
        align-items: flex-start;
    }

    .stat-label {
        font-family: 'Tajawal', sans-serif;
        font-size: 20px;
        font-weight: 500;
        color: #C8A27A;
        text-align: right;
    }

    [dir="ltr"] .stat-label {
        text-align: left;
    }

    .stat-number {
        font-family: 'Inter','Playfair Display',serif;
        font-size: clamp(40px,5vw,60px);
        font-weight: 500;
        color: #C8A27A;
        line-height: 1.15;
    }

    [dir="rtl"] .stat-number {
        font-family: 'Tajawal',serif;
    }

    .stat-desc {
        font-family: 'Tajawal', sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: rgba(255,255,255,0.75);
        line-height: 1.5;
        max-width: 200px;
        text-align: right;
    }

    [dir="ltr"] .stat-desc {
        text-align: left;
    }
    /* ── Footer ── */
    .footer-accordion-icon {
        display: none;
    }

    .footer {
        background: linear-gradient(180deg,#3C322B 0%,#413731 100%);
        padding: 60px 120px 0;
        position: relative;
        overflow: hidden;
    }

    .footer::before {
        content: '';
        position: absolute;
        left: -60px;
        bottom: -40px;
        width: 320px;
        height: 320px;
        background: repeating-linear-gradient(45deg,rgba(68,58,51,0.8) 0px,rgba(68,58,51,0.8) 2px,transparent 2px,transparent 28px);
        pointer-events: none;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
        gap: 48px;
        margin-bottom: 48px;
        position: relative;
        z-index: 1;
    }

    [dir="rtl"] .footer-grid {
        direction: rtl;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin-bottom: 16px;
    }

    .footer-logo-ar {
        font-family: 'Tajawal',serif;
        font-size: 56px;
        font-weight: 700;
        color: #fff;
        line-height: 1;
    }

    .footer-logo-en {
        font-family: 'Lato',sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 1px;
    }

    .footer-desc {
        font-size: 15px;
        font-weight: 500;
        color: rgba(247,247,247,0.8);
        line-height: 1.6;
        max-width: 300px;
        text-align: right;
    }

    [dir="ltr"] .footer-desc {
        text-align: left;
    }

    .footer-col-title {
        font-family: 'Tajawal',sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #F7F7F7;
        margin-bottom: 20px;
        text-align: right;
    }

    [dir="ltr"] .footer-col-title {
        text-align: left;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    [dir="ltr"] .footer-links {
        align-items: flex-start;
    }

    .footer-links a {
        font-family: 'Tajawal',sans-serif;
        font-size: 20px;
        font-weight: 400;
        color: rgba(255,255,255,0.8);
        transition: color var(--transition);
        text-align: right;
    }

    .footer-links a:hover {
        color: var(--gold);
    }

    .footer-socials {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    [dir="ltr"] .footer-socials {
        align-items: flex-start;
    }

    .footer-social-link {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: 'Tajawal',sans-serif;
        font-size: 20px;
        color: rgba(255,255,255,0.8);
        transition: color var(--transition);
    }

    [dir="ltr"] .footer-social-link {
        flex-direction: row;
    }

    .footer-social-link:hover {
        color: var(--gold);
    }

    .footer-social-link svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    [dir="ltr"] .footer-contact {
        align-items: flex-start;
    }

    .footer-contact-item {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    [dir="ltr"] .footer-contact-item {
        align-items: flex-start;
    }

    .footer-contact-label {
        font-family: 'Tajawal',sans-serif;
        font-size: 20px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .footer-contact-value {
        font-family: 'Tajawal',sans-serif;
        font-size: 17px;
        font-weight: 500;
        color: rgba(247,247,247,0.8);
        text-align: right;
    }

    [dir="ltr"] .footer-contact-value {
        text-align: left;
    }

    .footer-bottom {
        position: relative;
        z-index: 1;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding: 24px 0 32px;
        text-align: center;
    }

    .footer-copyright {
        font-family: 'Cairo','Tajawal',sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: #C8A27A;
    }
    /* ── Search Box Theme ── */
    .search-box {
        background: rgba(20,15,10,0.92) !important;
    }

    [data-theme="light"] .search-box {
        background: rgba(255,248,238,0.97) !important;
        border-color: rgba(156,107,46,0.4) !important;
    }

    [data-theme="light"] .search-label {
        color: #1F2933 !important;
    }

    [data-theme="light"] .search-label-bar {
        border-color: #AD6029 !important;
    }

    [data-theme="light"] .search-field {
        background: rgba(255,255,255,0.85) !important;
        border-color: rgba(156,107,46,0.35) !important;
    }

    [data-theme="light"] .search-field:focus-within {
        background: rgba(255,255,255,0.95) !important;
    }

    [data-theme="light"] .search-field > svg {
        color: #9C6137 !important;
    }

    [data-theme="light"] .search-field select, [data-theme="light"] .search-field input {
        color: #1F2933 !important;
    }

    [data-theme="light"] .search-field select option {
        background: #fff8ee !important;
        color: #1F2933 !important;
    }

    [data-theme="light"] .search-field input::placeholder, [data-theme="light"] .search-field select:invalid {
        color: rgba(31,41,51,0.5) !important;
    }

    [data-theme="light"] .field-divider {
        background: rgba(156,107,46,0.3) !important;
    }

    [data-theme="light"] .chevron-icon {
        color: #9C6137 !important;
    }
    /* ── Date Range Picker ── */
    .drp-wrap {
        position: relative;
        flex: 1.4 !important;
    }

    #drp-text {
        flex: 1;
        cursor: pointer;
        font-family: 'Tajawal',sans-serif;
        font-size: 16px;
        background: none;
        border: none;
        outline: none;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: rgba(217,217,217,0.5);
        transition: color 0.2s;
        user-select: none;
    }

    #drp-text.has-value {
        color: var(--input-text,#D9D9D9);
    }

    .drp-popup {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: auto;
        z-index: 99999;
        background: rgba(20,15,10,0.98);
        border: 1px solid var(--gold,#C8A27A);
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 12px 48px rgba(0,0,0,0.65);
        display: none;
        direction: rtl;
        font-family: 'Tajawal',sans-serif;
        width: 280px;
        max-width: calc(100vw - 32px);
        transition: background 0.28s ease,border-color 0.28s ease;
    }

    .drp-popup.show {
        display: block;
        animation: drpFadeIn .2s ease both;
    }

    .drp-popup::before {
        content: '';
        position: absolute;
        top: -6px;
        right: 28px;
        width: 12px;
        height: 12px;
        background: rgba(20,15,10,0.98);
        border-top: 1px solid var(--gold,#C8A27A);
        border-right: 1px solid var(--gold,#C8A27A);
        transform: rotate(-45deg);
        z-index: 1;
    }

    [data-theme="light"] .drp-popup {
        background: rgba(255,248,238,0.98);
        border-color: rgba(156,107,46,0.35);
        box-shadow: 0 12px 48px rgba(60,35,10,0.18);
    }

    [data-theme="light"] .drp-popup::before {
        background: rgba(255,248,238,0.98);
        border-color: rgba(156,107,46,0.35);
    }

    [dir="ltr"] .drp-popup {
        right: auto;
        left: 0;
    }

    [dir="ltr"] .drp-popup::before {
        right: auto;
        left: 28px;
        transform: rotate(135deg);
    }

    @keyframes drpFadeIn {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }

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

    .drp-nav-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
    }

    .drp-nav-spacer {
        flex: 1;
    }

    .drp-nav {
        background: rgba(200,162,122,0.12);
        border: none;
        border-radius: 7px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--gold,#C8A27A);
        font-size: 18px;
        transition: background 0.2s,color 0.2s;
        flex-shrink: 0;
    }

    .drp-nav:hover {
        background: var(--gold,#C8A27A);
        color: #111;
    }

    .drp-months, .drp-month {
        width: 100%;
    }

    .drp-cal-title {
        text-align: center;
        margin-bottom: 10px;
    }

    .drp-mname {
        font-size: 14px;
        font-weight: 600;
        color: var(--gold,#C8A27A);
    }

    .drp-myear {
        font-size: 11px;
        color: rgba(200,162,122,0.6);
    }

    [data-theme="light"] .drp-myear {
        color: rgba(156,107,46,0.55);
    }

    .drp-grid {
        display: grid;
        grid-template-columns: repeat(7,1fr);
        gap: 2px;
        margin-top: 6px;
    }

    .drp-dow {
        text-align: center;
        font-size: 10px;
        color: rgba(200,162,122,0.55);
        padding: 4px 0;
        font-weight: 600;
    }

    [data-theme="light"] .drp-dow {
        color: rgba(156,107,46,0.5);
    }

    .drp-day {
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        border-radius: 6px;
        cursor: pointer;
        color: var(--input-text,#D9D9D9);
        font-weight: 500;
        transition: background 0.15s,color 0.15s;
        position: relative;
        user-select: none;
    }

    .drp-day:hover:not(.past):not(.empty) {
        background: rgba(200,162,122,0.2);
    }

    .drp-day.empty {
        cursor: default;
        pointer-events: none;
    }

    .drp-day.past {
        color: rgba(200,162,122,0.2);
        cursor: not-allowed;
        pointer-events: none;
    }

    .drp-day.today {
        color: var(--gold,#C8A27A);
        font-weight: 700;
    }

    [data-theme="light"] .drp-day:hover:not(.past):not(.empty) {
        background: rgba(156,107,46,0.18);
    }

    [data-theme="light"] .drp-day.past {
        color: rgba(156,107,46,0.2);
    }

    [data-theme="light"] .drp-day.today {
        color: var(--text-secondary,#69452B);
        font-weight: 700;
    }

    .drp-day.sel-start {
        background: var(--gold-grad);
        color: #fff;
        font-weight: 700;
        border-radius: 6px 0 0 6px;
        z-index: 1;
    }

    .drp-day.sel-end {
        background: var(--gold-grad);
        color: #fff;
        font-weight: 700;
        border-radius: 0 6px 6px 0;
        z-index: 1;
    }

    .drp-day.sel-start.sel-end {
        border-radius: 6px;
    }

    [dir="rtl"] .drp-day.sel-start {
        border-radius: 0 6px 6px 0;
    }

    [dir="rtl"] .drp-day.sel-end {
        border-radius: 6px 0 0 6px;
    }

    [dir="rtl"] .drp-day.sel-start.sel-end {
        border-radius: 6px;
    }

    .drp-day.in-range {
        background: rgba(200,162,122,0.14);
        border-radius: 0;
        color: var(--input-text,#D9D9D9);
    }

    [data-theme="light"] .drp-day.in-range {
        background: rgba(156,107,46,0.1);
        color: var(--text-primary,#1F2933);
    }

    .drp-footer {
        margin-top: 16px;
        padding-top: 12px;
        border-top: 1px solid rgba(200,162,122,0.2);
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }

    [data-theme="light"] .drp-footer {
        border-top-color: rgba(156,107,46,0.2);
    }

    .drp-summary {
        font-size: 12px;
        color: rgba(200,162,122,0.8);
        font-family: 'Tajawal',sans-serif;
        flex: 1;
    }

    [data-theme="light"] .drp-summary {
        color: var(--text-muted,#9B7B52);
    }

    .drp-clear {
        background: transparent;
        border: 1px solid rgba(200,162,122,0.3);
        border-radius: 7px;
        padding: 6px 14px;
        font-size: 12px;
        color: var(--gold,#C8A27A);
        cursor: pointer;
        font-family: 'Tajawal',sans-serif;
        transition: background 0.2s;
    }

    .drp-clear:hover {
        background: rgba(200,162,122,0.12);
    }

    [data-theme="light"] .drp-clear {
        border-color: rgba(156,107,46,0.35);
        color: var(--text-secondary,#69452B);
    }

    [data-theme="light"] .drp-clear:hover {
        background: rgba(156,107,46,0.08);
    }
    /* ── Location Dropdown ── */
    .loc-dropdown-wrap {
        position: relative;
        flex: 1;
        cursor: pointer;
        user-select: none;
    }

    .loc-trigger {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        min-width: 0;
        padding: 0;
        font-family: 'Tajawal',sans-serif;
        font-size: 18px;
        font-weight: 400;
        text-align: right;
        width: 100%;
    }

    [dir="ltr"] .loc-trigger {
        text-align: left;
    }

    .loc-trigger-text {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: rgba(217,217,217,0.6);
        transition: color var(--transition);
    }

    .loc-trigger-text.has-value {
        color: var(--input-text,#D9D9D9);
    }

    [data-theme="light"] .loc-trigger-text {
        color: rgba(31,41,51,0.5);
    }

    [data-theme="light"] .loc-trigger-text.has-value {
        color: #1F2933;
    }

    .loc-chevron {
        width: 12px !important;
        height: 12px !important;
        color: #C8A27A !important;
        flex-shrink: 0;
        transition: transform 0.25s ease;
        pointer-events: none;
    }

    .loc-dropdown-wrap.open .loc-chevron {
        transform: rotate(180deg);
    }

    .loc-panel {
        position: absolute;
        top: calc(100% + 10px);
        right: -20px;
        z-index: 99999;
        background: rgba(20,15,10,0.98);
        border: 1px solid var(--gold,#C8A27A);
        border-radius: 16px;
        padding: 14px;
        box-shadow: 0 12px 48px rgba(0,0,0,0.65);
        display: none;
        width: 300px;
        max-width: calc(100vw - 32px);
        animation: locFadeIn .2s ease both;
        font-family: 'Tajawal',sans-serif;
    }

    [dir="ltr"] .loc-panel {
        right: auto;
        left: -20px;
    }

    [data-theme="light"] .loc-panel {
        background: rgba(255,248,238,0.98);
        border-color: rgba(156,107,46,0.4);
        box-shadow: 0 12px 48px rgba(60,35,10,0.18);
    }

    .loc-panel::before {
        content: '';
        position: absolute;
        top: -6px;
        right: 28px;
        width: 12px;
        height: 12px;
        background: rgba(20,15,10,0.98);
        border-top: 1px solid var(--gold,#C8A27A);
        border-right: 1px solid var(--gold,#C8A27A);
        transform: rotate(-45deg);
    }

    [dir="ltr"] .loc-panel::before {
        right: auto;
        left: 28px;
        transform: rotate(135deg);
    }

    [data-theme="light"] .loc-panel::before {
        background: rgba(255,248,238,0.98);
        border-color: rgba(156,107,46,0.4);
    }

    .loc-dropdown-wrap.open .loc-panel {
        display: block;
    }

    @keyframes locFadeIn {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }

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

    .loc-search-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(200,162,122,0.3);
        border-radius: 10px;
        padding: 8px 12px;
        margin-bottom: 10px;
        transition: border-color var(--transition);
    }

    .loc-search-wrap:focus-within {
        border-color: #C8A27A;
        background: rgba(255,255,255,0.1);
    }

    [data-theme="light"] .loc-search-wrap {
        background: rgba(255,255,255,0.85);
        border-color: rgba(156,107,46,0.3);
    }

    [data-theme="light"] .loc-search-wrap:focus-within {
        background: #fff;
        border-color: #C8A27A;
    }

    .loc-search-icon {
        color: #C8A27A;
        flex-shrink: 0;
        width: 16px !important;
        height: 16px !important;
    }

    .loc-search-input {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        font-family: 'Tajawal',sans-serif;
        font-size: 15px;
        color: #D9D9D9;
        direction: rtl;
        min-width: 0;
    }

    [dir="ltr"] .loc-search-input {
        direction: ltr;
    }

    .loc-search-input::placeholder {
        color: rgba(217,217,217,0.45);
    }

    [data-theme="light"] .loc-search-input {
        color: #1F2933;
    }

    [data-theme="light"] .loc-search-input::placeholder {
        color: rgba(31,41,51,0.4);
    }

    .loc-state {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 20px 10px;
        font-size: 14px;
        color: rgba(200,162,122,0.75);
        text-align: center;
    }

    [data-theme="light"] .loc-state {
        color: rgba(105,69,43,0.7);
    }

    .loc-spinner {
        width: 22px;
        height: 22px;
        border: 2px solid rgba(200,162,122,0.2);
        border-top-color: #C8A27A;
        border-radius: 50%;
        animation: locSpin .75s linear infinite;
        flex-shrink: 0;
    }

    @keyframes locSpin {
        to {
            transform: rotate(360deg);
        }
    }

    .loc-retry {
        background: transparent;
        border: 1px solid rgba(200,162,122,0.4);
        border-radius: 8px;
        padding: 5px 14px;
        font-size: 13px;
        font-family: 'Tajawal',sans-serif;
        color: #C8A27A;
        cursor: pointer;
        margin-top: 4px;
        transition: background var(--transition);
    }

    .loc-retry:hover {
        background: rgba(200,162,122,0.15);
    }

    .loc-list {
        list-style: none;
        max-height: 220px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 0;
        margin: 0;
        scrollbar-width: thin;
        scrollbar-color: rgba(200,162,122,0.3) transparent;
    }

    .loc-list::-webkit-scrollbar {
        width: 4px;
    }

    .loc-list::-webkit-scrollbar-thumb {
        background: rgba(200,162,122,0.35);
        border-radius: 4px;
    }

    .loc-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 12px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 15px;
        font-weight: 400;
        color: rgba(217,217,217,0.9);
        transition: background 0.15s,color 0.15s;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        direction: rtl;
    }

    [dir="ltr"] .loc-item {
        direction: ltr;
    }

    .loc-item:hover {
        background: rgba(200,162,122,0.15);
        color: #C8A27A;
    }

    .loc-item.selected {
        background: var(--gold-grad);
        color: #fff;
        font-weight: 600;
    }

    .loc-item-icon {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
        color: #C8A27A;
        opacity: 0.75;
    }

    .loc-item.selected .loc-item-icon {
        color: #fff;
        opacity: 1;
    }

    [data-theme="light"] .loc-item {
        color: #1F2933;
    }

    [data-theme="light"] .loc-item:hover {
        background: rgba(156,107,46,0.1);
        color: #69452B;
    }

    [data-theme="light"] .loc-item.selected {
        color: #fff;
    }

    .loc-item mark {
        background: transparent;
        color: #C8A27A;
        font-weight: 700;
    }

    .loc-item.selected mark {
        color: #fff;
    }
    /* ── Clear Buttons ── */
    .bk-clear-btn, .loc-clear-btn {
        background: rgba(200,162,122,0.15);
        border: none;
        cursor: pointer;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #C8A27A;
        transition: background var(--transition),color var(--transition);
        padding: 0;
    }

    .bk-clear-btn:hover, .loc-clear-btn:hover {
        background: rgba(200,162,122,0.3);
        color: #fff;
    }

    [data-theme="light"] .bk-clear-btn, [data-theme="light"] .loc-clear-btn {
        color: #9C6137;
        background: rgba(156,107,46,0.12);
    }

    [data-theme="light"] .bk-clear-btn:hover, [data-theme="light"] .loc-clear-btn:hover {
        background: rgba(156,107,46,0.25);
        color: #69452B;
    }
    /* ── Booking Dropdown ── */
    .bk-dropdown-wrap {
        position: relative;
        flex: 1;
        cursor: pointer;
        user-select: none;
    }

    .bk-trigger {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        min-width: 0;
        padding: 0;
        font-family: 'Tajawal',sans-serif;
        font-size: 18px;
        font-weight: 400;
        width: 100%;
    }

    .bk-trigger-text {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: rgba(217,217,217,0.6);
        transition: color var(--transition);
        text-align: right;
    }

    [dir="ltr"] .bk-trigger-text {
        text-align: left;
    }

    .bk-trigger-text.has-value {
        color: var(--input-text,#D9D9D9);
    }

    [data-theme="light"] .bk-trigger-text {
        color: rgba(31,41,51,0.5);
    }

    [data-theme="light"] .bk-trigger-text.has-value {
        color: #1F2933;
    }

    .bk-chevron {
        width: 12px !important;
        height: 12px !important;
        color: #C8A27A !important;
        flex-shrink: 0;
        transition: transform 0.25s ease;
        pointer-events: none;
    }

    .bk-dropdown-wrap.open .bk-chevron {
        transform: rotate(180deg);
    }

    .bk-panel {
        position: absolute;
        top: calc(100% + 10px);
        right: -20px;
        z-index: 99999;
        background: rgba(20,15,10,0.98);
        border: 1px solid var(--gold,#C8A27A);
        border-radius: 16px;
        padding: 14px;
        box-shadow: 0 12px 48px rgba(0,0,0,0.65);
        display: none;
        width: 240px;
        max-width: calc(100vw - 32px);
        font-family: 'Tajawal',sans-serif;
    }

    [dir="ltr"] .bk-panel {
        right: auto;
        left: -20px;
    }

    [data-theme="light"] .bk-panel {
        background: rgba(255,248,238,0.98);
        border-color: rgba(156,107,46,0.4);
        box-shadow: 0 12px 48px rgba(60,35,10,0.18);
    }

    .bk-panel::before {
        content: '';
        position: absolute;
        top: -6px;
        right: 28px;
        width: 12px;
        height: 12px;
        background: rgba(20,15,10,0.98);
        border-top: 1px solid var(--gold,#C8A27A);
        border-right: 1px solid var(--gold,#C8A27A);
        transform: rotate(-45deg);
    }

    [dir="ltr"] .bk-panel::before {
        right: auto;
        left: 28px;
        transform: rotate(135deg);
    }

    [data-theme="light"] .bk-panel::before {
        background: rgba(255,248,238,0.98);
        border-color: rgba(156,107,46,0.4);
    }

    .bk-dropdown-wrap.open .bk-panel {
        display: block;
        animation: bkFadeIn .2s ease both;
    }

    @keyframes bkFadeIn {
        from {
            opacity: 0;
            transform: translateY(-6px);
        }

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

    .bk-search-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(200,162,122,0.3);
        border-radius: 10px;
        padding: 8px 12px;
        margin-bottom: 10px;
        transition: border-color var(--transition);
    }

    .bk-search-wrap:focus-within {
        border-color: #C8A27A;
        background: rgba(255,255,255,0.1);
    }

    [data-theme="light"] .bk-search-wrap {
        background: rgba(255,255,255,0.85);
        border-color: rgba(156,107,46,0.3);
    }

    [data-theme="light"] .bk-search-wrap:focus-within {
        background: #fff;
        border-color: #C8A27A;
    }

    .bk-search-icon {
        color: #C8A27A;
        flex-shrink: 0;
        width: 16px !important;
        height: 16px !important;
    }

    .bk-search-input {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        font-family: 'Tajawal',sans-serif;
        font-size: 15px;
        color: #D9D9D9;
        direction: rtl;
        min-width: 0;
    }

    [dir="ltr"] .bk-search-input {
        direction: ltr;
    }

    .bk-search-input::placeholder {
        color: rgba(217,217,217,0.45);
    }

    [data-theme="light"] .bk-search-input {
        color: #1F2933;
    }

    [data-theme="light"] .bk-search-input::placeholder {
        color: rgba(31,41,51,0.4);
    }

    .bk-empty {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 10px;
        font-size: 14px;
        color: rgba(200,162,122,0.75);
        text-align: center;
    }

    [data-theme="light"] .bk-empty {
        color: rgba(105,69,43,0.7);
    }

    .bk-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 0;
        margin: 0;
    }

    .bk-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 16px;
        color: rgba(217,217,217,0.9);
        transition: background 0.15s,color 0.15s;
        direction: rtl;
    }

    [dir="ltr"] .bk-item {
        direction: ltr;
    }

    .bk-item:hover {
        background: rgba(200,162,122,0.15);
        color: #C8A27A;
    }

    .bk-item.selected {
        background: var(--gold-grad);
        color: #fff;
        font-weight: 600;
    }

    .bk-item-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(200,162,122,0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
    }

    .bk-item.selected .bk-item-icon {
        background: rgba(255,255,255,0.18);
    }

    [data-theme="light"] .bk-item {
        color: #1F2933;
    }

    [data-theme="light"] .bk-item:hover {
        background: rgba(156,107,46,0.1);
        color: #69452B;
    }

    [data-theme="light"] .bk-item.selected {
        color: #fff;
    }

    .bk-item mark {
        background: transparent;
        color: #C8A27A;
        font-weight: 700;
    }

    .bk-item.selected mark {
        color: #fff;
    }
    /* ── Expert Slider ── */
    .expert-slider-wrapper {
        flex: 1;
        min-width: 300px;
        max-width: 450px;
        position: relative;
    }

    .expert-slider-box {
        position: relative;
        width: 100%;
        aspect-ratio: 1/1;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        border: 1px solid rgba(212,175,55,0.3);
    }

    .slider-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.8s ease-in-out,transform 6s ease;
        transform: scale(1);
    }

    .slider-img.active {
        opacity: 1;
        transform: scale(1.05);
    }

    .expert-slider-box::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,rgba(0,0,0,0.2),transparent);
        pointer-events: none;
    }
    /* ── Mobile ≤ 768px ── */
    @media (max-width: 768px) {
        .topbar {
            height: auto;
            min-height: 36px;
            padding: 6px 16px;
            flex-wrap: wrap;
            gap: 6px;
        }

        .topbar-left {
            gap: 8px;
            order: 1;
        }

        .topbar-social {
            position: static;
            transform: none;
            order: 3;
            width: 100%;
            justify-content: center;
            gap: 16px;
            padding: 4px 0;
            border-top: 1px solid var(--border);
            display: flex;
        }

        .topbar-phone {
            order: 2;
            font-size: 12px;
        }

            .topbar-phone svg {
                width: 13px;
                height: 13px;
            }

        .navbar {
            height: auto;
            min-height: 60px;
            padding: 10px 16px;
            grid-template-columns: 1fr auto;
            gap: 10px;
        }

        .nav-brand {
            grid-column: 1;
            grid-row: 1;
        }

        [dir="rtl"] .nav-brand {
            grid-column: 2;
            justify-self: end;
        }

        .nav-links {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: var(--bg-card);
            padding: 10px;
            border-radius: 10px;
            order: 3;
            gap: 5px;
        }

            .nav-links .nav-link {
                text-align: center;
                width: 100%;
                padding: 8px;
            }

        .nav-link::after {
            display: none;
        }

        .nav-signin-wrap {
            grid-column: 2;
            grid-row: 1;
            justify-self: end;
        }

        [dir="rtl"] .nav-signin-wrap {
            grid-column: 1;
            justify-self: start;
        }

        .nav-brand-text {
            font-size: 20px;
        }

        .nav-brand-subtext {
            font-size: 9px;
        }

        .nav-brand-img {
            width: 36px;
            height: 36px;
        }

        .nav-link.btn-signin {
            padding: 8px 16px;
            font-size: 13px;
        }

        .hero {
            height: auto;
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-bottom: 32px;
        }

        .hero-cats {
            display: none;
        }

        .hero-content {
            position: relative;
            left: 0 !important;
            right: 0 !important;
            bottom: auto;
            width: 100%;
            padding: 80px 16px 0;
            flex-direction: row;
            align-items: flex-start;
            gap: 12px;
            z-index: 5;
            max-width: 100%;
        }

        .hero-accent-line {
            height: 80px;
            border-left-width: 5px;
        }

        [dir="rtl"] .hero-accent-line {
            border-right-width: 5px;
        }

        .hero-tagline {
            font-size: 16px;
            line-height: 1.4;
        }

        .hero-title {
            font-size: 24px;
            line-height: 1.4;
            max-width: 100%;
        }

        .search-wrap {
            position: relative;
            bottom: auto;
            padding: 0 16px;
            margin-top: 24px;
            filter: none;
        }

        .search-box {
            padding: 16px;
            min-height: auto;
            border-radius: 12px;
            align-items: stretch;
        }

        .search-label {
            font-size: 18px;
            line-height: 1.4;
        }

        .search-bar {
            flex-direction: column;
            gap: 10px;
        }

        [dir="rtl"] .search-bar {
            flex-direction: column;
        }

        .search-field {
            width: 100%;
            height: 48px;
            padding: 0 14px;
        }

        [dir="rtl"] .search-field {
            padding: 0 14px;
        }

        .search-field select, .search-field input {
            font-size: 15px;
        }

        .btn-search {
            width: 100%;
            height: 48px;
            border-radius: 8px;
        }

        .services-section {
            padding: 40px 16px;
        }

        .services-grid {
            flex-direction: column;
            gap: 16px;
        }

        .service-card {
            padding: 20px;
            border-radius: 12px;
        }

        .service-card-title {
            font-size: 18px;
        }

        .service-card-text {
            font-size: 15px;
        }

        .service-card-icon {
            width: 28px;
            height: 28px;
        }

        .offers-section {
            min-height: auto;
        }

        .offers-inner {
            flex-direction: column !important;
            gap: 32px;
            padding: 40px 16px !important;
            align-items: flex-start;
        }

        [dir="rtl"] .offers-inner {
            align-items: flex-end;
        }

        .offers-cats-strip {
            gap: 10px;
            padding: 32px 0;
        }

        .offers-collage {
            display: none;
        }

        .offers-content {
            max-width: 100%;
            gap: 24px;
            align-items: stretch !important;
        }

        .offers-title {
            font-size: 26px;
        }

        .offers-desc {
            font-size: 16px;
            line-height: 1.7;
        }

        .btn-gold {
            width: 100%;
            height: 52px;
            font-size: 18px;
            padding: 0 24px;
        }

        .partners-section {
            padding: 40px 16px;
        }

        .partners-title {
            font-size: 22px;
            text-align: center;
        }

        .partners-logos {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 12px;
        }

        .partner-logo-card {
            flex: unset;
            height: 80px;
            padding: 10px;
            border-radius: 10px;
        }

        .units-section {
            padding: 40px 16px;
        }

        .units-inner {
            gap: 32px;
            padding: 0;
        }

        .section-title-center {
            font-size: 24px;
        }

        .section-desc-center {
            font-size: 16px;
        }

        .units-grid {
            flex-direction: row;
            gap: 16px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-bottom: 8px;
        }

            .units-grid::-webkit-scrollbar {
                display: none;
            }

        .unit-card {
            flex: 0 0 calc(100vw - 64px);
            scroll-snap-align: start;
        }

        .unit-card-img-wrap {
            height: 220px;
        }

        .unit-card-name {
            font-size: 17px;
        }

        .unit-card-location span, .unit-price-text, .unit-price-currency {
            font-size: 15px;
        }

        .carousel-arrow {
            display: none;
        }

        .about-section {
            padding: 48px 16px;
        }

        .about-inner {
            flex-direction: column !important;
            gap: 28px;
        }

        .about-img-frame {
            width: 100%;
            max-width: 320px;
            margin: 0 auto;
        }

        .about-content {
            gap: 20px;
            align-items: stretch;
        }

        .about-title {
            font-size: 28px;
        }

        .about-subtitle {
            font-size: 17px;
        }

        .about-desc {
            font-size: 16px;
            line-height: 1.7;
        }

        .contact-section {
            padding: 48px 16px;
        }

        .contact-inner {
            flex-direction: column !important;
            gap: 32px;
        }

        .contact-content {
            width: 100%;
            align-items: stretch;
        }

        .contact-title {
            font-size: 28px;
        }

        .contact-desc {
            font-size: 16px;
            line-height: 1.7;
        }

        .contact-info-label-text {
            font-size: 18px;
        }

        .contact-info-value {
            font-size: 16px;
        }

        .contact-info-label svg {
            width: 20px;
            height: 20px;
        }

        .contact-btns {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn-gold-sm {
            height: 52px;
            font-size: 17px;
            padding: 0 18px;
        }

        .btn-gold-wide {
            height: 52px;
            font-size: 17px;
            flex: 1;
            min-width: 140px;
        }

        .contact-info-row {
            flex-direction: column;
            gap: 16px;
        }

        .app-section {
            padding: 48px 16px;
        }

        .app-inner, [dir="ltr"] .app-inner, [dir="rtl"] .app-inner {
            flex-direction: column !important;
            gap: 32px;
            align-items: center;
        }

        .app-phone-wrap {
            width: 220px;
            height: 280px;
        }

        .app-phone-img {
            width: 180px;
        }

        .app-blob {
            width: 220px;
            height: 200px;
        }

        .app-glow {
            width: 280px;
            height: 280px;
        }

        .app-content, [dir="rtl"] .app-content, [dir="ltr"] .app-content {
            align-items: center;
            text-align: center;
            width: 100%;
        }

        .app-title, [dir="rtl"] .app-title, [dir="ltr"] .app-title {
            font-size: 26px;
            text-align: center;
        }

        .app-subtitle, [dir="rtl"] .app-subtitle, [dir="ltr"] .app-subtitle {
            font-size: 16px;
            text-align: center;
        }

        .app-desc, [dir="rtl"] .app-desc, [dir="ltr"] .app-desc {
            font-size: 15px;
            text-align: center;
            line-height: 1.7;
        }

        .app-store-btns, [dir="rtl"] .app-store-btns, [dir="ltr"] .app-store-btns {
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn-store {
            height: 52px;
            font-size: 17px;
            padding: 0 20px;
            flex: 1;
            min-width: 140px;
            max-width: 200px;
        }

        .stats-section {
            padding: 40px 16px;
            background-attachment: scroll;
        }

        .stats-grid {
            flex-direction: column;
            gap: 0;
        }

        .stat-item {
            flex: 1 1 100%;
            border-right: none !important;
            border-left: none !important;
            border-bottom: 1px solid rgba(255,255,255,0.18);
            padding: 20px 16px;
            align-items: center;
            text-align: center;
        }

        [dir="rtl"] .stat-item, [dir="ltr"] .stat-item {
            align-items: center;
        }

        .stat-item:last-child {
            border-bottom: none;
        }

        .stat-label {
            font-size: 15px;
            text-align: center;
        }

        .stat-number {
            font-size: 40px;
        }

        .stat-desc {
            font-size: 13px;
            text-align: center;
            max-width: 240px;
        }

        .footer {
            padding: 40px 16px 0;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .footer-logo-ar {
            font-size: 44px;
        }

        .footer-logo-en {
            font-size: 18px;
        }

        .footer-desc {
            font-size: 14px;
            max-width: 100%;
        }

        .footer-col-title {
            font-size: 16px;
            margin-bottom: 12px;
        }

        .footer-links a, .footer-social-link, .footer-contact-label, .footer-contact-value {
            font-size: 15px;
        }

        [dir="ltr"] .footer-links, [dir="ltr"] .footer-socials, [dir="ltr"] .footer-contact {
            align-items: flex-start;
        }

        .footer-bottom {
            padding: 16px 0 24px;
        }

        .footer-copyright {
            font-size: 13px;
        }

        .drp-popup {
            right: 0;
            left: 0;
            width: 100%;
            max-width: none;
        }

        [dir="ltr"] .drp-popup {
            left: 0;
            right: 0;
        }

        .drp-popup::before {
            display: none;
        }

        .loc-panel {
            right: -14px;
            width: calc(100vw - 32px);
            max-width: none;
        }

        [dir="ltr"] .loc-panel {
            left: -14px;
        }

        .loc-trigger {
            font-size: 15px;
        }

        .bk-panel {
            right: 0;
            left: 0;
            width: 100%;
        }

        [dir="ltr"] .bk-panel {
            left: 0;
            right: 0;
        }

        .expert-slider-wrapper {
            max-width: 100%;
        }

        .footer-grid {
            grid-template-columns: 1fr !important;
            gap: 0 !important;
        }

        .footer-brand {
            padding: 24px 0 20px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .footer-accordion {
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .footer-accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
            cursor: pointer;
            user-select: none;
            list-style: none;
        }

            .footer-accordion-header .footer-col-title {
                margin: 0;
            }

        .footer-accordion-icon {
            width: 20px;
            height: 20px;
            color: var(--gold,#C8A27A);
            flex-shrink: 0;
            transition: transform 0.3s ease;
            display: block;
        }

        .footer-accordion.open .footer-accordion-icon {
            transform: rotate(180deg);
        }

        .footer-accordion-body {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.35s ease;
            overflow: hidden;
        }

        .footer-accordion.open .footer-accordion-body {
            grid-template-rows: 1fr;
        }

        .footer-accordion-body-inner {
            overflow: hidden;
            padding-bottom: 4px;
        }

        .footer-accordion-body .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 4px 0 16px;
        }

        .footer-accordion-body .footer-socials {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 4px 0 16px;
        }

        .footer-accordion-body .footer-contact {
            padding: 4px 0 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
    }

    @media (max-width: 375px) {
        .hero-title {
            font-size: 20px;
        }

        .hero-tagline {
            font-size: 14px;
        }

        .offers-title {
            font-size: 22px;
        }

        .about-title, .contact-title, .app-title {
            font-size: 22px;
        }

        .unit-card {
            flex: 0 0 calc(100vw - 40px);
        }

        .partners-logos {
            grid-template-columns: repeat(2,1fr);
        }

        .btn-store {
            font-size: 15px;
            padding: 0 14px;
        }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        .topbar {
            padding: 0 20px;
        }

        .topbar-social {
            gap: 14px;
        }

        .navbar {
            padding: 0 24px;
        }

        .hero-content {
            left: 40px;
            bottom: 200px;
        }

        [dir="rtl"] .hero-content {
            right: 40px;
            left: auto;
        }

        .hero-title {
            font-size: 40px;
        }

        .hero-tagline {
            font-size: 22px;
        }

        .hero-cats {
            right: 24px;
            width: 160px;
            height: 480px;
        }
/*
        [dir="rtl"] .hero-cats {
            left: 24px;
            right: auto;
        }*/

        .search-wrap {
            bottom: -70px;
            padding: 0 24px;
        }

        .search-bar {
            flex-wrap: wrap;
            gap: 10px;
        }

        .search-field {
            flex: 1 1 calc(50% - 6px);
            min-width: 160px;
        }

        .btn-search {
            width: 100%;
            height: 48px;
        }

        .services-section {
            padding: 100px 24px 48px;
        }

        .services-grid {
            flex-direction: column;
            gap: 16px;
        }

        .offers-inner {
            gap: 40px;
            padding: 60px 24px !important;
        }

        .offers-cats-strip {
            gap: 14px;
            padding: 48px 0;
        }

        .offers-collage {
            width: 340px;
            height: 340px;
        }

        .partners-section {
            padding: 48px 24px;
        }

        .partners-logos {
            flex-wrap: wrap;
        }

        .partner-logo-card {
            flex: 1 1 calc(33% - 14px);
            height: 100px;
        }

        .units-section {
            padding: 48px 16px;
        }

        .about-section {
            padding: 60px 24px;
        }

        .about-inner {
            flex-direction: column !important;
            gap: 36px;
        }

        .about-img-frame {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }

        .contact-section {
            padding: 60px 24px;
        }

        .contact-inner {
            flex-direction: column !important;
            gap: 36px;
        }

        .app-section {
            padding: 60px 24px;
        }

        .app-inner, [dir="ltr"] .app-inner, [dir="rtl"] .app-inner {
            flex-direction: row !important;
            gap: 40px;
        }

        .app-phone-wrap {
            width: 280px;
            height: 360px;
        }

        .app-phone-img {
            width: 220px;
        }

        .stats-section {
            padding: 48px 24px;
            background-attachment: scroll;
        }

        .stats-grid {
            flex-wrap: wrap;
        }

        .stat-item {
            flex: 1 1 calc(50% - 1px);
            border-bottom: 1px solid rgba(255,255,255,0.15);
        }

        .footer {
            padding: 48px 24px 0;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
    }

    @media (min-width: 1025px) and (max-width: 1200px) {
        .hero-content {
            left: 60px;
            bottom: 210px;
        }

        [dir="rtl"] .hero-content {
            right: 60px;
            left: auto;
        }

        .hero-cats {
            right: 60px;
        }

/*        [dir="rtl"] .hero-cats {
            left: 60px;
            right: auto;
        }*/

        .search-wrap {
            padding: 0 60px;
        }

        .services-section {
            padding: 130px 60px 60px;
        }

        .offers-inner {
            padding: 60px 60px !important;
            gap: 60px;
        }

        .offers-cats-strip {
            gap: 16px;
            padding: 52px 0;
        }

        .offers-collage {
            width: 420px;
            height: 400px;
        }

        .partners-section {
            padding: 48px 60px;
        }

        .units-section {
            padding: 48px 16px;
        }

        .about-section {
            padding: 60px 60px;
        }

        .about-inner {
            gap: 80px;
        }

        .contact-section {
            padding: 60px 60px;
        }

        .app-section {
            padding: 60px 60px;
        }

        .footer {
            padding: 48px 60px 0;
        }

        .footer-grid {
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
        }
    }

    .partner-logo-img {
        width: 100px;
        height: 50px;
        object-fit: contain;
    }
    /* Tablet */
    @media (min-width: 768px) {
        .partner-logo-img {
            width: 120px;
            height: 60px;
        }
    }
    /* Desktop */
    @media (min-width: 1200px) {
        .partner-logo-img {
            width: 180px;
            height: 100px;
        }
    }
    /* ══════════════════════════════════════════════════════════════
   SamraDropdown — Styles
   أضف هذا الكود في آخر ملف samra.css
   ══════════════════════════════════════════════════════════════ */
    /* ── Wrapper ── */
    .bk-dropdown-wrap, .loc-dropdown-wrap {
        position: relative;
        flex: 1;
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
        cursor: pointer;
        user-select: none;
    }
    /* ── Icon الرئيسي (التقويم / الدبوس) ── */
    .dd-icon-main {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        line-height: 0;
    }

    .dd-icon-main svg {
        width: 20px !important;
        height: 20px !important;
        color: #C8A27A;
        flex-shrink: 0;
    }
    /* ── Trigger Button ── */
    .dd-trigger {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        min-width: 0;
        padding: 0;
        font-family: 'Tajawal', sans-serif;
        font-size: 18px;
        font-weight: 400;
        width: 100%;
    }

    .dd-trigger-text {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: rgba(217, 217, 217, 0.55);
        transition: color var(--transition);
        text-align: right;
    }

    [dir="ltr"] .dd-trigger-text {
        text-align: left;
    }

    .dd-trigger-text.has-value {
        color: var(--input-text, #D9D9D9);
    }

    [data-theme="light"] .dd-trigger-text {
        color: rgba(31, 41, 51, 0.45);
    }

    [data-theme="light"] .dd-trigger-text.has-value {
        color: #1F2933;
    }
    /* ── Chevron ── */
    .dd-chevron {
        width: 12px !important;
        height: 12px !important;
        color: #C8A27A !important;
        opacity: 0.75;
        flex-shrink: 0;
        transition: transform 0.25s ease;
        pointer-events: none;
    }

    .bk-dropdown-wrap.open .dd-chevron, .loc-dropdown-wrap.open .dd-chevron {
        transform: rotate(180deg);
    }
    /* ── Clear Button ── */
    .dd-clear-btn {
        background: rgba(200, 162, 122, 0.15);
        border: none;
        cursor: pointer;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #C8A27A;
        transition: background var(--transition), color var(--transition);
        padding: 0;
    }

    .dd-clear-btn:hover {
        background: rgba(200, 162, 122, 0.3);
        color: #fff;
    }

    [data-theme="light"] .dd-clear-btn {
        color: #9C6137;
        background: rgba(156, 107, 46, 0.12);
    }

    [data-theme="light"] .dd-clear-btn:hover {
        background: rgba(156, 107, 46, 0.25);
        color: #69452B;
    }
    /* ══════════════════════════════════════════
   Panel — Desktop: تحت الـ trigger مباشرةً
══════════════════════════════════════════ */
    .dd-panel {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: auto;
        z-index: 99999;
        background: rgba(20, 15, 10, 0.98);
        border: 1px solid var(--gold, #C8A27A);
        border-radius: 14px;
        padding: 14px;
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.65);
        width: 280px;
        max-width: calc(100vw - 32px);
        font-family: 'Tajawal', sans-serif;
    }

    [dir="ltr"] .dd-panel {
        right: auto;
        left: 0;
    }

    .dd-panel::before {
        content: '';
        position: absolute;
        top: -6px;
        right: 16px;
        left: auto;
        width: 10px;
        height: 10px;
        background: rgba(20, 15, 10, 0.98);
        border-top: 1px solid var(--gold, #C8A27A);
        border-right: 1px solid var(--gold, #C8A27A);
        transform: rotate(-45deg);
    }

    [dir="ltr"] .dd-panel::before {
        right: auto;
        left: 16px;
        transform: rotate(135deg);
    }

    [data-theme="light"] .dd-panel {
        background: rgba(255, 248, 238, 0.98);
        border-color: rgba(156, 107, 46, 0.4);
        box-shadow: 0 12px 48px rgba(60, 35, 10, 0.18);
    }

    [data-theme="light"] .dd-panel::before {
        background: rgba(255, 248, 238, 0.98);
        border-color: rgba(156, 107, 46, 0.4);
    }

    .bk-dropdown-wrap.open .dd-panel, .loc-dropdown-wrap.open .dd-panel {
        display: block;
        animation: ddPanelIn 0.18s ease both;
    }

    @keyframes ddPanelIn {
        from {
            opacity: 0;
            transform: translateY(-4px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* ── Search داخل الـ Panel ── */
    .dd-search-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(200, 162, 122, 0.3);
        border-radius: 10px;
        padding: 8px 12px;
        margin-bottom: 10px;
        transition: border-color var(--transition), background var(--transition);
    }

    .dd-search-wrap:focus-within {
        border-color: #C8A27A;
        background: rgba(255, 255, 255, 0.1);
    }

    [data-theme="light"] .dd-search-wrap {
        background: rgba(255, 255, 255, 0.85);
        border-color: rgba(156, 107, 46, 0.3);
    }

    [data-theme="light"] .dd-search-wrap:focus-within {
        background: #fff;
        border-color: #C8A27A;
    }

    .dd-search-icon {
        color: #C8A27A !important;
        flex-shrink: 0;
        width: 16px !important;
        height: 16px !important;
    }

    .dd-search-input {
        flex: 1;
        background: none;
        border: none;
        outline: none;
        font-family: 'Tajawal', sans-serif;
        font-size: 15px;
        color: #D9D9D9;
        min-width: 0;
        direction: rtl;
    }

    [dir="ltr"] .dd-search-input {
        direction: ltr;
    }

    .dd-search-input::placeholder {
        color: rgba(217, 217, 217, 0.45);
    }

    [data-theme="light"] .dd-search-input {
        color: #1F2933;
    }

    [data-theme="light"] .dd-search-input::placeholder {
        color: rgba(31, 41, 51, 0.4);
    }
    /* ── States (Loading / Error / Empty) ── */
    .dd-state {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 18px 10px;
        font-size: 14px;
        color: rgba(200, 162, 122, 0.75);
        text-align: center;
        font-family: 'Tajawal', sans-serif;
    }

    [data-theme="light"] .dd-state {
        color: rgba(105, 69, 43, 0.7);
    }

    .dd-state svg {
        color: rgba(200, 162, 122, 0.6);
        flex-shrink: 0;
    }

    .dd-spinner {
        color: #C8A27A !important;
    }

    .dd-retry {
        background: transparent;
        border: 1px solid rgba(200, 162, 122, 0.4);
        border-radius: 8px;
        padding: 5px 14px;
        font-size: 13px;
        font-family: 'Tajawal', sans-serif;
        color: #C8A27A;
        cursor: pointer;
        margin-top: 4px;
        transition: background var(--transition);
    }

    .dd-retry:hover {
        background: rgba(200, 162, 122, 0.15);
    }
    /* ── List ── */
    .dd-list {
        list-style: none;
        max-height: 220px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 0;
        margin: 0;
        scrollbar-width: thin;
        scrollbar-color: rgba(200, 162, 122, 0.3) transparent;
    }

    .dd-list::-webkit-scrollbar {
        width: 4px;
    }

    .dd-list::-webkit-scrollbar-thumb {
        background: rgba(200, 162, 122, 0.35);
        border-radius: 4px;
    }
    /* ── Items ── */
    .dd-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 12px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 15px;
        font-weight: 400;
        color: rgba(217, 217, 217, 0.9);
        transition: background 0.15s, color 0.15s;
        direction: rtl;
    }

    [dir="ltr"] .dd-item {
        direction: ltr;
    }

    .dd-item:hover {
        background: rgba(200, 162, 122, 0.15);
        color: #C8A27A;
    }

    .dd-item.selected {
        background: var(--gold-grad);
        color: #fff;
        font-weight: 600;
    }

    .dd-item-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(200, 162, 122, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
    }

    .dd-item.selected .dd-item-icon {
        background: rgba(255, 255, 255, 0.18);
    }

    .dd-item-label {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dd-item mark {
        background: transparent;
        color: #C8A27A;
        font-weight: 700;
    }

    .dd-item.selected mark {
        color: #fff;
    }

    [data-theme="light"] .dd-item {
        color: #1F2933;
    }

    [data-theme="light"] .dd-item:hover {
        background: rgba(156,107,46,0.1);
        color: #69452B;
    }

    [data-theme="light"] .dd-item.selected {
        color: #fff;
    }
    /* ══════════════════════════════════════════
   Mobile — لا نستخدم fixed لأن filter يكسره
   بدل كده: absolute + عرض كامل
══════════════════════════════════════════ */
    @media (max-width: 768px) {
        .dd-panel {
            position: absolute !important;
            top: calc(100% + 6px) !important;
            right: 0 !important;
            left: auto !important;
            width: calc(100vw - 32px) !important;
            max-width: calc(100vw - 32px) !important;
            border-radius: 14px !important;
            padding: 16px 14px 20px !important;
            padding-top: 20px !important;
        }

        [dir="ltr"] .dd-panel {
            right: auto !important;
            left: 0 !important;
        }

        .bk-dropdown-wrap,
        .loc-dropdown-wrap {
            overflow: visible !important;
        }

        .search-field.bk-dropdown-wrap,
        .search-field.loc-dropdown-wrap {
            overflow: visible !important;
        }

        .dd-panel::before {
            display: none !important;
        }
        /* Handle الـ Sheet */
        .dd-panel::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 32px;
            height: 3px;
            background: rgba(200, 162, 122, 0.3);
            border-radius: 2px;
        }

        .bk-dropdown-wrap.open .dd-panel,
        .loc-dropdown-wrap.open .dd-panel {
            animation: ddSlideDown 0.2s ease both;
        }

        @keyframes ddSlideDown {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }

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

        .dd-list {
            max-height: 35vh;
        }
    }
    /* ══════════════════════════════════════════
   تأكد إن الـ search-field overflow: visible
   عشان الـ panel ميتقطعش
══════════════════════════════════════════ */
    .search-field.bk-dropdown-wrap, .search-field.loc-dropdown-wrap {
        overflow: visible;
    }

    .search-bar {
        overflow: visible;
    }

    .search-box {
        overflow: visible !important;
    }
    /* ══════════════════════════════════════════════════════════════
   Offer Form — Dropdown Row
   يلف الـ .search-field dropdowns في backdrop غامق عشان
   تاخد نفس الستايل بالظبط زي Samra search bar الأصلي.
   ══════════════════════════════════════════════════════════════ */
    :root {
        --samra-gold: #C8A27A;
    }
    /* Generic compact Samra dropdown row */
    .samra-dropdown-row {
        display: flex;
        align-items: flex-end;
        gap: 14px;
        padding: 14px 16px;
        background: rgba(20,15,10,0.88);
        border: 1px solid rgba(200,162,122,0.55);
        box-shadow: 0 6px 18px rgba(0,0,0,0.20);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 12px;
        overflow: visible;
    }

    [data-theme="light"] .samra-dropdown-row {
        background: rgba(255,248,238,0.94);
        border-color: rgba(200,162,122,0.55);
        box-shadow: 0 6px 18px rgba(60,35,10,0.10);
    }

    .samra-dropdown-row .form-group {
        flex: 1;
        min-width: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .samra-dropdown-row .form-label {
        font-family: 'Tajawal', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: var(--samra-gold);
        margin: 0;
    }

    .samra-dropdown-row .search-field {
        width: 100%;
        height: 44px;
        flex: none;
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 0 14px 0 10px;
        background: rgba(255,255,255,0.055);
        border: 1px solid rgba(200,162,122,0.35);
        border-radius: 9px;
        overflow: visible;
    }

    [dir="rtl"] .samra-dropdown-row .search-field {
        flex-direction: row-reverse;
        padding: 0 10px 0 14px;
    }

    [data-theme="light"] .samra-dropdown-row .search-field {
        background: rgba(255,255,255,0.82);
        border-color: rgba(200,162,122,0.45);
    }

    .samra-dropdown-row .search-field:focus-within, .samra-dropdown-row .search-field.open {
        border-color: var(--samra-gold);
        box-shadow: 0 0 0 3px rgba(200,162,122,0.14);
    }

    .samra-dropdown-row .dd-trigger, .samra-dropdown-row .dd-trigger-text {
        font-size: 15px;
    }

    .samra-dropdown-row .dd-trigger-text.has-value, .samra-dropdown-row .dd-icon-main svg, .samra-dropdown-row .dd-chevron {
        color: var(--samra-gold) !important;
    }

    .samra-dropdown-row .dd-icon-main svg {
        width: 17px !important;
        height: 17px !important;
    }

    .samra-dropdown-row .field-divider {
        height: 22px;
        background: rgba(200,162,122,0.38);
    }

    .samra-dropdown-row .dd-panel {
        top: calc(100% + 8px);
        width: 260px;
        border-radius: 12px;
        padding: 12px;
    }
    /* Units table */
    .samra-units-card .card-section-title {
        color: var(--samra-gold);
    }

    .samra-units-table-wrap {
        border: 1px solid rgba(200,162,122,0.35);
        border-radius: 12px;
        overflow: hidden;
        background: rgba(20,15,10,0.04);
    }

    [data-theme="dark"] .samra-units-table-wrap {
        background: rgba(20,15,10,0.32);
    }

    .samra-units-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
    }

    .samra-units-table thead th {
        background: rgba(200,162,122,0.14);
        color: var(--samra-gold);
        font-family: 'Tajawal', sans-serif;
        font-size: 14px;
        font-weight: 700;
        padding: 13px 14px;
        border-bottom: 1px solid rgba(200,162,122,0.28);
    }

    .samra-units-table tbody td {
        padding: 13px 14px;
        vertical-align: middle;
        border-bottom: 1px solid rgba(200,162,122,0.14);
    }

    .samra-units-table tbody tr:last-child td {
        border-bottom: none;
    }

    .samra-units-table tbody tr {
        transition: background 0.18s ease;
    }

    .samra-units-table tbody tr:hover {
        background: rgba(200,162,122,0.08);
    }

    .asset-name-ar {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-primary, #222);
        line-height: 1.35;
    }

    .asset-name-en, .asset-location-addr, .asset-price-wknd, .asset-muted {
        font-size: 12px;
        color: rgba(148,163,184,0.92);
    }

    .asset-badge-type {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 26px;
        padding: 3px 12px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 700;
        background: rgba(200,162,122,0.12);
        color: var(--samra-gold);
        border: 1px solid rgba(200,162,122,0.35);
    }

    .asset-location-city {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-primary, #333);
    }

    .asset-price-val {
        font-size: 15px;
        font-weight: 800;
        color: var(--samra-gold);
    }

    .samra-units-table .custom-check {
        min-width: auto;
    }

    .samra-units-table .custom-check-box {
        border-color: rgba(200,162,122,0.55);
    }

    .samra-units-table .custom-check input:checked + .custom-check-box {
        background: var(--samra-gold);
        border-color: var(--samra-gold);
    }

    @media (max-width: 768px) {
        .samra-dropdown-row {
            flex-direction: column;
            align-items: stretch;
            gap: 12px;
            padding: 14px;
        }

            .samra-dropdown-row .dd-panel {
                width: calc(100vw - 64px) !important;
                max-width: calc(100vw - 64px) !important;
            }

        .samra-units-table-wrap {
            overflow-x: auto;
        }

        .samra-units-table {
            min-width: 680px;
        }
    }

    :root {
        --samra-gold: #C8A27A;
    }

    .samra-offer-card .card-section-title {
        color: var(--samra-gold);
    }

    .samra-pricing-card .card-section-title {
        color: var(--samra-gold);
    }

    .samra-asset-card .admin-card-title {
        color: var(--samra-gold, #C8A27A);
    }

    .asset-dropdown-row {
        flex-wrap: wrap;
    }

    .asset-dropdown-row .form-group {
        flex: 1 1 calc(33.333% - 12px);
        min-width: 220px;
    }

    .dd-disabled {
        cursor: default !important;
    }

    @media (max-width: 768px) {
        .asset-dropdown-row .form-group {
            flex: 1 1 100%;
            min-width: 0;
        }
    }
    /* Periods time inputs - Samra dropdown style */
    .samra-time-field {
        width: 100%;
        height: 44px;
        flex: none;
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 0 14px 0 10px;
        background: rgba(255,255,255,0.055);
        border: 1px solid rgba(200,162,122,0.35);
        border-radius: 9px;
        overflow: hidden;
        transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }

    [dir="rtl"] .samra-time-field {
        flex-direction: row-reverse;
        padding: 0 10px 0 14px;
    }

    .samra-time-field:focus-within {
        border-color: var(--samra-gold, #C8A27A);
        box-shadow: 0 0 0 3px rgba(200,162,122,0.14);
        background: rgba(255,255,255,0.08);
    }

    .samra-time-field .dd-icon-main svg {
        width: 17px !important;
        height: 17px !important;
        color: var(--samra-gold, #C8A27A);
    }

    .samra-time-input {
        flex: 1;
        min-width: 0;
        height: 100%;
        background: transparent;
        border: none;
        outline: none;
        color: var(--input-text, #D9D9D9);
        font-family: 'Tajawal', sans-serif;
        font-size: 15px;
        font-weight: 400;
        direction: ltr;
        color-scheme: dark;
    }

    .samra-time-input::-webkit-calendar-picker-indicator {
        cursor: pointer;
        opacity: 0.8;
        filter: invert(72%) sepia(20%) saturate(596%) hue-rotate(350deg) brightness(91%) contrast(87%);
    }

    .samra-time-input::-webkit-calendar-picker-indicator:hover {
        opacity: 1;
    }

    [data-theme="light"] .samra-time-field {
        background: rgba(255,255,255,0.82);
        border-color: rgba(200,162,122,0.45);
    }

    [data-theme="light"] .samra-time-field:focus-within {
        background: #fff;
    }

    [data-theme="light"] .samra-time-input {
        color: #1F2933;
        color-scheme: light;
    }

    .samra-time-picker {
        position: relative;
        width: 100%;
        height: 44px;
        flex: none;
        overflow: visible !important;
    }

    .samra-time-picker .dd-trigger {
        height: 100%;
    }

    .samra-time-panel {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        z-index: 99999;
        width: 240px;
        padding: 14px;
        background: rgba(20, 15, 10, 0.98);
        border: 1px solid var(--samra-gold, #C8A27A);
        border-radius: 14px;
        box-shadow: 0 12px 48px rgba(0,0,0,0.65);
        font-family: 'Tajawal', sans-serif;
    }

    [dir="ltr"] .samra-time-panel {
        right: auto;
        left: 0;
    }

    .samra-time-picker.open .samra-time-panel {
        display: block;
        animation: ddPanelIn 0.18s ease both;
    }

    .samra-time-picker.open .dd-chevron {
        transform: rotate(180deg);
    }

    .samra-time-columns {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 10px;
        align-items: stretch;
    }

    .samra-time-col {
        max-height: 190px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding-inline-end: 4px;
    }

    .samra-time-col::-webkit-scrollbar {
        width: 4px;
    }

    .samra-time-col::-webkit-scrollbar-thumb {
        background: rgba(200,162,122,0.35);
        border-radius: 4px;
    }

    .samra-time-sep {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--samra-gold, #C8A27A);
        font-size: 22px;
        font-weight: 700;
    }

    .samra-time-option {
        border: none;
        background: transparent;
        color: rgba(217,217,217,0.9);
        border-radius: 9px;
        padding: 9px 10px;
        cursor: pointer;
        font-family: 'Tajawal', sans-serif;
        font-size: 15px;
        transition: background 0.15s, color 0.15s;
    }

    .samra-time-option:hover {
        background: rgba(200,162,122,0.15);
        color: #C8A27A;
    }

    .samra-time-option.selected {
        background: var(--gold-grad);
        color: #fff;
        font-weight: 700;
    }

    [data-theme="light"] .samra-time-panel {
        background: rgba(255,248,238,0.98);
        border-color: rgba(156,107,46,0.4);
        box-shadow: 0 12px 48px rgba(60,35,10,0.18);
    }

    [data-theme="light"] .samra-time-option {
        color: #1F2933;
    }

    [data-theme="light"] .samra-time-option:hover {
        background: rgba(156,107,46,0.1);
        color: #69452B;
    }

    [data-theme="light"] .samra-time-option.selected {
        color: #fff;
    }
    /* Periods modal sizing */
    #per-modal .admin-modal {
        width: min(760px, calc(100vw - 32px));
        max-width: 760px;
    }

    #per-modal .admin-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 20px;
    }
    /* Compact time picker */
    #per-modal .samra-time-picker {
        height: 42px;
    }

    #per-modal .samra-time-panel {
        width: 190px;
    }

    #per-modal .samra-time-columns {
        gap: 7px;
    }

    #per-modal .samra-time-col {
        max-height: 130px;
    }

    #per-modal .samra-time-option {
        padding: 7px 8px;
        border-radius: 8px;
        font-size: 14px;
    }

    #per-modal .samra-time-sep {
        font-size: 18px;
    }

    @media (max-width: 640px) {
        #per-modal .admin-modal {
            width: calc(100vw - 24px);
        }

        #per-modal .admin-form-grid {
            grid-template-columns: 1fr;
        }

        #per-modal .samra-time-panel {
            width: 100%;
        }
    }
    /* Bigger Periods create/edit modal */
    #per-modal .admin-modal {
        width: min(900px, calc(100vw - 32px)) !important;
        max-width: 900px !important;
    }

    #per-modal .admin-modal-body {
        padding: 28px 32px !important;
    }

    #per-modal .admin-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 28px;
    }

    @media (max-width: 640px) {
        #per-modal .admin-modal {
            width: calc(100vw - 24px) !important;
            max-width: none !important;
        }

        #per-modal .admin-form-grid {
            grid-template-columns: 1fr;
        }
    }
    /* Taller Periods modal */
    #per-modal .admin-modal {
        min-height: 500px !important;
    }

    #per-modal .admin-modal-body {
        min-height: 340px !important;
        display: flex;
        align-items: center;
    }

    #per-modal .admin-form-grid {
        width: 100%;
    }
    /*.offer-search-box {
    display: flex;
    gap: 12px;
    align-items: stretch;
    padding: 8px;
    background: rgba(20, 15, 10, 0.92);
    border: 1px solid #C8A27A;
    border-radius: 16px;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .offer-search-box {
    background: rgba(255, 248, 238, 0.97);
    border-color: rgba(156, 107, 46, 0.4);
}

.offer-search-box .form-group {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.offer-search-box .form-label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

[data-theme="light"] .offer-search-box .form-label {
    color: #1F2933;
}*/
    /* Make .search-field fill its form-group inside the box */
    /*.offer-search-box .search-field {
    width: 100%;
    flex: none;
}*/
    /* Mobile: stack the two dropdowns vertically */
    /*@media (max-width: 768px) {
    .offer-search-box {
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }
}*/
