:root {
    --navy: #061426;
    --navy-soft: #0b1f3a;
    --navy-card: #102b4e;
    --gold: #d4af37;
    --gold-light: #f2d27a;
    --cream: #f8f1df;
    --white: #ffffff;
    --text: #e8edf5;
    --muted: #aab6c7;
    --dark: #111827;
    --border-gold: rgba(212, 175, 55, 0.35);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--navy);
    color: var(--text);
}

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

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

.public-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* HEADER */

.public-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 20, 38, 0.94);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(14px);
}

.nav-wrapper {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

/* LOGO POSITION:
   Increase margin-left if you want logo/name more to the right.
*/
.brand {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: 28px;
}

.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 900;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

.brand-logo-img {
    width: 58px;
    height: auto;
}

.brand-name {
    display: grid;
    line-height: 1.1;
}

.brand-name strong {
    color: var(--white);
    font-size: 19px;
    letter-spacing: 0.4px;
}

.brand-name small {
    color: var(--gold-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.public-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    color: #dbe4f0;
    font-size: 14px;
    font-weight: 700;
}

.public-nav a:hover {
    color: var(--gold-light);
}

.nav-cta {
    color: var(--navy) !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.18);
}

.language-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
}

.language-tabs a {
    font-size: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--gold-light);
}

.language-tabs a:hover {
    background: rgba(212, 175, 55, 0.15);
}

/* ALERTS */

.public-success {
    background: linear-gradient(135deg, #0f766e, #115e59);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 800;
}

.public-errors {
    background: #7f1d1d;
    color: white;
    padding: 18px 0;
}

/* COMMON SECTIONS */

.section {
    padding: 100px 0;
    background: var(--navy);
}

.section-alt {
    background: linear-gradient(180deg, var(--navy-soft), var(--navy));
}

.section-light {
    background: var(--cream);
    color: var(--dark);
}

.section-light h2,
.section-light h3 {
    color: var(--navy);
}

.section-light .section-text,
.section-light p {
    color: #475467;
}

.section-head {
    max-width: 800px;
    margin-bottom: 42px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-light);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-size: 12px;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
}

h1 {
    max-width: 820px;
    font-size: clamp(44px, 7vw, 84px);
    line-height: 0.95;
    margin-bottom: 24px;
    color: var(--white);
}

h2 {
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 18px;
}

h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 14px;
}

p {
    line-height: 1.75;
}

.lead {
    max-width: 720px;
    color: #d7dfec;
    font-size: 18px;
}

.grid {
    display: grid;
    gap: 24px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.split {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 44px;
    align-items: start;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-gold {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 18px 36px rgba(212, 175, 55, 0.18);
}

.btn-outline {
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
    background: rgba(255, 255, 255, 0.04);
}

/* BACK TO TOP */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    animation: arrowFloat 1.8s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* FOOTER */

.public-footer {
    background: #030b15;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    padding: 64px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 30px;
    margin-bottom: 36px;
}

.public-footer h3,
.public-footer h4 {
    color: var(--white);
    margin-bottom: 14px;
}

.public-footer p,
.public-footer a {
    color: #b8c3d4;
    line-height: 1.8;
}

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

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 50%;
    color: var(--gold-light);
    font-weight: 900;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    padding-top: 22px;
    color: #8fa0b8;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* BASIC FORMS */

.form-card {
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: linear-gradient(145deg, rgba(16, 43, 78, 0.86), rgba(6, 20, 38, 0.95));
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.20);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #aab6c7;
}

select option {
    color: var(--dark);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

/* ANIMATION BASE */

.fade-up {
    animation: fadeUp 0.9s ease both;
}

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

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

.ad-float {
    animation: adFloat 4s ease-in-out infinite;
}

@keyframes adFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .fade-up,
    .ad-float,
    .back-to-top {
        animation: none;
    }
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .brand {
        margin-left: 0;
    }

    .menu-button {
        display: inline-flex;
    }

    .public-nav {
        display: none;
        width: 100%;
        padding: 18px 0 8px;
        justify-content: flex-start;
    }

    .menu-toggle:checked ~ .public-nav {
         display: grid !important;
    }

    .nav-wrapper {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .grid-2,
    .grid-3,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 76px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }

    @media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}
}/* =========================
   HOMEPAGE SECTIONS
========================= */

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(6, 20, 38, 0.96) 0%,
            rgba(6, 20, 38, 0.88) 45%,
            rgba(6, 20, 38, 0.72) 100%
        ),
        url("{{ asset('images/hero-fixed.png') }}");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.hero .public-container,
