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

        html {
            scroll-behavior: smooth
        }

        :root {
            --gold: #b59045;
            --gold-lt: #d4aa60;
            --gold-dk: #8a6a28;
            --gold-bg: #faf6ee;
            --gold-pale: #f5ede0;
            --ink: #1a1a1a;
            --ink-soft: #3a3a3a;
            --ink-muted: #6b6b6b;
            --bg: #fdfaf3;
            --surface: #f6f1e6;
            --border: #e8e0d0;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 22px;
            --ease: cubic-bezier(.16, 1, .3, 1);
            --shadow-sm: 0 2px 12px rgba(0, 0, 0, .07);
            --shadow-md: 0 8px 32px rgba(0, 0, 0, .10);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, .13);
            --section-pad: clamp(52px, 6.5vw, 88px) clamp(24px, 5vw, 80px);
            --max-w: 1180px
        }

        body {
            font-family: 'Cairo', sans-serif;
            background: #fdfaf3;
            color: var(--ink);
            line-height: 1.7;
            overflow-x: hidden;
            padding-top: 0
        }

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

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

        .wa-float {
            position: fixed;
            bottom: 28px;
            left: 28px;
            z-index: 999;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25d366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
            transition: transform .3s var(--ease), box-shadow .3s
        }

        .wa-float:hover {
            transform: scale(1.12);
            box-shadow: 0 8px 28px rgba(37, 211, 102, .55)
        }

        .wa-float svg {
            width: 28px;
            height: 28px;
            fill: #fff
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 200;
            padding: 0 clamp(16px, 4vw, 52px);
            background: transparent;
            box-shadow: none;
            transition: background .4s, box-shadow .4s
        }

        .navbar.scrolled {
            background: #1c1408;
            box-shadow: 0 4px 24px rgba(0, 0, 0, .45)
        }

        .navbar__inner {
            max-width: var(--max-w);
            margin: 0 auto;
            height: 56px;
            display: flex;
            align-items: center;
            gap: 16px
        }

        .navbar__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            background: none
        }

        .navbar__logo-imgs {
            height: 40px;
            display: flex;
            align-items: center;
            background: none
        }

        .navbar__logo-imgs img {
            height: 40px;
            width: auto;
            display: block;
            background: none
        }

        .navbar__logo-imgs .logo-white {
            display: block;
            opacity: 1;
            filter: none
        }

        .navbar__logo-imgs .logo-dark {
            display: none
        }

        .navbar__logo-text {
            display: none
        }

        .navbar__logo-ar {
            font-size: 14px;
            font-weight: 800;
            color: #fff
        }

        .navbar__logo-en {
            font-size: 9px;
            font-weight: 400;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, .55)
        }

        .navbar__spacer {
            flex: 1
        }

        .navbar__cta {
            display: flex;
            gap: 10px;
            align-items: center
        }

        .btn {
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            font-size: 14px;
            padding: 9px 20px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            transition: all .25s var(--ease);
            border: 2px solid transparent
        }

        .btn-gold {
            color: #3a2800 !important;
            border-color: transparent !important;
            background: linear-gradient(135deg, #f5d87a 0%, #c9a020 30%, #f0c84a 55%, #a07010 80%, #e8c040 100%);
            box-shadow: 0 4px 18px rgba(201, 160, 32, .5), inset 0 1px 0 rgba(255, 255, 255, .32);
            position: relative;
            overflow: hidden
        }

        .btn-gold::before {
            content: '';
            position: absolute;
            top: 0;
            left: -80%;
            width: 60%;
            height: 100%;
            background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .42) 50%, transparent 80%);
            animation: shineSwipe 2.8s ease-in-out infinite
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(201, 160, 32, .65), inset 0 1px 0 rgba(255, 255, 255, .32)
        }

        .btn-outline {
            color: #3a2800 !important;
            border-color: transparent !important;
            background: linear-gradient(135deg, #f5d87a 0%, #c9a020 30%, #f0c84a 55%, #a07010 80%, #e8c040 100%) !important;
            box-shadow: 0 4px 18px rgba(201, 160, 32, .5), inset 0 1px 0 rgba(255, 255, 255, .32);
            position: relative;
            overflow: hidden
        }

        .btn-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: -80%;
            width: 60%;
            height: 100%;
            background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .42) 50%, transparent 80%);
            animation: shineSwipe 2.8s ease-in-out infinite
        }

        .btn-outline:hover {
            background: linear-gradient(135deg, #f5d87a 0%, #c9a020 30%, #f0c84a 55%, #a07010 80%, #e8c040 100%) !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(201, 160, 32, .65)
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 13px
        }

        .hero {
            position: relative;
            min-height: 88vh;
            display: flex;
            align-items: flex-start;
            overflow: hidden;
            padding-top: 0;
            flex-direction: column
        }

        .hero__bg {
            position: absolute;
            inset: 0;
            z-index: 0
        }

        .hero__bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center
        }

        .hero__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(8, 5, 1, .22) 0%, rgba(8, 5, 1, .38) 50%, rgba(6, 3, 0, .64) 100%)
        }

        .hero__content {
            position: relative;
            z-index: 2;
            max-width: var(--max-w);
            margin: 0 auto;
            padding: clamp(80px, 10vh, 120px) clamp(20px, 5vw, 64px) clamp(56px, 7vh, 88px);
            width: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: auto;
            flex: 1;
            justify-content: center
        }

        .hero__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px
        }

        .hero__eyebrow-bar {
            width: 28px;
            height: 1px;
            background: var(--gold-lt)
        }

        .hero__eyebrow-txt {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, .75)
        }

        .hero__title {
            font-size: clamp(34px, 5.5vw, 68px);
            font-weight: 900;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 16px;
            letter-spacing: .5px
        }

        .hero__title .main-line {
            display: block;
            font-size: .52em;
            font-weight: 400;
            color: rgba(255, 255, 255, .6);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 8px
        }

        .hero__title .brand-line {
            display: block;
            color: #fff;
            font-weight: 900
        }

        .hero__sub {
            font-size: clamp(14px, 1.6vw, 16px);
            color: rgba(255, 255, 255, .7);
            max-width: 500px;
            margin-bottom: 32px;
            line-height: 1.85
        }

        .hero__btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center
        }

        .hero__pills {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-top: 36px;
            width: 100%;
            max-width: 400px
        }

        .hero__pill {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            background: rgba(10, 6, 2, .62);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            text-align: center;
            min-height: 38px
        }

        .hero__pill svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
            fill: var(--gold-lt)
        }

        .hero__stats {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: rgba(10, 7, 2, .55);
            backdrop-filter: blur(8px)
        }

        .hero__stat {
            padding: 18px clamp(10px, 2vw, 28px);
            border-right: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center
        }

        .hero__stat:first-child {
            border-right: none
        }

        .hero__stat-num {
            font-size: clamp(20px, 2.5vw, 30px);
            font-weight: 900;
            color: #fff;
            line-height: 1;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 3px
        }

        .hero__stat-num sup {
            font-size: .48em;
            color: var(--gold-lt)
        }

        .hero__stat-lbl {
            font-size: 11px;
            color: rgba(255, 255, 255, .45);
            margin-top: 5px
        }

        .gap-divider {
            background: #ede9e1;
            height: 52px
        }

        .gap-divider-sm {
            background: #f4f1eb;
            height: 40px
        }

        .merged-bottom {
            background: rgba(12, 8, 2, .82);
            padding: 28px clamp(16px, 5vw, 64px) 40px;
            border-bottom: 1px solid rgba(181, 144, 69, .12)
        }

        .merged-cta {
            max-width: var(--max-w);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 18px
        }

        .btn-gold-shine {
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 800;
            padding: 13px 28px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            border: none;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            color: #3a2800;
            background: linear-gradient(135deg, #f5d87a 0%, #c9a020 30%, #f0c84a 55%, #a07010 80%, #e8c040 100%);
            box-shadow: 0 4px 18px rgba(201, 160, 32, .55), inset 0 1px 0 rgba(255, 255, 255, .35);
            transition: transform .25s var(--ease), box-shadow .25s
        }

        .btn-gold-shine::before {
            content: '';
            position: absolute;
            top: 0;
            left: -80%;
            width: 60%;
            height: 100%;
            background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .45) 50%, transparent 80%);
            animation: shineSwipe 2.8s ease-in-out infinite
        }

        @keyframes goldShimmer {
            0% {
                background-position: 0% center
            }

            100% {
                background-position: 200% center
            }
        }

        @keyframes shineSwipe {
            0% {
                left: -80%;
                opacity: 0
            }

            10% {
                opacity: 1
            }

            50% {
                left: 130%;
                opacity: 1
            }

            100% {
                left: 130%;
                opacity: 0
            }
        }

        .btn-gold-shine:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(201, 160, 32, .65), inset 0 1px 0 rgba(255, 255, 255, .35)
        }

        .section {
            padding: var(--section-pad)
        }

        .section__inner {
            max-width: var(--max-w);
            margin: 0 auto
        }

        .section--alt {
            background: #fdfaf3
        }

        .section--gold {
            background: #fdfaf3
        }

        .section--dark {
            background: #0f0c06;
            color: #fff
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px
        }

        .section-eyebrow::before {
            content: '';
            width: 26px;
            height: 1.5px;
            background: var(--gold)
        }

        .section-title {
            font-size: clamp(26px, 3.5vw, 42px);
            font-weight: 900;
            color: var(--ink);
            line-height: 1.2;
            margin-bottom: 14px
        }

        .section-title .acc {
            color: var(--gold)
        }

        .section-desc {
            font-size: 15px;
            color: var(--ink-muted);
            line-height: 1.85
        }

        .suites__grid {
            display: flex;
            flex-direction: column;
            gap: 28px;
            margin-top: 40px;
            max-width: 860px;
            margin-left: auto;
            margin-right: auto
        }

        .suite-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: none;
            box-shadow: 0 6px 28px rgba(0, 0, 0, .10), 0 2px 8px rgba(0, 0, 0, .06);
            transition: transform .4s var(--ease), box-shadow .4s
        }

        .suite-card:nth-child(even) {
            direction: ltr
        }

        .suite-card:nth-child(even) .suite-card__body {
            direction: rtl
        }

        .suite-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 52px rgba(0, 0, 0, .16), 0 6px 18px rgba(0, 0, 0, .08)
        }

        .suite-card:hover::before {
            opacity: 1
        }

        .suite-card:nth-child(even) {
            direction: ltr
        }

        .suite-card:nth-child(even) .suite-card__body {
            direction: rtl
        }

        .suite-card__imgs {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
            min-height: unset
        }

        .suite-card__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform .5s var(--ease)
        }

        .suite-card:hover .suite-card__img {
            transform: scale(1.04)
        }

        .suite-card__badge {
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--gold);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 4px
        }

        .suite-card:nth-child(even) .suite-card__badge {
            right: auto;
            left: 14px
        }

        .suite-card__body {
            padding: clamp(18px, 2vw, 28px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
            background: #fff;
            align-items: flex-start;
            text-align: right
        }

        .suite-card__type {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold)
        }

        .suite-card__name {
            font-size: clamp(15px, 2vw, 20px);
            font-weight: 900;
            color: var(--ink);
            text-align: right
        }

        .suite-card__desc {
            font-size: 14px;
            color: var(--ink-muted);
            line-height: 1.8
        }

        .suite-card__amenities {
            display: flex;
            flex-wrap: wrap;
            gap: 8px
        }

        .amenity {
            font-size: 12px;
            font-weight: 600;
            background: var(--gold-bg);
            color: var(--gold-dk);
            padding: 5px 12px;
            border-radius: 20px;
            border: 1px solid rgba(181, 144, 69, .2)
        }

        .suite-card__footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            margin-top: 4px;
            flex-wrap: wrap;
            gap: 12px
        }

        .suite-card__price {
            font-size: 13px;
            color: var(--ink-muted)
        }

        .suite-card__price strong {
            font-size: 24px;
            font-weight: 900;
            color: var(--ink);
            margin-left: 4px
        }

        .suite-card__size {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: var(--ink-muted);
            font-weight: 600;
            justify-content: flex-start
        }

        .cta-band {
            background: var(--gold);
            padding: 28px clamp(16px, 5vw, 64px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px
        }

        .cta-band__text {
            color: #fff;
            font-size: clamp(15px, 2vw, 19px);
            font-weight: 700
        }

        .cta-band__text span {
            font-weight: 400;
            font-size: .9em;
            opacity: .85;
            display: block
        }

        .btn-white {
            color: #3a2800;
            border: none;
            font-family: 'Cairo', sans-serif;
            font-weight: 800;
            font-size: 14px;
            padding: 12px 26px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform .25s var(--ease), box-shadow .25s;
            flex-shrink: 0;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f5d87a 0%, #c9a020 30%, #f0c84a 55%, #a07010 80%, #e8c040 100%);
            box-shadow: 0 4px 18px rgba(201, 160, 32, .5), inset 0 1px 0 rgba(255, 255, 255, .32)
        }

        .btn-white::before {
            content: '';
            position: absolute;
            top: 0;
            left: -80%;
            width: 60%;
            height: 100%;
            background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .42) 50%, transparent 80%);
            animation: shineSwipe 2.8s ease-in-out infinite
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(201, 160, 32, .65)
        }

        .features__layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: clamp(36px, 5vw, 72px);
            align-items: center;
            margin-top: 52px;
            padding: 0 clamp(0px, 1.5vw, 20px)
        }

        .features__img-wrap {
            position: relative
        }

        .features__img-main {
            width: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: #fdfaf3
        }

        .features__img-main img {
            width: 100%;
            aspect-ratio: auto;
            object-fit: contain;
            display: block;
            max-height: 580px
        }

        .features__badge strong {
            font-size: 20px;
            font-weight: 900
        }

        .features__list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 0 6px
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 22px 24px;
            border-radius: var(--radius-md);
            border: 1.5px solid rgba(181, 144, 69, .55);
            background: #fdfaf3;
            box-shadow: 0 0 0 0 rgba(201, 160, 32, 0), 0 0 12px rgba(181, 144, 69, .18);
            transition: box-shadow .35s, border-color .35s, background .3s
        }

        .feature-item:hover {
            border-color: rgba(201, 160, 32, .9);
            box-shadow: 0 0 18px rgba(201, 160, 32, .35), 0 4px 16px rgba(181, 144, 69, .2);
            background: #fffdf5
        }

        .feature-item__icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: rgba(181, 144, 69, .15);
            color: var(--gold);
            display: grid;
            place-items: center;
            flex-shrink: 0;
            font-size: 22px
        }

        .feature-item__title {
            font-size: 15px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 3px
        }

        .feature-item__desc {
            font-size: 13px;
            color: var(--ink-muted);
            line-height: 1.7
        }

        .services__head {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(20px, 4vw, 48px);
            align-items: end;
            margin-bottom: 60px
        }

        .services__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px
        }

        .service-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 44px 30px;
            text-align: center;
            transition: transform .3s var(--ease), box-shadow .3s;
            position: relative;
            overflow: hidden
        }

        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-lt));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform .4s var(--ease)
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md)
        }

        .service-card:hover::after {
            transform: scaleX(1);
            transform-origin: left
        }

        .service-card__icon {
            font-size: 48px;
            margin-bottom: 18px
        }

        .service-card__title {
            font-size: 17px;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 10px
        }

        .service-card__desc {
            font-size: 13px;
            color: var(--ink-muted);
            line-height: 1.75
        }

        .service-card__tag {
            display: inline-block;
            margin-top: 12px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 3px 10px;
            border-radius: 20px;
            background: var(--gold-bg);
            color: var(--gold-dk)
        }

        .discount__layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 5vw, 72px);
            align-items: center
        }

        .discount__groups {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: 28px 0
        }

        .discount__group {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(181, 144, 69, .2);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            text-align: center
        }

        .discount__group-icon {
            font-size: 28px;
            margin-bottom: 8px
        }

        .discount__group-name {
            font-size: 14px;
            font-weight: 700;
            color: #fff
        }

        .discount__visual {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px
        }

        .discount__circle {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 3px solid var(--gold-lt);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: pulseBorder 3s ease-in-out infinite
        }

        @keyframes pulseBorder {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(181, 144, 69, .3)
            }

            50% {
                box-shadow: 0 0 0 16px rgba(181, 144, 69, 0)
            }
        }

        .discount__circle-num {
            font-size: 52px;
            font-weight: 900;
            color: var(--gold-lt);
            line-height: 1
        }

        .discount__circle-label {
            font-size: 13px;
            color: rgba(255, 255, 255, .6)
        }

        .cta-section {
            padding: var(--section-pad);
            background: linear-gradient(135deg, #0f0c06 0%, #1a1408 60%, #0f0c06 100%);
            text-align: center;
            position: relative;
            overflow: hidden
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(181, 144, 69, .1) 0%, transparent 70%);
            pointer-events: none
        }

        .cta-section__inner {
            max-width: 640px;
            margin: 0 auto;
            position: relative;
            z-index: 1
        }

        .cta-section__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px
        }

        .cta-section__eyebrow::before,
        .cta-section__eyebrow::after {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--gold)
        }

        .cta-section__title {
            font-size: clamp(28px, 4.5vw, 52px);
            font-weight: 900;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 14px
        }

        .cta-section__title .acc {
            color: var(--gold-lt)
        }

        .cta-section__lead {
            font-size: 15px;
            color: rgba(255, 255, 255, .5);
            margin-bottom: 36px;
            line-height: 1.85
        }

        .cta-section__price {
            font-size: 14px;
            color: rgba(255, 255, 255, .55);
            margin-bottom: 28px
        }

        .cta-section__price strong {
            font-size: 44px;
            font-weight: 900;
            color: #fff;
            margin: 0 6px
        }

        .cta-section__btns {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap
        }

        .footer {
            background: #080603;
            padding: 48px clamp(16px, 5vw, 64px) 28px
        }

        .footer__inner {
            max-width: var(--max-w);
            margin: 0 auto
        }

        .footer__top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: clamp(28px, 5vw, 56px);
            padding-bottom: 36px
        }

        .footer__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px
        }

        .footer__logo img {
            height: 36px
        }

        .footer__logo-ar {
            font-size: 15px;
            font-weight: 800;
            color: var(--gold-lt)
        }

        .footer__about {
            font-size: 13.5px;
            color: rgba(255, 255, 255, .45);
            line-height: 1.8
        }

        .footer__col-title {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .25);
            margin-bottom: 18px
        }

        .footer__links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px
        }

        .footer__links a {
            font-size: 13.5px;
            color: rgba(255, 255, 255, .45);
            transition: color .25s
        }

        .footer__links a:hover {
            color: var(--gold-lt)
        }

        .footer__contact {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .footer__contact li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13.5px;
            color: rgba(255, 255, 255, .5)
        }

        .footer__contact-icon {
            color: var(--gold);
            font-size: 14px;
            width: 16px;
            text-align: center;
            flex-shrink: 0
        }

        .footer__contact a {
            color: rgba(255, 255, 255, .5);
            transition: color .25s
        }

        .footer__contact a:hover {
            color: var(--gold-lt)
        }

        .footer__bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            flex-wrap: wrap;
            gap: 10px
        }

        .footer__copy {
            font-size: 12px;
            color: rgba(255, 255, 255, .2)
        }

        @media (max-width:900px) {
            .suite-card {
                grid-template-columns: 1fr
            }

            .suite-card:nth-child(even) {
                direction: rtl
            }

            .suite-card__imgs {
                min-height: 220px
            }

            .features__layout {
                grid-template-columns: 1fr
            }

            .features__badge {
                bottom: -10px;
                right: -10px
            }

            .services__head {
                grid-template-columns: 1fr
            }

            .services__grid {
                grid-template-columns: 1fr 1fr
            }

            .discount__layout {
                grid-template-columns: 1fr
            }

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

            .hero__stats {
                grid-template-columns: 1fr 1fr
            }

            .hero__stat:nth-child(3) {
                border-right: none
            }

            .hero__stat:nth-child(3),
            .hero__stat:nth-child(4) {
                border-top: 1px solid rgba(181, 144, 69, .15)
            }
        }

        @media (max-width:600px) {
            .services__grid {
                grid-template-columns: 1fr
            }

            .discount__groups {
                grid-template-columns: 1fr 1fr
            }

            .hero__stats {
                grid-template-columns: 1fr 1fr
            }

            .cta-band {
                flex-direction: column;
                text-align: center
            }

            .btn {
                min-height: 44px
            }

            .wa-float {
                bottom: 20px;
                left: 20px;
                width: 52px;
                height: 52px
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity .8s var(--ease), transform .8s var(--ease)
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0)
        }

        .reveal.d1 {
            transition-delay: .07s
        }

        .reveal.d2 {
            transition-delay: .14s
        }

        .reveal.d3 {
            transition-delay: .21s
        }

        .rating-badge-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: clamp(28px, 4vw, 44px) 0 clamp(16px, 2vw, 24px)
        }

        .rating-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 190px;
            height: 190px;
            border-radius: 50%;
            position: relative;
            text-align: center;
            background: linear-gradient(135deg, #f5d87a 0%, #c9a020 25%, #f0c84a 55%, #a07010 80%, #e8c040 100%);
            box-shadow: 0 0 0 8px rgba(201, 160, 32, .15), 0 0 0 16px rgba(201, 160, 32, .08), 0 0 40px rgba(201, 160, 32, .5), 0 8px 32px rgba(181, 144, 69, .55);
            animation: badgeGlow 3s ease-in-out infinite;
            overflow: hidden
        }

        @keyframes badgeGlow {

            0%,
            100% {
                box-shadow: 0 0 0 8px rgba(201, 160, 32, .15), 0 0 0 16px rgba(201, 160, 32, .08), 0 0 36px rgba(201, 160, 32, .45), 0 8px 28px rgba(181, 144, 69, .5)
            }

            50% {
                box-shadow: 0 0 0 10px rgba(201, 160, 32, .2), 0 0 0 22px rgba(201, 160, 32, .1), 0 0 55px rgba(201, 160, 32, .65), 0 12px 40px rgba(181, 144, 69, .65)
            }
        }

        .rating-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -80%;
            width: 60%;
            height: 100%;
            background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .5) 50%, transparent 80%);
            animation: shineSwipe 2.8s ease-in-out infinite
        }

        .rating-badge__num {
            font-size: 50px;
            font-weight: 900;
            color: #2a1800;
            line-height: 1
        }

        .rating-badge__stars {
            font-size: 16px;
            color: rgba(42, 24, 0, .7);
            letter-spacing: 2px;
            margin: 4px 0
        }

        .rating-badge__lbl {
            font-size: 12px;
            font-weight: 700;
            color: rgba(42, 24, 0, .65);
            letter-spacing: 0.5px
        }

        .suite-card__imgs {
            position: relative;
            overflow: hidden;
            aspect-ratio: 5/4
        }

        .suite-slider {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform .55s cubic-bezier(.4, 0, .2, 1);
            will-change: transform
        }

        .suite-slide {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            position: relative
        }

        .suite-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform .5s cubic-bezier(.16, 1, .3, 1)
        }

        .suite-card:hover .suite-slide img {
            transform: scale(1.04)
        }

        .suite-slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .88);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity .25s, transform .25s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
            color: #3a2800;
            font-size: 12px
        }

        .suite-card:hover .suite-slider-btn {
            opacity: 1
        }

        .suite-slider-btn:hover {
            background: var(--gold);
            color: #fff;
            transform: translateY(-50%) scale(1.08)
        }

        .suite-slider-btn.prev {
            right: 10px
        }

        .suite-slider-btn.next {
            left: 10px
        }

        .suite-slider-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            display: flex;
            gap: 6px
        }

        .suite-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .5);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all .25s
        }

        .suite-dot.active {
            background: var(--gold);
            width: 18px;
            border-radius: 3px
        }

        .suite-card__badge {
            z-index: 6
        }

        .suite-card__bullets {
            display: flex;
            flex-direction: column;
            gap: 5px;
            align-self: center;
            width: 100%
        }

        .suite-bullet {
            font-size: 12.5px;
            font-weight: 500;
            color: var(--ink-soft);
            background: #fdfaf3;
            border: 1px solid var(--border);
            border-right: 3px solid var(--gold);
            padding: 6px 11px;
            border-radius: var(--radius-sm);
            line-height: 1.45;
            text-align: center
        }

        .suite-card__footer-v2 {
            padding-top: 12px;
            margin-top: 4px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 22px;
            width: 100%
        }

        .suite-price-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--ink-muted)
        }

        .suite-price-val {
            font-size: 24px;
            font-weight: 900;
            color: var(--ink);
            line-height: 1
        }

        .suite-price-val span {
            font-size: 12px;
            font-weight: 400;
            color: var(--ink-muted)
        }

        .suite-cta {
            display: block !important;
            width: 80% !important;
            text-align: center;
            margin: 0 auto !important;
            font-size: 13px !important;
            padding: 10px 0 !important
        }

        .hero__overlay {
            background: linear-gradient(to bottom, rgba(8, 5, 1, .22) 0%, rgba(8, 5, 1, .38) 50%, rgba(6, 3, 0, .64) 100%) !important
        }

        .hero-ctr {
            display: inline
        }

        .section-eyebrow {
            display: flex;
            align-items: center
        }

        .services__head {
            display: block !important;
            text-align: center;
            margin-bottom: 52px
        }

        .services__head .section-eyebrow {
            justify-content: center
        }

        .section--dark .section-title {
            color: #fff
        }

        .cta-section__price {
            text-align: center;
            margin: 0 auto 36px
        }

        .cta-section__btns {
            justify-content: center
        }

        .services__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px
        }

        .service-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 24px 18px 20px;
            text-align: center;
            transition: transform .3s var(--ease), box-shadow .3s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0
        }

        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-lt));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform .4s var(--ease)
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md)
        }

        .service-card:hover::after {
            transform: scaleX(1);
            transform-origin: left
        }

        .service-card__icon {
            font-size: 34px;
            margin-bottom: 10px;
            line-height: 1
        }

        .service-card__title {
            font-size: 14px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 6px;
            line-height: 1.35
        }

        .service-card__desc {
            font-size: 12px;
            color: var(--ink-muted);
            line-height: 1.6
        }

        .service-card__tag {
            display: inline-block;
            margin-top: 10px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 3px 9px;
            border-radius: 20px;
            background: var(--gold-bg);
            color: var(--gold-dk)
        }

        @media(max-width:900px) {
            .services__grid {
                grid-template-columns: 1fr 1fr
            }
        }

        @media(max-width:500px) {
            .services__grid {
                grid-template-columns: 1fr
            }
        }

        .discount-centered {
            max-width: 500px;
            margin: 0 auto;
            text-align: center
        }

        .booking-section {
            padding: var(--section-pad);
            background: #fdfaf3
        }

        .booking-inner {
            max-width: 760px;
            margin: 0 auto
        }

        .booking-header {
            text-align: center;
            margin-bottom: 40px
        }

        .booking-title {
            font-size: clamp(24px, 3.5vw, 38px);
            font-weight: 900;
            color: var(--ink);
            margin-bottom: 10px
        }

        .booking-sub {
            font-size: 15px;
            color: var(--ink-muted)
        }

        .booking-form {
            background: var(--bg);
            border: 2px solid var(--gold);
            border-radius: var(--radius-lg);
            padding: clamp(28px, 4vw, 52px);
            box-shadow: 0 8px 40px rgba(181, 144, 69, .15), var(--shadow-md);
            position: relative;
            overflow: hidden
        }

        .booking-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f5d87a, #c9a020, #f0c84a, #a07010, #e8c040)
        }

        .booking-form__row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px
        }

        .booking-field {
            display: flex;
            flex-direction: column;
            gap: 7px;
            margin-bottom: 0
        }

        .booking-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--ink-soft);
            letter-spacing: .3px
        }

        .req {
            color: var(--gold)
        }

        .booking-input {
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            color: var(--ink);
            background: #fff;
            border: 2px solid #c8b99a;
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            outline: none;
            transition: border-color .25s, box-shadow .25s;
            width: 100%
        }

        .booking-input::placeholder {
            color: var(--ink-muted)
        }

        .booking-input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(181, 144, 69, .15);
            background: #fff
        }

        .booking-select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none
        }

        .booking-textarea {
            min-height: 90px;
            resize: vertical;
            line-height: 1.6;
            margin-bottom: 20px
        }

        .booking-form__footer {
            text-align: center;
            margin-top: 8px
        }

        .booking-submit {
            font-size: 16px !important;
            padding: 14px 36px !important;
            width: 100%;
            justify-content: center
        }

        .booking-note {
            font-size: 12px;
            color: var(--ink-muted);
            margin-top: 12px
        }

        @media(max-width:600px) {
            .booking-form__row {
                grid-template-columns: 1fr;
                gap: 16px
            }
        }

        .suite-price-block {
            display: flex;
            flex-direction: column;
            gap: 4px
        }

        .suite-price-was {
            font-size: 13.5px;
            color: #7a6a50;
            text-decoration: line-through;
            font-weight: 600
        }

        .suite-price-row {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center
        }

        .suite-disc-badge {
            background: #e63946;
            color: #fff;
            font-size: 10px;
            font-weight: 800;
            padding: 3px 10px;
            border-radius: 20px;
            order: 2;
            align-self: center
        }

        .suite-price-now {
            font-size: 26px;
            font-weight: 900;
            color: var(--ink);
            line-height: 1;
            order: 1
        }

        .suite-price-now span {
            font-size: 12px;
            font-weight: 400;
            color: var(--ink-muted)
        }

        .suite-cta {
            display: block !important;
            width: 80% !important;
            text-align: center;
            margin: 6px auto 0 !important;
            font-size: 13px !important;
            padding: 10px 0 !important
        }

        .suite-card__footer-v2 {
            padding-top: 14px;
            margin-top: 4px;
            display: flex;
            flex-direction: column;
            gap: 22px;
            align-items: center;
            width: 100%
        }

        .btn-wa {
            background: #25d366;
            color: #fff;
            border-color: #25d366
        }

        .btn-wa:hover {
            background: #1aaa52;
            transform: translateY(-1px)
        }

        .call-float {
            position: fixed;
            bottom: 92px;
            left: 28px;
            z-index: 999;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #2563eb;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(37, 99, 235, .45);
            transition: transform .3s var(--ease), box-shadow .3s;
            text-decoration: none
        }

        .call-float:hover {
            transform: scale(1.12);
            box-shadow: 0 8px 24px rgba(37, 99, 235, .55)
        }

        .call-float svg {
            width: 24px;
            height: 24px;
            fill: #fff
        }

        .services-grid-static {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            margin-top: 36px
        }

        .svc-tile {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            text-align: center;
            background: #fff;
            border: 1.5px solid rgba(181, 144, 69, .3);
            border-radius: var(--radius-md);
            padding: 20px 12px 16px;
            transition: border-color .3s, box-shadow .3s, transform .25s
        }

        .svc-tile:hover {
            border-color: var(--gold);
            box-shadow: 0 0 14px rgba(181, 144, 69, .25), 0 4px 16px rgba(0, 0, 0, .06);
            transform: translateY(-3px)
        }

        .svc-tile__ico {
            width: 54px;
            height: 54px;
            border-radius: 12px;
            background: var(--gold-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            transition: background .3s, transform .3s
        }

        .svc-tile:hover .svc-tile__ico {
            background: rgba(181, 144, 69, .2);
            transform: scale(1.08)
        }

        .svc-tile__lbl {
            font-size: 12px;
            font-weight: 700;
            color: var(--ink-soft);
            line-height: 1.4
        }

        @media(max-width:900px) {
            .services-grid-static {
                grid-template-columns: repeat(3, 1fr)
            }
        }

        @media(max-width:600px) {
            .services-grid-static {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px
            }
        }

        .reviews-sec {
            padding: clamp(20px, 3vw, 32px) clamp(24px, 5vw, 80px) clamp(56px, 7vw, 88px);
            background: #fdfaf3;
            color: var(--ink)
        }

        .reviews-sec__in {
            max-width: var(--max-w);
            margin: 0 auto
        }

        .rev-slider-outer {
            overflow: hidden;
            border-radius: var(--radius-lg)
        }

        .rev-slider-track {
            display: flex;
            transition: transform .55s cubic-bezier(.4, 0, .2, 1)
        }

        .rev-slide {
            flex: 0 0 100%;
            padding: 0 2px
        }

        .rev-card {
            background: #fff;
            border: 1px solid rgba(181, 144, 69, .2);
            border-radius: var(--radius-lg);
            padding: clamp(20px, 3vw, 34px);
            display: flex;
            flex-direction: column;
            gap: 14px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .05)
        }

        .rev-head {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .rev-av {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--gold-bg);
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 800;
            color: var(--gold-dk);
            flex-shrink: 0
        }

        .rev-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--ink)
        }

        .rev-meta {
            font-size: 12px;
            color: var(--ink-muted)
        }

        .rev-stars {
            color: #f5a623;
            font-size: 16px;
            letter-spacing: 2px
        }

        .rev-text {
            font-size: 14px;
            color: var(--ink-soft);
            line-height: 1.85
        }

        .rev-src {
            font-size: 11px;
            color: var(--ink-muted);
            padding-top: 12px
        }

        .rev-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 14px;
            margin-top: 18px
        }

        .rev-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--gold-bg);
            border: 1.5px solid var(--gold);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--gold-dk);
            transition: all .25s
        }

        .rev-btn:hover {
            background: var(--gold);
            color: #fff
        }

        .rev-dots {
            display: flex;
            gap: 6px
        }

        .rdot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(0, 0, 0, .18);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all .3s
        }

        .rdot.on {
            background: var(--gold);
            width: 20px;
            border-radius: 4px
        }

        #suites {}

        .booking-section {}

        .reviews-sec {}

        .section--alt {
            background: #fdfaf3
        }