:root {
    --black: #070604;
    --black-soft: #11100c;
    --gold: #d8ad49;
    --gold-2: #f5d990;
    --sand: #d9c29a;
    --cream: #fffaf0;
    --muted: #bfb4a1;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.09);
    --line: rgba(245, 217, 144, 0.25);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    --text-primary: var(--cream);
    --text-secondary: var(--gold-2);
    --page-bg:
        radial-gradient(circle at 12% 5%, rgba(216, 173, 73, 0.16), transparent 28rem),
        linear-gradient(180deg, #090806 0%, #15100b 100%);
    --inner-bg:
        radial-gradient(circle at 80% 0, rgba(216, 173, 73, 0.18), transparent 26rem),
        linear-gradient(135deg, #090806 0%, #17110b 100%);
    --section-bg:
        radial-gradient(circle at 15% 0, rgba(216, 173, 73, 0.14), transparent 22rem),
        linear-gradient(180deg, #0b0906 0%, #18110a 100%);
    --panel-bg: rgba(255, 255, 255, 0.075);
    --panel-bg-strong: rgba(255, 255, 255, 0.11);
    --header-bg: rgba(8, 7, 5, 0.82);
    --nav-bg:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(8, 7, 5, 0.9);
    --card-border: rgba(245, 217, 144, 0.22);
    --card-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Tajawal", system-ui, sans-serif;
    background: var(--page-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background 0.45s ease, color 0.45s ease;
}

body.menu-open {
    overflow-x: hidden;
}

body.inner-page {
    background: var(--inner-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

input,
textarea,
select {
    font-size: 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 20;
    width: min(1180px, calc(100% - 28px));
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--header-bg);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    transform: translateX(-50%);
    transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease, color 0.45s ease;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    margin-inline-end: auto;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-family: "Aref Ruqaa", serif;
    font-size: clamp(1.34rem, 1.9vw, 1.62rem);
    line-height: 1.12;
    white-space: nowrap;
    color: var(--text-primary);
}

.brand-copy small {
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.tent-logo {
    position: relative;
    width: 62px;
    height: 46px;
    flex: 0 0 auto;
    display: inline-block;
}

.tent-logo .tent-roof,
.tent-logo .tent-door,
.tent-logo .tent-line {
    position: absolute;
    display: block;
}

.tent-logo .tent-roof {
    inset: 5px 2px 10px;
    clip-path: polygon(50% 0, 100% 86%, 0 86%);
    background: linear-gradient(135deg, #f5d990, #c88a2b 58%, #7c4a20);
    border: 1px solid rgba(49, 27, 13, 0.42);
}

.tent-logo .tent-door {
    right: 19px;
    bottom: 10px;
    width: 22px;
    height: 25px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    background: linear-gradient(160deg, #a95a28, #e18a3e);
    border: 1px solid rgba(37, 23, 16, 0.45);
}

.tent-logo .tent-line {
    right: 7px;
    bottom: 5px;
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: #744622;
}

.tent-logo-light {
    width: 132px;
    height: 94px;
    filter: drop-shadow(0 18px 30px rgba(216, 173, 73, 0.22));
}

.tent-logo-dark .tent-roof {
    background: linear-gradient(135deg, #fff1b6, #d8ad49 55%, #8d5727);
}

.header-logo {
    width: 88px;
    height: 54px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 10px 18px rgba(216, 173, 73, 0.2));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-inline-end: 26px;
}

.theme-toggle,
.lang-toggle {
    min-height: 42px;
    min-width: 42px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--gold-2);
    font-family: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
}

.theme-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-color: var(--line);
    background:
        radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.34), transparent 15px),
        linear-gradient(145deg, rgba(255, 241, 182, 0.2), rgba(216, 173, 73, 0.1) 58%, rgba(45, 34, 19, 0.16));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 -10px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.theme-toggle span {
    position: absolute;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    font-size: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.theme-toggle span::before,
.theme-toggle span::after {
    content: "";
    position: absolute;
    display: block;
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: translateY(-100%) rotate(90deg);
}

.theme-toggle .sun-icon {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.theme-toggle .sun-icon::before {
    inset: 5px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fffbe0 0 20%, #f7cf58 52%, #d78b22 100%);
    box-shadow:
        0 0 0 2px rgba(255, 241, 182, 0.18),
        0 0 18px rgba(245, 217, 144, 0.64);
}

.theme-toggle .sun-icon::after {
    inset: 0;
    border-radius: 50%;
    background:
        linear-gradient(#f8dc77, #f8dc77) 50% 0 / 2px 5px no-repeat,
        linear-gradient(#f8dc77, #f8dc77) 50% 100% / 2px 5px no-repeat,
        linear-gradient(90deg, #f8dc77, #f8dc77) 0 50% / 5px 2px no-repeat,
        linear-gradient(90deg, #f8dc77, #f8dc77) 100% 50% / 5px 2px no-repeat,
        linear-gradient(45deg, transparent 39%, #f8dc77 40% 48%, transparent 49%) 2px 2px / 6px 6px no-repeat,
        linear-gradient(45deg, transparent 39%, #f8dc77 40% 48%, transparent 49%) 16px 16px / 6px 6px no-repeat,
        linear-gradient(-45deg, transparent 39%, #f8dc77 40% 48%, transparent 49%) 16px 2px / 6px 6px no-repeat,
        linear-gradient(-45deg, transparent 39%, #f8dc77 40% 48%, transparent 49%) 2px 16px / 6px 6px no-repeat;
}

.theme-toggle .moon-icon::before {
    inset: 3px 4px 3px 3px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff3bd 0 18%, #e7bf56 58%, #a96a24 100%);
    box-shadow:
        0 0 0 2px rgba(245, 217, 144, 0.12),
        0 0 16px rgba(245, 217, 144, 0.42);
}

.theme-toggle .moon-icon::after {
    top: 1px;
    right: 1px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 12px 18px, #f5d990 0 1px, transparent 2px),
        var(--header-bg);
    box-shadow:
        -14px 1px 0 -6px rgba(245, 217, 144, 0.9),
        -17px 5px 0 -7px rgba(255, 241, 182, 0.8);
}

body[data-theme="light"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: translateY(100%) rotate(-90deg);
}

body[data-theme="light"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.theme-toggle:hover,
.side-nav a:hover {
    transform: translateY(-2px);
    color: var(--text-primary);
    background: linear-gradient(135deg, #fff1b6, var(--gold));
    box-shadow: 0 14px 26px rgba(216, 173, 73, 0.16);
}

.lang-toggle {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-color: var(--line);
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(255, 241, 182, 0.12), rgba(216, 173, 73, 0.08)),
        rgba(255, 255, 255, 0.045);
    color: var(--gold-2);
}

.lang-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(216, 173, 73, 0.16);
}

.lang-toggle span {
    opacity: 0.54;
    transition: 0.2s ease;
}

.lang-toggle span.active {
    opacity: 1;
    color: var(--text-primary);
    padding: 5px 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff1b6, var(--gold));
}

.lang-toggle i {
    color: rgba(245, 217, 144, 0.42);
    font-style: normal;
}

.side-nav {
    position: fixed;
    top: 116px;
    bottom: 22px;
    right: max(14px, calc((100vw - 1320px) / 2));
    z-index: 18;
    width: 154px;
    display: grid;
    grid-template-rows: auto auto auto auto auto auto 1fr auto;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(245, 217, 144, 0.3);
    border-radius: 26px;
    background: var(--nav-bg);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(20px);
    transition: transform 0.32s ease, opacity 0.32s ease, background 0.45s ease, border-color 0.45s ease;
}

.side-nav::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: -1;
    border-radius: 20px;
    background:
        radial-gradient(circle at 50% 0, rgba(245, 217, 144, 0.18), transparent 58%),
        linear-gradient(180deg, rgba(216, 173, 73, 0.08), transparent 38%);
    pointer-events: none;
}

.side-label {
    display: grid;
    place-items: center;
    min-height: 38px;
    color: var(--text-primary);
    font-size: 0.74rem;
    font-weight: 900;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff1b6, var(--gold));
    box-shadow: 0 12px 24px rgba(216, 173, 73, 0.18);
}

.side-nav a {
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 11px;
    border: 1px solid rgba(245, 217, 144, 0.08);
    border-radius: 17px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.055);
    overflow: hidden;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.side-nav a::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-2), var(--gold));
    opacity: 0;
    transition: opacity 0.24s ease;
}

html[dir="ltr"] .side-nav a::after {
    inset: 0 0 0 auto;
}

html[dir="ltr"] .side-nav a:hover,
html[dir="ltr"] .side-nav a.active {
    transform: translateX(3px);
}

.side-nav a span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    color: var(--gold);
    background: rgba(245, 217, 144, 0.12);
    font-size: 0.82rem;
    box-shadow: inset 0 0 0 1px rgba(245, 217, 144, 0.08);
}

.side-nav a b {
    font: inherit;
    font-size: 0.86rem;
    font-weight: 900;
    color: var(--text-primary);
}

.side-nav a:hover,
.side-nav a.active {
    color: var(--white);
    border-color: rgba(245, 217, 144, 0.28);
    background: rgba(245, 217, 144, 0.12);
    transform: translateX(-3px);
}

.side-nav a:hover::after,
.side-nav a.active::after {
    opacity: 1;
}

.side-nav a:hover span,
.side-nav a.active span {
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.side-contact {
    grid-row: -1;
    min-height: 54px !important;
    justify-content: center;
    color: var(--text-primary) !important;
    border-color: rgba(245, 217, 144, 0.48) !important;
    background: linear-gradient(135deg, #fff1b6, var(--gold) 58%, #8a5a22) !important;
    box-shadow: 0 18px 34px rgba(216, 173, 73, 0.24);
}

.side-contact span {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.3) !important;
}

.mobile-bottom-nav {
    display: none;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    margin-inline-end: 8px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.22), transparent 19px),
        rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(216, 173, 73, 0.16);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--gold-2);
    transition: 0.25s ease;
}

@media (min-width: 1101px) {
    .site-header {
        width: min(1280px, calc(100% - 36px));
        min-height: 82px;
        padding-inline: 18px;
    }

    .brand {
        min-width: 285px;
    }

    .side-nav {
        top: 30px;
        left: 47%;
        right: auto;
        bottom: auto;
        z-index: 22;
        width: min(570px, calc(100% - 520px));
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        transform: translateX(-50%);
    }

    .side-nav::before,
    .side-label {
        display: none;
    }

    .side-nav a,
    .lang-toggle {
        min-height: 42px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.07);
    }

    .side-nav a {
        gap: 6px;
        padding: 0 10px;
        transform: none !important;
    }

    .side-nav a::after {
        inset: auto 18px 5px;
        width: auto;
        height: 2px;
        opacity: 0;
    }

    .side-nav a span {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        font-size: 0.76rem;
    }

    .side-nav a b {
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .lang-toggle {
        width: 68px;
        min-width: 68px;
        min-height: 42px;
        gap: 4px;
        font-size: 0.76rem;
    }

    .lang-toggle span.active {
        padding: 4px 7px;
    }

    .side-contact {
        grid-row: auto;
        min-height: 42px !important;
        padding-inline: 12px !important;
        box-shadow: 0 12px 24px rgba(216, 173, 73, 0.18);
    }

    .hero-content {
        width: min(900px, 100%);
    }

    .hero {
        padding-top: 150px;
    }
}

.section {
    position: relative;
    z-index: 2;
    padding: 110px max(22px, calc((100vw - 1160px) / 2));
}

.hero {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding-top: 160px;
    overflow: hidden;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background:
        linear-gradient(90deg, rgba(7, 6, 4, 0.96) 0%, rgba(7, 6, 4, 0.63) 42%, rgba(7, 6, 4, 0.38) 100%),
        url("assets/royal-tent-events-saudi-arabia.webp") center / cover;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        radial-gradient(circle at 22% 35%, rgba(216, 173, 73, 0.32), transparent 24rem),
        linear-gradient(0deg, #090806 0%, transparent 30%, rgba(9, 8, 6, 0.1) 100%);
}

.hero-content {
    position: relative;
    width: min(860px, 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-2);
    font-weight: 800;
    letter-spacing: 0;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.hero-logo-wrap {
    margin: 26px 0 4px;
}

h1,
h2 {
    margin: 0;
    font-family: "Aref Ruqaa", serif;
    line-height: 1.18;
}

h1 {
    max-width: 980px;
    font-size: clamp(3.4rem, 7.8vw, 6.8rem);
    color: var(--white);
    text-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
    overflow-wrap: normal;
    word-break: normal;
}

.hero-title-service {
    display: block;
    margin-top: 8px;
    font-size: 0.44em;
    line-height: 1.35;
}

.page-hero h1,
.about-content h1,
.contact h1 {
    font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.contact h1 {
    color: var(--black);
    text-shadow: none;
}

h2 {
    font-size: clamp(2.25rem, 5vw, 4.6rem);
}

.hero p,
.section-heading p,
.about-content p {
    max-width: 740px;
    color: rgba(255, 250, 240, 0.76);
    font-size: clamp(1.05rem, 2vw, 1.42rem);
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    min-height: 58px;
    padding: 0 26px;
    border-radius: 999px;
    overflow: hidden;
    font-weight: 900;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transform: translateX(120%);
    transition: 0.45s ease;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn:hover::after {
    transform: translateX(-120%);
}

.btn-primary {
    color: var(--text-primary);
    background: linear-gradient(135deg, #fff1b6, #d8ad49 55%, #9f692e);
    box-shadow: 0 18px 38px rgba(216, 173, 73, 0.3);
}

.btn-ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.hero-panel {
    position: absolute;
    left: max(22px, calc((100vw - 1160px) / 2));
    bottom: 54px;
    width: min(370px, calc(100% - 44px));
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-panel span {
    color: var(--gold-2);
    font-weight: 800;
}

.hero-panel strong {
    display: block;
    margin-top: 8px;
    line-height: 1.7;
}

.work {
    color: var(--black);
    background:
        radial-gradient(circle at 15% 0, rgba(216, 173, 73, 0.22), transparent 22rem),
        linear-gradient(180deg, #fffaf0 0%, #f5ead6 100%);
}

.rental-products {
    color: var(--black);
    background:
        radial-gradient(circle at 85% 10%, rgba(216, 173, 73, 0.2), transparent 24rem),
        linear-gradient(180deg, #fffaf0 0%, #f4e7ce 100%);
}

.rental-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.rental-product-card {
    display: grid;
    grid-template-rows: 230px 1fr;
    overflow: hidden;
    border: 1px solid rgba(115, 82, 35, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 24px 70px rgba(90, 64, 30, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.rental-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 173, 73, 0.42);
    box-shadow: 0 30px 82px rgba(90, 64, 30, 0.18);
}

.rental-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.rental-product-card:hover img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.035);
}

.rental-product-copy {
    display: grid;
    align-content: space-between;
    gap: 18px;
    min-height: 160px;
    padding: 20px;
}

.rental-product-copy h3 {
    margin: 0;
    color: var(--text-primary);
    font-family: "Aref Ruqaa", serif;
    font-size: clamp(1.55rem, 2.4vw, 2.25rem);
    line-height: 1.25;
}

.rental-product-copy a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #171007;
    background: linear-gradient(135deg, #fff1b6, var(--gold));
    box-shadow: 0 16px 32px rgba(216, 173, 73, 0.24);
    font-weight: 900;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.rental-product-copy a:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(216, 173, 73, 0.32);
}

.home-sliders {
    color: var(--black);
    background:
        radial-gradient(circle at 12% 0, rgba(216, 173, 73, 0.18), transparent 24rem),
        linear-gradient(180deg, #fffaf0 0%, #f4e7ce 100%);
}

.home-slider-grid {
    display: grid;
    gap: clamp(28px, 4vw, 42px);
}

.home-slider-card {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) minmax(240px, 0.8fr);
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(115, 82, 35, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 24px 70px rgba(90, 64, 30, 0.12);
}

.home-slider {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 14px;
    min-height: 320px;
    background: #111;
    overflow: hidden;
}

.home-slide {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 1;
    transform: scale(1);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.home-slider:hover .home-slide {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.015);
}

.home-slide.hidden {
    opacity: 1;
    transform: scale(1);
}

.home-slider-copy {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: clamp(22px, 4vw, 42px);
    background:
        linear-gradient(135deg, rgba(255, 241, 182, 0.26), rgba(255, 255, 255, 0.68)),
        rgba(255, 255, 255, 0.42);
}

.home-slider-copy span {
    color: #8a5a22;
    font-weight: 900;
}

.home-slider-copy strong {
    color: var(--text-primary);
    font-family: "Aref Ruqaa", serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1.35;
}

.reviews-section {
    color: var(--text-primary);
    background: var(--section-bg);
}

.seo-content {
    color: var(--text-primary);
    background:
        radial-gradient(circle at 84% 8%, rgba(216, 173, 73, 0.13), transparent 24rem),
        var(--section-bg);
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.seo-card,
.seo-why,
.faq-list {
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--panel-bg);
    box-shadow: var(--card-shadow);
}

.seo-card {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 210px;
    padding: 22px;
}

.seo-card h2,
.seo-why h2,
.faq-list h2 {
    margin: 0;
    font-family: "Aref Ruqaa", serif;
    font-size: clamp(1.45rem, 2.4vw, 2.25rem);
    line-height: 1.35;
}

.seo-card p,
.seo-why li,
.faq-list p {
    margin: 0;
    color: rgba(255, 250, 240, 0.78);
    line-height: 1.85;
}

.seo-why,
.faq-list {
    margin-top: 18px;
    padding: clamp(20px, 3vw, 30px);
}

.seo-why ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 16px 0 0;
    padding: 0 20px 0 0;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    overflow: hidden;
}

.faq-list summary {
    padding: 14px 16px;
    color: var(--text-primary);
    font-weight: 900;
    cursor: pointer;
}

.faq-list details p {
    padding: 0 16px 16px;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
    gap: 22px;
    align-items: start;
}

.review-form,
.reviews-list {
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--panel-bg);
    box-shadow: var(--card-shadow);
}

.review-form {
    display: grid;
    gap: 9px;
    padding: clamp(16px, 3vw, 24px);
}

.review-form label {
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 900;
}

.review-form input,
.review-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px 13px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.07);
    font: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.review-form textarea {
    resize: vertical;
    min-height: 112px;
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: rgba(245, 217, 144, 0.58);
    box-shadow: 0 0 0 4px rgba(216, 173, 73, 0.12);
}

.review-form button {
    min-height: 46px;
    margin-top: 4px;
    border: 0;
    border-radius: 999px;
    color: #171007;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 18px 34px rgba(216, 173, 73, 0.22);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(216, 173, 73, 0.3);
}

.reviews-list {
    display: grid;
    gap: 12px;
    min-height: 290px;
    align-content: space-between;
    padding: clamp(15px, 2.5vw, 22px);
}

.review-page-items {
    display: grid;
    gap: 10px;
}

.review-card {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.review-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.96rem;
}

.review-card p span[aria-hidden="true"] {
    display: inline-block;
    margin-inline-end: 7px;
    font-size: 1rem;
}

.review-card strong {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.35;
}

.reviews-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding-top: 2px;
}

.reviews-pagination button {
    min-width: 34px;
    min-height: 34px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.reviews-pagination button:hover:not(:disabled),
.reviews-pagination button.active {
    color: #171007;
    border-color: transparent;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    transform: translateY(-2px);
}

.reviews-pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.42;
}

.reviews-empty {
    align-self: center;
    justify-self: center;
    margin: 0;
    color: var(--text-secondary);
    font-weight: 800;
    text-align: center;
}

.page-hero {
    min-height: 48svh;
    display: grid;
    align-items: end;
    padding-top: 170px;
    color: var(--cream);
    background:
        linear-gradient(90deg, rgba(7, 6, 4, 0.93), rgba(7, 6, 4, 0.58)),
    url("assets/royal-tent-events-saudi-arabia.webp") center / cover;
}

.single-section {
    min-height: calc(100svh - 130px);
    padding-top: 170px;
}

.work-page {
    padding-top: 72px;
}

.section-heading {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 42px;
}

.work .section-heading p,
.contact .section-heading p {
    color: #716752;
}

.showcase {
    position: relative;
    margin: 0 auto 36px;
    width: min(1060px, 100%);
    aspect-ratio: 16 / 7;
    min-height: 320px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(66, 44, 22, 0.28);
    background: #111;
}

.ac-showcase {
    box-shadow: 0 28px 80px rgba(38, 92, 120, 0.18);
}

.slider {
    width: 100%;
    height: 100%;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: imageReveal 0.7s ease both;
}

.slider-caption {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: min(420px, calc(100% - 56px));
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(7, 6, 4, 0.58);
    color: var(--white);
    backdrop-filter: blur(16px);
}

.slider-caption span {
    color: var(--gold-2);
    font-weight: 800;
}

.slider-caption strong {
    display: block;
    margin-top: 6px;
    font-size: clamp(1.25rem, 3vw, 2rem);
}

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background: rgba(7, 6, 4, 0.52);
    color: var(--gold-2);
    font-size: 2.3rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.slider-btn.prev {
    right: 18px;
}

.slider-btn.next {
    left: 18px;
}

.masonry {
    columns: 3 260px;
    column-gap: 18px;
}

.gallery-item {
    position: relative;
    width: 100%;
    margin: 0 0 18px;
    break-inside: avoid;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    padding: 0;
    background: #111;
    cursor: zoom-in;
    box-shadow: 0 18px 42px rgba(75, 55, 31, 0.18);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: var(--ratio);
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(8, 7, 5, 0.68);
    color: var(--gold-2);
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.12) contrast(1.08);
}

.work-slide-stack {
    width: min(720px, 100%);
    display: grid;
    gap: 18px;
    margin: 0 auto;
}

.work-pair-card,
.work-video-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(230px, 0.36fr);
    overflow: hidden;
    border: 1px solid rgba(115, 82, 35, 0.18);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 241, 182, 0.22), rgba(255, 255, 255, 0.72)),
        rgba(255, 255, 255, 0.5);
    box-shadow: 0 24px 70px rgba(66, 44, 22, 0.16);
}

.work-pair-card::before,
.work-video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(216, 173, 73, 0.18), transparent 30%),
        radial-gradient(circle at 12% 18%, rgba(216, 173, 73, 0.16), transparent 18rem);
}

.work-pair-slider {
    position: relative;
    min-height: 300px;
    border: 0;
    padding: 0;
    overflow: hidden;
    background: #080704;
    cursor: zoom-in;
}

.work-pair-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.9s ease, transform 1.1s ease;
}

.work-pair-image.active {
    opacity: 1;
    transform: scale(1);
}

.work-pair-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 9px 14px;
    border: 1px solid rgba(245, 217, 144, 0.26);
    border-radius: 999px;
    color: var(--gold-2);
    background: rgba(8, 7, 5, 0.66);
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.work-video-card video {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 300px;
    height: 100%;
    object-fit: cover;
    background: #080704;
}

.work-pair-copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 12px;
    padding: clamp(24px, 4vw, 44px);
}

.work-pair-copy span {
    width: max-content;
    max-width: 100%;
    padding: 7px 12px;
    border-radius: 999px;
    color: #171007;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    font-weight: 900;
}

.work-pair-copy strong {
    color: var(--text-primary);
    font-family: "Aref Ruqaa", serif;
    font-size: clamp(1.8rem, 3.3vw, 3rem);
    line-height: 1.35;
}

.about {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: 54px;
    align-items: center;
    color: var(--cream);
    background:
        radial-gradient(circle at 85% 30%, rgba(216, 173, 73, 0.2), transparent 24rem),
        linear-gradient(135deg, #090806, #17110b);
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.media-badge {
    position: absolute;
    right: -18px;
    bottom: 34px;
    width: 168px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
}

.media-badge strong,
.stats-grid strong {
    display: block;
    color: var(--gold-2);
    font-size: 2.1rem;
    font-weight: 900;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.stats-grid article {
    min-height: 132px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(12px);
}

.stats-grid span,
.media-badge span {
    color: rgba(255, 250, 240, 0.74);
}

.contact {
    color: var(--black);
    background:
        radial-gradient(circle at 50% 0, rgba(216, 173, 73, 0.3), transparent 23rem),
        linear-gradient(180deg, #fffaf0, #eee0c7);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.quick-whatsapp-actions {
    width: min(860px, 100%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.quick-whatsapp-actions a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border: 1px solid rgba(37, 211, 102, 0.34);
    border-radius: 999px;
    color: #0d3a1d;
    background:
        linear-gradient(135deg, rgba(216, 248, 228, 0.96), rgba(37, 211, 102, 0.82));
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.16);
    font-size: 0.96rem;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.quick-whatsapp-actions a:hover {
    transform: translateY(-3px);
    filter: saturate(1.06);
    box-shadow: 0 20px 42px rgba(37, 211, 102, 0.22);
}

.contact-card {
    position: relative;
    min-height: 230px;
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 26px;
    border: 1px solid rgba(115, 82, 35, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 24px 70px rgba(90, 64, 30, 0.12);
    overflow: hidden;
    transition: 0.3s ease;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: -30% auto auto -15%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.16);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 211, 102, 0.45);
    box-shadow: 0 28px 80px rgba(37, 211, 102, 0.18);
}

.contact-card:hover::before {
    transform: scale(1.4);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #0d3a1d;
    background: linear-gradient(135deg, #d8f8e4, #25d366);
    font-size: 1.6rem;
}

.contact-card small {
    color: #766746;
    font-weight: 800;
}

.contact-card strong {
    color: #171007;
    font-size: clamp(1.25rem, 2.5vw, 1.9rem);
}

.location-card .contact-icon {
    background: linear-gradient(135deg, #fff1b6, #d8ad49);
}

.ac-info,
.ac-services,
.ac-about {
    color: var(--text-primary);
    background: var(--section-bg);
}

.ac-feature-grid,
.ac-service-grid {
    display: grid;
    gap: 18px;
}

.ac-feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

.ac-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.ac-feature-card,
.ac-service-card,
.ac-about-panel,
.ac-testimonial {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--panel-bg);
    box-shadow: var(--card-shadow);
}

.ac-feature-card,
.ac-service-card {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.ac-feature-card::before,
.ac-service-card::before,
.ac-about-panel::before,
.ac-testimonial::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(216, 173, 73, 0.12), transparent 38%),
        radial-gradient(circle at 12% 8%, rgba(245, 217, 144, 0.12), transparent 14rem);
}

.ac-feature-card > *,
.ac-service-card > *,
.ac-about-panel > *,
.ac-testimonial > * {
    position: relative;
    z-index: 1;
}

.ac-feature-card span,
.ac-service-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #171007;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 14px 28px rgba(216, 173, 73, 0.2);
    font-weight: 900;
}

.ac-feature-card h3,
.ac-service-card h3,
.ac-about h2,
.ac-testimonial h2 {
    margin: 0;
    color: var(--text-primary);
    font-family: "Aref Ruqaa", serif;
    line-height: 1.3;
}

.ac-feature-card h3,
.ac-service-card h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.ac-feature-card p,
.ac-service-card p,
.ac-about-panel p,
.ac-testimonial p,
.ac-testimonial q {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.65;
}

.ac-service-card {
    align-content: space-between;
    min-height: 300px;
}

.ac-service-card ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ac-service-card li,
.ac-about-points span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 900;
}

.ac-service-card li::before,
.ac-about-points span::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 0 0 5px rgba(216, 173, 73, 0.12);
}

.ac-service-card a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #171007;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(216, 173, 73, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ac-service-card a:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(216, 173, 73, 0.3);
}

.ac-about {
    display: grid;
    grid-template-columns: minmax(320px, 1.2fr) minmax(280px, 0.8fr);
    gap: 22px;
    align-items: stretch;
}

.ac-about-panel,
.ac-testimonial {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: clamp(26px, 4vw, 46px);
}

.ac-about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
    margin-top: 8px;
}

.ac-testimonial {
    margin: 0;
}

.ac-testimonial q {
    display: block;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.ac-testimonial footer {
    display: grid;
    gap: 4px;
}

.ac-testimonial strong {
    color: var(--text-primary);
    font-size: 1.2rem;
}

.ac-testimonial footer span {
    color: var(--text-secondary);
    font-weight: 800;
}

.footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px max(22px, calc((100vw - 1160px) / 2));
    color: var(--cream);
    background: #070604;
    border-top: 1px solid var(--line);
}

.footer strong {
    font-family: "Aref Ruqaa", serif;
    font-size: 1.5rem;
}

.footer p {
    margin: 6px 0 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--gold-2);
}