.hero .hero-inner {
    position: relative;
    z-index: 2;
}

/*
HERO IMAGE:
Put image here:
public/images/hero-luxury-travel.jpg
*/

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 110px 0 70px;
}

/* This centers the hero text better and moves it away from the border */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 58px;
    align-items: center;
    padding-left: clamp(20px, 4vw, 70px);
    padding-right: clamp(20px, 4vw, 70px);
}

.hero-copy {
    max-width: 760px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.signature-card {
    border: 1px solid var(--border-gold);
    background:
        linear-gradient(145deg, rgba(16, 43, 78, 0.88), rgba(6, 20, 38, 0.96));
    border-radius: 30px;
    padding: 34px;
    box-shadow: var(--shadow);
    animation-delay: 0.16s;
}

.signature-card ul {
    margin: 0;
    padding-left: 20px;
    color: #dbe4f0;
    line-height: 2;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.stat-box {
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.stat-box strong {
    display: block;
    color: var(--gold-light);
    font-size: 24px;
    font-family: Georgia, "Times New Roman", serif;
}

.stat-box span {
    color: var(--muted);
    font-size: 13px;
}

/* =========================
   MOVING PACKAGE CATALOGUE
========================= */

.catalogue-strip {
    position: relative;
    z-index: 2;
    margin-top: 52px;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    padding: 18px 0;
}

.catalogue-strip::before,
.catalogue-strip::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.catalogue-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy), transparent);
}

.catalogue-strip::after {
    right: 0;
    background: linear-gradient(270deg, var(--navy), transparent);
}

.catalogue-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: catalogueMove 28s linear infinite;
}

.catalogue-strip:hover .catalogue-track {
    animation-play-state: paused;
}

@keyframes catalogueMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.catalogue-item {
    width: 270px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, background 0.2s ease;
}

.catalogue-item:hover {
    transform: translateY(-4px);
    background: rgba(212, 175, 55, 0.12);
}

.catalogue-item strong {
    display: block;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    margin-bottom: 6px;
}

.catalogue-item span {
    color: var(--gold-light);
    font-weight: 800;
    font-size: 13px;
}

/* =========================
   ANIMATED AD SPOTS
========================= */

.ad-spots {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ad-card {
    min-height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background:
        linear-gradient(180deg, rgba(6, 20, 38, 0.10), rgba(6, 20, 38, 0.86)),
        var(--ad-image),
        linear-gradient(135deg, #102b4e, #061426);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.ad-card:nth-child(2) {
    animation-delay: 0.4s;
}

.ad-card:nth-child(3) {
    animation-delay: 0.8s;
}

.ad-content {
    position: absolute;
    inset: auto 22px 22px 22px;
}

.ad-content span {
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.ad-content h3 {
    margin: 8px 0 6px;
}

.ad-content p {
    color: #dbe4f0;
    margin: 0;
}

/*
AD IMAGE PATHS:
public/images/ads/premium-suite.jpg
public/images/ads/private-car.jpg
public/images/ads/business-travel.jpg
*/

/* =========================
   SERVICES UPGRADE
========================= */

.service-premium-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background:
        linear-gradient(145deg, rgba(16, 43, 78, 0.90), rgba(6, 20, 38, 0.96));
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.service-premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 34%);
    pointer-events: none;
}

.service-premium-card > * {
    position: relative;
    z-index: 2;
}

.service-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.service-premium-card p {
    color: #cbd5e1;
}

.service-premium-card ul {
    color: #e8edf5;
    line-height: 1.9;
    padding-left: 20px;
}

.service-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--gold-light);
    font-weight: 900;
}

/* =========================
   PACKAGE CARDS
========================= */

.package-card {
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: linear-gradient(145deg, rgba(16, 43, 78, 0.86), rgba(6, 20, 38, 0.95));
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.20);
}

