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

        body {
            font-family: 'Cairo', sans-serif;
            background: #f3f0fa;
            color: #1a1a2e;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            padding-bottom: 96px;
        }

        :root {
            --p: #6B2E99;
            --p2: #7c3aed;
            --p3: #4f46e5;
            --pdark: #1c0e33;
            --gold: #d4a02a;
            --gold-light: #e8b93a;
            --gold-dark: #b9851b;
            --plight: #f5f0ff;
            --pborder: #e9d5ff;
            --surface: #ffffff;
            --ink-primary: #140a23;
            --ink-secondary: #4a4060;
            --ink-tertiary: #9589b0;
            --shadow-sm: 0 1px 3px rgba(40, 15, 70, .08), 0 4px 12px rgba(40, 15, 70, .05);
            --shadow-md: 0 6px 20px rgba(40, 15, 70, .12), 0 1px 4px rgba(40, 15, 70, .06);
            --shadow-lg: 0 16px 44px rgba(40, 15, 70, .18), 0 2px 8px rgba(40, 15, 70, .08);
            --shadow-xl: 0 26px 70px rgba(40, 15, 70, .24), 0 4px 16px rgba(40, 15, 70, .10);
            --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
        }

        .top-bar {
            clip-path: none !important;
        }

        .hd-wrap {
            max-width: 1280px;
            margin: 0 auto;
        }

        /* ═══════════════════════════════════════════
           HERO
        ═══════════════════════════════════════════ */
        .hd-hero {
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            min-height: 420px;
            background: #0f0820;
        }

        .hd-hero img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
        }

        .hd-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(12, 6, 26, .15) 22%, rgba(12, 6, 26, .65) 58%, rgba(12, 6, 26, .92) 100%);
            pointer-events: none;
        }

        .hd-hero-badge {
            position: absolute;
            top: 30px;
            right: 22px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(28, 14, 51, .55);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--gold);
            color: #fff;
            border-radius: 30px;
            padding: 8px 18px;
            font-size: 12.5px;
            font-weight: 800;
            z-index: 2;
        }

        .hd-hero-badge i {
            color: var(--gold);
            font-size: 12px;
        }

        .hd-hero-content {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-end; /* right side in LTR */
            text-align: right;
            padding: 30px 36px 30px;
            direction: ltr;
        }

        .hd-hero-content > * {
            direction: rtl;
        }

        /* align-items:flex-end is logical (RTL flips it to the left,
           which collides with the QR/share icons pinned to physical left).
           Force it back to the physical right side in Arabic. */
        html[dir="rtl"] .hd-hero-content {
            align-items: flex-start;
        }

        .hd-hero-name {
            font-size: 38px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            text-shadow: 0 2px 16px rgba(0, 0, 0, .4);
        }

        .hd-hero-loc {
            margin-top: 8px;
            font-size: 14.5px;
            color: rgba(255, 255, 255, .88);
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .hd-hero-loc i {
            color: var(--gold);
        }

        .hd-hero-rating {
            margin-top: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hd-hero-rating .stars {
            color: var(--gold);
            font-size: 13px;
            letter-spacing: 2px;
        }

        .hd-hero-rating .score {
            color: #fff;
            font-weight: 800;
            font-size: 14px;
        }

        .hd-hero-rating .count {
            color: rgba(255, 255, 255, .6);
            font-size: 12px;
        }

        .hd-hero-price-label {
            margin-top: 18px;
            font-size: 12px;
            font-weight: 700;
            color: rgba(255, 255, 255, .7);
        }

        .hd-hero-amount {
            font-size: 32px;
            font-weight: 800;
            color: var(--gold-light);
        }

        .hd-hero-amount span {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, .75);
            margin-right: 6px;
        }

        .hd-hero-btns {
            display: flex;
            gap: 10px;
            margin-top: 18px;
        }

        .hd-btn-ghost {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 1.5px solid rgba(255, 255, 255, .4);
            background: rgba(255, 255, 255, .1);
            color: #fff;
            border-radius: 14px;
            padding: 13px 22px;
            font-family: 'Cairo', sans-serif;
            font-size: 13.5px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .hd-btn-ghost:hover {
            background: rgba(255, 255, 255, .2);
        }

        .hd-btn-gold {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
            color: #2a1700;
            border: none;
            border-radius: 14px;
            padding: 13px 26px;
            font-family: 'Cairo', sans-serif;
            font-size: 13.5px;
            font-weight: 800;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 8px 22px rgba(212, 160, 42, .45);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .hd-btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(212, 160, 42, .55);
        }

        .hd-hero-actions {
            position: absolute;
            top: 30px;
            left: 22px;
            z-index: 2;
            display: flex;
            gap: 8px;
        }

        .hd-icon-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(28, 14, 51, .5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, .3);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition);
            font-size: 14px;
        }

        .hd-icon-btn:hover {
            background: rgba(28, 14, 51, .7);
            transform: translateY(-2px);
        }

        .hd-qr-wrap {
            position: relative;
        }

        .hd-qr-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            background: rgba(28, 14, 51, .55);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(212, 160, 42, .5);
            border-radius: 16px;
            padding: 10px;
            box-shadow: 0 8px 28px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.1);
            transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
            cursor: pointer;
        }

        .hd-qr-inner:hover {
            transform: translateY(-4px) scale(1.04);
            box-shadow: 0 16px 40px rgba(0,0,0,.45), 0 0 0 2px var(--gold);
        }

        .hd-qr-inner img {
            width: 90px;
            height: 90px;
            border-radius: 10px;
            background: #fff;
            padding: 5px;
            display: block;
        }

        .hd-qr-label {
            font-size: 10.5px;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: .06em;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }

        .hd-qr-label i { font-size: 11px; }

        .hd-hero-stats {
            position: absolute;
            bottom: 30px;
            left: 22px;
            z-index: 2;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .hd-hero-stat-chip {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(28, 14, 51, .6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 14px;
            padding: 9px 16px;
            color: #fff;
            font-size: 12.5px;
            font-weight: 700;
        }

        .hd-hero-stat-chip i {
            color: var(--gold);
            font-size: 13px;
        }

        .hd-hero-stat-chip b {
            font-weight: 800;
        }

        .hd-meta-strip {
            margin: 0 24px;
            background: linear-gradient(135deg, var(--pdark), #2a1450);
            border-radius: 0 0 18px 18px;
            display: flex;
            flex-wrap: wrap;
            box-shadow: var(--shadow-md);
            border-top: 1px solid rgba(212, 160, 42, .25);
        }

        .hd-meta-item {
            flex: 1;
            min-width: 110px;
            text-align: center;
            padding: 18px 8px;
            border-left: 1px solid rgba(255, 255, 255, .08);
            color: #fff;
            transition: background .2s;
        }

        .hd-meta-item:hover {
            background: rgba(255, 255, 255, .04);
        }

        .hd-meta-item:last-child {
            border-left: none;
        }

        .hd-meta-item i {
            color: var(--gold);
            font-size: 17px;
            margin-bottom: 8px;
            display: block;
        }

        .hd-meta-item .lbl {
            font-size: 11px;
            color: rgba(255, 255, 255, .55);
            font-weight: 700;
        }

        .hd-meta-item .val {
            font-size: 13px;
            font-weight: 800;
            margin-top: 4px;
        }

        @media (max-width:700px) {
            .hd-hero {
                min-height: 340px;
            }

            .hd-hero img {
                height: 340px;
            }

            .hd-hero-content {
                align-items: center;
                text-align: center;
                padding: 18px;
            }

            .hd-hero-name {
                font-size: 26px;
            }

            .hd-hero-btns {
                flex-direction: column;
                width: 100%;
            }

            .hd-hero-stats {
                position: static;
                margin: 14px;
                justify-content: center;
            }
        }

        .hd-meta-strip {
            background: linear-gradient(135deg, var(--pdark), #3a1a63);
            display: flex;
            flex-wrap: wrap;
            box-shadow: var(--shadow-md);
        }

        .hd-meta-item {
            flex: 1;
            min-width: 110px;
            text-align: center;
            padding: 16px 8px;
            border-left: 1px solid rgba(255, 255, 255, .1);
            color: #fff;
        }

        .hd-meta-item:last-child {
            border-left: none;
        }

        .hd-meta-item i {
            color: var(--gold);
            font-size: 15px;
            margin-bottom: 7px;
            display: block;
        }

        .hd-meta-item .lbl {
            font-size: 11px;
            color: rgba(255, 255, 255, .6);
            font-weight: 600;
        }

        .hd-meta-item .val {
            font-size: 12.5px;
            font-weight: 800;
            margin-top: 3px;
        }

        /* ═══════════════════════════════════════════
           HALL INFO SECTION
        ═══════════════════════════════════════════ */
        .hd-info-section {
            background: var(--surface);
            border: 1px solid var(--pborder);
            border-radius: 24px;
            margin: 20px 35px 0;
            box-shadow: var(--shadow-md);
            overflow: hidden;
            position: relative;
        }

        .hd-info-section-title {
            font-size: 16px;
            font-weight: 800;
            color: #fff;
            padding: 22px 26px;
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: flex-end;
            background: linear-gradient(120deg, var(--pdark) 0%, #3a1a63 55%, var(--p) 100%);
            position: relative;
            overflow: hidden;
        }

        .hd-info-section-title::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(212, 160, 42, .18) 0%, transparent 70%);
            pointer-events: none;
        }

        .hd-info-section-title i {
            color: var(--gold);
            font-size: 16px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hd-info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            padding: 24px;
        }

        .hd-info-cell {
            position: relative;
            background: linear-gradient(160deg, #ffffff 0%, #faf8ff 100%);
            border: 1px solid #ece3fb;
            border-radius: 18px;
            padding: 18px 18px 16px;
            text-align: right;
            overflow: hidden;
            transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-color .35s ease;
        }

        .hd-info-cell::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--p), var(--gold), transparent);
            transform: scaleX(0);
            transition: transform .4s cubic-bezier(.4, 0, .2, 1);
        }

        .hd-info-cell:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 36px rgba(107, 46, 153, .16);
            border-color: #d8c2f7;
        }

        .hd-info-cell:hover::after {
            transform: scaleX(1);
        }

        .hd-info-cell-lbl {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            font-size: 10.5px;
            font-weight: 800;
            color: var(--ink-tertiary);
            text-transform: uppercase;
            letter-spacing: .07em;
            margin-bottom: 12px;
        }

        .hd-info-cell-lbl i {
            color: #fff;
            font-size: 13px;
            background: linear-gradient(135deg, var(--p), var(--p2));
            width: 30px;
            height: 30px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 14px rgba(107, 46, 153, .3);
            flex-shrink: 0;
            transition: transform .35s cubic-bezier(.2, .8, .2, 1);
        }

        .hd-info-cell:hover .hd-info-cell-lbl i {
            transform: rotate(-8deg) scale(1.1);
        }

        .hd-info-cell-val {
            font-size: 15px;
            font-weight: 800;
            color: var(--ink-primary);
            word-break: break-word;
            direction: rtl;
            line-height: 1.4;
        }

        .hd-info-cell-val.small {
            font-size: 12.5px;
            font-weight: 700;
        }

        @media (max-width:1024px) {
            .hd-info-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width:480px) {
            .hd-info-grid {
                grid-template-columns: 1fr;
                padding: 16px;
                gap: 10px;
            }
        }

        /* ═══════════════════════════════════════════
           TWO-COLUMN: calendar (narrow) + gallery/video (wide, ONE section)
        ═══════════════════════════════════════════ */
        .hd-top-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            align-items: stretch;
            margin: 20px 35px 0;
        }

        .hd-top-grid .hd-panel {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .hd-top-grid .hd-panel-body {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .hd-top-grid .hd-gallery-grid {
            flex: 1;
            min-height: 320px;
        }

        .hd-panel {
            background: var(--surface);
            border: 1px solid var(--pborder);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .hd-panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
        }

        .hd-tour-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #faf8ff;
            border: 1.5px solid var(--pborder);
            border-radius: 30px;
            padding: 8px 16px;
            font-size: 12.5px;
            font-weight: 700;
            color: var(--p);
            cursor: pointer;
        }

        .hd-gallery-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 8px;
            border-radius: 18px;
            overflow: hidden;
            min-height: 360px;
        }

        .hd-gallery-main {
            grid-column: 1;
            grid-row: 1 / 3;
            overflow: hidden;
            background: #e9e9e9;
            cursor: pointer;
            position: relative;
            border-radius: 18px;
        }

        .hd-gallery-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .5s cubic-bezier(.4,0,.2,1);
        }
        .hd-gallery-main:hover img { transform: scale(1.04); }

        .hd-gallery-small {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 8px;
        }

        .hd-gallery-small-item {
            overflow: hidden;
            background: #e9e9e9;
            cursor: pointer;
            position: relative;
            border-radius: 12px;
        }

        .hd-gallery-small-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .4s ease;
        }
        .hd-gallery-small-item:hover img { transform: scale(1.07); }

        /* video tile — bottom right of the small grid, dark premium */
        .hd-video-play-tile {
            position: relative;
            width: 100%; height: 100%;
            background: linear-gradient(135deg, #0f0820, #1c0e33, #2a1450);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 8px;
            cursor: pointer;
            overflow: hidden;
            border-radius: 12px;
            transition: all .35s cubic-bezier(.2,.8,.2,1);
        }

        .hd-video-play-tile::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(212,160,42,.18) 0%, transparent 65%);
            pointer-events: none;
        }

        .hd-video-play-tile:hover {
            background: linear-gradient(135deg, #1c0e33, #3a1a63, #6B2E99);
        }

        .play-btn {
            width: 52px; height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            color: #2a1700;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 8px 24px rgba(212,160,42,.5), 0 0 0 8px rgba(212,160,42,.15);
            transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
            position: relative;
            z-index: 1;
        }

        .hd-video-play-tile:hover .play-btn {
            transform: scale(1.12);
            box-shadow: 0 12px 32px rgba(212,160,42,.65), 0 0 0 14px rgba(212,160,42,.12);
        }

        .play-label {
            color: rgba(255,255,255,.9);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .06em;
            position: relative;
            z-index: 1;
        }

        .play-count {
            position: absolute;
            top: 10px; right: 10px;
            background: rgba(212,160,42,.2);
            border: 1px solid rgba(212,160,42,.4);
            border-radius: 20px;
            padding: 3px 10px;
            font-size: 10.5px;
            font-weight: 800;
            color: var(--gold);
            z-index: 1;
        }

        .hd-gallery-all-btn {
            position: absolute;
            bottom: 14px;
            left: 14px;
            background: rgba(255,255,255,.92);
            backdrop-filter: blur(10px);
            border: 1.5px solid rgba(255,255,255,.8);
            border-radius: 12px;
            padding: 9px 18px;
            font-family: 'Cairo', sans-serif;
            font-size: 12.5px;
            font-weight: 700;
            color: var(--p);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 7px;
            transition: all var(--transition);
            z-index: 2;
            box-shadow: 0 4px 16px rgba(0,0,0,.16);
        }
        .hd-gallery-all-btn:hover {
            background: #fff;
            transform: translateY(-2px);
        }

        .hd-gallery-single .hd-gallery-main {
            grid-row: 1;
            height: 360px;
        }

        .hd-gallery-single {
            grid-template-columns: 1fr !important;
        }

        .hd-panel-title {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 14.5px;
            font-weight: 800;
            color: var(--ink-primary);
        }

        .hd-panel-title i {
            color: var(--p);
            font-size: 14px;
            width: 30px;
            height: 30px;
            background: white;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
            flex-shrink: 0;
        }

        .hd-panel-body {
            padding: 16px 20px;
        }

        .hd-maps-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: linear-gradient(135deg, var(--p), var(--p2));
            color: #fff;
            border-radius: 10px;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(107, 46, 153, .35);
            transition: all var(--transition);
        }

        .hd-maps-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(107, 46, 153, .45);
        }

        /* ═══════════════════════════════════════════
           SECOND ROW: additional services (left) + packages (right)
        ═══════════════════════════════════════════ */
        .hd-mid-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            align-items: start;
            margin: 16px 35px 0;
            margin: 16px 35px 0;
        }

        .hd-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .hd-service-tile {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-align: center;
            background: #faf8ff;
            border: 1px solid var(--pborder);
            border-radius: 14px;
            padding: 14px 8px;
            transition: all var(--transition);
            cursor: default;
        }

        .hd-service-tile:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: #c4b5fd;
            background: var(--plight);
        }

        .hd-service-tile i {
            width: 36px;
            height: 36px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--p) !important;
            font-size: 14px !important;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--pborder);
        }

        .hd-service-tile span {
            font-size: 12px;
            font-weight: 700;
            color: var(--ink-secondary);
        }

        .hd-show-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1.5px solid var(--p);
            background: transparent;
            border-radius: 14px;
            padding: 10px 20px;
            font-family: 'Cairo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--p);
            cursor: pointer;
            margin-top: 14px;
            transition: all var(--transition);
            width: 100%;
            justify-content: center;
        }

        .hd-show-all-btn:hover {
            background: var(--plight);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .hd-package-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 14px;
        }

        .hd-pkg-card {
            border-radius: 20px;
            padding: 22px 24px;
            position: relative;
            overflow: hidden;
            transition: all var(--transition);
        }

        .hd-pkg-card.gold {
            background: linear-gradient(160deg, #fffdf5, #fff7e6);
            border: 1.5px solid #f0d990;
        }

        .hd-pkg-card.dark {
            background: linear-gradient(160deg, var(--pdark), #3a1a63);
            border: 1.5px solid #5a2f96;
            color: #fff;
        }

        .hd-pkg-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .hd-pkg-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
        }

        .hd-pkg-title {
            font-size: 15.5px;
            font-weight: 800;
        }

        .hd-pkg-card.gold .hd-pkg-title {
            color: var(--gold-dark);
        }

        .hd-pkg-icon {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .hd-pkg-card.gold .hd-pkg-icon {
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            color: #2a1700;
        }

        .hd-pkg-card.dark .hd-pkg-icon {
            background: rgba(255, 255, 255, .14);
            color: var(--gold);
            border: 1px solid rgba(255, 255, 255, .25);
        }

        .hd-pkg-date {
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 16px;
        }

        .hd-pkg-card.gold .hd-pkg-date {
            color: var(--ink-tertiary);
        }

        .hd-pkg-card.dark .hd-pkg-date {
            color: #d4b8ff;
        }

        .hd-pkg-price-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
        }

        .hd-pkg-price {
            font-size: 24px;
            font-weight: 800;
        }

        .hd-pkg-card.gold .hd-pkg-price {
            color: var(--gold-dark);
        }

        .hd-pkg-card.dark .hd-pkg-price {
            color: #fff;
        }

        .hd-pkg-price-unit {
            font-size: 11.5px;
            font-weight: 600;
        }

        .hd-pkg-card.gold .hd-pkg-price-unit {
            color: var(--ink-tertiary);
        }

        .hd-pkg-card.dark .hd-pkg-price-unit {
            color: rgba(255, 255, 255, .65);
        }

        .hd-pkg-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            color: #2a1700;
            font-size: 10.5px;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 20px;
        }

        .hd-offer-card {
            background: linear-gradient(135deg, var(--pdark), #3a1a63, #6B2E99);
            border-radius: 18px;
            padding: 20px 22px;
            margin-top: 12px;
            color: #fff;
            box-shadow: 0 8px 28px rgba(40, 15, 70, .35);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .hd-offer-card::before {
            content: '';
            position: absolute;
            top: -40px;
            left: -40px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(212, 160, 42, .18) 0%, transparent 65%);
            pointer-events: none;
        }

        .hd-offer-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(40, 15, 70, .45);
        }

        .hd-offer-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .hd-offer-name {
            font-size: 16px;
            font-weight: 800;
        }

        .hd-offer-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            color: #2a1700;
            border-radius: 20px;
            padding: 5px 14px;
            font-size: 12px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .hd-offer-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, .82);
            line-height: 1.7;
        }

        .hd-offer-dates {
            font-size: 11.5px;
            color: #d4b8ff;
            margin-top: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ═══════════════════════════════════════════
           ABOUT
        ═══════════════════════════════════════════ */
        .hd-section-block {
            background: var(--surface);
            border: 1px solid var(--pborder);
            border-radius: 20px;
            padding: 22px 24px;
            margin: 16px 35px 0;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition);
            display: grid;
            /* grid-template-columns: 1fr 1fr; */
            gap: 16px;
            align-items: start;
            margin: 16px 35px 0;
        }

        .hd-section-block:hover {
            box-shadow: var(--shadow-md);
        }

        .hd-sec-title {
            font-size: 17px;
            font-weight: 800;
            color: var(--ink-primary);
            margin-bottom: 16px;
            position: relative;
            padding-right: 16px;
            display: flex;
            align-items: center;
        }

        .hd-sec-title::before {
            content: '';
            position: absolute;
            right: 0;
            top: 3px;
            bottom: 3px;
            width: 4px;
            background: linear-gradient(180deg, var(--p), var(--p2));
            border-radius: 4px;
        }

        .hd-about-text {
            font-size: 14px;
            color: var(--ink-secondary);
            line-height: 2.05;
            text-align: right;
            overflow: hidden;
        }

        .hd-read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 10px;
            font-size: 13px;
            font-weight: 700;
            color: var(--p);
            text-decoration: none;
            cursor: pointer;
            border-bottom: 1.5px solid rgba(107, 46, 153, .3);
            padding-bottom: 1px;
            transition: all var(--transition);
        }

        .hd-read-more:hover {
            color: var(--p2);
            border-bottom-color: var(--p2);
        }

        /* ═══════════════════════════════════════════
           BOTTOM ROW: location
        ═══════════════════════════════════════════ */
        .hd-bottom-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin: 20px 35px 0;
            align-items: stretch;
        }

        .hd-bottom-grid .hd-panel {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .hd-bottom-grid .hd-panel-body {
            flex: 1;
        }

        .hd-bottom-grid .hd-panel-body[style*="padding:0"] iframe {
            height: 100%;
            min-height: 280px;
        }

        .hd-why-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .hd-why-item {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 14px;
            text-align: right;
            background: linear-gradient(160deg, #ffffff 0%, #faf8ff 100%);
            border: 1px solid #ece3fb;
            border-radius: 18px;
            padding: 22px 20px;
            overflow: hidden;
            transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-color .35s ease;
            cursor: default;
        }

        .hd-why-item::before {
            content: '';
            position: absolute;
            top: -30px;
            left: -30px;
            width: 110px;
            height: 110px;
            background: radial-gradient(circle, rgba(212, 160, 42, .14) 0%, transparent 70%);
            pointer-events: none;
            transition: opacity .35s ease;
            opacity: 0;
        }

        .hd-why-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transform: scaleX(0);
            transition: transform .4s cubic-bezier(.4, 0, .2, 1);
        }

        .hd-why-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(107, 46, 153, .16);
            border-color: #d8c2f7;
        }

        .hd-why-item:hover::before {
            opacity: 1;
        }

        .hd-why-item:hover::after {
            transform: scaleX(1);
        }

        .hd-why-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--p), var(--p2));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(107, 46, 153, .32);
            transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease;
            position: relative;
            z-index: 1;
        }

        .hd-why-item:hover .hd-why-icon {
            transform: rotate(-8deg) scale(1.08);
            box-shadow: 0 12px 26px rgba(107, 46, 153, .42);
        }

        .hd-why-text {
            position: relative;
            z-index: 1;
        }

        .hd-why-title {
            font-size: 14.5px;
            font-weight: 800;
            color: var(--ink-primary);
            margin-bottom: 5px;
            transition: color .3s ease;
        }

        .hd-why-item:hover .hd-why-title {
            color: var(--p);
        }

        .hd-why-sub {
            font-size: 12px;
            color: var(--ink-tertiary);
            line-height: 1.6;
        }

        .hd-why-num {
            position: absolute;
            top: 14px;
            left: 16px;
            font-size: 34px;
            font-weight: 900;
            color: rgba(107, 46, 153, .06);
            line-height: 1;
            z-index: 0;
            transition: color .35s ease;
            font-family: Georgia, serif;
        }

        .hd-why-item:hover .hd-why-num {
            color: rgba(212, 160, 42, .12);
        }

        @media (max-width:700px) {
            .hd-why-list {
                grid-template-columns: 1fr;
            }
        }

        /* ═══════════════════════════════════════════
           STICKY BOTTOM BOOKING BAR
        ═══════════════════════════════════════════ */
        .hd-sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 500;
            background: linear-gradient(135deg, var(--pdark), #3a1a63);
            border-top: 1px solid rgba(212, 160, 42, .3);
            box-shadow: 0 -10px 34px rgba(0, 0, 0, .22);
            padding: 14px 26px;
            border-radius: 20px;
            width: 80%;
            margin: 0px auto 20px auto;
        }

        .hd-sticky-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hd-sticky-fav {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .22);
            color: #fff;
            border-radius: 12px;
            padding: 11px 18px;
            font-family: 'Cairo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition);
        }

        .hd-sticky-fav:hover {
            background: rgba(255, 255, 255, .16);
        }

        .hd-sticky-mid {
            display: flex;
            align-items: center;
            gap: 26px;
            color: #fff;
            flex-wrap: wrap;
        }

        .hd-sticky-stat-lbl {
            font-size: 11px;
            color: rgba(255, 255, 255, .6);
            font-weight: 600;
        }

        .hd-sticky-stat-val {
            font-size: 16px;
            font-weight: 800;
            margin-top: 2px;
        }

        .hd-sticky-stat-val.gold {
            color: var(--gold);
        }

        .hd-sticky-field {
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .hd-sticky-field i {
            color: var(--gold);
            font-size: 13px;
        }

        .hd-sticky-field input {
            border: none;
            outline: none;
            background: transparent;
            color: #fff;
            font-family: 'Cairo', sans-serif;
            font-size: 13.5px;
            font-weight: 700;
            max-width: 140px;
        }

        .hd-sticky-field input::-webkit-calendar-picker-indicator {
            filter: invert(1);
            cursor: pointer;
        }

        .hd-sticky-guests {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hd-g-btn {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .3);
            background: rgba(255, 255, 255, .1);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            transition: all var(--transition);
        }

        .hd-g-btn:hover {
            background: var(--gold);
            color: #2a1700;
            border-color: var(--gold);
        }

        .hd-sticky-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hd-sticky-book {
            display: flex;
            align-items: center;
            gap: 9px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
            color: #2a1700;
            font-family: 'Cairo', sans-serif;
            font-size: 14.5px;
            font-weight: 800;
            border: none;
            border-radius: 14px;
            padding: 13px 28px;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(212, 160, 42, .4);
            transition: all var(--transition);
        }

        .hd-sticky-book:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(212, 160, 42, .5);
        }

        .hd-sticky-round {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
        }

        .hd-sticky-round.wa {
            background: #25D366;
        }

        .hd-sticky-round.call {
            background: rgba(255, 255, 255, .14);
            border: 1px solid rgba(255, 255, 255, .3);
        }

        .hd-sticky-round:hover {
            transform: translateY(-2px);
            filter: brightness(1.08);
        }

        /* ═══════════════════════════════════════════
           MODALS
        ═══════════════════════════════════════════ */
        .hd-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .hd-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, .82);
            backdrop-filter: blur(4px);
        }

        .hd-modal-body {
            position: relative;
            z-index: 1;
            background: var(--surface);
            border-radius: 24px;
            padding: 32px;
            max-width: 660px;
            width: 100%;
            max-height: 88vh;
            overflow-y: auto;
            font-family: 'Cairo', sans-serif;
            direction: rtl;
            box-shadow: 0 32px 80px rgba(0, 0, 0, .28);
            border: 1px solid var(--pborder);
        }

        .hd-modal-close {
            position: absolute;
            top: 16px;
            left: 16px;
            background: #fff;
            border: 1.5px solid var(--pborder);
            border-radius: 50%;
            width: 38px;
            height: 38px;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ink-secondary);
            z-index: 2;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .hd-modal-close:hover {
            background: #f5f0ff;
            border-color: #c4b5fd;
            color: var(--p);
        }

        .hd-amenities-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
        }

        .hd-amenity {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--ink-secondary);
            font-weight: 600;
            background: #faf8ff;
            border: 1px solid var(--pborder);
            border-radius: 14px;
            padding: 12px 14px;
            transition: all var(--transition);
        }

        .hd-amenity:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: #c4b5fd;
            background: var(--plight);
        }

        .hd-amenity i {
            width: 32px;
            height: 32px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--p) !important;
            font-size: 13px !important;
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--pborder);
        }

        .whatsapp-float {
            display: none !important;
        }

        /* ═══════════════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════════════ */
        /* ── Two columns (رجال/سيدات) without Bootstrap ── */
        .hd-genders-grid-row{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:16px;
            align-items:stretch;
            margin:20px 35px 0;
        }

        .hd-genders-grid-col{
            min-width:0;
        }

        @media (max-width:1024px){
            .hd-genders-grid-row{
                grid-template-columns:1fr;
            }
        }

        @media (max-width: 1024px) {

            .hd-top-grid,
            .hd-mid-grid {
                grid-template-columns: 1fr;
            }

            .hd-bottom-grid {
                grid-template-columns: 1fr;
            }

            .hd-meta-strip {
                margin: 0;
                border-radius: 0;
            }

            .hd-hero {
                margin: 14px 14px 0;
            }
        }

        @media (max-width: 700px) {
            .hd-info-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hd-amenities-grid,
            .hd-services-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hd-hero {
                min-height: 300px;
            }

            .hd-hero img {
                height: 300px;
            }

            .hd-hero-content {
                align-items: center;
                text-align: center;
                padding: 18px;
            }

            .hd-hero-name {
                font-size: 26px;
            }

            .hd-hero-btns {
                flex-direction: column;
                width: 100%;
            }

            .hd-sticky-mid {
                gap: 12px;
            }

            .hd-section-block {
                padding: 18px 16px;
            }
        }

        @media (max-width: 480px) {
            .hd-wrap {
                padding: 0 12px 40px;
            }

            .hd-info-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hd-amenities-grid {
                grid-template-columns: 1fr;
            }

            .hd-meta-item {
                min-width: 50%;
            }

            .hd-sticky-bar {
                padding: 10px 14px;
            }

            .hd-sticky-book span.lbl-full {
                display: none;
            }

            .hd-sticky-field input {
                max-width: 90px;
            }
        }