.footer-contact-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #171007;
    background: linear-gradient(135deg, #fff1b6, var(--gold));
    box-shadow: 0 16px 32px rgba(216, 173, 73, 0.2);
    font-weight: 900;
    font-size: 0.92rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-contact-btn span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    font-size: 0.95rem;
}

.footer-contact-btn b {
    font: inherit;
}

.footer-contact-btn:hover {
    color: #171007;
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(216, 173, 73, 0.28);
}

.copyright {
    white-space: nowrap;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.88);
}

.lightbox.open {
    display: grid;
}

.lightbox img {
    max-height: 86vh;
    width: min(1100px, 100%);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 120px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes imageReveal {
    from {
        opacity: 0.4;
        transform: scale(1.04);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1100px) {
    .site-header {
        border-radius: 24px;
    }

    .header-logo {
        width: 72px;
        height: 46px;
    }

    .brand-copy strong {
        font-size: clamp(1.18rem, 3vw, 1.42rem);
    }

    .side-nav {
        position: fixed;
        top: 104px;
        right: 14px;
        left: 14px;
        bottom: auto;
        width: auto;
        min-height: 420px;
        display: grid;
        gap: 10px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(8, 7, 5, 0.92);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: 0.28s ease;
    }

    .side-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .side-nav a {
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.055);
    }

    .menu-toggle {
        display: block;
    }

    .section {
        padding-right: 22px;
    }

    .menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .about,
    .contact-grid,
    .reviews-layout,
    .rental-product-grid,
    .seo-grid,
    .ac-feature-grid,
    .ac-about {
        grid-template-columns: 1fr;
    }

    .ac-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .seo-why ul {
        grid-template-columns: 1fr;
    }

    .home-slider-card {
        grid-template-columns: 1fr;
    }

    .work-pair-card,
    .work-video-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .work-pair-slider,
    .work-video-card video {
        min-height: 280px;
    }

    .work-pair-copy {
        align-content: start;
        padding: 24px;
    }

    .home-slider {
        min-height: 300px;
    }

    .rental-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-media img {
        min-height: 360px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .ac-service-card {
        min-height: 280px;
    }

    .ac-about-points {
        grid-template-columns: 1fr;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 78px;
    }

    .site-header {
        top: 8px;
        width: calc(100% - 16px);
        min-height: 52px;
        gap: 6px;
        padding: 6px 8px;
        border-radius: 18px;
    }

    .tent-logo {
        width: 42px;
        height: 32px;
    }

    .tent-logo .tent-door {
        right: 13px;
        bottom: 7px;
        width: 15px;
        height: 17px;
    }

    .tent-logo .tent-line {
        right: 5px;
        bottom: 4px;
        width: 32px;
        height: 3px;
    }

    .brand-copy strong {
        font-size: 1.02rem;
    }

    .brand-copy small {
        display: none;
    }

    .brand {
        min-width: 0;
        gap: 7px;
    }

    .header-logo {
        width: 56px;
        height: 38px;
    }

    .section {
        padding: 84px 18px;
        padding-right: 18px;
    }

    .hero {
        min-height: 100svh;
        padding-top: 104px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 10.5vw, 3.25rem);
        line-height: 1.28;
        text-wrap: balance;
    }

    .hero-title-service {
        margin-top: 6px;
        font-size: 0.58em;
        line-height: 1.45;
    }

    .header-actions {
        gap: 14px;
        margin-inline-end: 16px;
    }

    .theme-toggle,
    .lang-toggle {
        min-width: 0;
        min-height: 30px;
        padding: 0 7px;
        font-size: 16px;
    }

    .theme-toggle {
        width: 30px;
        height: 30px;
        padding: 0;
    }

    .menu-toggle {
        width: 34px;
        height: 34px;
        margin-inline-end: 6px;
    }

    .menu-toggle span {
        width: 15px;
        margin: 4px auto;
    }

    .side-nav {
        top: 72px;
    }

    .mobile-bottom-nav {
        position: fixed;
        right: 10px;
        left: 10px;
        bottom: 10px;
        z-index: 24;
        min-height: 58px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 6px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(8, 7, 5, 0.86);
        box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(16px);
    }

    .mobile-bottom-nav a {
        min-width: 0;
        display: grid;
        place-items: center;
        gap: 2px;
        border-radius: 13px;
        color: rgba(255, 250, 240, 0.82);
        font-size: 0.68rem;
        font-weight: 900;
        transition: 0.2s ease;
    }

    .mobile-bottom-nav a span {
        width: 24px;
        height: 24px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: var(--gold-2);
        background: rgba(245, 217, 144, 0.1);
        font-size: 0.78rem;
    }

    .mobile-bottom-nav a.active,
    .mobile-bottom-nav a:hover {
        color: #171007;
        background: linear-gradient(135deg, #fff1b6, var(--gold));
    }

    .mobile-bottom-nav a.active span,
    .mobile-bottom-nav a:hover span {
        color: #171007;
        background: rgba(255, 255, 255, 0.28);
    }

    .hero p,
    .section-heading p,
    .about-content p {
        font-size: 1rem;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .hero-panel {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 34px;
        width: 100%;
    }

    .showcase {
        aspect-ratio: 4 / 5;
        min-height: 430px;
    }

    .home-slider {
        min-height: 260px;
    }

    .rental-product-grid {
        display: flex;
        gap: 14px;
        margin-inline: -18px;
        padding-inline: 18px;
        padding-bottom: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .rental-product-card {
        flex: 0 0 min(82vw, 330px);
        grid-template-rows: 220px 1fr;
        scroll-snap-align: start;
    }

    .rental-product-grid::-webkit-scrollbar {
        height: 7px;
    }

    .rental-product-grid::-webkit-scrollbar-track {
        background: rgba(216, 173, 73, 0.12);
        border-radius: 999px;
    }

    .rental-product-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, var(--gold-2), var(--gold));
        border-radius: 999px;
    }

    .ac-service-grid {
        display: flex;
        gap: 12px;
        margin-inline: -18px;
        padding-inline: 18px;
        padding-bottom: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .ac-service-card {
        flex: 0 0 min(74vw, 270px);
        min-height: 270px;
        scroll-snap-align: start;
    }

    .ac-service-grid::-webkit-scrollbar {
        height: 7px;
    }

    .ac-service-grid::-webkit-scrollbar-track {
        background: rgba(216, 173, 73, 0.12);
        border-radius: 999px;
    }

    .ac-service-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, var(--gold-2), var(--gold));
        border-radius: 999px;
    }

    .slider-caption {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        padding: 16px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
    }

    .masonry {
        columns: 1;
    }

    .work-slide-stack {
        gap: 18px;
    }

    .work-pair-card,
    .work-video-card {
        border-radius: 8px;
    }

    .work-pair-slider,
    .work-video-card video {
        min-height: 0;
        aspect-ratio: 4 / 3.2;
    }

    .work-pair-copy {
        gap: 10px;
        padding: 18px;
    }

    .work-pair-copy span,
    .work-pair-badge {
        font-size: 0.9rem;
    }

    .work-pair-copy strong {
        font-size: clamp(1.45rem, 8vw, 2.1rem);
        overflow-wrap: anywhere;
    }

    .media-badge {
        right: 14px;
    }

    .footer-links {
        width: 100%;
    }

    .copyright {
        white-space: normal;
    }
}

@media (max-width: 380px) {
    .site-header {
        gap: 5px;
        padding-inline: 7px;
    }

    .header-actions {
        margin-inline-end: 10px;
    }

    .brand {
        gap: 5px;
    }

    .header-logo {
        width: 50px;
        height: 34px;
    }

    .brand-copy strong {
        font-size: 0.94rem;
    }

    .hero h1 {
        font-size: clamp(2.05rem, 10vw, 2.6rem);
        line-height: 1.32;
    }

    .hero-title-service {
        font-size: 0.54em;
    }

    .theme-toggle {
        width: 29px;
        height: 29px;
    }

    .menu-toggle {
        width: 32px;
        height: 32px;
        margin-inline-end: 4px;
    }
}

body[data-theme="dark"] {
    --black: #070604;
    --black-soft: #11100c;
    --gold: #d8ad49;
    --gold-2: #f5d990;
    --sand: #d9c29a;
    --cream: #fffaf0;
    --muted: #bfb4a1;
    --line: rgba(245, 217, 144, 0.25);
    --text-primary: #fffaf0;
    --text-secondary: #f5d990;
    --page-bg:
        radial-gradient(circle at 12% 5%, rgba(216, 173, 73, 0.16), transparent 28rem),
        linear-gradient(180deg, #070604 0%, #15100b 100%);
    --inner-bg:
        radial-gradient(circle at 80% 0, rgba(216, 173, 73, 0.18), transparent 26rem),
        linear-gradient(135deg, #070604 0%, #17110b 100%);
    --section-bg:
        radial-gradient(circle at 15% 0, rgba(216, 173, 73, 0.14), transparent 22rem),
        linear-gradient(180deg, #090806 0%, #18110a 100%);
    --panel-bg: rgba(255, 255, 255, 0.075);
    --panel-bg-strong: rgba(255, 255, 255, 0.11);
    --header-bg: rgba(8, 7, 5, 0.86);
    --nav-bg:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(8, 7, 5, 0.92);
    --card-border: rgba(245, 217, 144, 0.22);
    --card-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

body[data-theme="light"] {
    --black: #17130b;
    --black-soft: #ffffff;
    --gold: #c9972e;
    --gold-2: #e6bd5a;
    --sand: #f4ead8;
    --cream: #fffaf0;
    --muted: #776b56;
    --line: rgba(201, 151, 46, 0.28);
    --text-primary: #171007;
    --text-secondary: #6f4a1d;
    --page-bg:
        radial-gradient(circle at 12% 5%, rgba(201, 151, 46, 0.11), transparent 24rem),
        linear-gradient(180deg, #f5ead6 0%, #fffaf0 100%);
    --inner-bg:
        radial-gradient(circle at 80% 0, rgba(201, 151, 46, 0.14), transparent 26rem),
        linear-gradient(135deg, #fffdf8 0%, #f5ead6 100%);
    --section-bg:
        radial-gradient(circle at 15% 0, rgba(201, 151, 46, 0.18), transparent 22rem),
        linear-gradient(180deg, #fffdf8 0%, #f8efd9 100%);
    --panel-bg: rgba(255, 255, 255, 0.72);
    --panel-bg-strong: rgba(255, 250, 240, 0.9);
    --header-bg: rgba(255, 250, 240, 0.88);
    --nav-bg:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 240, 0.64)),
        rgba(255, 250, 240, 0.86);
    --card-border: rgba(121, 84, 31, 0.18);
    --card-shadow: 0 24px 70px rgba(90, 64, 30, 0.13);
}

body[data-theme="light"] .site-header {
    border-color: rgba(201, 151, 46, 0.26);
    box-shadow: 0 18px 60px rgba(90, 64, 30, 0.13);
}

body[data-theme="dark"] .site-header {
    border-color: rgba(245, 217, 144, 0.28);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}

body[data-theme="light"] .brand-copy strong,
body[data-theme="light"] .site-header a,
body[data-theme="light"] .side-nav a b,
body[data-theme="light"] .mobile-bottom-nav a b {
    color: #171007;
}

body[data-theme="light"] .brand-copy small,
body[data-theme="light"] .theme-toggle,
body[data-theme="light"] .lang-toggle,
body[data-theme="light"] .footer-links {
    color: #8a5a22;
}

body[data-theme="dark"] .brand-copy strong,
body[data-theme="dark"] .site-header a,
body[data-theme="dark"] .side-nav a b,
body[data-theme="dark"] .mobile-bottom-nav a b {
    color: #fffaf0;
}

body[data-theme="dark"] .brand-copy small,
body[data-theme="dark"] .theme-toggle,
body[data-theme="dark"] .lang-toggle,
body[data-theme="dark"] .footer-links {
    color: #f5d990;
}

body[data-theme="light"] .hero-bg {
    background:
        linear-gradient(135deg, rgba(245, 234, 214, 0.78) 0%, rgba(255, 250, 240, 0.42) 54%, rgba(234, 212, 168, 0.8) 100%),
        url("assets/royal-tent-events-saudi-arabia.webp") center / cover;
    transform: none;
}

body[data-theme="light"] .hero-overlay {
    background:
        radial-gradient(circle at 22% 35%, rgba(201, 151, 46, 0.2), transparent 22rem),
        linear-gradient(0deg, rgba(255, 250, 240, 0.92), rgba(255, 250, 240, 0.38));
}

body[data-theme="light"] .hero h1,
body[data-theme="light"] .page-hero h1,
body[data-theme="light"] .contact h1,
body[data-theme="light"] .hero p,
body[data-theme="light"] .hero-panel,
body[data-theme="light"] .hero-panel strong {
    color: #17130b;
    text-shadow: none;
}

body[data-theme="light"] .hero-panel {
    background: rgba(255, 255, 255, 0.46);
}

body[data-theme="dark"] .hero-bg {
    background:
        linear-gradient(90deg, rgba(7, 6, 4, 0.96) 0%, rgba(7, 6, 4, 0.65) 48%, rgba(7, 6, 4, 0.38) 100%),
        url("assets/royal-tent-events-saudi-arabia.webp") center / cover;
}

body[data-theme="dark"] .hero-overlay {
    background:
        radial-gradient(circle at 28% 34%, rgba(216, 173, 73, 0.2), transparent 24rem),
        linear-gradient(0deg, rgba(7, 6, 4, 0.72), transparent 45%);
}

body[data-theme="light"] .work,
body[data-theme="light"] .contact,
body[data-theme="light"] .rental-products,
body[data-theme="light"] .home-sliders {
    color: #171007;
    background: var(--section-bg);
}

body[data-theme="dark"] .work,
body[data-theme="dark"] .contact,
body[data-theme="dark"] .rental-products,
body[data-theme="dark"] .home-sliders,
body[data-theme="dark"] .about {
    color: #fffaf0;
    background: var(--section-bg);
}

body[data-theme="light"] .about {
    color: #171007;
    background:
        radial-gradient(circle at 85% 30%, rgba(201, 151, 46, 0.18), transparent 24rem),
        linear-gradient(135deg, #fffdf8, #f5ead6);
}

body[data-theme="light"] .about-content p,
body[data-theme="light"] .stats-grid span,
body[data-theme="light"] .media-badge span,
body[data-theme="light"] .section-heading p,
body[data-theme="light"] .work .section-heading p,
body[data-theme="light"] .contact .section-heading p {
    color: #57452a;
}

body[data-theme="dark"] .hero p,
body[data-theme="dark"] .section-heading p,
body[data-theme="dark"] .about-content p,
body[data-theme="dark"] .work .section-heading p,
body[data-theme="dark"] .contact .section-heading p,
body[data-theme="dark"] .stats-grid span,
body[data-theme="dark"] .media-badge span {
    color: rgba(255, 250, 240, 0.8);
}

body[data-theme="light"] .home-slider-card,
body[data-theme="light"] .rental-product-card,
body[data-theme="light"] .seo-card,
body[data-theme="light"] .seo-why,
body[data-theme="light"] .faq-list,
body[data-theme="light"] .work-pair-card,
body[data-theme="light"] .work-video-card,
body[data-theme="light"] .stats-grid article,
body[data-theme="light"] .media-badge,
body[data-theme="light"] .contact-card,
body[data-theme="light"] .review-form,
body[data-theme="light"] .reviews-list {
    border-color: var(--card-border);
    background: var(--panel-bg);
    box-shadow: var(--card-shadow);
}

body[data-theme="dark"] .home-slider-card,
body[data-theme="dark"] .rental-product-card,
body[data-theme="dark"] .seo-card,
body[data-theme="dark"] .seo-why,
body[data-theme="dark"] .faq-list,
body[data-theme="dark"] .work-pair-card,
body[data-theme="dark"] .work-video-card,
body[data-theme="dark"] .stats-grid article,
body[data-theme="dark"] .media-badge,
body[data-theme="dark"] .contact-card,
body[data-theme="dark"] .review-form,
body[data-theme="dark"] .reviews-list,
body[data-theme="dark"] .ac-feature-card,
body[data-theme="dark"] .ac-service-card,
body[data-theme="dark"] .ac-about-panel,
body[data-theme="dark"] .ac-testimonial {
    border-color: var(--card-border);
    background: var(--panel-bg);
    box-shadow: var(--card-shadow);
}

body[data-theme="light"] .home-slider-copy {
    background:
        linear-gradient(135deg, rgba(255, 241, 182, 0.34), rgba(255, 255, 255, 0.78)),
        rgba(255, 255, 255, 0.5);
}

body[data-theme="dark"] .home-slider-copy {
    background:
        linear-gradient(135deg, rgba(216, 173, 73, 0.13), rgba(255, 255, 255, 0.035)),
        rgba(8, 7, 5, 0.84);
}

body[data-theme="dark"] .home-slider-copy strong,
body[data-theme="dark"] .rental-product-copy h3,
body[data-theme="dark"] .work-pair-copy strong,
body[data-theme="dark"] .contact-card strong,
body[data-theme="dark"] .contact h1 {
    color: #fffaf0;
}

body[data-theme="light"] .home-slider-copy strong,
body[data-theme="light"] .rental-product-copy h3,
body[data-theme="light"] .work-pair-copy strong,
body[data-theme="light"] .contact-card strong,
body[data-theme="light"] .contact h1 {
    color: #171007;
}

body[data-theme="light"] .contact-card {
    background: rgba(255, 255, 255, 0.74);
}

body[data-theme="light"] .review-form,
body[data-theme="light"] .reviews-list {
    background: rgba(255, 255, 255, 0.74);
}

body[data-theme="light"] .review-form input,
body[data-theme="light"] .review-form textarea,
body[data-theme="light"] .review-card {
    background: rgba(255, 255, 255, 0.72);
}

body[data-theme="light"] .review-card p,
body[data-theme="light"] .reviews-empty,
body[data-theme="light"] .seo-card p,
body[data-theme="light"] .seo-why li,
body[data-theme="light"] .faq-list p {
    color: #57452a;
}

body[data-theme="light"] .ac-feature-card,
body[data-theme="light"] .ac-service-card,
body[data-theme="light"] .ac-about-panel,
body[data-theme="light"] .ac-testimonial {
    background: rgba(255, 255, 255, 0.74);
}

body[data-theme="light"] .ac-feature-card p,
body[data-theme="light"] .ac-service-card p,
body[data-theme="light"] .ac-about-panel p,
body[data-theme="light"] .ac-testimonial p,
body[data-theme="light"] .ac-testimonial q,
body[data-theme="light"] .ac-testimonial footer span {
    color: #57452a;
}

body[data-theme="dark"] .quick-whatsapp-actions a {
    color: #dffbe9;
    border-color: rgba(37, 211, 102, 0.38);
    background:
        linear-gradient(135deg, rgba(37, 211, 102, 0.22), rgba(13, 58, 29, 0.58)),
        rgba(255, 255, 255, 0.06);
}

body[data-theme="light"] .page-hero {
    color: #17130b;
    background: linear-gradient(135deg, #f5ead6 0%, #fffaf0 54%, #ead4a8 100%);
}

body[data-theme="dark"] .page-hero {
    color: #fffaf0;
    background:
        linear-gradient(90deg, rgba(7, 6, 4, 0.93), rgba(7, 6, 4, 0.58)),
        url("assets/royal-tent-events-saudi-arabia.webp") center / cover;
}

body[data-theme="light"] .side-nav,
body[data-theme="light"] .mobile-bottom-nav {
    border-color: rgba(201, 151, 46, 0.24);
    box-shadow: 0 22px 70px rgba(90, 64, 30, 0.14);
}

body[data-theme="dark"] .side-nav,
body[data-theme="dark"] .mobile-bottom-nav {
    border-color: rgba(245, 217, 144, 0.3);
}

body[data-theme="light"] .side-nav a,
body[data-theme="light"] .mobile-bottom-nav a {
    border-color: rgba(121, 84, 31, 0.11);
    color: #171007;
    background: rgba(255, 255, 255, 0.58);
}

body[data-theme="dark"] .side-nav a,
body[data-theme="dark"] .mobile-bottom-nav a {
    border-color: rgba(245, 217, 144, 0.08);
    color: #fffaf0;
    background: rgba(255, 255, 255, 0.055);
}

body[data-theme="light"] .side-label {
    color: #171007;
}

body[data-theme="light"] .side-nav a:hover,
body[data-theme="light"] .side-nav a.active,
body[data-theme="light"] .mobile-bottom-nav a:hover,
body[data-theme="light"] .mobile-bottom-nav a.active {
    color: #171007;
    background: rgba(216, 173, 73, 0.18);
}

body[data-theme="dark"] .side-nav a:hover,
body[data-theme="dark"] .side-nav a.active,
body[data-theme="dark"] .mobile-bottom-nav a:hover,
body[data-theme="dark"] .mobile-bottom-nav a.active {
    color: #fffaf0;
    background: rgba(245, 217, 144, 0.12);
}

body[data-theme] .side-contact,
body[data-theme] .side-contact b,
body[data-theme] .side-contact span {
    color: #171007 !important;
}

body[data-theme] .theme-toggle:hover,
body[data-theme] .lang-toggle span.active,
body[data-theme] .side-nav a:hover span,
body[data-theme] .side-nav a.active span,
body[data-theme] .mobile-bottom-nav a:hover span,
body[data-theme] .mobile-bottom-nav a.active span {
    color: #171007;
}

body[data-theme="dark"] .contact-card small,
body[data-theme="dark"] .home-slider-copy span,
body[data-theme="dark"] .work-pair-copy span {
    color: #f5d990;
}

body[data-theme="dark"] .work-pair-copy span {
    color: #171007;
}

body[data-theme="light"] .footer {
    color: #171007;
    background: #fffaf0;
    border-color: rgba(201, 151, 46, 0.24);
}

body[data-theme="light"] .footer p {
    color: #6f624b;
}

body[data-theme="dark"] .footer {
    color: #fffaf0;
    background: #070604;
    border-color: rgba(245, 217, 144, 0.25);
}

body[data-theme="dark"] .footer p {
    color: #bfb4a1;
}

@media (min-width: 1101px) {
    body[data-theme] .side-nav {
        border-color: transparent;
        background: transparent;
        box-shadow: none;
    }

    body[data-theme] .side-nav a,
    body[data-theme] .lang-toggle {
        backdrop-filter: blur(12px);
    }
}

body.ac-page[data-theme="light"] .page-hero {
    background:
        linear-gradient(135deg, rgba(245, 234, 214, 0.88) 0%, rgba(255, 250, 240, 0.58) 58%, rgba(234, 212, 168, 0.88) 100%),
        url("assets/taajir-mokifat-saudi-arabia.webp") center / cover;
}

body.ac-page[data-theme="dark"] .page-hero {
    background:
        linear-gradient(90deg, rgba(7, 6, 4, 0.94), rgba(7, 6, 4, 0.62)),
        url("assets/taajir-mokifat-saudi-arabia.webp") center / cover;
}

.site-header,
.side-nav,
.mobile-bottom-nav,
.footer,
.work,
.contact,
.rental-products,
.home-sliders,
.about,
.page-hero,
.hero-panel,
.home-slider-card,
.rental-product-card,
.work-pair-card,
.work-video-card,
.contact-card,
.quick-whatsapp-actions a,
.stats-grid article,
.media-badge,
.home-slider-copy,
.rental-product-copy,
.side-nav a,
.mobile-bottom-nav a,
.brand-copy strong,
.brand-copy small,
.section-heading p,
.about-content p,
.contact-card strong {
    transition:
        background 0.45s ease,
        color 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

html[dir="ltr"] body {
    font-family: "Tajawal", system-ui, sans-serif;
}

html[dir="ltr"] .eyebrow::before {
    order: 2;
}

html[dir="ltr"] .hero-bg {
    background:
        linear-gradient(270deg, rgba(7, 6, 4, 0.96) 0%, rgba(7, 6, 4, 0.63) 42%, rgba(7, 6, 4, 0.38) 100%),
        url("assets/royal-tent-events-saudi-arabia.webp") center / cover;
}

html[dir="ltr"] body[data-theme="light"] .hero-bg {
    background:
        linear-gradient(135deg, rgba(245, 234, 214, 0.78) 0%, rgba(255, 250, 240, 0.42) 54%, rgba(234, 212, 168, 0.8) 100%),
        url("assets/royal-tent-events-saudi-arabia.webp") center / cover;
}