.package-image {
    min-height: 240px;
    background-image:
        linear-gradient(
            180deg,
            rgba(6, 20, 38, 0.08),
            rgba(6, 20, 38, 0.32)
        ),
        var(--card-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.package-body {
    padding: 24px;
}

.package-body span {
    color: var(--gold-light);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.package-body p {
    color: #cbd5e1;
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.pill {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.10);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 800;
    border: 1px solid rgba(212, 175, 55, 0.18);
}

.detail-box {
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    background: rgba(255, 255, 255, 0.04);
}

.detail-box strong {
    display: block;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.detail-box ul {
    margin: 0;
    padding-left: 18px;
    color: #dbe4f0;
    line-height: 1.7;
}

/* =========================
   EXPERTISE FIX
========================= */

.expertise-card {
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(6, 20, 38, 0.10);
    box-shadow: 0 18px 50px rgba(6, 20, 38, 0.12);
}

.expertise-card h3 {
    color: var(--navy);
    font-size: 30px;
}

.expertise-card p {
    color: #475467;
}

.expertise-number {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 900;
}

/* RESPONSIVE HOMEPAGE */

@media (max-width: 980px) {
    .hero-grid,
    .ad-spots,
    .stats-row {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalogue-track {
        animation: none;
    }
}
html[dir="rtl"] body {
    direction: rtl;
}

html[dir="rtl"] .brand {
    margin-left: 0;
    margin-right: 28px;
}

html[dir="rtl"] .public-nav {
    direction: rtl;
}

html[dir="rtl"] .hero-grid {
    direction: rtl;
}
/* =========================
   PUBLIC REVIEWS
========================= */

.review-card {
    background: #ffffff;
    border: 1px solid rgba(6, 20, 38, 0.10);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(6, 20, 38, 0.12);
}

.review-card h3 {
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 12px;
}

.review-card p {
    color: #475467;
}

.review-stars {
    color: #b7791f;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-author {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(6, 20, 38, 0.10);
}

.review-author strong {
    display: block;
    color: var(--navy);
}

.review-author span {
    display: block;
    color: #667085;
    margin-top: 4px;
    font-size: 14px;
}

.review-empty {
    grid-column: 1 / -1;
    background: #ffffff;
    border-radius: 28px;
    padding: 34px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(6, 20, 38, 0.10);
}

.review-empty h3 {
    color: var(--navy);
}

#home.hero,
.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(6, 20, 38, 0.80) 0%,
            rgba(6, 20, 38, 0.65) 45%,
            rgba(6, 20, 38, 0.45) 100%
        ),
        url('/images/hero-fixed.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#home.hero::before,
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 30%);
    pointer-events: none;
    z-index: 1;
}

#home.hero .public-container,
.hero .public-container,
.hero .hero-inner,
.hero .hero-grid,
.hero .catalogue-strip,
.hero .ad-spots {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    #home.hero,
    .hero {
        background-attachment: scroll;
    }
}
.reviews-carousel-wrap {
    position: relative;
    margin-top: 40px;
}

.reviews-carousel {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 10px 25px;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-slide-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    text-align: center;
    background: #ffffff;
    border-radius: 28px;
    padding: 24px 20px;
    box-shadow: 0 20px 45px rgba(6, 20, 38, 0.12);
    border: 1px solid rgba(6, 20, 38, 0.08);
}

.review-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 8px solid #ffffff;
    box-shadow: 0 12px 35px rgba(6, 20, 38, 0.22);
    overflow: hidden;
    background: linear-gradient(135deg, #091540, #7692ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-avatar span {
    color: #ffffff;
    font-size: 54px;
    font-weight: 900;
}

.review-date {
    font-size: 12px;
    font-weight: 800;
    color: #222;
    margin-bottom: 6px;
}

.review-slide-card h3 {
    font-size: 20px;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 14px;
}

.review-stars {
    color: #f5c518;
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
}

.review-author {
    margin-top: 16px;
}

.review-author strong {
    display: block;
    color: #091540;
}

.review-author span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    margin-top: 4px;
}



@media (max-width: 900px) {
    .review-prev,
    .review-next {
        position: static;
        transform: none;
        margin: 10px;
    }

    .reviews-carousel-wrap {
        text-align: center;
    }

    .review-slide-card {
        flex-basis: 260px;
    }
}
.reviews-controls {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-bottom: 24px;
}

.review-nav {
    border: 1px solid rgba(9, 21, 64, 0.18);
    background: #ffffff;
    color: #091540;
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(6, 20, 38, 0.08);
}

.review-nav:hover {
    background: #091540;
    color: #ffffff;
}

@media (max-width: 768px) {
    .reviews-controls {
        justify-content: center;
    }
}
.account-dropdown {
    position: relative;
}

.account-trigger {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.55);
    color: #f2d27a;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    user-select: none;
}

.account-trigger::-webkit-details-marker {
    display: none;
}

.account-trigger:hover {
    background: rgba(212, 175, 55, 0.12);
}

.account-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f2d27a;
    color: #091540;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.account-label {
    font-size: 14px;
}

.account-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 240px;
    background: #ffffff;
    color: #091540;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(9, 21, 64, 0.08);
    z-index: 999;
}

.account-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 24px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    border-left: 1px solid rgba(9, 21, 64, 0.08);
    border-top: 1px solid rgba(9, 21, 64, 0.08);
}

.account-user {
    padding: 12px 12px 10px;
    border-bottom: 1px solid rgba(9, 21, 64, 0.08);
    margin-bottom: 8px;
}

.account-user strong {
    display: block;
    color: #091540;
    font-size: 14px;
}

.account-user span {
    display: block;
    color: #6b7280;
    font-size: 12px;
    margin-top: 3px;
    word-break: break-word;
}

.account-menu a,
.account-menu button {
    width: 100%;
    display: block;
    text-align: left;
    border: none;
    background: transparent;
    color: #091540 !important;
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
}

.account-menu a:hover,
.account-menu button:hover {
    background: rgba(9, 21, 64, 0.08);
}

.account-menu form {
    margin: 0;
}

.account-menu button {
    color: #b91c1c !important;
}


@media (max-width: 900px) {
    .account-dropdown {
        width: 100%;
    }

    .account-trigger {
        width: 100%;
        justify-content: center;
    }

    .account-menu {
        position: static;
        margin-top: 10px;
        width: 100%;
        box-shadow: none;
    }

    .account-menu::before {
        display: none;
    }
}
.auth-section {
    min-height: 720px;
    display: flex;
    align-items: center;
}

.auth-card {
    max-width: 520px;
    width: 100%;
    margin-left: auto;
}

.auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.auth-card input {
    border-color: rgba(212, 175, 55, 0.32);
}

@media (max-width: 980px) {
    .auth-card {
        max-width: 100%;
        margin-left: 0;
    }
}
.public-footer {
    background: #061426;
    color: rgba(255, 255, 255, 0.82);
    padding: 70px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 42px;
}

.public-footer h3,
.public-footer h4 {
    color: #ffffff;
    margin-bottom: 14px;
}

.public-footer p {
    line-height: 1.8;
}

.public-footer a {
    color: #f2d27a;
    text-decoration: none;
}

.public-footer a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 210, 122, 0.45);
    color: #f2d27a;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(242, 210, 122, 0.12);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 42px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
}

.brand-logo-img {
    width: 190px;
    height: auto;
    object-fit: contain;
    display: block;
}

.brand {
    margin-left: -270px;
    margin-bottom: 6px;
}

.public-header .nav-wrapper {
    max-width: none;
    padding-left: 34px;
    padding-right: 34px;
}

.public-nav {
    margin-left: auto;
}

@media (max-width: 900px) {
    .brand-logo-img {
        width: 150px;
    }

    .brand {
        margin-left: 0;
    }

    .public-header .nav-wrapper {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 900px) {
    .public-header .nav-wrapper {
        padding-left: 18px;
        padding-right: 18px;
    }

    .brand {
        margin-right: 0;
    }

    .brand-logo-img {
        width: 46px;
        height: 46px;   
    }
}
.dashboard-logo-img {
    width: 170px;
    height: auto;
    object-fit: contain;
    margin-left: -14px;
}
.section-subhead {
    margin: 34px 0 22px;
}

.section-subhead h3 {
    font-size: clamp(24px, 3vw, 38px);
    color: #091540;
    margin: 8px 0 10px;
}

.catalogue-extra {
    margin-top: 70px;
    padding-top: 36px;
    border-top: 1px solid rgba(9, 21, 64, 0.12);
}

.package-card-secondary {
    opacity: 0.96;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(9, 21, 64, 0.28);
    color: #091540;
    background: transparent;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
    text-decoration: none;
}

.btn-outline-dark:hover {
    background: rgba(9, 21, 64, 0.08);
}
.section-subhead {
    margin: 34px 0 22px;
}

.section-subhead h3 {
    font-size: clamp(24px, 3vw, 38px);
    color: #091540;
    margin: 8px 0 10px;
}

.catalogue-extra {
    margin-top: 70px;
    padding-top: 36px;
    border-top: 1px solid rgba(9, 21, 64, 0.12);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 38px;
}

.why-card {
    background: #ffffff;
    border: 1px solid rgba(9, 21, 64, 0.08);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(9, 21, 64, 0.08);
}

.why-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.16);
    color: #091540;
    font-weight: 900;
    margin-bottom: 18px;
}

.why-card h3 {
    color: #091540;
    font-size: 19px;
    margin-bottom: 12px;
}

.why-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 14px;
}

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

@media (max-width: 700px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   WHY RANDOT SECTION
========================= */

#why-randot {
    position: relative;
    overflow: hidden;
}

#why-randot .section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#why-randot .eyebrow {
    color: #b7791f;
}

#why-randot h2 {
    color: #061426;
}

#why-randot .lead {
    color: #475467;
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 46px;
}

.why-card {
    background: #ffffff;
    border: 1px solid rgba(6, 20, 38, 0.10);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(6, 20, 38, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 65px rgba(6, 20, 38, 0.16);
}

.why-card span {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f2d27a);
    color: #061426;
    font-weight: 900;
}

.why-card h3 {
    color: #061426;
    font-size: 25px;
    margin-bottom: 12px;
}

.why-card p {
    color: #475467;
    margin-bottom: 0;
}

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

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
.about-randot .split {
    align-items: center;
}

.about-panel {
    background: #091540;
    color: #ffffff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 24px 60px rgba(9, 21, 64, 0.18);
}

.about-panel h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 22px;
}

.about-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-panel li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.about-panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #f2d27a;
    font-weight: 900;
}
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .public-nav {
    margin-left: 0;
    margin-right: auto;
}

.rtl .hero-actions,
.rtl .social-links,
.rtl .package-meta,
.rtl .reviews-controls {
    flex-direction: row-reverse;
}

.rtl .about-panel li,
.rtl .detail-box li,
.rtl .package-body li {
    padding-left: 0;
    padding-right: 28px;
}

.rtl .about-panel li::before,
.rtl .detail-box li::before,
.rtl .package-body li::before {
    left: auto;
    right: 0;
}

.rtl input,
.rtl textarea,
.rtl select {
    text-align: right;
}

.rtl .account-menu {
    right: auto;
    left: 0;
    text-align: right;
}

.rtl .account-menu::before {
    right: auto;
    left: 24px;
}
/* =========================
   ACTIVE LANGUAGE BUTTON
========================= */

.language-tabs a.active,
.language-switcher a.active {
    background: linear-gradient(135deg, #d4af37, #f2d27a);
    color: #061426;
    font-weight: 900;
}
.request-note {
    display: inline-flex;
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.14);
    color: #091540;
    font-size: 14px;
    font-weight: 800;
}
.package-grid {
    align-items: stretch;
}

.package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-body .btn,
.package-body .btn-gold,
.package-body .btn-outline-dark {
    margin-top: auto;
}
@media (max-width: 700px) {
    .section {
        padding: 58px 0;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: clamp(36px, 11vw, 54px);
    }

    .lead {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .package-card,
    .service-card,
    .why-card,
    .expertise-card {
        border-radius: 22px;
    }

    .package-image {
        min-height: 210px;
    }

    .request-note {
        border-radius: 18px;
        align-items: flex-start;
    }
}
@media (max-width: 1100px) {
    .public-nav {
        gap: 14px;
    }

    .public-nav a {
        font-size: 13px;
    }

    .brand-logo-img {
        width: 150px;
    }
}
@media (max-width: 700px) {
    .form-grid,
    .contact-grid,
    .request-grid {
        grid-template-columns: 1fr !important;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

    textarea {
        min-height: 130px;
    }
}
.social-icon-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.social-icon-links a {
    width: auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(242, 210, 122, 0.45);
    color: #f2d27a;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.social-icon-links a:hover {
    background: rgba(242, 210, 122, 0.12);
    text-decoration: none;
}

.social-icon-links img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Header action grouping: keeps language buttons and My Account together on longer translations */
.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-actions .language-tabs,
.nav-actions .account-dropdown,
.nav-actions .nav-cta {
    flex-shrink: 0;
}

.account-trigger {
    white-space: nowrap;
}

.account-label {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1180px) {
    .public-nav {
        gap: 10px;
        font-size: 13px;
    }

    .language-tabs a {
        padding: 6px 7px;
    }
}

@media (max-width: 980px) {
    .nav-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .account-label {
        max-width: none;
    }
}


.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.review-slide-card {
    min-width: 340px;
    max-width: 380px;
    padding: 0;
    overflow: hidden;
}

.review-photo {
    width: 100%;
    height: 210px;
    background: #061426;
    overflow: hidden;
}

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

.review-photo-package {
    position: relative;
}

.review-photo-package::after {
    content: "Package image";
    position: absolute;
    left: 14px;
    bottom: 14px;
    border-radius: 999px;
    background: rgba(6, 20, 38, 0.82);
    color: #f2d27a;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.review-no-photo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(242, 210, 122, 0.22), transparent 34%),
        linear-gradient(135deg, #061426, #0f2746);
}

.review-no-photo span {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2d27a;
    color: #061426;
    font-weight: 900;
    font-size: 22px;
}

.review-slide-card .review-date,
.review-slide-card h3,
.review-slide-card .review-stars,
.review-slide-card .review-text,
.review-slide-card .review-author {
    margin-left: 22px;
    margin-right: 22px;
}

.review-slide-card .review-date {
    margin-top: 20px;
}

.review-slide-card .review-author {
    margin-bottom: 22px;
}
/* Public review cards with client/package photos */
.review-slide-card {
    min-width: 340px;
    max-width: 380px;
    padding: 0;
    overflow: hidden;
}

.review-photo {
    width: 100%;
    height: 210px;
    background: #061426;
    overflow: hidden;
}

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

.review-photo-package {
    position: relative;
}

.review-photo-package::after {
    content: "Package image";
    position: absolute;
    left: 14px;
    bottom: 14px;
    border-radius: 999px;
    background: rgba(6, 20, 38, 0.82);
    color: #f2d27a;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.review-no-photo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(242, 210, 122, 0.22), transparent 34%),
        linear-gradient(135deg, #061426, #0f2746);
}

.review-no-photo span {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2d27a;
    color: #061426;
    font-weight: 900;
    font-size: 22px;
}

.review-slide-card .review-date,
.review-slide-card h3,
.review-slide-card .review-stars,
.review-slide-card .review-text,
.review-slide-card .review-author {
    margin-left: 22px;
    margin-right: 22px;
}

.review-slide-card .review-date {
    margin-top: 20px;
}

.review-slide-card .review-author {
    margin-bottom: 22px;
}

/* Hide old small avatar style if old CSS still exists */
.review-slide-card .review-avatar {
    display: none;
}
/* FIX — Public reviews section/cards */
.reviews-carousel-wrap {
    position: relative;
    margin-top: 34px;
}

.reviews-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 16px;
}

.review-nav {
    border: 1px solid rgba(242, 210, 122, 0.4);
    background: #061426;
    color: #f2d27a;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.review-nav:hover {
    transform: translateY(-2px);
    background: #0f2746;
}

.reviews-carousel {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 4px 22px;
    scrollbar-width: thin;
}

.review-slide-card {
    min-width: 340px;
    max-width: 380px;
    flex: 0 0 340px;
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(6, 20, 38, 0.08);
    box-shadow: 0 18px 50px rgba(6, 20, 38, 0.12);
}

.review-photo {
    width: 100%;
    height: 210px;
    background: #061426;
    overflow: hidden;
}

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

.review-photo-package {
    position: relative;
}

.review-photo-package::after {
    content: "Package image";
    position: absolute;
    left: 14px;
    bottom: 14px;
    border-radius: 999px;
    background: rgba(6, 20, 38, 0.82);
    color: #f2d27a;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.review-no-photo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(242, 210, 122, 0.22), transparent 34%),
        linear-gradient(135deg, #061426, #0f2746);
}

.review-no-photo span {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2d27a;
    color: #061426;
    font-weight: 900;
    font-size: 22px;
}

.review-slide-card .review-date {
    margin: 20px 22px 8px;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.review-slide-card h3 {
    margin: 0 22px 10px;
    color: #061426;
    font-size: 20px;
    font-weight: 950;
}

.review-stars {
    margin: 0 22px 12px;
    color: #f2b705;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-text {
    margin: 0 22px 18px;
    color: #344054;
    line-height: 1.7;
}

.review-author {
    margin: 0 22px 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(6, 20, 38, 0.08);
}

.review-author strong {
    display: block;
    color: #061426;
    font-weight: 950;
}

.review-author span {
    display: block;
    margin-top: 4px;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.review-empty {
    margin-top: 30px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(6, 20, 38, 0.08);
    box-shadow: 0 16px 40px rgba(6, 20, 38, 0.08);
    padding: 34px;
    text-align: center;
}

.review-empty h3 {
    color: #061426;
    font-size: 22px;
    font-weight: 950;
}

.review-empty p {
    color: #667085;
    margin-top: 8px;
}

/* Hide old small avatar style if old CSS still exists */
.review-slide-card .review-avatar {
    display: none;
}

@media (max-width: 640px) {
    .reviews-controls {
        justify-content: flex-start;
    }

    .review-slide-card {
        min-width: 290px;
        flex-basis: 290px;
    }

    .review-photo {
        height: 170px;
    }
}
/* =========================================
   FINAL MOBILE FOUNDATION
========================================= */

@media (max-width: 700px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .public-header,
    .hero,
    .section,
    .public-footer {
        width: 100%;
        max-width: 100%;
    }

    .public-container {
        width: 100%;
        max-width: none;
        padding-left: 18px;
        padding-right: 18px;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 32px;
    }

    .social-icon-links {
        align-items: flex-start;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        right: 12px;
        bottom: 12px;
        font-size: 18px;
    }

    .hero {
        padding-top: 0;
        padding-bottom: 0;
        align-items: flex-start;
    }

    .hero-inner {
        padding-top: 48px;
        padding-bottom: 56px;
    }
}

/* =========================================
   FINAL RESPONSIVE PUBLIC MENU FIX
========================================= */

@media (max-width: 980px) {
    .public-nav {
        width: 100% !important;
        display: none !important;

        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        align-items: stretch;
        justify-content: stretch;

        gap: 10px !important;
        padding: 16px !important;
        margin: 0 0 12px;

        max-height: calc(100vh - 90px);
        max-height: calc(100dvh - 90px);
        overflow-y: auto !important;
        overflow-x: hidden !important;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;

        border: 1px solid rgba(212, 175, 55, 0.22);
        border-radius: 20px;
        background: rgba(11, 31, 58, 0.98);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
    }

    .menu-toggle:not(:checked) ~ .public-nav {
        display: none !important;
    }

    .menu-toggle:checked ~ .public-nav {
        display: grid !important;
    }

    .public-nav > a {
        width: 100%;
        min-height: 42px;
        display: flex !important;
        align-items: center;
        justify-content: center;

        padding: 10px 8px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.045);

        font-size: 13px;
        text-align: center;
    }

    .public-nav > a:hover {
        background: rgba(212, 175, 55, 0.12);
        border-color: rgba(212, 175, 55, 0.26);
    }

    .nav-actions {
        grid-column: 1 / -1 !important;
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 12px;
        margin-top: 4px;
    }

    .language-tabs {
        justify-content: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .account-dropdown,
    .account-trigger {
        width: 100%;
    }

    .account-trigger {
        justify-content: center;
    }
    /* Fix hero heading line spacing across browsers */
.hero h1 {
    line-height: 1.08;
}
}