/* ============================================================
   Across The Monde — public.css
   Client Design: Blue #3B4FE4, Gold #C9A96E, Cormorant Garamond + DM Sans
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
/* ── DESIGN TOKENS (synced from theme API) ── */
:root {
    --pub-primary: #3B4FE4;
    --pub-primary-dark: #2338CC;
    --pub-primary-deep: #0F1A6B;
    --pub-gold: #C9A96E;
    --pub-gold-light: #E8C98A;
    --pub-gold-dark: #A07840;
    --pub-white: #fff;
    --pub-off: #FAFBFF;
    --pub-ink: #0A0C1E;
    --pub-muted: #5B5F80;
    --pub-faint: #9EA2C8;
    --pub-border: #dde0f8;
    --pub-border-gold: rgba(201,169,110,.3);
    --ff-head: "Cormorant Garamond", Georgia, serif;
    --ff-body: "DM Sans", system-ui, sans-serif;
    --r: 18px;
    --r-sm: 10px;
    /* Aliases matching the "New Index" design token names 1:1, so design-parity
       CSS can be dropped in against the new selector names without renaming
       every existing --pub-* declaration throughout this file. */
    --blue: var(--pub-primary);
    --blue-dark: var(--pub-primary-dark);
    --blue-deep: var(--pub-primary-deep);
    --gold: var(--pub-gold);
    --gold-light: var(--pub-gold-light);
    --gold-dark: var(--pub-gold-dark);
    --white: var(--pub-white);
    --off: var(--pub-off);
    --ink: var(--pub-ink);
    --muted: var(--pub-muted);
    --faint: var(--pub-faint);
    --border: var(--pub-border);
    --border-gold: var(--pub-border-gold);
    /* Gradient tokens referenced by CTA buttons and price accents;
       values mirror the approved design's .gd-btn / .btn-faith gradients. */
    --pub-grad: linear-gradient(135deg, var(--pub-primary-deep), var(--pub-primary));
    --pub-grad-secondary: linear-gradient(135deg, var(--pub-gold-dark), var(--pub-gold));
    --pub-grad-start: var(--pub-gold-dark);
}

/*===============================
            Calendar
=================================*/
#ui-datepicker-div.ui-datepicker {
    padding: 0 !important;
    width: 300px !important;
    z-index: 101 !important;
    border: none !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16) !important;
    overflow: hidden !important;
    font-family: var(--ff-body) !important;
    background: #ffffff !important;
}

#ui-datepicker-div .ui-datepicker-header {
    background: #0C1A3B !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    height: 38px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}
/* Multi-month group radius */
#ui-datepicker-div .ui-datepicker-group-first .ui-datepicker-header {
    border-radius: 6px 0 0 0 !important;
}

#ui-datepicker-div .ui-datepicker-group-last .ui-datepicker-header {
    border-radius: 0 6px 0 0 !important;
}

#ui-datepicker-div:not(.ui-datepicker-multi) .ui-datepicker-header {
    border-radius: 6px 6px 0 0 !important;
}

#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 30px !important;
    height: 30px !important;
    border: none !important;
    background: transparent !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.15s !important;
    text-decoration: none !important;
}

#ui-datepicker-div .ui-datepicker-prev {
    left: 4px !important;
}

#ui-datepicker-div .ui-datepicker-next {
    right: 4px !important;
    left: auto !important;
}

    #ui-datepicker-div .ui-datepicker-prev:hover,
    #ui-datepicker-div .ui-datepicker-next:hover,
    #ui-datepicker-div .ui-datepicker-prev-hover,
    #ui-datepicker-div .ui-datepicker-next-hover {
        background: rgba(255, 255, 255, 0.18) !important;
        border: none !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

#ui-datepicker-div .ui-datepicker-prev-hover {
    left: 4px !important;
}

#ui-datepicker-div .ui-datepicker-next-hover {
    right: 4px !important;
    left: auto !important;
}
/* Hide default jQuery UI icon text, show as CSS arrow */
#ui-datepicker-div .ui-datepicker-prev .ui-icon,
#ui-datepicker-div .ui-datepicker-next .ui-icon {
    background-image: none !important;
    text-indent: 0 !important;
    overflow: visible !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important;
    position: static !important;
    margin: 0 !important;
}

    #ui-datepicker-div .ui-datepicker-prev .ui-icon::after {
        content: "\2039" !important;
        font-size: 24px !important;
        line-height: 1 !important;
        color: #ffffff !important;
        font-style: normal !important;
        font-weight: 400 !important;
    }

    #ui-datepicker-div .ui-datepicker-next .ui-icon::after {
        content: "\203A" !important;
        font-size: 24px !important;
        line-height: 1 !important;
        color: #ffffff !important;
        font-style: normal !important;
        font-weight: 400 !important;
    }

#ui-datepicker-div .ui-datepicker-title {
    background: transparent !important;
    border: none !important;
    margin: 0 38px !important;
    padding: 0 !important;
    height: 38px !important;
    line-height: 38px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    flex: 1 !important;
}

    #ui-datepicker-div .ui-datepicker-title select.ui-datepicker-month,
    #ui-datepicker-div .ui-datepicker-title select.ui-datepicker-year {
        width: auto !important;
        margin: 0 !important;
        padding: 0 8px !important;
        background: transparent;
        color: #ffffff !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        outline: none !important;
        letter-spacing: 0.01em !important;
        border: none;
    }

        #ui-datepicker-div .ui-datepicker-title select.ui-datepicker-month option,
        #ui-datepicker-div .ui-datepicker-title select.ui-datepicker-year option {
            background: #ffffff !important;
            color: #141823 !important;
            font-weight: 400 !important;
        }
/*CALENDAR TABLE */
#ui-datepicker-div table.ui-datepicker-calendar {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
    table-layout: fixed !important;
    background: #ffffff !important;
}

    #ui-datepicker-div table.ui-datepicker-calendar thead th {
        background-color: #f3f4f5 !important;
        color: #3d3e3e !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        text-align: center !important;
        padding: 0 !important;
        height: 37px !important;
        border: none !important;
        border-bottom: 1px solid #e4e4e6 !important;
        vertical-align: middle !important;
    }

        #ui-datepicker-div table.ui-datepicker-calendar thead th span {
            font-size: 12px !important;
            font-weight: 700 !important;
            color: inherit !important;
        }
        /* Sunday th label — blue (first-child of tr) */
        #ui-datepicker-div table.ui-datepicker-calendar thead th.ui-datepicker-week-end:first-child {
            color: #324388 !important;
        }
        /* Saturday th label — keep dark (last-child) */
        #ui-datepicker-div table.ui-datepicker-calendar thead th.ui-datepicker-week-end:last-child {
            color: #3d3e3e !important;
        }

    #ui-datepicker-div table.ui-datepicker-calendar tbody td {
        height: 45px !important;
        width: auto !important;
        background: #ffffff !important;
        border: 1px solid #ede7e7;
        padding: 0 !important;
        text-align: center !important;
        vertical-align: middle !important;
    }
        /* Overflow / disabled cells (other month — no anchor inside) */
        #ui-datepicker-div table.ui-datepicker-calendar tbody td.ui-datepicker-other-month {
            background: #fafafa !important;
        }

        #ui-datepicker-div table.ui-datepicker-calendar tbody td.ui-state-disabled {
            background: #fafafa !important;
            opacity: 1 !important;
            cursor: default !important;
        }

        #ui-datepicker-div table.ui-datepicker-calendar tbody td a.ui-state-default {
            display: block !important;
            width: 100% !important;
            height: 45px !important;
            line-height: 45px !important;
            text-align: center !important;
            background: transparent !important;
            border: none !important;
            border-radius: 0 !important;
            color: #283540 !important;
            font-size: 13px !important;
            font-weight: 400 !important;
            margin: 0 !important;
            padding: 0 !important;
            text-decoration: none !important;
            transition: background 0.12s, color 0.12s !important;
            cursor: pointer !important;
            outline: none !important;
            box-shadow: none !important;
        }
            /* Hover */
            #ui-datepicker-div table.ui-datepicker-calendar tbody td a.ui-state-default:hover {
                background: #0C1A3B !important;
                color: #fff !important;
                border-radius: 4px !important;
                border: none !important;
            }
        /* ui-state-hover class added by jQuery UI */
        #ui-datepicker-div table.ui-datepicker-calendar tbody td a.ui-state-hover {
            background: #dce8ff !important;
            color: #0A39BB !important;
            border-radius: 4px !important;
            border: none !important;
        }
    /* Sunday dates (first td in tr) — blue */
    #ui-datepicker-div table.ui-datepicker-calendar tbody tr td.ui-datepicker-week-end:first-child a.ui-state-default {
        color: #0C1A3B !important !important;
        font-weight: 600 !important;
    }
    /* Saturday dates (last td in tr) — normal dark */
    #ui-datepicker-div table.ui-datepicker-calendar tbody tr td.ui-datepicker-week-end:last-child a.ui-state-default {
        color: #283540 !important;
        font-weight: 400 !important;
    }

    #ui-datepicker-div table.ui-datepicker-calendar tbody td.ui-datepicker-today a.ui-state-highlight,
    #ui-datepicker-div table.ui-datepicker-calendar tbody td.ui-datepicker-today a.ui-state-default.ui-state-highlight {
        background: #C9A96E !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        border: none !important;
        border-radius: 4px !important;
        opacity: 1 !important;
    }

        #ui-datepicker-div table.ui-datepicker-calendar tbody td.ui-datepicker-today a.ui-state-highlight:hover {
            background: #0C1A3B !important;
            color: #ffffff !important;
        }
    /* Today + selected at same time */
    #ui-datepicker-div table.ui-datepicker-calendar tbody td.ui-datepicker-today.ui-datepicker-current-day a {
        background: #0D9F96 !important;
        color: #ffffff !important;
    }

    #ui-datepicker-div table.ui-datepicker-calendar tbody td.ui-datepicker-current-day a.ui-state-default,
    #ui-datepicker-div table.ui-datepicker-calendar tbody td.ui-datepicker-current-day a.ui-state-active {
        background: #0A39BB !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        border-radius: 4px !important;
        border: none !important;
    }

    #ui-datepicker-div table.ui-datepicker-calendar tbody td.ui-datepicker-current-day a:hover {
        background: #082fa0 !important;
        color: #ffffff !important;
    }

    #ui-datepicker-div table.ui-datepicker-calendar tbody td.ui-datepicker-unselectable {
        cursor: default !important;
        opacity: 1 !important;
    }
    /* Span used inside disabled cells instead of <a> */
    #ui-datepicker-div table.ui-datepicker-calendar tbody td.ui-state-disabled span.ui-state-default {
        color: #d0d0d0 !important;
        background: transparent !important;
        display: block !important;
        width: 100% !important;
        height: 45px !important;
        line-height: 45px !important;
        text-align: center !important;
        font-size: 13px !important;
        cursor: default !important;
        border: 0px;
    }

#ui-datepicker-div.ui-datepicker-multi .ui-datepicker-group-first {
    border-right: 1px solid #ddd !important;
}

#ui-datepicker-div.ui-datepicker-multi .ui-datepicker-group table {
    width: 100% !important;
}
/* MultiFare cells */
#ui-datepicker-div.ui-datepicker-multi table.ui-datepicker-calendar tbody td {
    position: relative !important;
    border: 1px solid #ede7e7 !important;
    height: 44px !important;
}

    #ui-datepicker-div.ui-datepicker-multi table.ui-datepicker-calendar tbody td a.ui-state-default {
        padding: 4px 14px 16px 14px !important;
        height: auto !important;
        line-height: 1.4 !important;
    }

    #ui-datepicker-div.ui-datepicker-multi table.ui-datepicker-calendar tbody td .farelblcls {
        position: absolute !important;
        bottom: 2px !important;
        left: 0 !important;
        font-size: 10px !important;
        font-weight: 500 !important;
        width: 100% !important;
        text-align: center !important;
        color: #017601 !important;
        padding: 0 !important;
    }

    #ui-datepicker-div.ui-datepicker-multi table.ui-datepicker-calendar tbody td.ui-datepicker-current-day .farelblcls {
        color: #ffffff !important;
    }

    #ui-datepicker-div.ui-datepicker-multi table.ui-datepicker-calendar tbody td:first-child {
        border-left: 0 !important;
    }

    #ui-datepicker-div.ui-datepicker-multi table.ui-datepicker-calendar tbody td:last-child {
        border-right: 0 !important;
    }

#ui-datepicker-div table.ui-datepicker-calendar tbody td span.farelblcls {
    padding: 0 !important;
}


/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--ff-body);
    background: var(--pub-white);
    color: var(--pub-ink);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--pub-primary);
    border-radius: 2px;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.pub-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pub-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.pub-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

    .pub-brand:focus {
        outline: none;
    }

    .pub-brand img {
        height: 52px;
        width: auto;
        max-width: 200px;
        object-fit: contain;
    }

    .pub-brand .brand-text {
        font-family: var(--ff-head);
        font-size: 22px;
        font-weight: 600;
        color: var(--pub-primary);
        letter-spacing: -.01em;
    }

.pub-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

    .pub-nav-links a {
        font-family: var(--ff-body);
        font-size: 14px;
        font-weight: 700;
        color: var(--pub-primary);
        text-decoration: none;
        padding: 12px 15px;
        border-radius: 6px;
        transition: opacity .15s;
    }

        .pub-nav-links a:hover {
            opacity: .65;
        }

/* ── Dropdown nav items ── */
.pub-nav-item {
    position: relative;
}

.pub-nlink {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--pub-primary);
    background: none;
    border: none;
    padding: 6px 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transition: opacity .15s;
    letter-spacing: .01em;
    cursor: pointer;
}

    .pub-nlink:hover {
        opacity: .65;
    }

.pub-arr {
    font-size: 8px;
    color: var(--pub-primary);
    transition: transform .2s;
    display: inline-block;
    margin-top: 1px;
}

.pub-nav-item.open .pub-arr {
    transform: rotate(180deg);
}

.pub-nlink-plain {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--pub-primary);
    text-decoration: none;
    padding: 6px 11px;
    border-radius: 6px;
    transition: opacity .15s;
}

    .pub-nlink-plain:hover {
        opacity: .65;
        color: var(--pub-primary);
    }

/* Dropdown panel */
.pub-dd {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--pub-border, #dde0f8);
    border-radius: 12px;
    min-width: 220px;
    box-shadow: 0 16px 40px rgba(59,79,228,.13);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
    z-index: 9999;
}

.pub-nav-item.open .pub-dd {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Dropdown items */
.pub-ddi {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f2ff;
    transition: background .12s;
    text-decoration: none;
    color: inherit;
}

    .pub-ddi:last-child {
        border-bottom: none;
    }

    .pub-ddi:hover {
        background: #f5f6ff;
    }

.pub-dico {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #eef0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.pub-ddt {
    font-size: 13px;
    font-weight: 600;
    color: var(--pub-ink, #0A0C1E);
    font-family: var(--ff-body);
}

.pub-dds {
    font-size: 10px;
    color: var(--pub-faint, #9EA2C8);
    margin-top: 1px;
    font-family: var(--ff-body);
}

.pub-btn-book {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 9px 9px 18px;
    border-radius: 100px;
    background: var(--blue-deep);
    border: none;
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
    text-decoration: none;
    transition: background .2s;
}

    .pub-btn-book:hover {
        background: var(--blue);
        color: #fff;
    }

    .pub-btn-book .cta-ico {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--pub-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
    }

/* Mobile hamburger */
.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}

    .navbar-toggler span {
        width: 24px;
        height: 2px;
        background: var(--pub-primary);
        border-radius: 2px;
        transition: all .25s;
        display: block;
    }

    .navbar-toggler.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px,5px);
    }

    .navbar-toggler.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px,-5px);
    }

/* ── Mobile drawer (New Index parity): slide-in panel + luxury link styling,
     applied on top of the existing #mob-nav element/JS (toggleMobNav, pubMobTog) ── */
#mob-nav {
    background: var(--white) !important;
    padding: 20px 24px 40px !important;
    transform: translateX(100%);
    transition: transform .28s ease;
}

    #mob-nav.mob-open {
        transform: translateX(0);
    }

    #mob-nav a.mob-link-v2,
    #mob-nav > a,
    #mob-nav > button {
        font-family: var(--ff-body);
        font-size: 16px;
        font-weight: 700;
        color: var(--blue) !important;
    }

    #mob-nav .mob-sub-item-v2 {
        font-family: var(--ff-body);
        font-size: 14px;
        color: var(--ink);
    }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.pub-hero {
    min-height: 100vh;
    padding-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-left {
    padding: 72px 52px 72px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--pub-off);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-head);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: .04em;
    color: var(--pub-primary);
    margin-bottom: 22px;
}

.hero-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--pub-primary);
    flex-shrink: 0;
    opacity: .5;
}

.hero-headline {
    font-family: var(--ff-head);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: var(--pub-ink);
    margin-bottom: 18px;
    font-size: clamp(34px, 3.60vw, 52px);
}

    .hero-headline em {
        font-style: italic;
        color: var(--pub-gold-dark);
        font-weight: 500;
    }

.hero-years {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59,79,228,.07);
    border: 1px solid rgba(59,79,228,.16);
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 18px;
    width: fit-content;
}

.hero-years-num {
    font-family: var(--ff-head);
    font-size: 26px;
    font-weight: 600;
    color: var(--pub-primary);
    line-height: 1;
}

.hero-years-txt {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--pub-primary);
    line-height: 1.3;
}

.hero-sub {
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--muted);
    max-width: 380px;
    padding-left: 14px;
    border-left: 2px solid rgba(59, 79, 228, .2);
    margin-bottom: 24px;
}

.hero-eyebrow-text-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.hero-google-widget {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 9px;
    border: 1px solid var(--pub-border);
    background: var(--pub-white);
    margin-bottom: 26px;
    width: fit-content;
    text-decoration: none;
    transition: border-color .2s;
}

    .hero-google-widget:hover {
        border-color: var(--pub-primary);
    }

.gw-score {
    font-family: var(--ff-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--pub-ink);
    line-height: 1;
}

.gw-stars {
    color: #FBBC04;
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 1px;
}

.gw-div {
    width: 1px;
    height: 26px;
    background: var(--pub-border);
}

.gw-lbl {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--pub-primary);
}

.gw-sub {
    font-family: var(--ff-body);
    font-size: 10px;
    color: var(--pub-faint);
    margin-top: 1px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* Hero right slideshow */
.hero-right {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}

    .hero-slide.on {
        opacity: 1;
    }

    .hero-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,rgba(5,10,40,.85) 0%,rgba(5,10,40,.15) 50%,transparent 100%);
    }

.hero-dots {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.hero-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 2px 0;
    transition: opacity .2s;
}

    .hero-dot:not(.on) {
        opacity: .38;
    }

.hero-dot-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    flex-shrink: 0;
    transition: background .2s, transform .2s;
}

.hero-dot.on .hero-dot-circle {
    background: #fff;
    transform: scale(1.4);
}

.hero-dot-name {
    font-family: var(--ff-body);
    font-size: 11px;
    color: #fff;
    font-weight: 700;
}

.hero-caption {
    position: absolute;
    bottom: 32px;
    left: 32px;
    z-index: 2;
}

.hero-cap-label {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .hero-cap-label::before {
        content: "";
        width: 14px;
        height: 1px;
        background: rgba(255,255,255,.4);
    }

.hero-cap-place {
    font-family: var(--ff-head);
    font-size: 30px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
}

.hero-cap-info {
    font-family: var(--ff-body);
    font-size: 11px;
    color: rgba(255,255,255,.5);
    margin-top: 5px;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 100px;
    background: var(--pub-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

    .btn-primary:hover {
        background: var(--pub-primary-dark);
        transform: translateY(-1px);
    }

.btn-primary-ico {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.btn-groups {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    padding: 11px 20px 11px 18px;
    border-radius: 100px;
    background: var(--pub-gold);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(160,120,64,.35);
    transition: all .2s;
}

    .btn-groups:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 26px rgba(160,120,64,.45);
    }

.btn-groups-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: transform .2s;
}

.btn-groups:hover .btn-groups-ico {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.pub-marquee {
    background: var(--pub-primary);
    padding: 13px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
}

@keyframes marquee-scroll {
    to {
        transform: translateX(-50%);
    }
}

.marquee-unit {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 22px;
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    white-space: nowrap;
}

.marquee-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════ */
.sec-eyebrow {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--pub-gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

    .sec-eyebrow::before {
        content: "";
        width: 22px;
        height: 1.5px;
        background: var(--pub-gold);
    }

    .sec-eyebrow.blue {
        color: var(--pub-primary);
    }

        .sec-eyebrow.blue::before {
            background: var(--pub-primary);
        }

    .sec-eyebrow.white {
        color: rgba(255,255,255,.5);
    }

        .sec-eyebrow.white::before {
            background: rgba(255,255,255,.5);
        }

.section-title {
    font-family: var(--ff-head);
    font-size: clamp(34px,3.8vw,54px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--pub-ink);
}

    .section-title em {
        font-style: italic;
        color: var(--pub-primary);
        font-weight: 400;
    }

    .section-title.white {
        color: #fff;
    }

        .section-title.white em {
            color: #9AADFF;
            font-weight: 400;
        }

.sec-hdr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.see-all {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--pub-primary);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s;
    text-decoration: none;
}

    .see-all::after {
        content: "→";
    }

    .see-all:hover {
        gap: 9px;
    }

/* ═══════════════════════════════════════
   LICENCE / CERTIFICATIONS
═══════════════════════════════════════ */
.pub-licence-band {
    background: var(--pub-off);
    border-top: 1px solid var(--pub-border);
    border-bottom: 1px solid var(--pub-border);
    padding: 64px 24px;
}

.licence-inner {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.licence-label-col {
    flex-shrink: 0;
    padding-right: 40px;
    border-right: 1px solid var(--pub-border);
    margin-right: 40px;
}

.licence-label {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--pub-faint);
    margin-bottom: 6px;
}

.licence-heading {
    font-family: var(--ff-head);
    font-size: 28px;
    font-weight: 600;
    color: var(--pub-ink);
    line-height: 1.15;
}

    .licence-heading em {
        font-style: italic;
        color: var(--pub-primary);
        font-weight: 400;
    }

.licence-logos {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
}

.licence-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 24px;
    border-right: 1px solid #dde0f8;
    transition: background .2s;
    cursor: default;
}

    .licence-item:last-child {
        border-right: none;
    }

.licence-logo-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #dde0f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--pub-primary);
    letter-spacing: .04em;
    transition: border-color .2s, box-shadow .2s;
    filter: grayscale(30%);
    padding: 5px !important;
}

    .licence-logo-box img {
        width: 100%;
    }

.licence-name {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 600;
    color: #9EA2C8;
    letter-spacing: .04em;
    text-align: center;
    line-height: 1.4;
}

/* ═══════════════════════════════════════
   PACKAGE CARDS (ATM's Picks style)
═══════════════════════════════════════ */
.pub-picks-section {
    padding: 88px 24px;
    background: var(--pub-white);
    overflow: hidden;
}

.pub-picks-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 20px;
}

.picks-month-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--pub-gold-dark), var(--pub-gold));
    color: #fff;
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    margin-bottom: 14px;
    width: fit-content;
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.picks-month-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.picks-update-note {
    font-family: var(--ff-body);
    font-size: 11px;
    color: var(--pub-faint);
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
}

.picks-update-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .6;
        transform: scale(.85);
    }
}

.picks-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .picks-scroll {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .picks-scroll {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Pick card */
.pick-card {
    background: var(--pub-white);
    border: 1px solid var(--pub-border);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

    .pick-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 44px rgba(59,79,228,.12);
    }

.pick-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.pick-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}

.pick-card:hover .pick-img-bg {
    transform: scale(1.04);
}

.pick-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(8,12,50,.75) 0%,transparent 60%);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pick-dest-region {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 4px;
}

.pick-dest-name {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.15;
}

.pick-month-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    padding: 4px 10px 4px 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    color: #fff;
}

.pick-why {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    color: var(--pub-gold-light);
    line-height: 1.3;
    text-align: left;
}

.pick-body {
    padding: 18px;
}

.pick-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.pick-nights {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--pub-muted);
    margin-top: 4px;
}

.pick-price-wrap {
    text-align: right;
}

.pick-from {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pub-faint);
}

.pick-price {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 600;
    color: var(--pub-ink);
    line-height: 1;
}

.pick-per {
    font-family: var(--ff-body);
    font-size: 10px;
    color: var(--pub-muted);
}

.pick-reason {
    font-family: var(--ff-body);
    font-size: 13px;
    color: var(--pub-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

    .pick-reason strong {
        color: var(--pub-ink);
        font-weight: 700;
    }

.pick-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.pick-hl {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 600;
    background: rgba(59,79,228,.06);
    border: 1px solid rgba(59,79,228,.12);
    color: var(--pub-primary);
    border-radius: 100px;
    padding: 3px 10px;
}

.pick-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 11px 16px;
    border-radius: var(--r-sm);
    background: var(--pub-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    transition: background .2s;
}

    .pick-btn:hover {
        background: var(--pub-primary-dark);
    }

.pick-btn-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ═══════════════════════════════════════
   WHY US / USP SECTION
═══════════════════════════════════════ */
.pub-usp-section {
    background: var(--blue-deep);
    padding: 88px 24px;
    position: relative;
    overflow: hidden;
}

    .pub-usp-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 80% 50%,rgba(59,79,228,.35) 0%,transparent 70%);
        pointer-events: none;
    }

.usp-inner {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 72px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.usp-title {
    font-family: var(--ff-head);
    font-size: clamp(34px,3.60vw,52px);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}

    .usp-title em {
        font-style: italic;
        color: var(--pub-gold);
        font-weight: 400;
    }

.usp-desc {
    font-family: var(--ff-body);
    font-size: 14px;
    color: rgba(255,255,255,.6);
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 360px;
}

.usp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.usp-stat {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.usp-stat-pax {
    padding: 24px 20px !important;
}

.usp-stat-n {
    font-family: var(--ff-head);
    font-size: 38px;
    font-weight: 700;
    color: var(--pub-gold);
    line-height: 1;
}

.usp-stat-l {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    letter-spacing: .04em;
    margin-top: 5px;
}

.usp-stat-pax .usp-stat-n {
    color: var(--pub-gold);
}

.usp-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 6px;
}

.usp-item {
    display: flex;
    gap: 16px;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .03);
    transition: background .2s, border-color .2s;
}

    .usp-item:hover {
        background: rgba(201,169,110,.08);
        border-color: rgba(201,169,110,.2);
    }

.usp-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    flex-shrink: 0;
    background: rgba(201, 169, 110, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.usp-item-title {
    font-family: var(--ff-head);
    font-size: 19px;
    font-weight: 600;
    font-style: normal;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.15;
}

.usp-item-desc {
    font-family: var(--ff-body);
    font-size: 13px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.pub-reviews-section {
    padding: 88px 24px;
    background: #F8F9FF;
}

.reviews-hdr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 48px;
}

.reviews-title {
    font-family: var(--ff-head);
    font-size: clamp(34px,3.60vw,52px);
    font-weight: 600;
    color: var(--pub-ink);
    line-height: 1.1;
}

    .reviews-title em {
        font-style: italic;
        color: var(--pub-primary);
        font-weight: 400;
    }

.reviews-score-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.reviews-big-num {
    font-family: var(--ff-head);
    font-size: 54px;
    font-weight: 600;
    color: var(--pub-primary);
    line-height: 1;
}

.rs-stars {
    color: #FBBC04;
    font-size: 16px;
    letter-spacing: 2px;
}

.rs-count {
    font-family: var(--ff-body);
    font-size: 12px;
    color: var(--pub-muted);
    margin-top: 3px;
}

.rs-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rs-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rs-lbl {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    color: #9EA2C8;
    width: 22px;
}

    .rs-lbl .fa-star {
        font-size: 8px;
        position: relative;
        top: -1px;
        margin-left: 2px;
    }

.rs-bw {
    flex: 1;
    height: 6px;
    background: #e8eaf6;
    border-radius: 3px;
    overflow: hidden;
}

.rs-b {
    height: 100%;
    background: linear-gradient(90deg, var(--pub-primary), var(--pub-gold));
    border-radius: 3px;
}

.rs-ct {
    font-family: var(--ff-body);
    font-size: 11px;
    color: var(--pub-muted);
    width: 24px;
    text-align: right;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.review-card {
    background: var(--pub-white);
    border: 1px solid var(--pub-border);
    border-radius: var(--r);
    padding: 24px;
    transition: box-shadow .2s;
}

    .review-card:hover {
        box-shadow: 0 8px 32px rgba(59,79,228,.1);
    }

.review-stars {
    color: #FBBC04;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.review-text {
    font-family: var(--ff-head);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: #0A0C1E;
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--pub-border);
    padding-top: 10px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pub-primary), var(--pub-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.review-name {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--pub-ink);
}

.review-dest {
    font-family: var(--ff-body);
    font-size: 11px;
    color: var(--pub-faint);
}

.rev-tag {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    background: #eef0ff;
    color: var(--pub-primary);
    border: 1px solid var(--pub-primary);
    display: inline-block;
    margin-top: 2px;
}

/* ═══════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════ */
.pub-contact-section {
    background: var(--pub-ink);
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .pub-contact-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 20% 50%,rgba(59,79,228,.15) 0%,transparent 70%);
        pointer-events: none;
    }

.contact-eyebrow {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 14px;
}

.contact-headline {
    font-family: var(--ff-head);
    font-size: clamp(34px,3.60vw,52px);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.15;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 11px;
    padding: 15px 18px;
    min-width: 260px;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

    .contact-card:hover {
        background: rgba(59,79,228,.3);
        border-color: rgba(59,79,228,.5);
    }

.contact-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0;
}

.contact-card-lbl {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 0;
}

.contact-card-val {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.pub-footer {
    background: #06080F;
    padding: 60px 24px 28px;
    border-top: 1px solid rgba(255,255,255,.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px;
}

.footer-logo-pill {
    background: #fff;
    border-radius: 7px;
    padding: 7px 13px;
    display: inline-block;
    margin-bottom: 13px;
}

    .footer-logo-pill img {
        height: 26px;
        width: auto;
        max-width: 130px;
        object-fit: contain;
        display: block;
    }

.footer-logo-text {
    font-family: var(--ff-head);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.footer-tag {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 11px;
}

.footer-addr {
    font-family: var(--ff-body);
    font-size: 12px;
    color: rgba(255,255,255,.4);
    line-height: 1.9;
}

.fc-title {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
    margin-bottom: 16px;
}

.flinks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .flinks a {
        font-family: var(--ff-body);
        font-size: 13px;
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .2s;
    }

        .flinks a:hover {
            color: #fff;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-bottom span {
        font-family: var(--ff-body);
        font-size: 11px;
        color: rgba(255,255,255,.22);
    }

    .footer-bottom a {
        font-family: var(--ff-body);
        font-size: 11px;
        color: rgba(255,255,255,.3);
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: var(--pub-gold);
        }

.__clsRegisterPopUp {
    background: rgba(10,14,50,.58);
    backdrop-filter: blur(5px);
    transition: .3s;
    font-family: var(--ff-body);
}

    .__clsRegisterPopUp .modal-dialog {
        width: 100%;
        max-width: 470px;
        overflow: hidden;
        position: relative;
        border-radius: 22px;
    }

    .__clsRegisterPopUp .modal-content {
        border: none;
        border-radius: 22px;
    }

    .__clsRegisterPopUp .modal-header .fm-close {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 32px;
        height: 32px;
        border: none;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
        color: #fff;
        cursor: pointer;
        z-index: 10;
        font-size: 16px;
    }

    .__clsRegisterPopUp .modal-header {
        background: var(--pub-primary-deep);
        padding: 34px 36px 28px;
        position: relative;
        overflow: hidden;
        border-radius: 22px 22px 0px 0px;
    }

        .__clsRegisterPopUp .modal-header::before {
            content: '';
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(59,79,228,.25);
            bottom: -110px;
            right: -50px
        }

        .__clsRegisterPopUp .modal-header::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(91,111,255,.15);
            top: -55px;
            left: -35px
        }

    .__clsRegisterPopUp .modal-body {
        padding: 28px 36px 32px;
    }

    .__clsRegisterPopUp .fm-ey {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .5);
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

        .__clsRegisterPopUp .fm-ey::before {
            content: '';
            width: 16px;
            height: 1.5px;
            background: rgba(255, 255, 255, .4);
        }

    .__clsRegisterPopUp .fm-title {
        font-size: 32px;
        font-weight: 400;
        color: #fff;
        line-height: 1.05;
        position: relative;
        z-index: 1;
        font-family: var(--ff-head);
    }

        .__clsRegisterPopUp .fm-title em {
            font-style: italic;
            color: #9AADFF;
        }

    .__clsRegisterPopUp .fm-sub {
        font-family: var(--ff-body);
        font-size: 13px;
        color: rgba(255,255,255,.5);
        margin-top: 7px;
        position: relative;
        z-index: 1
    }

    .__clsRegisterPopUp .fr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .__clsRegisterPopUp .fg {
        margin-bottom: 16px;
    }

    .__clsRegisterPopUp .fm-divider {
        height: 1px;
        background: #f0f2ff;
        margin: 0 0 16px;
    }

    .__clsRegisterPopUp .fl {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .10em;
        text-transform: uppercase;
        color: var(--blue-deep);
        margin-bottom: 6px;
        display: block;
    }

    .__clsRegisterPopUp .fi, .__clsRegisterPopUp .fs {
        width: 100%;
        height: 44px;
        padding: 0 14px;
        border: 1.5px solid #dde0f8;
        border-radius: 10px;
        background: #fff;
        font-size: 14px;
        color: #3a3d5c;
        outline: none;
        box-sizing: border-box;
        transition: border-color .2s, box-shadow .2s;
    }

        .__clsRegisterPopUp .fi::placeholder {
            color: #b0b4d0;
            opacity: 1;
        }

        .__clsRegisterPopUp .fi:focus, .__clsRegisterPopUp .fs:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 4px rgba(59,79,228,.08);
        }

    .__clsRegisterPopUp .fs {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%233B4FE4' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 38px;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
    }

    .__clsRegisterPopUp .fsub {
        width: 100%;
        padding: 14px;
        background: var(--pub-primary-deep);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        transition: background .2s;
        margin-top: 3px;
    }

        .__clsRegisterPopUp .fsub:hover {
            background: var(--blue);
        }


/* ═══════════════════════════════════════
   CALL FAB (mobile only, sits above WhatsApp FAB)
═══════════════════════════════════════ */
.call-fab {
    display: none;
}

@media (max-width: 768px) {
    .call-fab {
        display: flex;
        position: fixed;
        bottom: 82px;
        right: 16px;
        z-index: 200;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--blue-deep);
        align-items: center;
        justify-content: center;
        color: #fff;
        box-shadow: 0 6px 20px rgba(15,26,107,.35);
        transition: transform .2s;
    }

        .call-fab:active {
            transform: scale(.94);
        }

    .wa-fab {
        bottom: 20px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
}

/* ═══════════════════════════════════════
   WHATSAPP FAB
═══════════════════════════════════════ */
.wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
    font-size: 26px;
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    animation: waFabPopIn .4s 1.2s ease both;
}

@keyframes waFabPopIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.wa-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

/* ═══════════════════════════════════════
   SEARCH PAGE
═══════════════════════════════════════ */
.pub-search-bar {
    background: var(--pub-white);
    border-radius: var(--r);
    padding: 24px;
    border: 1px solid var(--pub-border);
    box-shadow: 0 2px 12px rgba(59,79,228,.06);
}

    .pub-search-bar .atm-form-control {
        border: 1.5px solid var(--pub-border);
        border-radius: 10px;
        font-family: var(--ff-body);
        font-size: 14px;
    }

        .pub-search-bar .atm-form-control:focus {
            border-color: var(--pub-primary);
        }

/* Package cards (search results) */
.pub-pkg-card {
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--pub-border);
    background: var(--pub-white);
    transition: box-shadow .2s, transform .2s;
    height: 100%;
}

    .pub-pkg-card:hover {
        box-shadow: 0 18px 44px rgba(59,79,228,.12);
        transform: translateY(-3px);
    }

.pub-pkg-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #eee;
}

    .pub-pkg-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s;
    }

.pub-pkg-card:hover .pub-pkg-img img {
    transform: scale(1.06);
}

.pub-pkg-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--pub-gold);
    color: #fff;
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}

.pub-pkg-body {
    padding: 18px;
}

.pub-pkg-title {
    font-family: var(--ff-head);
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: var(--pub-ink);
    margin-bottom: 4px;
}

.pub-pkg-dest {
    font-family: var(--ff-body);
    font-size: 12px;
    color: var(--pub-muted);
    margin-bottom: 8px;
}

.pub-pkg-meta {
    display: flex;
    gap: 14px;
    font-family: var(--ff-body);
    font-size: 12px;
    color: var(--pub-muted);
    margin-bottom: 12px;
}

.pub-pkg-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--pub-border);
}

.pub-pkg-price {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 600;
    color: var(--pub-primary);
}

    .pub-pkg-price small {
        font-family: var(--ff-body);
        font-size: 11px;
        font-weight: 400;
        color: var(--pub-muted);
    }

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 100px;
    border: 1.5px solid var(--pub-primary);
    color: var(--pub-primary);
    text-decoration: none;
    transition: all .2s;
}

    .btn-outline-primary:hover {
        background: var(--pub-primary);
        color: #fff;
    }

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 100px;
    background: var(--pub-gold);
    color: #fff;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s;
}

    .btn-accent:hover {
        background: var(--pub-gold-dark);
    }

/* Package detail */
.pub-detail-hero {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.pub-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,.7) 0%,rgba(0,0,0,.1) 100%);
}

.pub-detail-hero-content {
    position: relative;
    z-index: 1;
    padding: 48px 0 36px;
}

    .pub-detail-hero-content h1 {
        font-family: var(--ff-head);
        font-size: clamp(28px,4vw,52px);
        font-weight: 400;
        font-style: italic;
    }

.itin-day {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--pub-border);
}

    .itin-day:last-child {
        border-bottom: none;
    }

.itin-day-num {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--pub-gold);
    background: rgba(201,169,110,.1);
    border: 1px solid rgba(201,169,110,.2);
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
    height: fit-content;
}

.itin-day-text {
    font-family: var(--ff-body);
    font-size: 13px;
    color: var(--pub-muted);
    line-height: 1.7;
}

.text-accent {
    color: var(--pub-primary) !important;
}

.fw-700 {
    font-weight: 700 !important;
}

/* ═══════════════════════════════════════
   SPINNER & EMPTY STATES
═══════════════════════════════════════ */
.atm-spinner {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid var(--pub-border);
    border-top-color: var(--pub-primary);
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--pub-muted);
}

    .empty-state i {
        font-size: 40px;
        display: block;
        margin-bottom: 12px;
        opacity: .4;
    }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .usp-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .pub-hero {
        position: relative;
        min-height: 76vh;
        padding-top: 56px;
        grid-template-columns: 1fr;
    }

    .hero-right {
        position: absolute;
        inset: 0;
        height: 100%;
        min-height: 0;
        order: 0;
    }

    .hero-slide::before {
        background: linear-gradient(to top,rgba(5,8,30,.94) 0%,rgba(5,8,30,.55) 42%,rgba(5,8,30,.22) 100%);
    }

    .hero-left {
        position: relative;
        z-index: 2;
        background: transparent;
        order: 0;
        min-height: calc(76vh - 56px);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 24px 16px 32px;
    }

    .hero-headline {
        color: #fff;
        font-size: clamp(34px,3.60vw,52px);
        line-height: 1.08;
        text-shadow: 0 2px 28px rgba(0,0,0,.4);
        margin-bottom: 14px;
    }

        .hero-headline em {
            color: var(--pub-gold-light);
        }

    .hero-years {
        background: rgba(255,255,255,.12);
        border-color: rgba(255,255,255,.28);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin-bottom: 14px;
    }

    .hero-years-num {
        color: #fff;
        font-size: 22px;
    }

    .hero-years-txt {
        color: rgba(255,255,255,.88);
        font-size: 11px;
    }

    .hero-sub {
        color: rgba(255,255,255,.85);
        border-left-color: var(--pub-gold);
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 18px;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-google-widget {
        background: rgba(255,255,255,.97);
        padding: 9px 13px;
        margin-bottom: 20px;
        border: none;
    }

    .hero-caption {
        display: none;
    }

    .hero-dots {
        top: 72px;
        left: auto;
        right: 14px;
        bottom: auto;
        gap: 9px;
    }

    .hero-dot-name {
        display: none;
    }

    .hero-dot {
        padding: 5px;
    }

    .hero-dot-circle {
        width: 7px;
        height: 7px;
        background: rgba(255,255,255,.45);
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary, .btn-groups {
        width: 100%;
        justify-content: center;
        padding: 15px;
        font-size: 15px;
        min-height: 48px;
    }

    .pub-picks-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-hdr {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .pub-contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pub-navbar {
        padding: 0 16px;
    }

    .pub-nav-links.d-none {
        display: none !important;
    }

    .navbar-toggler {
        display: flex;
    }

    .licence-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .licence-label-col {
        border-right: none;
        border-bottom: 1px solid var(--pub-border);
        padding-right: 0;
        padding-bottom: 24px;
        margin-right: 0;
        margin-bottom: 0;
    }

    .picks-scroll {
        grid-template-columns: 1fr;
    }

    .usp-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .hero-headline {
        font-size: 29px;
    }
}

/* ═══════════════════════════════════════
   FAITH & PILGRIMAGE JOURNEYS SECTION
═══════════════════════════════════════ */
.pub-faith-section {
    background: #0A0C1E;
    position: relative;
    overflow: hidden;
}

.pub-faith-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

.pub-faith-inner-v2 {
    display: block;
    min-height: 0;
    padding: 88px 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.faith-header-v2 {
    max-width: 620px;
    margin: 0 auto 44px;
    text-align: center;
}

    .faith-header-v2 .faith-eyebrow {
        justify-content: center;
    }

.faith-packages-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.faith-cta-wrap {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .pub-faith-inner-v2 {
        padding: 48px 16px;
    }

    .faith-header-v2 {
        margin-bottom: 28px;
    }

    .faith-packages-grid {
        gap: 14px;
        margin-bottom: 28px;
    }

    .faith-pkg-card {
        width: 100%;
    }

    .faith-pkg-img {
        height: 200px;
    }

    .faith-pkg-title {
        font-size: 22px;
    }
}

/* ── Faith Left ── */
.pub-faith-left {
    padding: 72px 52px 72px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.faith-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.faith-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--pub-gold);
}

.faith-eyebrow span {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--pub-gold);
}

.faith-headline {
    font-family: var(--ff-head);
    font-size: clamp(34px,3.2vw,52px);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

    .faith-headline em {
        font-style: italic;
        color: var(--pub-gold);
        font-weight: 400;
    }

.faith-desc {
    font-family: var(--ff-body);
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    margin-bottom: 32px;
    width: 100%;
}

    .faith-desc strong {
        color: var(--pub-gold-light);
        font-weight: 700;
    }

/* ── Faith Package Cards ── */
.faith-pkg-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,169,110,.2);
    border-radius: var(--r);
    padding: 0;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
    width:505px;
}

    .faith-pkg-card:hover {
        transform: translateY(-4px);
        border-color: rgba(201,169,110,.45);
        box-shadow: 0 20px 48px rgba(0,0,0,.35);
    }

.faith-pkg-img {
    margin: 0;
    height: 230px;
    border-radius: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.faith-pkg-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,10,30,.88) 0%, rgba(8,10,30,.15) 55%, transparent 100%);
}

.faith-pkg-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(201,169,110,.9);
    color: #fff;
    border-radius: 100px;
    padding: 4px 12px;
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.faith-pkg-img .faith-seats-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(13,18,35,.65);
    backdrop-filter: blur(8px);
}

.faith-pkg-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 20px 22px 0;
}

.faith-pkg-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(201, 169, 110, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.faith-tour-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}

.faith-pkg-icon {
    font-size: 16px;
    color: var(--pub-gold);
}

.faith-pkg-info {
    flex: 1;
    min-width: 0;
}

.faith-pkg-title {
    font-family: var(--ff-head);
    position: absolute;
    left: 20px;
    bottom: 0px;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 3px;
    font-style: italic;
}

.faith-pkg-countries {
    font-family: var(--ff-body);
    font-size: 12px;
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    gap: 5px;
}

.faith-pkg-globe img {
    width: 15px;
    position: relative;
    top: -3px;
}

.faith-seats-badge {
    flex-shrink: 0;
    text-align: center;
    background: rgba(220,38,38,.15);
    border: 1px solid rgba(220,38,38,.35);
    border-radius: 8px;
    padding: 4px 10px;
}

    .faith-seats-badge span {
        display: block;
        font-family: var(--ff-head);
        font-size: 22px;
        font-weight: 700;
        color: #EF4444;
        line-height: 1;
    }

    .faith-seats-badge small {
        font-family: var(--ff-body);
        font-size: 8px;
        font-weight: 700;
        letter-spacing: .1em;
        color: #EF4444;
        text-transform: uppercase;
    }

.faith-pkg-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 22px;
}

.faith-price-from {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

.faith-price-val {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 600;
    color: var(--pub-gold);
}

.faith-price-pp {
    font-family: var(--ff-body);
    font-size: 10px;
    color: rgba(255,255,255,.4);
}

.faith-pkg-register {
    width: 100%;
    padding: 14px;
    min-height: 48px;
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    background: var(--pub-grad-secondary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(160, 120, 64, .3);
    transition: all .2s;
    justify-content: center;
    margin-top: 10px;
}

    .faith-pkg-register:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(160,120,64,.42);
        color: #fff;
    }

.faith-pkg-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.faith-tag {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 600;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.65);
    border-radius: 100px;
    padding: 3px 10px;
}

.faith-pkg-loading {
    display: flex;
    justify-content: center;
    padding: 32px;
}

.faith-spinner {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,.15);
    border-top-color: var(--pub-gold);
    animation: spin .7s linear infinite;
}

.faith-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 13px 26px;
    border-radius: 100px;
    background: var(--pub-grad-secondary);
    color: #fff;
    border: none;
    transition: all .2s;
    box-shadow: 0 4px 18px rgba(160, 120, 64, .3);
    text-decoration: none;
    border: 1px solid var(--pub-gold);
}

.faith-tour-card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 22px 24px;
}

.faith-tour-tag {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
    background: rgba(201, 169, 110, .12);
    color: var(--pub-gold);
    border: 1px solid rgba(201, 169, 110, .2);
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    max-width: 100%;
}

.faith-explore-btn:hover {
    background: transparent;
    border: 1px solid var(--pub-gold);
    color: var(--pub-gold);
    box-shadow: 0 8px 26px rgba(160, 120, 64, .45);
    transform: translateY(-2px);
}

/* ── Faith Right (Image Mosaic) ── */
.pub-faith-right {
    position: relative;
}

.faith-mosaic {
    display: grid;
    grid-template-rows: 60% 40%;
    gap: 3px;
    padding: 3px;
    height: 100%;
    overflow: hidden;
}

.faith-mosaic-top {
    flex: 1.4;
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.faith-mosaic-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.faith-mosaic-img {
    position: absolute;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform .5s ease;
    inset: 0;
}

.faith-img-sm {
    position: relative;
    overflow: hidden;
}

    .faith-img-sm:last-child {
        border-radius: 0 0 14px 0;
    }

.faith-mosaic-img:hover {
    transform: scale(1.02);
}

.faith-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,.75) 0%, rgba(13,27,42,.1) 60%);
}

.faith-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
}

.faith-cap-sm {
    padding: 14px;
}

.faith-cap-badge {
    display: inline-block;
    background: var(--pub-gold);
    color: #fff;
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.faith-cap-name {
    font-family: var(--ff-head);
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.2;
}

.faith-cap-sm .faith-cap-name {
    font-size: 16px;
}

.faith-cap-sub {
    font-family: var(--ff-body);
    font-size: 11px;
    color: rgba(255,255,255,.6);
    margin-top: 3px;
}

/* ═══════════════════════════════════════
   ATM'S PICKS — REDESIGNED
═══════════════════════════════════════ */
.pub-atmpicks-section {
    padding: 88px 24px;
    background: var(--pub-white);
    overflow: hidden;
}

.atmpicks-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 20px;
    flex-wrap: wrap;
}

.atmpicks-header-left {
    max-width: 520px;
}

.atmpicks-header-right {
    text-align: right;
}

.atmpicks-month-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg,var(--pub-gold-dark),var(--pub-gold));
    color: #fff;
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    margin-bottom: 14px;
    width: fit-content;
}

.picks-month-txt {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.atmpicks-title {
    font-family: var(--ff-head);
    font-size: clamp(34px,3.60vw,52px);
    font-weight: 600;
    color: var(--pub-ink);
    line-height: 1.05;
    margin-bottom: 14px;
}

    .atmpicks-title em {
        font-style: italic;
        color: var(--pub-gold);
        font-weight: 400;
    }

.atmpicks-sub {
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--pub-muted);
    line-height: 1.75;
    max-width: 440px;
}

.atmpicks-update-note {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: flex-end;
    font-family: var(--ff-body);
    font-size: 11px;
    color: var(--pub-faint);
    margin-bottom: 10px;
}

.atmpicks-update-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulse 2s infinite;
}

.atmpicks-plan-link {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--pub-primary);
    border: none;
    text-decoration: none;
    border-bottom: 2px solid var(--pub-primary);
    padding-bottom: 2px;
    transition: opacity .2s;
    background: none;
}

    .atmpicks-plan-link:hover {
        opacity: .7;
    }

/* ATM Pick Card */
.atmpicks-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.atmpicks-loading {
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    padding: 48px;
}

.atmpicks-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 48px;
    color: var(--pub-muted);
    font-family: var(--ff-body);
}

.atmpick-card {
    background: var(--pub-white);
    border: 1px solid var(--pub-border);
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}

    .atmpick-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 48px rgba(59,79,228,.12);
    }

.atmpick-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.atmpick-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}

.atmpick-card:hover .atmpick-img-bg {
    transform: scale(1.05);
}

.atmpick-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,12,50,.82) 0%, rgba(8,12,50,.1) 55%, transparent 100%);
}

.atmpick-season-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: linear-gradient(135deg, var(--pub-gold-dark), var(--pub-gold));
    color: #fff;
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.atmpick-why-label {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(8,12,50,.7);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.4;
    padding: 5px 9px;
    border-radius: 7px;
}

.atmpick-dest-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 14px 16px;
}

.atmpick-region {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 4px;
}

.atmpick-dest {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.15;
}

.atmpick-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.atmpick-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.atmpick-nights {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--pub-muted);
    padding-top: 4px;
}

.atmpick-price-wrap {
    text-align: right;
}

.atmpick-from {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9EA2C8;
    display: block;
    width: 100%;
}

.atmpick-price {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 600;
    color: var(--pub-primary-deep);
    line-height: 1;
}

.atmpick-pp {
    font-family: var(--ff-body);
    font-size: 10px;
    color: #9EA2C8;
    display: block;
    width: 100%;
}

.atmpick-editorial {
    font-family: var(--ff-body);
    font-size: 12px;
    color: var(--pub-muted);
    line-height: 1.7;
    margin-bottom: 10px;
    flex: 1;
}

.atmpick-highlights {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.atmpick-hl {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
    background: #f8f5ee;
    color: var(--pub-gold);
    border: 1px solid var(--pub-gold);
}

.atmpick-editorial strong {
    color: var(--pub-ink);
    font-weight: 700;
}

.atmpick-countries {
    font-family: var(--ff-body);
    font-size: 11px;
    color: var(--pub-primary);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-weight: 700;
}

.atmpick-globe {
    font-size: 11px;
}

.atmpick-country-link {
    color: var(--pub-primary);
    font-weight: 700;
    text-decoration: none;
}

.atmpick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.atmpick-tag {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    background: var(--pub-gold-light);
    border: 1px solid var(--pub-gold);
    color: var(--pub-gold);
    border-radius: 100px;
    padding: 3px 9px;
}

.atmpick-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--r-sm);
    background: var(--pub-grad-secondary);
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    transition: opacity .2s;
    margin-top: auto;
}

    .atmpick-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 22px rgba(160,120,64,.38);
        color: #fff;
    }

    .atmpick-btn span {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: rgba(255,255,255,.25);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
    }

/* ─── Faith + Picks Responsive ────────────── */
@media (max-width: 1100px) {
    .atmpicks-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 1024px) {
    .pub-faith-inner {
        grid-template-columns: 1fr;
    }

    .pub-faith-right {
        min-height: 420px;
    }

    .faith-mosaic {
        height: 420px;
    }

    .faith-mosaic-top {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .pub-faith-left {
        padding: 48px 20px;
    }

    .faith-mosaic-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .atmpicks-grid {
        grid-template-columns: 1fr;
    }

    .atmpicks-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .atmpicks-header-right {
        text-align: left;
    }

    .atmpicks-update-note {
        justify-content: flex-start;
    }
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR CENTERING FIX  (Req 3)
   ═══════════════════════════════════════════════════════════ */
/* Override: make nav links truly centered between logo and right actions */
.pub-navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
}

#pub-nav-center {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 2px;
}

    #pub-nav-center .fa-sort-down {
        position: relative;
        top: -3px;
    }

.pub-nav-right {
    flex-shrink: 0;
}

.pub-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(59,79,228,.08);
    border: 1.5px solid var(--pub-border);
    color: var(--pub-primary);
    cursor: pointer;
    transition: all .2s;
    font-size: 16px;
}

    .pub-theme-toggle:hover {
        background: var(--pub-primary);
        color: #fff;
        border-color: var(--pub-primary);
    }

@media (max-width: 768px) {
    .pub-navbar {
        grid-template-columns: auto auto;
    }

    #pub-nav-center {
        display: none !important;
    }

    .pub-nav-right {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   TOAST CENTERING — Public  (Req 10)
   ═══════════════════════════════════════════════════════════ */
#atm-toast-container {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    width: max-content;
    max-width: 90vw;
}

.atm-toast {
    pointer-events: all;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 40px rgba(0,0,0,.28);
    animation: toastIn .25s ease;
    min-width: 280px;
    max-width: 480px;
}


.atm-toast-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    opacity: .6;
    padding: 0 0 0 8px;
    flex-shrink: 0;
    transition: opacity .2s;
    color: inherit;
}






/* ═══════════════════════════════════════════════════════════
   DARK MODE — Public  (Req 9)
   ═══════════════════════════════════════════════════════════ */
[data-theme="dark"] {
    --pub-white: #0e1117;
    --pub-off: #161b22;
    --pub-ink: #e6edf3;
    --pub-muted: #8b949e;
    --pub-faint: #556372;
    --pub-border: #30363d;
    color-scheme: dark;
}

    [data-theme="dark"] body {
        background: var(--pub-white);
        color: var(--pub-ink);
    }

    [data-theme="dark"] .pub-navbar {
        background: rgba(14,17,23,.97);
        border-bottom-color: var(--pub-border);
    }

    [data-theme="dark"] .pub-nav-links a {
        color: #93c5fd;
    }

    [data-theme="dark"] #mob-nav {
        background: var(--pub-off);
    }

    [data-theme="dark"] .pick-card,
    [data-theme="dark"] .pub-pkg-card {
        background: var(--pub-off);
        border-color: var(--pub-border);
    }

    [data-theme="dark"] .pub-usp-section { /* navy — keep dark */
    }

    [data-theme="dark"] .pub-footer { /* keep dark — already dark */
    }

    [data-theme="dark"] .pub-form-modal {
        background: var(--pub-off);
    }

    [data-theme="dark"] .fm-input {
        background: var(--pub-white);
        border-color: var(--pub-border);
        color: var(--pub-ink);
    }

    [data-theme="dark"] .bk-card {
        background: var(--pub-off);
        border-color: var(--pub-border);
    }

    [data-theme="dark"] .bk-input {
        background: var(--pub-white);
        border-color: var(--pub-border);
        color: var(--pub-ink);
    }

    [data-theme="dark"] .bk-summary {
        background: var(--pub-off);
    }

    [data-theme="dark"] .atmpick-card,
    [data-theme="dark"] .faith-pkg-card { /* already dark themed — ok */
    }

/* ═══════════════════════════════════════════════════════════
   SECTION A — All-inclusive Packages  (Req 1)
   ═══════════════════════════════════════════════════════════ */
.pub-allinclusive-section {
    padding: 88px 24px;
    background: var(--pub-off);
    overflow: hidden;
}

.allinc-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.allinc-see-all {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    white-space: nowrap;
    transition: opacity .15s;
}

    .allinc-see-all:hover {
        opacity: .65;
    }

.allinc-header {
    max-width: 640px;
    margin-bottom: 48px;
}

.allinc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(34, 197, 94, .1);
    padding: 5px 14px;
    border-radius: 100px;
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(34, 197, 94, .3);
    color: #16A34A;
}

.allinc-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulse 2s infinite;
}

.allinc-title {
    font-family: var(--ff-head);
    font-size: clamp(34px,3.2vw,52px);
    font-weight: 600;
    color: var(--pub-ink);
    line-height: 1.1;
    margin-bottom: 14px;
}

.sec-title em {
    font-style: italic;
    color: var(--pub-primary);
    font-weight: 400;
}

.sec-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--pub-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

    .sec-eyebrow::before {
        content: "";
        width: 22px;
        height: 1.5px;
        background: var(--pub-primary);
    }

.allinc-title em {
    font-style: italic;
    color: var(--pub-primary);
    font-weight: 400;
}

.allinc-desc {
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--pub-muted);
    line-height: 1.8;
    max-width: 480px;
}

.allinc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

/* All-inclusive card */
.allinc-card {
    background: var(--pub-white);
    border: 1px solid var(--pub-border);
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}

    .allinc-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 44px rgba(59,79,228,.12);
    }

.allinc-card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #eee;
}

    .allinc-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

.allinc-card:hover .allinc-card-img img {
    transform: scale(1.05);
}

.allinc-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,12,50,.8) 0%, transparent 60%);
}

.allinc-seats-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 90px;
    min-height: 95px;
    padding: 0px 14px 0px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Glassmorphism */
    background: rgba(10,12,30,.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18);
    z-index: 10;
}

.allinc-seats-num {
    font-family: var(--ff-head);
    font-size: 28px;
    font-weight: 700;
    margin: 0px 0px 3px;
    line-height: 1;
}

.allinc-seats-label {
    font-size: 9px;
    color: rgba(255,255,255,.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 8px 0 4px;
}

.allinc-seats-text {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    margin: 0;
}

.allinc-seat-progress {
    width: 38px;
    height: 4px;
    background: rgba(255,255,255,.15);
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

    .allinc-seat-progress span {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

.allinc-seats-urgent-txt {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    margin-top: 3px;
    line-height: 1.3;
}

.allinc-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--pub-gold);
    color: #fff;
    border-radius: 100px;
    padding: 3px 10px;
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.allinc-dest {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 12px 14px;
    font-family: var(--ff-head);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
}

.allinc-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.allinc-gd-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 11px 14px;
    background: rgba(59, 79, 228, .045);
    border: 1px solid rgba(59, 79, 228, .11);
    border-radius: 8px;
    margin-bottom: 14px;
}

.allinc-title-sm {
    font-family: var(--ff-head);
    font-size: 19px;
    font-weight: 600;
    color: var(--pub-ink);
    margin-bottom: 6px;
    line-height: 1.3;
    width: 70%;
}

.allinc-meta {
    font-family: var(--ff-body);
    font-size: 12px;
    color: var(--pub-muted);
    margin-bottom: 12px;
}

.allinc-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.allinc-price {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--pub-grad-start);
    width: 30%;
    text-align: end;
}

.allinc-price-block {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--pub-grad-start);
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: normal;
}

.allinc-price-from {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #9EA2C8;
}

.allinc-price-label {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9EA2C8;
    margin-bottom: 2px;
}

.allinc-price-per {
    font-family: var(--ff-body);
    font-size: 10px;
    color: #9EA2C8;
}

.allinc-meta {
    display: flex;
    border-top: 1px solid #dde0f8;
    border-bottom: 1px solid #dde0f8;
    padding: 11px 0;
    margin-bottom: 14px;
}

.allinc-meta-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 12px;
    border-right: 1px solid #dde0f8;
    margin-left: 5px;
}

    .allinc-meta-item:last-child {
        border-right: none;
        margin-left:25px;
    }

.allinc-meta-label {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9EA2C8;
}

.allinc-meta-val {
    font-family: var(--ff-body);
    font-size: 12.5px;
    font-weight: 700;
    color: #0A0C1E;
}

.allinc-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.allinc-tag {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 100px;
    background: #f8f5ee;
    color: #A07840;
    border: 1px solid rgba(201,169,110,.3);
    cursor: pointer;
}

.allinc-register-btn {
    width: 100%;
    padding: 13px;
    background: var(--pub-grad);
    color: #fff;
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: unset;
}

.allinc-loading {
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    padding: 48px;
}

.allinc-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 48px;
    color: var(--pub-muted);
    font-family: var(--ff-body);
}

@media (max-width: 1100px) {
    .allinc-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 600px) {
    .allinc-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION B — Our Services  (Req 1)
   ═══════════════════════════════════════════════════════════ */
.pub-services-section {
    padding: 88px 24px;
    position: relative;
    overflow: hidden;
}
/*.pub-services-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(59,79,228,.4) 0%, transparent 70%);
    pointer-events: none;
}*/
.services-header {
    text-align: left;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.services-header-eyebrow {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--pub-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

    .services-header-eyebrow::before {
        content: "";
        width: 22px;
        height: 1.5px;
        background: var(--pub-primary);
    }

.services-title {
    font-family: var(--ff-head);
    font-size: clamp(34px, 3.60vw, 52px);
    font-weight: 600;
    color: var(--pub-ink);
    line-height: 1.1;
}

    .services-title em {
        font-style: italic;
        color: var(--pub-primary);
        font-weight: 400;
    }

.services-subtitle {
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--pub-muted);
    line-height: 1.75;
    max-width: 440px;
}

.services-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.service-card {
    flex: 0 0 calc(25% - 12px);
    min-width: 230px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 30px 24px 24px;
    text-align: left;
    transition: transform .35s cubic-bezier(.2,.8,.3,1), box-shadow .35s, border-color .35s;
    cursor: default;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}



    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--blue), transparent);
        opacity: 0;
        transition: opacity .3s;
    }

    .service-card::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--blue);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform .3s;
    }

    .service-card:hover::after {
        transform: scaleY(1);
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 44px rgba(15, 26, 107, .09);
        border-color: rgba(59, 79, 228, .28);
    }

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(59, 79, 228, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px;
    font-size: 22px;
    color: var(--pub-primary);
}

.service-card-title {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 600;
    color: #0A0C1E;
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: -.01em;
}

.service-card-desc {
    font-family: var(--ff-body);
    font-size: 13px;
    color: var(--pub-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.serviceCardLabel {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--pub-gold-dark);
    margin-bottom: 8px;
}

.service-card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--pub-primary);
    text-decoration: none;
    transition: color .25s, gap .25s;
}

.service-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.service-card-tag {
    font-family: var(--ff-body);
    font-size: 10.5px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--pub-off);
    color: var(--pub-muted);
    border: 1px solid var(--pub-border);
    letter-spacing: .02em;
}

.service-card:hover .service-card-link {
    color: var(--pub-primary-deep);
    gap: 10px;
}

.services-loading {
    grid-column: 1/-1;
    text-align: center;
    padding: 48px;
    color: rgba(255,255,255,.5);
}

/* ── Search Hero ── */
.srch-hero {
    background: var(--pub-off, #F7F8FE);
    border-bottom: 1px solid var(--pub-border, #e8eaf6);
    padding: 52px 0 36px;
}

.srch-bar-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(59,79,228,.12);
    box-shadow: 0 4px 32px rgba(59,79,228,.08);
    padding: 20px 24px;
}

.srch-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--pub-muted, #5B5F80);
    margin-bottom: 6px;
}

    .srch-label i {
        font-size: 10px;
        color: var(--pub-primary, #3B4FE4);
    }

.srch-input {
    width: 100%;
    font-size: 14px;
    color: #0A0C1E;
    background: #FAFBFF;
    border: 1.5px solid #dde0f8;
    border-radius: 10px;
    padding: 11px 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
}

    .srch-input:focus {
        border-color: var(--pub-primary, #3B4FE4);
        box-shadow: 0 0 0 3px rgba(59,79,228,.1);
        background: #fff;
    }

.srch-btn {
    width: 100%;
    height: 44px;
    background: var(--pub-primary, #3B4FE4);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .1s;
}

    .srch-btn:hover {
        background: #2338CC;
        transform: translateY(-1px);
    }

    .srch-btn:active {
        transform: translateY(0);
    }

/* ── Quick filter chips ── */
.srch-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.srch-chip-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--pub-muted, #9EA2C8);
}

.srch-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1.5px solid rgba(59,79,228,.2);
    background: #fff;
    color: var(--pub-primary, #3B4FE4);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

    .srch-chip:hover {
        background: var(--pub-primary, #3B4FE4);
        color: #fff;
        border-color: transparent;
    }

/* ── Result meta ── */
.srch-result-meta {
    font-size: 14px;
    color: var(--pub-muted, #5B5F80);
    font-weight: 500;
}

.srch-sort-select {
    border: 1.5px solid #dde0f8;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    background: #fff;
    color: #0A0C1E;
    outline: none;
    cursor: pointer;
}

/* ── Detail page skeleton animation ── */
.pkg-detail-hero-skel {
    background: linear-gradient(135deg, #0f1a4a, #1e2f9f);
    min-height: 200px;
}

.pkg-skel-line {
    background: rgba(255,255,255,.12);
    border-radius: 6px;
    animation: skelPulse 1.4s ease-in-out infinite;
}

.pkg-skel-block {
    background: #eef0f8;
    animation: skelPulse 1.4s ease-in-out infinite;
}

@keyframes skelPulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark mode overrides for new sections */
[data-theme="dark"] .pub-allinclusive-section {
    background: var(--pub-off);
}

[data-theme="dark"] .allinc-card {
    background: #161b22;
    border-color: var(--pub-border);
}

/* Multi-card Carousel Container & Track for All-Inclusive Packages */
.allinc-carousel-container {
    position: relative;
    padding: 0 48px;
}

.allinc-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 4px 20px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.allinc-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.allinc-carousel-track .allinc-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    scroll-snap-align: start;
}

.allinc-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #dde0f8;
    color: var(--pub-ink, #0A0C1E);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.allinc-nav-btn:hover {
    background: var(--pub-primary, #3B4FE4);
    color: #ffffff;
    border-color: var(--pub-primary, #3B4FE4);
    box-shadow: 0 6px 18px rgba(59, 79, 228, 0.3);
}

.allinc-nav-prev { left: 4px; }
.allinc-nav-next { right: 4px; }

@media (max-width: 991px) {
    .allinc-carousel-container { padding: 0 36px; }
    .allinc-carousel-track .allinc-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 260px;
    }
    .allinc-nav-btn { width: 40px; height: 40px; font-size: 16px; }
}

@media (max-width: 575px) {
    .allinc-carousel-container { padding: 0 10px; }
    .allinc-carousel-track {
        gap: 14px;
        padding-bottom: 14px;
    }
    .allinc-carousel-track .allinc-card {
        flex: 0 0 88%;
        min-width: 240px;
    }
    .allinc-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .allinc-nav-prev { left: 0px; }
    .allinc-nav-next { right: 0px; }
}

/* ============================================================
   Phase 5C: merged from booking.css (file eliminated, content
   relocated here verbatim, byte-for-byte, per approved
   migration plan — Public-facing pages grouping)
   ============================================================ */

/* ============================================================
   Across The Monde — booking.css
   Customer-facing booking flow (uses _LayoutPublic.cshtml)
   Navy/Gold theme matching public.css
   ============================================================ */

/* ── Wrapper ── */
.bk-public-wrap {
    padding-top: 64px;
    min-height: 100vh;
    background: #FAFBFF;
}

/* ── Wizard Progress Bar ── */
.bk-wizard-bar {
    background: #fff;
    border-bottom: 1px solid #dde0f8;
    padding: 0;
}

    .bk-wizard-bar .container {
        padding: 0 24px;
    }

.bk-wizard-steps {
    display: flex;
    align-items: center;
    padding: 18px 0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

    .bk-wizard-steps::-webkit-scrollbar {
        display: none;
    }

.bk-ws {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    min-width: 72px;
}

.bk-ws-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    background: #eef0fb;
    color: #9EA2C8;
    border: 2px solid #dde0f8;
    transition: all .3s;
}

.bk-ws span {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #9EA2C8;
    letter-spacing: .03em;
    white-space: nowrap;
}

.bk-ws.active .bk-ws-circle {
    background: #3B4FE4;
    border-color: #3B4FE4;
    color: #fff;
}

.bk-ws.active span {
    color: #3B4FE4;
}

.bk-ws.done .bk-ws-circle {
    background: #C9A96E;
    border-color: #C9A96E;
    color: #fff;
}

.bk-ws.done span {
    color: #A07840;
}

.bk-ws-line {
    flex: 1;
    height: 2px;
    background: #dde0f8;
    min-width: 24px;
    margin-bottom: 18px;
    transition: background .3s;
}

    .bk-ws-line.active {
        background: #C9A96E;
    }

/* ── Container ── */
.bk-container {
    padding: 40px 24px 80px;
}

/* ── Cards ── */
.bk-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #dde0f8;
    box-shadow: 0 2px 16px rgba(59,79,228,.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.bk-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid #dde0f8;
    background: #FAFBFF;
}

    .bk-card-head h4 {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 22px;
        font-weight: 400;
        font-style: italic;
        color: #0A0C1E;
        margin: 0;
        flex: 1;
    }

.bk-card-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A96E, #A07840);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bk-edit-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #3B4FE4;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1.5px solid rgba(59,79,228,.2);
    transition: all .2s;
    flex-shrink: 0;
}

    .bk-edit-link:hover {
        background: #3B4FE4;
        color: #fff;
        border-color: #3B4FE4;
    }

.bk-card-body {
    padding: 24px;
}

/* ── Form inputs ── */
.bk-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #5B5F80;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.bk-input {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #0A0C1E;
    background: #FAFBFF;
    border: 1.5px solid #dde0f8;
    border-radius: 10px;
    padding: 11px 14px;
    outline: none;
    transition: border-color .2s;
    display: block;
}

    .bk-input:focus {
        border-color: #3B4FE4;
        background: #fff;
    }

textarea.bk-input {
    resize: vertical;
}

.bk-hint {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #5B5F80;
    margin-bottom: 20px;
}

.bk-hint-small {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: #9EA2C8;
}

/* ── Package search ── */
.bk-search-wrap {
    position: relative;
    margin-bottom: 20px;
}

.bk-search-ico {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9EA2C8;
    pointer-events: none;
}

.bk-search-wrap .bk-input {
    padding-left: 40px;
}

.bk-pkg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pkg-search-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1.5px solid #dde0f8;
    border-radius: 12px;
    cursor: pointer;
    transition: all .2s;
    background: #fff;
}

    .pkg-search-card:hover {
        border-color: #3B4FE4;
        box-shadow: 0 4px 16px rgba(59,79,228,.1);
    }

    .pkg-search-card img {
        width: 64px;
        height: 52px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
        background: #eee;
    }

.pkg-search-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .pkg-search-info .fw-600 {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: #0A0C1E;
    }

    .pkg-search-info .text-muted {
        font-family: 'DM Sans', sans-serif;
        font-size: 11px;
        color: #5B5F80;
    }

    .pkg-search-info .text-accent {
        font-family: 'Cormorant Garamond', serif;
        font-size: 16px;
        font-weight: 600;
        color: #3B4FE4;
    }

/* ── Selected package banner ── */
.bk-selected-banner {
    background: #0C1A3B;
    border-color: rgba(201,169,110,.3) !important;
}

.bk-selected-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    flex-wrap: wrap;
}

.bk-sel-img {
    width: 80px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(201,169,110,.3);
    flex-shrink: 0;
}

.bk-sel-info {
    flex: 1;
    min-width: 0;
}

.bk-sel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    color: #fff;
}

.bk-sel-dest {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,.6);
}

.bk-sel-dur {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,.5);
}

.bk-sel-price-col {
    text-align: right;
    flex-shrink: 0;
}

.bk-sel-from {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}

.bk-sel-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #C9A96E;
}

.bk-sel-pp {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,.4);
}

.bk-change-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #C9A96E;
    background: rgba(201,169,110,.12);
    border: 1.5px solid rgba(201,169,110,.35);
    border-radius: 100px;
    padding: 6px 16px;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
}

    .bk-change-btn:hover {
        background: #C9A96E;
        color: #fff;
    }

/* ── PAX selector ── */
.bk-pax-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.bk-pax-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 100px;
}

.bk-pax-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #5B5F80;
    text-transform: uppercase;
}

    .bk-pax-label small {
        font-weight: 400;
        text-transform: none;
    }

.bk-pax-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #dde0f8;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.bk-pax-btn {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #3B4FE4;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .bk-pax-btn:hover {
        background: #3B4FE4;
        color: #fff;
    }

    .bk-pax-btn i {
        font-size: 10px;
    }

.bk-pax-ctrl span {
    flex: 1;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0A0C1E;
}

/* ── Traveller form ── */
.bk-traveller-block {
    padding: 20px;
    border: 1.5px solid #dde0f8;
    border-radius: 14px;
    margin-bottom: 16px;
    background: #FAFBFF;
}

.bk-traveller-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #3B4FE4;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-traveller-badge {
    padding: 2px 10px;
    border-radius: 100px;
    background: rgba(59,79,228,.08);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #3B4FE4;
}

/* ── Addons ── */
.bk-addon-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1.5px solid #dde0f8;
    border-radius: 14px;
    margin-bottom: 12px;
    transition: border-color .2s;
    background: #fff;
}

    .bk-addon-item.selected {
        border-color: #C9A96E;
        background: rgba(201,169,110,.04);
    }

.bk-addon-check {
    flex-shrink: 0;
}

    .bk-addon-check input[type=checkbox] {
        width: 20px;
        height: 20px;
        accent-color: #C9A96E;
        cursor: pointer;
    }

.bk-addon-info {
    flex: 1;
}

.bk-addon-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0A0C1E;
}

.bk-addon-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #5B5F80;
    margin-top: 2px;
}

.bk-addon-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #3B4FE4;
    text-align: right;
    flex-shrink: 0;
}

.bk-addon-pp {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: #9EA2C8;
}

.bk-no-addons {
    text-align: center;
    padding: 40px 20px;
}
/*.bk-no-addons-ico { font-size: 40px; margin-bottom: 12px; }*/
.bk-no-addons-ico img {
    width: 100px;
}

.bk-no-addons p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #5B5F80;
}

.bk-no-addons small {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #9EA2C8;
}

.bk-sum-addons-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(201,169,110,.08);
    border-top: 1px solid rgba(201,169,110,.2);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #A07840;
}

/* ── Review ── */
.bk-review-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f2fe;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
}

    .bk-review-row:last-child {
        border-bottom: none;
    }

.bk-review-label {
    color: #5B5F80;
}

.bk-review-val {
    font-weight: 700;
    color: #0A0C1E;
    text-align: right;
}

.bk-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #5B5F80;
    cursor: pointer;
}

    .bk-checkbox-label input {
        margin-top: 2px;
        accent-color: #3B4FE4;
        cursor: pointer;
    }

    .bk-checkbox-label a {
        color: #3B4FE4;
        text-decoration: none;
        font-weight: 700;
    }

/* ── Passenger detail table ── */
.bk-pax-table {
    width: 100%;
    border-collapse: collapse;
}

    .bk-pax-table th {
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: #9EA2C8;
        padding: 0 0 8px;
        text-align: left;
        border-bottom: 1px solid #dde0f8;
    }

    .bk-pax-table td {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        color: #0A0C1E;
        padding: 10px 0;
        border-bottom: 1px solid #f0f2fe;
        vertical-align: top;
    }

    .bk-pax-table tr:last-child td {
        border-bottom: none;
    }

/* ── Payment ── */
.bk-pay-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.bk-pay-opt {
    border: 2px solid #dde0f8;
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    background: #fff;
}

    .bk-pay-opt:hover {
        border-color: #3B4FE4;
    }

    .bk-pay-opt.active {
        border-color: #3B4FE4;
        background: rgba(59,79,228,.04);
    }

.bk-pay-ico {
    font-size: 28px;
    margin-bottom: 6px;
}

.bk-pay-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #0A0C1E;
}

.bk-pay-fields {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bk-bank-info {
    background: rgba(59,79,228,.04);
    border: 1.5px solid rgba(59,79,228,.15);
    border-radius: 14px;
    padding: 20px;
    margin-top: 20px;
}

.bk-bank-info-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #3B4FE4;
    margin-bottom: 14px;
}

.bk-bank-info-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(59,79,228,.08);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #5B5F80;
}

    .bk-bank-info-row:last-of-type {
        border-bottom: none;
    }

    .bk-bank-info-row span:last-child {
        font-weight: 700;
        color: #0A0C1E;
    }

.bk-bank-info small {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: #9EA2C8;
    margin-top: 12px;
    display: block;
}

/* ── Summary sidebar ── */
.bk-summary {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #dde0f8;
    box-shadow: 0 4px 24px rgba(59,79,228,.08);
    overflow: hidden;
    z-index: 2;
}

.__clsDanger {
    font-size: 6px;
    position: relative;
    top: -5px;
    color: #e13636;
}

.bk-summary-head {
    background: linear-gradient(135deg, #0F1A6B, #1e2f9f);
    padding: 18px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
}

.bk-summary-body {
    padding: 16px 20px;
}

.bk-sum-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid #f0f2fe;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #5B5F80;
}

    .bk-sum-row:last-child {
        border: none;
    }

.bk-sum-val {
    font-weight: 700;
    color: #0A0C1E;
    text-align: right;
    font-size: 13px;
}

.bk-sum-divider {
    height: 1px;
    background: #dde0f8;
    margin: 4px 0;
}

.bk-sum-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0A0C1E;
}

    .bk-sum-total span:last-child {
        font-family: 'Cormorant Garamond', serif;
        font-size: 26px;
        font-weight: 600;
        color: #3B4FE4;
    }

.bk-sum-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: #9EA2C8;
    display: block;
    margin-top: 4px;
    padding: 0 0 12px;
}

.bk-next-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #3B4FE4, #2338CC);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: opacity .2s;
}

    .bk-next-btn:hover {
        opacity: .9;
    }

.bk-confirm-btn {
    background: linear-gradient(135deg, #C9A96E, #A07840);
    justify-content: center;
}

.bk-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: #25D366;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
}

    .bk-wa-btn:hover {
        background: #1ebe5c;
    }

.bk-back-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #5B5F80;
    transition: color .2s;
}

    .bk-back-btn:hover {
        color: #3B4FE4;
    }

.bk-back-link {
    display: block;
    text-align: center;
    padding: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #9EA2C8;
    text-decoration: none;
}

    .bk-back-link:hover {
        color: #3B4FE4;
    }

/* ── Loading / spinner ── */
.bk-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 32px;
    color: #9EA2C8;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
}

.bk-spinner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #dde0f8;
    border-top-color: #3B4FE4;
    animation: bkSpin .7s linear infinite;
}

@keyframes bkSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Confirmation ── */
.bk-confirm-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #dde0f8;
    box-shadow: 0 8px 48px rgba(59,79,228,.1);
    padding: 48px 36px;
    text-align: center;
    margin: 40px auto;
}

.bk-confirm-check {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.bk-check-svg {
    width: 72px;
    height: 72px;
}

.bk-check-circle {
    stroke: #22C55E;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-miterlimit: 10;
    animation: bkCircle .6s cubic-bezier(.65,0,.45,1) forwards;
}

.bk-check-tick {
    stroke: #22C55E;
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: bkTick .4s .6s cubic-bezier(.65,0,.45,1) forwards;
}

@keyframes bkCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes bkTick {
    to {
        stroke-dashoffset: 0;
    }
}

.bk-confirm-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: #0A0C1E;
    margin-bottom: 10px;
}

.bk-confirm-ref {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #5B5F80;
    margin-bottom: 14px;
}

    .bk-confirm-ref strong {
        color: #3B4FE4;
    }

.bk-confirm-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #5B5F80;
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto 28px;
}

.bk-confirm-detail {
    text-align: left;
    background: #FAFBFF;
    border: 1px solid #dde0f8;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 28px;
}

.bk-confirm-next-steps {
    text-align: left;
    margin-bottom: 28px;
}

.bk-cns-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9EA2C8;
    margin-bottom: 16px;
}

.bk-cns-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #5B5F80;
    line-height: 1.6;
}

.bk-cns-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(59,79,228,.08);
    color: #3B4FE4;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bk-confirm-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .bk-wizard-steps {
        padding: 14px 0;
    }

    .bk-ws span {
        display: none;
    }

    .bk-ws {
        min-width: 40px;
    }

    .bk-ws-line {
        min-width: 12px;
    }

    .bk-container {
        padding: 24px 16px 60px;
    }

    .bk-pay-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .bk-pkg-grid {
        grid-template-columns: 1fr;
    }

    .bk-pax-row {
        gap: 12px;
    }

    .bk-selected-inner {
        flex-wrap: wrap;
    }

    .bk-confirm-card {
        padding: 32px 20px;
    }
}

/* ═══════════════════════════════════════════════════════════
   UI MODERNISATION ADDITIONS — booking.css
   Improved animations, package search cards, date inputs
   ═══════════════════════════════════════════════════════════ */

/* ── Page enter animation ── */
@keyframes bkFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bk-public-wrap {
    animation: bkFadeUp .4s ease;
}

/* ── Wizard bar improvements ── */
.bk-wizard-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255,255,255,.95) !important;
}

.bk-ws-circle {
    transition: background .25s, border-color .25s, transform .2s !important;
}

.bk-ws:hover .bk-ws-circle {
    transform: scale(1.08);
}

/* ── Package search result cards (inside booking flow) ── */
.bk-pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.bk-pkg-card {
    border-radius: 14px;
    border: 2px solid #dde0f8;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    animation: bkFadeUp .35s ease both;
}

    .bk-pkg-card:hover {
        border-color: var(--pub-primary, #3B4FE4);
        box-shadow: 0 6px 24px rgba(59,79,228,.12);
        transform: translateY(-2px);
    }

    .bk-pkg-card.selected {
        border-color: #C9A96E;
        background: rgba(201,169,110,.03);
    }

.bk-pkg-card-img {
    position: relative;
    height: 130px;
    overflow: hidden;
    background: #eef0fb;
}

    .bk-pkg-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .35s;
    }

.bk-pkg-card:hover .bk-pkg-card-img img {
    transform: scale(1.06);
}

.bk-pkg-card-body {
    padding: 12px 14px;
}

.bk-pkg-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0A0C1E;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bk-pkg-card-dest {
    font-size: 11px;
    color: #5B5F80;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bk-pkg-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: #3B4FE4;
}

.bk-pkg-card-pp {
    font-size: 10px;
    color: #9EA2C8;
}

/* ── Card stagger animation ── */
.bk-pkg-card:nth-child(1) {
    animation-delay: .04s;
}

.bk-pkg-card:nth-child(2) {
    animation-delay: .08s;
}

.bk-pkg-card:nth-child(3) {
    animation-delay: .12s;
}

.bk-pkg-card:nth-child(4) {
    animation-delay: .16s;
}

.bk-pkg-card:nth-child(5) {
    animation-delay: .20s;
}

.bk-pkg-card:nth-child(n+6) {
    animation-delay: .22s;
}

/* ── Date input ── */
input[type="date"].bk-input {
    color-scheme: light;
    cursor: pointer;
}

    input[type="date"].bk-input::-webkit-calendar-picker-indicator {
        opacity: .5;
        cursor: pointer;
        transition: opacity .2s;
    }

        input[type="date"].bk-input::-webkit-calendar-picker-indicator:hover {
            opacity: 1;
        }

/* ── Summary sidebar: improved price display ── */
.bk-sum-total {
    border-top: 2px solid rgba(59,79,228,.1);
    margin-top: 6px;
    padding-top: 12px !important;
}

/* ── Next button: pulse effect on hover ── */
.bk-next-btn {
    border-radius: 0 0 18px 18px !important;
    position: relative;
    overflow: hidden;
}

    .bk-next-btn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,.12);
        opacity: 0;
        transition: opacity .2s;
    }

    .bk-next-btn:hover::after {
        opacity: 1;
    }

/* ── Back button hover ── */
.bk-back-btn {
    transition: color .2s !important;
}

/* ── Card entry animation ── */
.bk-card {
    animation: bkFadeUp .35s ease both;
}

    .bk-card:nth-child(1) {
        animation-delay: .06s;
    }

    .bk-card:nth-child(2) {
        animation-delay: .12s;
    }

    .bk-card:nth-child(3) {
        animation-delay: .18s;
    }

/* ── Addon card hover ── */
.bk-addon-item {
    transition: border-color .2s, background .2s, transform .15s !important;
}

    .bk-addon-item:hover {
        border-color: rgba(201,169,110,.5) !important;
        transform: translateX(3px);
    }

/* ── Payment option hover ── */
.bk-pay-opt {
    transition: border-color .2s, background .2s, transform .15s !important;
}

    .bk-pay-opt:hover {
        transform: translateY(-2px);
    }

    .bk-pay-opt.active {
        transform: translateY(-2px);
    }

/* ── Confirmation page: fade in ── */
.bk-confirm-card {
    animation: bkFadeUp .5s ease .1s both;
}

/* ── Traveller block ── */
.bk-traveller-block {
    animation: bkFadeUp .3s ease both;
    transition: border-color .2s !important;
}

    .bk-traveller-block:hover {
        border-color: rgba(59,79,228,.3) !important;
    }

/* ── Progress bar line transition ── */
.bk-ws-line {
    transition: background .4s ease !important;
}

/* ── Form input animation ── */
.bk-input {
    transition: border-color .2s, box-shadow .2s, background .2s !important;
}

/* ── Bank info box entrance ── */
#bank-info-box {
    animation: bkFadeUp .3s ease;
}



/* ============================================================
   ISSUE #2 FIX — Booking Flow Luxury Consistency
   Aligns booking flow design with PackageDetail luxury theme
   (package-luxury.css: midnight navy + warm gold + ivory)
   ============================================================ */

/* ── Design tokens mirrored from package-luxury.css ── */
.bk-public-wrap {
    background: #FDFAF5 !important;
}

/* ── Wizard bar: luxury navy background ── */
.bk-wizard-bar {
    background: #0C1A3B !important;
    border-bottom: 1px solid rgba(201,169,110,.20) !important;
}

.bk-ws-circle {
    background: rgba(255,255,255,.08) !important;
    border-color: rgba(201,169,110,.25) !important;
    color: rgba(255,255,255,.45) !important;
    font-family: 'DM Sans', sans-serif !important;
}

.bk-ws span {
    color: rgba(255,255,255,.40) !important;
}

.bk-ws.active .bk-ws-circle {
    background: #C9A96E !important;
    border-color: #C9A96E !important;
    color: #0C1A3B !important;
    box-shadow: 0 0 0 5px rgba(201,169,110,.18) !important;
}

.bk-ws.active span {
    color: #C9A96E !important;
    font-weight: 700 !important;
}

.bk-ws.done .bk-ws-circle {
    background: rgba(201,169,110,.18) !important;
    border-color: rgba(201,169,110,.45) !important;
    color: #C9A96E !important;
}

.bk-ws.done span {
    color: rgba(255,255,255,.55) !important;
}

.bk-ws-line {
    background: rgba(255,255,255,.10) !important;
}

    .bk-ws-line.active {
        background: rgba(201,169,110,.45) !important;
    }

/* ── Cards: ivory background, gold borders ── */

.bk-card-head {
    background: #FDFAF5 !important;
    border-bottom: 1px solid rgba(201,169,110,.15) !important;
}

    .bk-card-head h4 {
        font-family: 'Cormorant Garamond', Georgia, serif !important;
        color: #0C1A3B !important;
        font-size: 20px !important;
    }

.bk-card-num {
    background: linear-gradient(135deg, #C9A96E, #A07840) !important;
}

/* ── Form inputs: gold focus ── */
.bk-input {
    border-color: rgba(201,169,110,.30) !important;
    background: #FDFAF5 !important;
    border-radius: 10px !important;
}

    .bk-input:focus {
        border-color: #C9A96E !important;
        background: #fff !important;
        box-shadow: 0 0 0 3px rgba(201,169,110,.12) !important;
    }

.bk-label {
    color: #5C6A8A !important;
}

/* ── PAX controls: gold accent ── */
.bk-pax-ctrl {
    border-color: rgba(201,169,110,.30) !important;
}

.bk-pax-btn {
    color: #C9A96E !important;
    background: #FDFAF5 !important;
}

    .bk-pax-btn:hover {
        background: #C9A96E !important;
        color: #fff !important;
    }

/* ── Package search card hover: gold ── */
.pkg-search-card {
    border-color: rgba(201,169,110,.20) !important;
}

    .pkg-search-card:hover {
        border-color: #C9A96E !important;
        box-shadow: 0 4px 20px rgba(201,169,110,.15) !important;
    }

.pkg-search-info .text-accent {
    color: #A07840 !important;
    font-family: 'Cormorant Garamond', serif !important;
}

/* ── Summary sidebar: luxury navy ── */
.bk-summary {
    background: linear-gradient(160deg, #0C1A3B 0%, #1F3460 100%) !important;
    border: 1px solid rgba(201,169,110,.22) !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 40px rgba(12,26,59,.18) !important;
}

.bk-summary-head {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    font-style: italic !important;
    color: #fff !important;
    border-bottom-color: rgba(201,169,110,.20) !important;
    background: transparent !important;
    padding: 22px 24px 18px !important;
}

.bk-sum-row span:first-child {
    color: rgba(255,255,255,.55) !important;
    font-family: 'DM Sans', sans-serif !important;
}

.bk-sum-val {
    color: rgba(255,255,255,.85) !important;
    font-family: 'DM Sans', sans-serif !important;
}

.bk-sum-divider {
    border-top-color: rgba(201,169,110,.20) !important;
}

.bk-sum-total > span:first-child {
    color: rgba(255,255,255,.7) !important;
    font-family: 'DM Sans', sans-serif !important;
}

.bk-sum-total > span:last-child {
    color: #C9A96E !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 22px !important;
}

.bk-sum-note {
    color: rgba(255,255,255,.35) !important;
}

/* ── Next / CTA button: gold ── */
.bk-next-btn {
    background: linear-gradient(135deg, #C9A96E, #A07840) !important;
    border: none !important;
    color: #fff !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(201,169,110,.30) !important;
}

    .bk-next-btn:hover {
        background: linear-gradient(135deg, #e0ba7a, #C9A96E) !important;
        box-shadow: 0 6px 28px rgba(201,169,110,.45) !important;
        transform: translateY(-1px) !important;
    }

.bk-back-btn {
    color: rgba(255,255,255,.55) !important;
    border-color: rgba(255,255,255,.15) !important;
    background: transparent !important;
}

    .bk-back-btn:hover {
        color: #fff !important;
        border-color: rgba(255,255,255,.35) !important;
    }

.bk-back-link {
    color: rgba(255,255,255,.45) !important;
}

    .bk-back-link:hover {
        color: #C9A96E !important;
    }

/* ── Edit link: gold ── */
.bk-edit-link {
    color: #C9A96E !important;
    border-color: rgba(201,169,110,.35) !important;
}

    .bk-edit-link:hover {
        background: #C9A96E !important;
        color: #fff !important;
        border-color: #C9A96E !important;
    }

/* ── Checkbox: gold ── */
.bk-checkbox-label input[type="checkbox"] {
    accent-color: #C9A96E;
}

/* ── Review rows ── */
.bk-review-row {
    border-bottom-color: rgba(201,169,110,.10) !important;
}

.bk-review-label {
    color: #5C6A8A !important;
}

.bk-review-val {
    color: #0C1A3B !important;
}

/* ── PAX table header ── */

/* ── Payment options: gold active ── */
.bk-pay-opt {
    border-color: rgba(201,169,110,.20) !important;
}

    .bk-pay-opt.active {
        border-color: #C9A96E !important;
        background: rgba(201,169,110,.07) !important;
    }

        .bk-pay-opt.active .bk-pay-radio {
            background: #C9A96E !important;
            border-color: #C9A96E !important;
        }

/* ── Mode notice ── */
#bk-mode-notice {
    color: rgba(255,255,255,.45) !important;
}

/* ── Addon cards ── */
.bk-addon-card {
    border-color: rgba(201,169,110,.18) !important;
}

    .bk-addon-card.selected {
        border-color: #C9A96E !important;
        background: rgba(201,169,110,.05) !important;
    }

.bk-addon-check {
    border-color: rgba(201,169,110,.35) !important;
    accent-color: #C9A96E;
}

.bk-addon-card.selected .bk-addon-check {
    background: #C9A96E !important;
    border-color: #C9A96E !important;
}

/* ============================================================
   Phase 5C: merged from package-luxury.css (file eliminated, content
   relocated here verbatim, byte-for-byte, per approved
   migration plan — Public-facing pages grouping)
   ============================================================ */

/* ============================================================
   ATM Travels — package-luxury.css
   Premium redesign: Package Detail, Itinerary, Inclusion/Exclusion,
   Booking Success, Request Success
   Design: Midnight Navy + Warm Gold + Ivory — Luxury Travel
   DO NOT MODIFY any existing classes in public.css or booking.css
   ============================================================ */
/* Self-contained font import — ensures luxury fonts load even if public.css order changes */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ── LUXURY DESIGN TOKENS ── */
:root {
    --lux-navy: #0C1A3B;
    --lux-navy-mid: #162648;
    --lux-navy-soft: #1F3460;
    --lux-gold: #C9A96E;
    --lux-gold-light: #E8C98A;
    --lux-gold-pale: #F5EDD8;
    --lux-ivory: #FDFAF5;
    --lux-white: #FFFFFF;
    --lux-ink: #0C1A3B;
    --lux-muted: #5C6A8A;
    --lux-faint: #A0ADCA;
    --lux-border: rgba(201,169,110,.18);
    --lux-border-md: rgba(201,169,110,.28);
    --lux-shadow: 0 8px 40px rgba(12,26,59,.10);
    --lux-shadow-lg: 0 20px 60px rgba(12,26,59,.16);
    --lux-r: 16px;
    --lux-r-sm: 10px;
    --lux-r-lg: 24px;
    --ff-head: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'DM Sans', system-ui, sans-serif;
}

/* ═══════════════════════════════════════════════
   PACKAGE DETAIL — HERO
═══════════════════════════════════════════════ */
.lux-hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

    .lux-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(12,26,59,.92) 0%, rgba(12,26,59,.45) 50%, rgba(12,26,59,.10) 100% );
        z-index: 1;
    }

.lux-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 48px;
    width: 100%;
}

.lux-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--lux-gold-light);
    margin-bottom: 14px;
}

.lux-hero-eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--lux-gold);
    opacity: .6;
}

.lux-hero-title {
    font-family: var(--ff-head);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 16px;
}

.lux-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lux-hero-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    padding: 6px 14px;
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.92);
}

    .lux-hero-pill i {
        color: var(--lux-gold-light);
        font-size: 11px;
    }

.lux-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
    border-radius: 100px;
    padding: 5px 13px;
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--lux-navy);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Breadcrumb over hero */
.lux-breadcrumb {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0;
}

    .lux-breadcrumb .container {
        display: flex;
        align-items: center;
        gap: 6px;
        font-family: var(--ff-body);
        font-size: 12px;
        color: rgba(255,255,255,.65);
    }

    .lux-breadcrumb a {
        color: rgba(255,255,255,.65);
        text-decoration: none;
        transition: color .2s;
    }

        .lux-breadcrumb a:hover {
            color: var(--lux-gold-light);
        }

    .lux-breadcrumb .sep {
        opacity: .4;
    }

/* Image gallery strip */
.lux-gallery-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    margin: 24px 0 0;
    border-radius: var(--lux-r);
    overflow: hidden;
    max-height: 260px;
}

.lux-gallery-strip-item {
    background: #e0e4f0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

    .lux-gallery-strip-item:first-child {
        grid-row: span 2;
        max-height: 260px;
    }

    .lux-gallery-strip-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

    .lux-gallery-strip-item:hover img {
        transform: scale(1.04);
    }

.lux-gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(12,26,59,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════
   PACKAGE HIGHLIGHTS BAR
═══════════════════════════════════════════════ */
.lux-highlights-bar {
    background: var(--lux-navy);
    border-bottom: 1px solid rgba(201,169,110,.15);
}

.lux-highlights-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 0;
}

.lux-hl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    border-right: 1px solid rgba(255,255,255,.08);
    flex: 1;
    min-width: 140px;
}

    .lux-hl-item:last-child {
        border-right: none;
    }

.lux-hl-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(201,169,110,.12);
    border: 1px solid rgba(201,169,110,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    color: var(--lux-gold);
}

.lux-hl-label {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--lux-faint);
    line-height: 1;
    margin-bottom: 3px;
}

.lux-hl-value {
    font-family: var(--ff-head);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.lux-detail-wrap {
    background: var(--lux-ivory);
    padding: 48px 0 80px;
}

.lux-main { /* left column */
}

.lux-sidebar { /* right sticky column */
}

/* ── Section heading ── */
.lux-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.lux-section-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lux-navy), var(--lux-navy-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-gold);
    font-size: 16px;
    flex-shrink: 0;
}

.lux-section-title {
    font-family: var(--ff-head);
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    color: var(--lux-ink);
    line-height: 1.2;
    margin: 0;
}

.lux-section-subtitle {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--lux-faint);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 1px;
}

/* ── Content cards ── */
.lux-card {
    background: var(--lux-white);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-r-lg);
    box-shadow: var(--lux-shadow);
    overflow: hidden;
    margin-bottom: 24px;
}

.lux-card-pad {
    padding: 32px;
}

.lux-overview-text {
    font-family: var(--ff-body);
    font-size: 15px;
    line-height: 1.85;
    color: var(--lux-muted);
}

    .lux-overview-text p {
        margin-bottom: 14px;
    }

        .lux-overview-text p:last-child {
            margin-bottom: 0;
        }

/* ═══════════════════════════════════════════════
   DAY-BY-DAY ITINERARY — Day Plan nav + day cards
═══════════════════════════════════════════════ */
.lux-itin-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.lux-itin-nav {
    flex-shrink: 0;
    width: 168px;
    position: sticky;
    top: 90px;
}

.lux-itin-nav-label {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--lux-faint);
    margin-bottom: 8px;
    padding-left: 2px;
}

.lux-daynav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--lux-r-sm);
    cursor: pointer;
    border-left: 2px solid transparent;
    transition: background .15s, border-color .15s;
}

    .lux-daynav-item:hover {
        background: var(--lux-gold-pale);
    }

    .lux-daynav-item.active {
        background: var(--lux-gold-pale);
        border-left-color: var(--lux-gold);
    }

.lux-daynav-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    background: var(--lux-navy);
    color: var(--lux-gold-light);
}

.lux-daynav-item.active .lux-daynav-num {
    background: var(--lux-gold);
    color: var(--lux-navy);
}

.lux-daynav-label {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--lux-ink);
    line-height: 1.3;
}

    .lux-daynav-label small {
        display: block;
        font-size: 10.5px;
        font-weight: 400;
        color: var(--lux-muted);
    }

.lux-itin-days {
    flex: 1;
    min-width: 0;
}

.lux-day-card {
    background: var(--lux-white);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-r-sm);
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(12,26,59,.05);
    transition: box-shadow .2s, border-color .2s;
    margin-bottom: 12px;
}

    .lux-day-card:last-child {
        margin-bottom: 0;
    }

    .lux-day-card:hover {
        box-shadow: 0 4px 20px rgba(12,26,59,.10);
        border-color: var(--lux-border-md);
    }

.lux-day-card-head {
    padding: 14px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.lux-day-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--lux-navy), var(--lux-navy-soft));
    border: 1px solid var(--lux-gold);
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--lux-gold-light);
    text-transform: uppercase;
    letter-spacing: .05em;
    white-space: nowrap;
}

.lux-day-head-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lux-day-title {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--lux-ink);
}

.lux-day-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lux-day-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 9px;
    border-radius: 100px;
    font-family: var(--ff-body);
    font-size: 10.5px;
    font-weight: 600;
    background: var(--lux-ivory);
    color: var(--lux-navy-soft);
    border: 1px solid var(--lux-border);
}

    .lux-day-chip i {
        font-size: 9px;
        color: var(--lux-gold-dark, #A07840);
    }

.lux-tl-chevron {
    font-size: 11px;
    color: var(--lux-faint);
    transition: transform .25s;
    flex-shrink: 0;
}

.lux-day-card.open .lux-tl-chevron {
    transform: rotate(180deg);
}

.lux-day-card-body {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid var(--lux-border);
}

.lux-day-card.open .lux-day-card-body {
    display: block;
    padding-top: 14px;
}

.lux-day-card-inner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.lux-tl-img {
    width: 96px;
    height: 76px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    display: block;
}

.lux-tl-text-wrap {
    flex: 1;
    min-width: 0;
}

.lux-tl-desc {
    font-family: var(--ff-body);
    font-size: 13px;
    line-height: 1.65;
    color: var(--lux-muted);
    margin: 0;
}

/* Fix 8a / Day-wise Package Creation — structured Hotel/Flight/Service rows */
.lux-tl-structured {
    margin-bottom: 10px;
}

.lux-tl-structured-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-size: 12.5px;
    color: var(--lux-navy-soft);
    font-weight: 600;
    margin-bottom: 6px;
}

.lux-tl-structured-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--lux-gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lux-tl-structured-icon i {
        font-size: 11px;
        color: var(--lux-gold-dark, #A07840);
    }

.lux-tl-structured-alt {
    font-weight: 400;
    color: var(--lux-muted);
    font-size: 11.5px;
}

.lux-tl-structured-thumb {
    width: 26px;
    height: 26px;
    object-fit: cover;
    border-radius: 7px;
    flex-shrink: 0;
}

.lux-tl-structured-price {
    color: var(--lux-navy-soft);
    font-weight: 700;
    opacity: 0.85;
}

@media (max-width: 767px) {
    .lux-itin-layout {
        flex-direction: column;
    }

    .lux-itin-nav {
        width: 100%;
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 6px;
        padding-bottom: 4px;
    }

    .lux-itin-nav-label {
        display: none;
    }

    .lux-daynav-item {
        flex-shrink: 0;
        border-left: none;
        border-bottom: 2px solid transparent;
    }

        .lux-daynav-item.active {
            border-bottom-color: var(--lux-gold);
        }

    .lux-day-card-inner {
        flex-direction: column;
    }

    .lux-tl-img {
        width: 100%;
        height: 140px;
    }
}

/* ═══════════════════════════════════════════════
   INCLUSIONS / EXCLUSIONS
═══════════════════════════════════════════════ */
.lux-inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

    .lux-inc-exc-grid > *:only-child {
        grid-column: 1 / -1;
    }

.lux-inc-card {
    background: #F0FDF6;
    border: 1px solid rgba(34,197,94,.18);
    border-radius: var(--lux-r);
    padding: 24px;
}

.lux-exc-card {
    background: #FFF5F5;
    border: 1px solid rgba(239,68,68,.15);
    border-radius: var(--lux-r);
    padding: 24px;
}

.lux-ie-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-head);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

    .lux-ie-title.inc {
        color: #15803D;
    }

    .lux-ie-title.exc {
        color: #B91C1C;
    }

.lux-ie-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.inc .lux-ie-icon {
    background: #DCFCE7;
    color: #16A34A;
}

.exc .lux-ie-icon {
    background: #FEE2E2;
    color: #DC2626;
}

.lux-ie-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lux-ie-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--ff-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--lux-ink);
    padding: 9px 12px;
    border-radius: var(--lux-r-sm);
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(0,0,0,.04);
    transition: background .15s;
}

    .lux-ie-item:hover {
        background: rgba(255,255,255,.9);
    }

    .lux-ie-item i {
        flex-shrink: 0;
        margin-top: 2px;
        font-size: 12px;
    }

.lux-inc-list .lux-ie-item i {
    color: #16A34A;
}

.lux-exc-list .lux-ie-item i {
    color: #DC2626;
}

/* ═══════════════════════════════════════════════
   TRUST INDICATORS
═══════════════════════════════════════════════ */
.lux-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.lux-trust-item {
    background: var(--lux-white);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-r-sm);
    padding: 14px 12px;
    text-align: center;
}

.lux-trust-ico {
    font-size: 20px;
    margin-bottom: 6px;
    display: block;
}

.lux-trust-label {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--lux-ink);
    line-height: 1.3;
}

.lux-trust-sub {
    font-family: var(--ff-body);
    font-size: 10px;
    color: var(--lux-faint);
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════ */
.lux-accordion-item {
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-r-sm);
    overflow: hidden;
    margin-bottom: 8px;
    background: var(--lux-white);
    transition: border-color .2s;
}

    .lux-accordion-item:hover,
    .lux-accordion-item.open {
        border-color: var(--lux-border-md);
    }

.lux-acc-toggle {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.lux-acc-q {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--lux-ink);
    line-height: 1.4;
}

.lux-acc-arrow {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--lux-gold-pale);
    border: 1px solid var(--lux-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-gold-dark, #a07840);
    font-size: 11px;
    transition: transform .25s, background .2s;
}

.lux-accordion-item.open .lux-acc-arrow {
    background: var(--lux-navy);
    color: var(--lux-gold);
    transform: rotate(180deg);
}

.lux-acc-body {
    display: none;
    padding: 0 20px 18px;
    font-family: var(--ff-body);
    font-size: 13px;
    line-height: 1.75;
    color: var(--lux-muted);
    border-top: 1px solid var(--lux-border);
    padding-top: 14px;
}

.lux-accordion-item.open .lux-acc-body {
    display: block;
}

/* ═══════════════════════════════════════════════
   STICKY BOOKING SIDEBAR
═══════════════════════════════════════════════ */
.lux-booking-card {
    background: var(--lux-white);
    border: 1px solid var(--lux-border-md);
    border-radius: var(--lux-r-lg);
    box-shadow: var(--lux-shadow-lg);
    overflow: hidden;
    position: sticky;
    top: 80px;
}

.lux-booking-header {
    background: linear-gradient(135deg, var(--lux-navy) 0%, var(--lux-navy-soft) 100%);
    padding: 26px 24px 22px;
    position: relative;
    overflow: hidden;
}

    .lux-booking-header::after {
        content: '';
        position: absolute;
        top: -20px;
        right: -20px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(201,169,110,.08);
        border: 1px solid rgba(201,169,110,.15);
    }

.lux-bk-from {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lux-gold-light);
    margin-bottom: 4px;
}

.lux-bk-price {
    font-family: var(--ff-head);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    margin-bottom: 2px;
}

.lux-bk-per {
    font-family: var(--ff-body);
    font-size: 12px;
    color: rgba(255,255,255,.55);
}

.lux-bk-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.lux-bk-stars {
    display: flex;
    gap: 2px;
}

    .lux-bk-stars i {
        color: var(--lux-gold);
        font-size: 12px;
    }

.lux-bk-rating-label {
    font-family: var(--ff-body);
    font-size: 11px;
    color: rgba(255,255,255,.55);
}

.lux-booking-body {
    padding: 22px 24px;
}

.lux-bk-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--lux-border);
    font-family: var(--ff-body);
    font-size: 13px;
    color: var(--lux-ink);
}

    .lux-bk-meta-row:last-of-type {
        border-bottom: none;
    }

    .lux-bk-meta-row i {
        color: var(--lux-gold);
        font-size: 14px;
        width: 16px;
        flex-shrink: 0;
    }

.lux-bk-meta-label {
    color: var(--lux-muted);
    font-size: 12px;
}

.lux-bk-meta-val {
    font-weight: 700;
    color: var(--lux-ink);
    margin-left: auto;
}

.lux-bk-divider {
    height: 1px;
    background: var(--lux-border);
    margin: 14px 0;
}

/* Primary CTA button */
.lux-btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lux-navy) 0%, var(--lux-navy-soft) 100%);
    border: none;
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .01em;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s;
    box-shadow: 0 4px 18px rgba(12,26,59,.30);
    margin-bottom: 10px;
}

    .lux-btn-book:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(12,26,59,.35);
        color: #fff;
        text-decoration: none;
    }

    .lux-btn-book.request {
        background: linear-gradient(135deg, #c47b0a, #e8a020);
        box-shadow: 0 4px 18px rgba(200,130,20,.30);
    }

        .lux-btn-book.request:hover {
            box-shadow: 0 8px 28px rgba(200,130,20,.38);
        }

.lux-btn-wish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    background: transparent;
    border: 1.5px solid var(--lux-border-md);
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--lux-ink);
    cursor: pointer;
    transition: all .18s;
    text-decoration: none;
}

    .lux-btn-wish:hover {
        border-color: var(--lux-navy);
        background: var(--lux-navy);
        color: #fff;
        text-decoration: none;
    }

    .lux-btn-wish i {
        color: #e85555;
    }

    .lux-btn-wish:hover i {
        color: #ff7777;
    }

/* Request notice */
.lux-request-notice {
    background: rgba(232,160,32,.08);
    border: 1px solid rgba(232,160,32,.22);
    border-radius: var(--lux-r-sm);
    padding: 10px 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

    .lux-request-notice i {
        color: #e8a020;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .lux-request-notice p {
        font-family: var(--ff-body);
        font-size: 11px;
        color: #7a5210;
        line-height: 1.5;
        margin: 0;
    }

/* Trust micro-row in sidebar */
.lux-sidebar-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}

.lux-st-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-body);
    font-size: 11px;
    color: var(--lux-muted);
}

    .lux-st-item i {
        color: #22C55E;
        font-size: 11px;
    }

/* ═══════════════════════════════════════════════
   SIMILAR PACKAGES SECTION
═══════════════════════════════════════════════ */
.lux-similar-section {
    padding: 60px 0;
    background: var(--lux-white);
    border-top: 1px solid var(--lux-border);
}

.lux-similar-head {
    text-align: center;
    margin-bottom: 36px;
}

.lux-similar-eyebrow {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lux-gold);
    margin-bottom: 8px;
}

.lux-similar-title {
    font-family: var(--ff-head);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 400;
    font-style: italic;
    color: var(--lux-ink);
}

.lux-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lux-sim-card {
    border-radius: var(--lux-r);
    overflow: hidden;
    border: 1px solid var(--lux-border);
    background: var(--lux-white);
    box-shadow: 0 2px 16px rgba(12,26,59,.07);
    transition: transform .22s, box-shadow .22s;
    text-decoration: none;
    color: inherit;
    display: block;
}

    .lux-sim-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--lux-shadow-lg);
        color: inherit;
        text-decoration: none;
    }

.lux-sim-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lux-sim-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(12,26,59,.75);
    backdrop-filter: blur(4px);
    border-radius: 100px;
    padding: 3px 10px;
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    color: var(--lux-gold-light);
    text-transform: uppercase;
    letter-spacing: .07em;
}

.lux-sim-body {
    padding: 18px 20px;
}

.lux-sim-title {
    font-family: var(--ff-head);
    font-size: 18px;
    font-style: italic;
    color: var(--lux-ink);
    margin-bottom: 6px;
    line-height: 1.3;
}

.lux-sim-dest {
    font-family: var(--ff-body);
    font-size: 12px;
    color: var(--lux-muted);
    margin-bottom: 14px;
}

    .lux-sim-dest i {
        color: var(--lux-gold);
        margin-right: 4px;
    }

.lux-sim-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--lux-border);
}

.lux-sim-price {
    font-family: var(--ff-head);
    font-size: 20px;
    font-weight: 600;
    color: var(--lux-navy);
}

.lux-sim-dur {
    font-family: var(--ff-body);
    font-size: 11px;
    color: var(--lux-faint);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════
   BOOKING SUCCESS PAGE
═══════════════════════════════════════════════ */
.lux-success-wrap {
    min-height: 100vh;
    padding-top: 64px;
    background: var(--lux-ivory);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 80px;
}

.lux-success-outer {
    width: 100%;
    max-width: 760px;
    padding: 48px 20px 0;
}
/* Confetti / celebration strip */
.lux-success-confetti {
    text-align: center;
    font-size: 30px;
    letter-spacing: 6px;
    margin-bottom: 8px;
    animation: luxPop .6s ease;
}

@keyframes luxPop {
    0% {
        transform: scale(.7);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.lux-success-card {
    background: var(--lux-white);
    border: 1px solid var(--lux-border-md);
    border-radius: 28px;
    box-shadow: var(--lux-shadow-lg);
    overflow: hidden;
    animation: luxFadeUp .5s ease .1s both;
}

@keyframes luxFadeUp {
    from {
        transform: translateY(24px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.lux-success-top {
    background: linear-gradient(135deg, var(--lux-navy) 0%, var(--lux-navy-soft) 100%);
    padding: 44px 40px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .lux-success-top::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(201,169,110,.06);
        border: 1px solid rgba(201,169,110,.12);
    }

    .lux-success-top::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -30px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(201,169,110,.05);
        border: 1px solid rgba(201,169,110,.10);
    }
/* Animated checkmark */
.lux-check-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.lux-check-bg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(34,197,94,.12);
    border: 2px solid rgba(34,197,94,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: luxPulse 2s ease-in-out infinite;
}

@keyframes luxPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34,197,94,.2);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(34,197,94,.0);
    }
}

.lux-check-svg {
    width: 60px;
    height: 60px;
}

.lux-check-circle {
    stroke: #22C55E;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-miterlimit: 10;
    animation: luxCircle .6s cubic-bezier(.65,0,.45,1) forwards;
}

.lux-check-tick {
    stroke: #22C55E;
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: luxTick .4s .6s cubic-bezier(.65,0,.45,1) forwards;
}

.lux-check-wait-ico {
    font-size: 36px;
    animation: luxSpin 3s linear infinite;
}

@keyframes luxSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes luxCircle {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes luxTick {
    100% {
        stroke-dashoffset: 0;
    }
}

.lux-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,169,110,.15);
    border: 1px solid rgba(201,169,110,.30);
    border-radius: 100px;
    padding: 4px 14px;
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lux-gold-light);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.lux-success-main-title {
    font-family: var(--ff-head);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.lux-success-ref {
    font-family: var(--ff-body);
    font-size: 13px;
    color: rgba(255,255,255,.6);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

    .lux-success-ref strong {
        color: var(--lux-gold-light);
        font-size: 15px;
        letter-spacing: .04em;
    }

.lux-success-sub {
    font-family: var(--ff-body);
    font-size: 14px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Success body */
.lux-success-body {
    padding: 32px 40px;
}
/* Booking detail card */
.lux-success-detail {
    background: var(--lux-ivory);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-r);
    padding: 22px;
    margin-bottom: 28px;
}

.lux-success-detail-title {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lux-faint);
    margin-bottom: 14px;
}

.lux-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--lux-border);
    gap: 10px;
}

    .lux-detail-row:last-child {
        border-bottom: none;
    }

.lux-detail-label {
    font-family: var(--ff-body);
    font-size: 12px;
    color: var(--lux-muted);
    font-weight: 600;
}

.lux-detail-val {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--lux-ink);
    text-align: right;
}

    .lux-detail-val.accent {
        color: #3B4FE4;
    }

    .lux-detail-val.green {
        color: #16A34A;
    }

    .lux-detail-val.gold {
        color: var(--lux-gold-dark, #a07840);
    }

/* Next steps */
.lux-next-steps {
    margin-bottom: 28px;
}

.lux-ns-title {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lux-faint);
    margin-bottom: 16px;
}

.lux-ns-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    padding: 14px 16px;
    background: var(--lux-ivory);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-r-sm);
    transition: border-color .2s;
}

    .lux-ns-item:hover {
        border-color: var(--lux-border-md);
    }

.lux-ns-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lux-navy), var(--lux-navy-soft));
    color: var(--lux-gold);
    font-family: var(--ff-head);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lux-ns-text {
    font-family: var(--ff-body);
    font-size: 13px;
    color: var(--lux-muted);
    line-height: 1.6;
}

    .lux-ns-text strong {
        color: var(--lux-ink);
    }

/* Action buttons */
.lux-success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lux-action-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lux-navy), var(--lux-navy-soft));
    border: none;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s;
    box-shadow: 0 4px 16px rgba(12,26,59,.28);
}

    .lux-action-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(12,26,59,.34);
        color: #fff;
        text-decoration: none;
    }

.lux-action-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    background: #25D366;
    border: none;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s, transform .18s;
}

    .lux-action-wa:hover {
        background: #1ebe5c;
        transform: translateY(-1px);
        color: #fff;
        text-decoration: none;
    }

.lux-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lux-action-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 18px;
    border-radius: 10px;
    background: transparent;
    border: 1.5px solid var(--lux-border-md);
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--lux-ink);
    text-decoration: none;
    cursor: pointer;
    transition: all .18s;
}

    .lux-action-sec:hover {
        border-color: var(--lux-navy);
        background: var(--lux-navy);
        color: #fff;
        text-decoration: none;
    }

    .lux-action-sec i {
        font-size: 13px;
    }

/* ═══════════════════════════════════════════════
   SKELETON LOADER — LUXURY
═══════════════════════════════════════════════ */
.lux-skeleton {
    background: linear-gradient(90deg, #e8eaf0 25%, #f4f5f8 50%, #e8eaf0 75%);
    background-size: 200% 100%;
    animation: luxSkelShimmer 1.4s infinite;
    border-radius: 8px;
}

@keyframes luxSkelShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ═══════════════════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 991px) {
    .lux-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .lux-similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lux-booking-card {
        position: static;
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .lux-hero {
        min-height: 55vh;
    }

    .lux-hero-title {
        font-size: clamp(24px, 8vw, 38px);
    }

    .lux-highlights-inner {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .lux-hl-item {
        min-width: 130px;
    }

    .lux-inc-exc-grid {
        grid-template-columns: 1fr;
    }

    .lux-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .lux-similar-grid {
        grid-template-columns: 1fr;
    }

    .lux-success-top {
        padding: 32px 20px 28px;
    }

    .lux-success-body {
        padding: 24px 20px;
    }

    .lux-action-row {
        grid-template-columns: 1fr;
    }

    .lux-gallery-strip {
        display: none;
    }

    .lux-section-title {
        font-size: 22px;
    }

    .lux-sidebar-trust {
        grid-template-columns: 1fr;
    }

    .lux-card-pad {
        padding: 20px;
    }
}


/* ============================================================
   Phase 5C: merged from aboutus.css (file eliminated, content
   relocated here verbatim, byte-for-byte, per approved
   migration plan — Public-facing pages grouping)
   ============================================================ */

﻿
/* ── OUR STORY PAGE — Scoped styles ── */
:root {
    --blue: #3B4FE4;
    --blue-dark: #2338CC;
    --blue-deep: #0F1A6B;
    --gold: #C9A96E;
    --gold-light: #E8C98A;
    --gold-dark: #A07840;
    --white: #fff;
    --off: #FAFBFF;
    --ink: #0A0C1E;
    --muted: #5B5F80;
    --faint: #9EA2C8;
    --border: #dde0f8;
    --border-gold: rgba(201,169,110,.3);
    --ff-head: 'Cormorant Garamond',Georgia,serif;
    --ff-body: 'DM Sans',system-ui,sans-serif;
    --r: 18px;
    --r-sm: 10px;
}

/* ── HERO ── */
.about-hero {
    min-height: 100vh;
    padding-top: 64px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1613395877344-13d4a8e0d49e?w=1800&q=90');
    background-size: cover;
    background-position: center 30%;
}

    .hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(10,12,30,.15) 0%, rgba(10,12,30,.1) 30%, rgba(10,12,30,.78) 75%, rgba(10,12,30,.92) 100% );
    }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 52px 96px;
    max-width: 840px;
}

.hero-tagline {
    font-family: var(--ff-head);
    font-size: clamp(20px,2.2vw,30px);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,.92);
    margin-bottom: 36px;
    border-left: 3px solid var(--gold);
    padding-left: 22px;
    line-height: 1.55;
    max-width: 580px;
    text-shadow: 0 1px 20px rgba(0,0,0,.5);
}

.hero-meta {
    display: flex;
    gap: 32px;
    align-items: center
}

.hero-stat {
    text-align: left
}

.hero-stat-n {
    font-family: var(--ff-head);
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero-stat-l {
    font-family: var(--ff-body);
    font-size: 11px;
    color: rgba(255,255,255,.55);
    margin-top: 3px;
    letter-spacing: .04em
}

.hero-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.2)
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    right: 52px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.scroll-hint-txt {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4)
}

.scroll-hint-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.25);
    animation: scrollPulse 2s ease infinite
}

@keyframes scrollPulse {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

/* ── INTRO ── */
.intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 480px;
}

.intro-left {
    background: var(--blue-deep);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .intro-left::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        border: 80px solid rgba(255,255,255,.03);
        bottom: -160px;
        right: -100px;
        pointer-events: none;
    }

.intro-quote {
    font-family: var(--ff-head);
    font-size: clamp(26px,2.8vw,40px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

    .intro-quote::before {
        content: '"';
        font-size: 100px;
        font-family: var(--ff-head);
        color: rgba(201,169,110,.15);
        position: absolute;
        top: -20px;
        left: -12px;
        line-height: 1;
        pointer-events: none;
    }

.intro-attr {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.intro-right {
    background: var(--off);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-eyebrow {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

    .intro-eyebrow::before {
        content: '';
        width: 22px;
        height: 1.5px;
        background: var(--blue)
    }

.intro-right h2 {
    font-family: var(--ff-head);
    font-size: clamp(32px,3.2vw,48px);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 20px;
}

    .intro-right h2 em {
        font-style: italic;
        color: var(--blue);
        font-weight: 400
    }

.intro-right p {
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
}

    .intro-right p + p {
        margin-top: 14px
    }

/* ── SECTION COMMON ── */
.section-eyebrow {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

    .section-eyebrow::before, .section-eyebrow::after {
        content: '';
        flex: 1;
        max-width: 40px;
        height: 1.5px;
        background: var(--gold)
    }

    .section-eyebrow.blue {
        color: var(--blue)
    }

        .section-eyebrow.blue::before, .section-eyebrow.blue::after {
            background: var(--blue)
        }

.section-title {
    font-family: var(--ff-head);
    font-size: clamp(34px,3.8vw,54px);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.1;
}

    .section-title em {
        font-style: italic;
        color: var(--blue);
        font-weight: 400
    }

    .section-title.white {
        color: #fff
    }

.section-subtitle {
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 14px;
}

/* ── LEGACY SECTION ── */
.legacy-section {
    padding: 100px 52px;
    background: var(--white)
}

.legacy-top {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px
}

.gen-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    background: var(--border)
}

.gen-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    position: relative
}

.gen-photo {
    height: 380px;
    position: relative;
    overflow: hidden
}

.gen-photo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform .6s ease;
}

.gen-card:hover .gen-photo-bg {
    transform: scale(1.04)
}

.gen-photo-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(10,12,30,.88) 0%,rgba(10,12,30,.1) 60%,transparent 100%);
}

.gen-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--ff-head);
    font-size: 64px;
    font-weight: 400;
    color: rgba(255,255,255,.12);
    line-height: 1;
    user-select: none;
}

.gen-role-pill {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(10,12,30,.6);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.75);
    backdrop-filter: blur(8px);
}

.gen-name-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.gen-name {
    font-family: var(--ff-head);
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 4px;
}

.gen-card:first-child .gen-name {
    color: var(--gold-light)
}

.gen-title {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55)
}

.gen-body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.gen-desc {
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8
}

.gen-card:first-child .gen-desc {
    font-size: 15px
}

.gen-memorial {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 100px;
    background: #f8f5ee;
    border: 1px solid var(--border-gold);
    width: fit-content;
}

.gen-memorial-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0
}

.gen-memorial-txt {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-dark)
}

/* ── PHILOSOPHY ── */
.philosophy-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.phil-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600&q=80');
    background-size: cover;
    background-position: center;
}

    .phil-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(10,12,30,.82);
    }

.phil-content {
    position: relative;
    z-index: 2;
    padding: 80px 52px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.phil-eyebrow {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

    .phil-eyebrow::before, .phil-eyebrow::after {
        content: '';
        width: 32px;
        height: 1px;
        background: var(--gold)
    }

.phil-headline {
    font-family: var(--ff-head);
    font-size: clamp(36px,4.5vw,64px);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 28px;
}

    .phil-headline em {
        color: var(--gold-light);
        font-style: normal
    }

.phil-body {
    font-family: var(--ff-body);
    font-size: 16px;
    color: rgba(255,255,255,.65);
    line-height: 1.9;
    max-width: 640px;
    margin: 0 auto 40px;
}

.phil-pillars {
    display: flex;
    gap: 1px;
    background: rgba(255,255,255,.08);
    border-radius: 14px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 680px
}

.phil-pillar {
    flex: 1;
    padding: 22px 20px;
    text-align: center;
    background: rgba(255,255,255,.04);
    transition: background .2s
}

    .phil-pillar:hover {
        background: rgba(201,169,110,.12)
    }

.phil-pillar-ico {
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;
}

.phil-pillar-label {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px
}

.phil-pillar-desc {
    font-family: var(--ff-body);
    font-size: 12px;
    color: rgba(255,255,255,.45);
    line-height: 1.5
}

/* ── SERVICES STRIP ── */
.services-strip {
    padding: 88px 52px;
    background: var(--off)
}

.svc-strip-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-top: 52px;
}

.svc-strip-item {
    padding: 28px 24px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all .2s;
    cursor: default;
}

    .svc-strip-item:hover {
        border-color: rgba(59,79,228,.3);
        box-shadow: 0 8px 24px rgba(59,79,228,.08);
        transform: translateY(-2px)
    }

.svc-strip-icon {
    font-size: 22px;
    margin-bottom: 14px
}

.svc-strip-title {
    font-family: var(--ff-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 7px;
    line-height: 1.2
}

.svc-strip-desc {
    font-family: var(--ff-body);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7
}

.svc-strip-item.faith-item {
    border-color: var(--border-gold);
    background: linear-gradient(135deg,#fff 60%,#fdf8f0 100%)
}

    .svc-strip-item.faith-item:hover {
        border-color: rgba(201,169,110,.5);
        box-shadow: 0 8px 24px rgba(160,120,64,.1)
    }

    .svc-strip-item.faith-item .svc-strip-title {
        color: var(--gold-dark)
    }

/* ── PROMISE ── */
.promise-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--blue-deep);
}

.promise-left {
    padding: 88px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,.07);
}

.promise-title {
    font-family: var(--ff-head);
    font-size: clamp(38px,4vw,58px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}

    .promise-title em {
        font-style: italic;
        color: var(--gold-light)
    }

.promise-desc {
    font-family: var(--ff-body);
    font-size: 15px;
    color: rgba(255,255,255,.6);
    line-height: 1.85;
    margin-bottom: 36px
}

.promise-care-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(201,169,110,.12);
    border: 1px solid rgba(201,169,110,.25);
    width: fit-content;
}

.promise-care-txt {
    font-family: var(--ff-head);
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: var(--gold-light)
}

.promise-care-sub {
    font-family: var(--ff-body);
    font-size: 11px;
    color: rgba(255,255,255,.45);
    margin-top: 2px
}

.promise-right {
    padding: 88px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px
}

.promise-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.03);
    transition: background .2s;
}

    .promise-item:hover {
        background: rgba(201,169,110,.08);
        border-color: rgba(201,169,110,.18)
    }

.promise-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(201,169,110,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
}

.promise-item-title {
    font-family: var(--ff-head);
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.2
}

.promise-item-desc {
    font-family: var(--ff-body);
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.65
}

/* ── PRESENCE ── */
.presence-section {
    padding: 88px 52px;
    background: var(--white)
}

.presence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 52px
}

.presence-map {
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    background: var(--off);
    border: 1px solid var(--border);
    position: relative;
}

.presence-map-img {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=800&q=80');
    background-size: cover;
    background-position: center;
    opacity: .4;
}

.presence-map-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(59,79,228,.08) 0%,rgba(15,26,107,.12) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.presence-map-label {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--ink)
}

.presence-map-sub {
    font-family: var(--ff-body);
    font-size: 12px;
    color: var(--faint);
    letter-spacing: .06em
}

.offices {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.office-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--off);
    transition: border-color .2s,background .2s;
}

    .office-item:hover {
        border-color: rgba(59,79,228,.3);
        background: var(--white)
    }

.office-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eef0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.office-city {
    font-family: var(--ff-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1
}

.office-sub {
    font-family: var(--ff-body);
    font-size: 12px;
    color: var(--faint);
    margin-top: 2px
}

.office-hq {
    background: linear-gradient(135deg,#eef0ff,#f5f6ff);
    border-color: rgba(59,79,228,.2)
}

    .office-hq .office-city {
        color: var(--blue-deep)
    }

/* ── LICENCES ── */
.licence-section {
    background: var(--off);
    padding: 72px 52px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.licence-title {
    font-family: var(--ff-head);
    font-size: 30px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.2;
    margin-top: 10px
}

    .licence-title em {
        font-style: italic;
        color: var(--blue);
        font-weight: 400
    }

.lic-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 20px;
    border-right: 1px solid var(--border);
    transition: background .2s;
}

    .lic-item:last-child {
        border-right: none
    }

    .lic-item:hover {
        background: var(--white)
    }

.lic-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--white);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-deep);
    letter-spacing: .04em;
    transition: border-color .2s,box-shadow .2s;
    filter: grayscale(20%);
}

.lic-item:hover .lic-box {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(59,79,228,.12);
    filter: none
}

.lic-name {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--faint);
    letter-spacing: .04em;
    text-align: center;
    line-height: 1.5
}

.lic-item.wrta .lic-box {
    color: var(--gold-dark);
    border-color: var(--border-gold)
}

.lic-item.wrta:hover .lic-box {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(160,120,64,.15)
}

/* ── AWARDS ── */
.awards-section {
    padding: 88px 52px;
    background: var(--white)
}

.awards-placeholder {
    margin-top: 52px;
    border: 2px dashed var(--border);
    border-radius: 20px;
    padding: 64px 40px;
    text-align: center;
    background: var(--off);
}

.awards-placeholder-icon {
    font-size: 40px;
    margin-bottom: 18px;
    opacity: .4
}

.awards-placeholder-title {
    font-family: var(--ff-head);
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    color: var(--faint);
    margin-bottom: 10px
}

.awards-placeholder-desc {
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--faint);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto
}

/* ── MILESTONES ── */
.milestones-section {
    padding: 88px 52px;
    background: var(--blue-deep);
    position: relative;
    overflow: hidden
}

    .milestones-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 80% at 80% 50%,rgba(59,79,228,.3) 0%,transparent 70%);
        pointer-events: none;
    }

.milestones-inner {
    position: relative;
    z-index: 1
}

.milestones-top {
    margin-bottom: 52px
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px
}

.milestone-card {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.milestone-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease
}

.milestone-card:hover .milestone-img {
    transform: scale(1.06)
}

.milestone-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(10,12,30,.92) 0%,rgba(10,12,30,.2) 60%,transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
}

.milestone-tag {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 7px;
}

.milestone-title {
    font-family: var(--ff-head);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 5px
}

.milestone-sub {
    font-family: var(--ff-body);
    font-size: 11px;
    color: rgba(255,255,255,.5);
    line-height: 1.5
}

.milestone-soon {
    position: absolute;
    inset: 0;
    background: rgba(10,12,30,.75);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px dashed rgba(255,255,255,.15);
    border-radius: var(--r);
}

.milestone-soon-ico {
    font-size: 28px;
    opacity: .4
}

.milestone-soon-txt {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3)
}

/* ── VISION ── */
.vision-section {
    padding: 100px 52px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-img {
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.vision-img-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=900&q=80');
    background-size: cover;
    background-position: center;
}

.vision-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(10,12,30,.5) 0%,transparent 60%);
}

.vision-img-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-family: var(--ff-head);
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
}

.vision-title {
    font-family: var(--ff-head);
    font-size: clamp(34px,3.8vw,52px);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 18px;
}

    .vision-title em {
        font-style: italic;
        color: var(--blue);
        font-weight: 400
    }

.vision-desc {
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 14px
}

.vision-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px
}

.vision-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--off);
    border: 1px solid var(--border);
}

.vision-point-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 5px
}

.vision-point-txt {
    font-family: var(--ff-body);
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6
}

    .vision-point-txt strong {
        color: var(--ink);
        font-weight: 600
    }

/* ── CLOSING CTA ── */
.closing-section {
    background: var(--ink);
    padding: 100px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .closing-section::before {
        content: 'ATM';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        font-family: var(--ff-head);
        font-size: 260px;
        font-weight: 600;
        color: rgba(255,255,255,.025);
        pointer-events: none;
        letter-spacing: -.04em;
        line-height: 1;
    }

.closing-eyebrow {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px
}

    .closing-eyebrow::before, .closing-eyebrow::after {
        content: '';
        width: 28px;
        height: 1px;
        background: var(--gold)
    }

.closing-headline {
    font-family: var(--ff-head);
    font-size: clamp(36px,4.5vw,66px);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

    .closing-headline em {
        color: var(--gold-light);
        font-style: normal
    }

.closing-sub {
    font-family: var(--ff-body);
    font-size: 15px;
    color: rgba(255,255,255,.5);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.closing-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-gold {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    padding: 13px 26px 13px 22px;
    border-radius: 100px;
    background: linear-gradient(135deg,var(--gold-dark),var(--gold));
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(160,120,64,.35);
    transition: all .2s;
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(160,120,64,.45)
    }

.btn-outline-white {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: border-color .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .btn-outline-white:hover {
        border-color: #fff;
        color: #fff
    }

/* ── FADE IN ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-in {
    opacity: 0;
    animation: fadeUp .6s ease forwards
}

.fade-in-1 {
    animation-delay: .1s
}

.fade-in-2 {
    animation-delay: .22s
}

.fade-in-3 {
    animation-delay: .34s
}

.fade-in-4 {
    animation-delay: .46s
}

/* ── MOBILE ── */
@media(max-width:768px) {
    .about-hero {
        min-height: 70vh
    }

    .hero-content {
        padding: 40px 16px 56px
    }

    .hero-meta {
        gap: 20px
    }

    .scroll-hint {
        display: none
    }

    .intro-section {
        grid-template-columns: 1fr
    }

    .intro-left, .intro-right {
        padding: 52px 20px
    }

    .legacy-section {
        padding: 64px 16px
    }

    .gen-grid {
        grid-template-columns: 1fr
    }

    .gen-photo {
        height: 320px
    }

    .philosophy-section {
        min-height: auto
    }

    .phil-content {
        padding: 60px 16px
    }

    .phil-pillars {
        flex-direction: column
    }

    .services-strip {
        padding: 56px 16px
    }

    .svc-strip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .promise-section {
        grid-template-columns: 1fr
    }

    .promise-left, .promise-right {
        padding: 52px 20px
    }

    .presence-section {
        padding: 56px 16px
    }

    .presence-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .licence-section {
        padding: 52px 16px
    }

    .licence-inner {
        grid-template-columns: 1fr
    }

    .licence-label-col {
        border-right: none;
        padding-right: 0;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--border)
    }

    .licence-logos {
        padding-left: 0;
        flex-wrap: wrap
    }

    .lic-item {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 20px 10px
    }

        .lic-item:nth-child(odd) {
            border-right: 1px solid var(--border)
        }

        .lic-item:nth-last-child(-n+2) {
            border-bottom: none
        }

    .awards-section, .milestones-section {
        padding: 56px 16px
    }

    .milestones-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .vision-section {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 64px 16px
    }

    .vision-img {
        aspect-ratio: 16/9
    }

    .closing-section {
        padding: 72px 16px
    }

        .closing-section::before {
            font-size: 120px
        }
}

@media(min-width:769px) and (max-width:1024px) {
    .gen-grid {
        grid-template-columns: 1fr
    }

    .svc-strip-grid {
        grid-template-columns: 1fr 1fr
    }

    .milestones-grid {
        grid-template-columns: 1fr 1fr
    }

    .vision-section {
        gap: 40px
    }

    .licence-inner {
        grid-template-columns: 1fr
    }

    .licence-label-col {
        border-right: none;
        padding-right: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border)
    }

    .licence-logos {
        padding-left: 0;
        flex-wrap: wrap
    }

    .lic-item {
        flex: 0 0 33.3%
    }
}
/* ============================================================
   Phase 5C: merged from agent.css (file eliminated, content
   relocated here verbatim, byte-for-byte, per approved
   migration plan — Public-facing pages grouping)
   ============================================================ */

/* ============================================================
   Across The Monde — agent.css
   Agent Portal (uses _LayoutPublic.cshtml)
   ============================================================ */

/* ── Wrap ── */
.agent-wrap {
    padding-top: 64px;
    min-height: 100vh;
    background: #FAFBFF;
}

/* ── Login ── */
.agent-login-wrap {
    min-height: 100vh;
    padding-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F1A6B 0%, #1a2a8f 100%);
}

.agent-login-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
}

.agent-login-logo {
    text-align: center;
    margin-bottom: 24px;
}

.agent-login-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 600;
    color: #0A0C1E;
    text-align: center;
    margin-bottom: 6px;
}

.agent-login-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #5B5F80;
    text-align: center;
    margin-bottom: 28px;
}

.agent-login-error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #ef4444;
    margin-bottom: 16px;
}

.agent-login-footer {
    text-align: center;
    margin-top: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
}

    .agent-login-footer a {
        color: #5B5F80;
        text-decoration: none;
    }

        .agent-login-footer a:hover {
            color: #3B4FE4;
        }

/* ── Top Bar ── */
.agent-topbar {
    background: #fff;
    border-bottom: 1px solid #dde0f8;
    padding: 0;
    position: sticky;
    top: 64px;
    z-index: 100;
}

    .agent-topbar .container {
        padding: 14px 24px;
    }

.agent-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B4FE4, #0F1A6B);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.agent-welcome {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: #9EA2C8;
}

.agent-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0A0C1E;
}

.agent-code-badge {
    background: rgba(59,79,228,.08);
    border: 1px solid rgba(59,79,228,.2);
    border-radius: 100px;
    padding: 4px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #3B4FE4;
    letter-spacing: .04em;
}

.agent-nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #5B5F80;
    text-decoration: none;
    transition: color .2s;
}

    .agent-nav-link:hover {
        color: #3B4FE4;
    }

.agent-logout-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #ef4444;
    background: rgba(239,68,68,.06);
    border: 1.5px solid rgba(239,68,68,.2);
    border-radius: 100px;
    padding: 6px 16px;
    cursor: pointer;
    transition: all .2s;
}

    .agent-logout-btn:hover {
        background: #ef4444;
        color: #fff;
    }

/* ── Stats Grid ── */
.agent-stat-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.agent-stat-card {
    background: #fff;
    border: 1px solid #dde0f8;
    border-radius: var(--r,18px);
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(59,79,228,.05);
}

    .agent-stat-card.highlight {
        background: linear-gradient(135deg, #0F1A6B, #1e2f9f);
        border-color: transparent;
    }

        .agent-stat-card.highlight .agent-stat-val,
        .agent-stat-card.highlight .agent-stat-lbl {
            color: #fff !important;
        }

.agent-stat-ico {
    font-size: 28px;
    margin-bottom: 10px;
}

.agent-stat-val {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    color: #0A0C1E;
    line-height: 1;
    margin-bottom: 6px;
}

.agent-stat-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9EA2C8;
}

/* ── Bookings Table ── */
.agent-bookings-table {
    width: 100%;
    border-collapse: collapse;
}

    .agent-bookings-table th {
        font-family: 'DM Sans', sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: #9EA2C8;
        padding: 12px 16px;
        border-bottom: 1px solid #dde0f8;
        text-align: left;
    }

    .agent-bookings-table td {
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        color: #0A0C1E;
        padding: 14px 16px;
        border-bottom: 1px solid #f0f2fe;
        vertical-align: middle;
    }

    .agent-bookings-table tr:last-child td {
        border-bottom: none;
    }

    .agent-bookings-table tr:hover td {
        background: #FAFBFF;
    }

.booking-ref {
    font-weight: 700;
    color: #3B4FE4;
    font-size: 12px;
}

.booking-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
}

.status-confirmed {
    background: rgba(34,197,94,.1);
    color: #16A34A;
}

.status-pending {
    background: rgba(234,179,8,.1);
    color: #B45309;
}

.status-cancelled {
    background: rgba(239,68,68,.1);
    color: #ef4444;
}

.commission-amt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #C9A96E;
}

.commission-status-paid {
    color: #22C55E;
    font-size: 10px;
    font-weight: 700;
}

.commission-status-pending {
    color: #F59E0B;
    font-size: 10px;
    font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .agent-stat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .agent-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .agent-login-card {
        padding: 32px 24px;
        margin: 16px;
    }

    .agent-topbar .container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 16px;
    }
}



/* ── Color-picker input ─────────────────────────────────────── */
input[type="color"].atm-form-control {
    height: 40px;
    padding: 2px 4px;
    cursor: pointer;
}

/* ── Preview thumbnails (Banners, Testimonials, Media) ─────── */
.theme-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    background: var(--color-border);
}

/* ── Sortable drag handle ───────────────────────────────────── */
.drag-handle {
    cursor: grab;
    color: var(--color-muted);
    padding: 0 6px;
}

    .drag-handle:active {
        cursor: grabbing;
    }

/* ── Festival theme active badge ────────────────────────────── */
.festival-active-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    background: #d1fae5;
    color: #065f46;
}

/* ── Media library grid ─────────────────────────────────────── */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.media-item {
    position: relative;
    border-radius: var(--color-radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: border-color .15s;
}

    .media-item:hover {
        border-color: var(--color-secondary);
    }

    .media-item img {
        width: 100%;
        height: 80px;
        object-fit: cover;
        display: block;
    }

.media-item-label {
    font-size: 10px;
    padding: 3px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-muted);
}

/* ── SEO character counter ──────────────────────────────────── */
.seo-char-count {
    font-size: 11px;
    color: var(--color-muted);
    text-align: right;
    margin-top: 2px;
}

    .seo-char-count.over {
        color: #ef4444;
    }

/* ── Picks month selector ───────────────────────────────────── */
.picks-month-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.picks-month-btn {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    cursor: pointer;
    transition: background .15s, color .15s;
}

    .picks-month-btn.active,
    .picks-month-btn:hover {
        background: var(--color-secondary);
        color: #fff;
        border-color: var(--color-secondary);
    }



/* ============================================================
   About Us Page — scoped styles (moved from public.css / inline
   <style>, per approved migration: all About Us page CSS lives
   here, scoped under .__clsAbout, wrapping the page content in
   Views/Shared/OurStory.cshtml)
   ============================================================ */

.__clsAbout {
    --blue: #3B4FE4;
    --blue-dark: #2338CC;
    --blue-deep: #0F1A6B;
    --gold: #C9A96E;
    --gold-light: #E8C98A;
    --gold-dark: #A07840;
    --white: #fff;
    --off: #FAFBFF;
    --ink: #0A0C1E;
    --muted: #5B5F80;
    --faint: #9EA2C8;
    --border: #dde0f8;
    --border-gold: rgba(201,169,110,.3);
    --ff-head: 'Cormorant Garamond',Georgia,serif;
    --ff-body: 'DM Sans',system-ui,sans-serif;
    --r: 18px;
    --r-sm: 10px;
}

    .__clsAbout *, .__clsAbout *::before, .__clsAbout *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }


    .__clsAbout img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .__clsAbout a {
        color: inherit;
        text-decoration: none;
    }
    /* ── NAV ── */
    .__clsAbout nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: 64px;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 52px;
    }

    .__clsAbout .nav-logo img {
        height: 36px;
        width: auto;
        max-width: 150px;
        object-fit: contain;
    }

    .__clsAbout .nav-back {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: var(--ff-body);
        font-size: 13px;
        font-weight: 600;
        color: var(--blue);
        transition: gap .2s;
    }

        .__clsAbout .nav-back:hover {
            gap: 12px;
        }

        .__clsAbout .nav-back::before {
            content: '←';
            font-size: 15px;
        }

    .__clsAbout .nav-cta {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 9px 9px 9px 18px;
        border-radius: 100px;
        background: var(--blue-deep);
        border: none;
        cursor: pointer;
        font-family: var(--ff-body);
        transition: background .2s;
    }

        .__clsAbout .nav-cta:hover {
            background: var(--blue);
        }

        .__clsAbout .nav-cta span {
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            letter-spacing: .02em;
        }

    .__clsAbout .nav-cta-ico {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .__clsAbout .nav-cta-ico svg {
            width: 12px;
            height: 12px;
            fill: none;
            stroke: #fff;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
    /* ── HERO ── */
    .__clsAbout .about-hero {
        min-height: 100vh;
        padding-top: 64px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
    }

    .__clsAbout .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url('https://images.unsplash.com/photo-1613395877344-13d4a8e0d49e?w=1800&q=90');
        background-size: cover;
        background-position: center 30%;
    }

        .__clsAbout .hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient( to bottom, rgba(10,12,30,.15) 0%, rgba(10,12,30,.1) 30%, rgba(10,12,30,.78) 75%, rgba(10,12,30,.92) 100% );
        }

    .__clsAbout .hero-content {
        position: relative;
        z-index: 2;
        padding: 80px 52px 96px;
        max-width: 840px;
    }

    .__clsAbout .hero-eyebrow {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--ff-body);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .28em;
        text-transform: uppercase;
        color: var(--gold-light);
        margin-bottom: 22px;
    }

        .__clsAbout .hero-eyebrow::before {
            content: '';
            width: 28px;
            height: 1.5px;
            background: var(--gold);
            flex-shrink: 0;
        }

    .__clsAbout .hero-headline {
        font-family: var(--ff-head);
        font-size: clamp(52px,6.5vw,96px);
        font-weight: 600;
        color: #fff;
        line-height: 1.0;
        letter-spacing: -.03em;
        margin-bottom: 24px;
        text-shadow: 0 2px 40px rgba(0,0,0,.4);
    }

        .__clsAbout .hero-headline em {
            font-style: italic;
            color: var(--gold-light);
        }

    .__clsAbout .hero-tagline {
        font-family: var(--ff-head);
        font-size: clamp(20px,2.2vw,30px);
        font-weight: 400;
        font-style: italic;
        color: rgba(255,255,255,.92);
        margin-bottom: 36px;
        border-left: 3px solid var(--gold);
        padding-left: 22px;
        line-height: 1.55;
        max-width: 580px;
        text-shadow: 0 1px 20px rgba(0,0,0,.5);
    }

    .__clsAbout .hero-meta {
        display: flex;
        gap: 32px;
        align-items: center;
    }

    .__clsAbout .hero-stat {
        text-align: left;
    }

    .__clsAbout .hero-stat-n {
        font-family: var(--ff-head);
        font-size: 46px;
        font-weight: 700;
        color: #fff;
        line-height: 1;
        text-shadow: 0 2px 20px rgba(0,0,0,.4);
    }

    .__clsAbout .hero-stat-l {
        font-family: var(--ff-body);
        font-size: 11px;
        color: rgba(255,255,255,.55);
        margin-top: 3px;
        letter-spacing: .04em;
    }

    .__clsAbout .hero-divider {
        width: 1px;
        height: 40px;
        background: rgba(255,255,255,.2);
    }
    /* scroll indicator */
    .__clsAbout .scroll-hint {
        position: absolute;
        bottom: 32px;
        right: 52px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .__clsAbout .scroll-hint-txt {
        font-family: var(--ff-body);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: rgba(255,255,255,.4);
    }

    .__clsAbout .scroll-hint-line {
        width: 1px;
        height: 40px;
        background: rgba(255,255,255,.25);
        animation: scrollPulse 2s ease infinite;
    }

@keyframes scrollPulse {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}
/* ── INTRO STATEMENT ── */
.__clsAbout .intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 480px;
}

.__clsAbout .intro-left {
    background: var(--blue-deep);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .__clsAbout .intro-left::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        border: 80px solid rgba(255,255,255,.03);
        bottom: -160px;
        right: -100px;
        pointer-events: none;
    }

.__clsAbout .intro-quote {
    font-family: var(--ff-head);
    font-size: clamp(26px,2.8vw,40px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

    .__clsAbout .intro-quote::before {
        content: '"';
        font-size: 100px;
        font-family: var(--ff-head);
        color: rgba(201,169,110,.15);
        position: absolute;
        top: -20px;
        left: -12px;
        line-height: 1;
        pointer-events: none;
    }

.__clsAbout .intro-attr {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.__clsAbout .intro-right {
    background: var(--off);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.__clsAbout .intro-eyebrow {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

    .__clsAbout .intro-eyebrow::before {
        content: '';
        width: 22px;
        height: 1.5px;
        background: var(--blue);
    }

.__clsAbout .intro-right h2 {
    font-family: var(--ff-head);
    font-size: clamp(32px,3.2vw,48px);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 20px;
}

    .__clsAbout .intro-right h2 em {
        font-style: italic;
        color: var(--blue);
        font-weight: 400;
    }

.__clsAbout .intro-right p {
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
}

    .__clsAbout .intro-right p + p {
        margin-top: 14px;
    }
/* ── LEGACY — GENERATIONAL ── */
.__clsAbout .legacy-section {
    padding: 100px 52px;
    background: var(--white);
}

.__clsAbout .legacy-top {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.__clsAbout .section-eyebrow {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

    .__clsAbout .section-eyebrow::before, .__clsAbout .section-eyebrow::after {
        content: '';
        flex: 1;
        max-width: 40px;
        height: 1.5px;
        background: var(--gold);
    }

    .__clsAbout .section-eyebrow.blue {
        color: var(--blue);
    }

        .__clsAbout .section-eyebrow.blue::before, .__clsAbout .section-eyebrow.blue::after {
            background: var(--blue);
        }

.__clsAbout .section-title {
    font-family: var(--ff-head);
    font-size: clamp(34px,3.8vw,54px);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.1;
}

    .__clsAbout .section-title.white {
        color: #fff;
    }

        .__clsAbout .section-title.white em {
            color: var(--gold-light);
        }

    .__clsAbout .section-title em {
        font-style: italic;
        color: var(--blue);
        font-weight: 400;
    }

.__clsAbout .section-subtitle {
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 14px;
}
/* Generation cards */
.__clsAbout .gen-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    background: var(--border);
}

.__clsAbout .gen-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
}

.__clsAbout .gen-photo {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    background: var(--off);
    height: 520px;
}

    .__clsAbout .gen-photo img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center 22%;
        display: block;
        transition: transform .6s ease;
    }

.__clsAbout .gen-card:hover .gen-photo img {
    transform: scale(1.04);
}

.__clsAbout .gen-photo-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(10,12,30,.88) 0%,rgba(10,12,30,.1) 60%,transparent 100%);
}

.__clsAbout .gen-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--ff-head);
    font-size: 64px;
    font-weight: 400;
    color: rgba(255,255,255,.12);
    line-height: 1;
    user-select: none;
}

.__clsAbout .gen-role-pill {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(10,12,30,.6);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.75);
    backdrop-filter: blur(8px);
}

.__clsAbout .gen-name-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.__clsAbout .gen-name {
    font-family: var(--ff-head);
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 4px;
}
/* Founder gets gold name */
.__clsAbout .gen-card:first-child .gen-name {
    color: var(--gold-light);
}

.__clsAbout .gen-title {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

.__clsAbout .gen-body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.__clsAbout .gen-desc {
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}
/* Founder desc slightly larger */
.__clsAbout .gen-card:first-child .gen-desc {
    font-size: 15px;
}
/* Founder memorial badge */
.__clsAbout .gen-memorial {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 100px;
    background: #f8f5ee;
    border: 1px solid var(--border-gold);
    width: fit-content;
}

.__clsAbout .gen-memorial-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.__clsAbout .gen-memorial-txt {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-dark);
}
/* ── JOURNEY 1996 — THE ALBUM ── */
.__clsAbout .journey-section {
    position: relative;
    padding: 112px 52px 124px;
    background: #F7F2E7;
    overflow: hidden;
}

    .__clsAbout .journey-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 60% at 18% 8%,rgba(201,169,110,.10) 0%,transparent 60%), radial-gradient(ellipse 60% 70% at 95% 90%,rgba(160,120,64,.07) 0%,transparent 65%);
        pointer-events: none;
    }

.__clsAbout .journey-ghost {
    position: absolute;
    top: -40px;
    right: -30px;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: clamp(180px,26vw,400px);
    line-height: 1;
    color: rgba(160,120,64,.075);
    letter-spacing: -.02em;
    pointer-events: none;
    user-select: none;
}

.__clsAbout .journey-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 76px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.__clsAbout .journey-copy {
    position: sticky;
    top: 110px;
}

.__clsAbout .journey-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 18px;
}

    .__clsAbout .journey-eyebrow::before {
        content: '';
        width: 26px;
        height: 1.5px;
        background: var(--gold);
        display: block;
    }

.__clsAbout .journey-title {
    font-family: var(--ff-head);
    font-size: clamp(36px,3.6vw,54px);
    font-weight: 600;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 22px;
}

    .__clsAbout .journey-title em {
        font-style: italic;
        font-weight: 500;
        color: var(--gold-dark);
    }

.__clsAbout .journey-body {
    font-family: var(--ff-body);
    font-size: 14.5px;
    color: #5E5747;
    line-height: 1.85;
    margin-bottom: 26px;
}

.__clsAbout .journey-note {
    font-family: var(--ff-head);
    font-style: italic;
    font-size: 19px;
    line-height: 1.5;
    color: var(--gold-dark);
    border-left: 2px solid rgba(160,120,64,.35);
    padding-left: 18px;
}

.__clsAbout .journey-album {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 44px 28px;
    align-items: start;
}
/* Each card: white mount + tape strip visible above */
.__clsAbout .print-card {
    background: #fff;
    padding: 10px 10px 18px;
    border-radius: 2px;
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 4px rgba(46,36,15,.07),0 14px 38px rgba(46,36,15,.16);
    transition: transform .38s cubic-bezier(.18,.82,.28,1),box-shadow .38s;
}
    /* tape strip */
    .__clsAbout .print-card::before {
        content: '';
        position: absolute;
        top: -13px;
        left: 50%;
        transform: translateX(-50%);
        width: 72px;
        height: 24px;
        background: linear-gradient(135deg,rgba(232,201,138,.55),rgba(201,169,110,.3));
        border-radius: 2px;
    }

    .__clsAbout .print-card img {
        width: 100%;
        height: auto;
        display: block;
        filter: sepia(.10) saturate(.92) brightness(.97);
    }

.__clsAbout .print-caption {
    font-family: var(--ff-head);
    font-style: italic;
    font-size: 13.5px;
    color: #6B5B3E;
    line-height: 1.5;
    padding: 12px 6px 2px;
    text-align: center;
}
/* Row 1: signboard — spans both columns */
.__clsAbout .print-signboard {
    grid-column: 1/-1;
    transform: rotate(-.7deg);
    max-width: 92%;
    justify-self: center;
}
/* Row 2: two ceremony shots side by side */
.__clsAbout .print-blessing {
    transform: rotate(1.6deg);
    align-self: start;
}

.__clsAbout .print-inauguration {
    transform: rotate(-1.9deg);
    margin-top: 28px;
}
/* Row 3: visa counter — spans both, slightly narrower, offset left */
.__clsAbout .print-visa {
    grid-column: 1/-1;
    transform: rotate(.9deg);
    max-width: 80%;
    justify-self: start;
    margin-left: 8%;
}

.__clsAbout .print-card:hover {
    transform: rotate(0deg) translateY(-8px) !important;
    box-shadow: 0 4px 8px rgba(46,36,15,.08),0 28px 56px rgba(46,36,15,.22);
    z-index: 10;
}
/* ── SERVICES STRIP ── */
.__clsAbout .services-strip {
    padding: 88px 52px;
    background: var(--off);
}

.__clsAbout .svc-strip-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-top: 52px;
}

.__clsAbout .svc-strip-item {
    padding: 28px 24px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all .2s;
    cursor: default;
}

    .__clsAbout .svc-strip-item:hover {
        border-color: rgba(59,79,228,.3);
        box-shadow: 0 8px 24px rgba(59,79,228,.08);
        transform: translateY(-2px);
    }

.__clsAbout .svc-strip-icon {
    font-size: 22px;
    margin-bottom: 14px;
}

.__clsAbout .svc-strip-title {
    font-family: var(--ff-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 7px;
    line-height: 1.2;
}

.__clsAbout .svc-strip-desc {
    font-family: var(--ff-body);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}
/* Faith item gold */
.__clsAbout .svc-strip-item.faith-item {
    border-color: var(--border-gold);
    background: linear-gradient(135deg,#fff 60%,#fdf8f0 100%);
}

    .__clsAbout .svc-strip-item.faith-item:hover {
        border-color: rgba(201,169,110,.5);
        box-shadow: 0 8px 24px rgba(160,120,64,.1);
    }

    .__clsAbout .svc-strip-item.faith-item .svc-strip-title {
        color: var(--gold-dark);
    }
/* ── THE TEAM ── */
.__clsAbout .team-section {
    position: relative;
    background: var(--blue-deep);
    padding: 112px 52px 120px;
    overflow: hidden;
}

    .__clsAbout .team-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 55% 60% at 50% 0%,rgba(201,169,110,.12) 0%,transparent 62%);
        pointer-events: none;
    }

.__clsAbout .team-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.__clsAbout .team-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
}

    .__clsAbout .team-eyebrow::before, .__clsAbout .team-eyebrow::after {
        content: '';
        width: 26px;
        height: 1.5px;
        background: rgba(201,169,110,.5);
    }

.__clsAbout .team-title {
    font-family: var(--ff-head);
    font-size: clamp(34px,3.6vw,52px);
    font-weight: 600;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 18px;
}

    .__clsAbout .team-title em {
        font-style: italic;
        font-weight: 500;
        color: var(--gold-light);
    }

.__clsAbout .team-sub {
    font-family: var(--ff-body);
    font-size: 14.5px;
    color: rgba(255,255,255,.62);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 52px;
}

.__clsAbout .team-frame {
    position: relative;
    display: inline-block;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
}

    .__clsAbout .team-frame::before {
        content: '';
        position: absolute;
        inset: 20px -22px -22px 22px;
        border: 1.5px solid rgba(201,169,110,.4);
        border-radius: 8px;
        pointer-events: none;
        z-index: 0;
    }

    .__clsAbout .team-frame img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        position: relative;
        z-index: 1;
        box-shadow: 0 8px 24px rgba(0,0,0,.28),0 32px 72px rgba(0,0,0,.38);
    }

.__clsAbout .team-caption {
    font-family: var(--ff-head);
    font-style: italic;
    font-size: 19px;
    color: var(--gold-light);
    margin-top: 34px;
    line-height: 1.5;
}

.__clsAbout .team-caption-sub {
    font-family: var(--ff-body);
    font-size: 12px;
    color: rgba(255,255,255,.45);
    margin-top: 6px;
}

.__clsAbout .team-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.__clsAbout .team-stat {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

.__clsAbout .team-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .7;
}

.__clsAbout .team-family-label {
    font-family: var(--ff-head);
    font-style: italic;
    font-size: 22px;
    color: var(--gold-light);
    margin-top: 30px;
    letter-spacing: .01em;
}
/* ── PRESENCE ── */
.__clsAbout .presence-section {
    padding: 88px 52px;
    background: var(--white);
}

.__clsAbout .presence-head {
    max-width: 1180px;
    margin: 0 auto;
}

.__clsAbout .offices-grid {
    max-width: 1180px;
    margin: 52px auto 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.__clsAbout .office-card {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--white);
    overflow: hidden;
    transition: border-color .4s,box-shadow .4s,transform .4s cubic-bezier(.16,1,.3,1);
}

    .__clsAbout .office-card::after {
        content: '↗';
        position: absolute;
        top: 14px;
        right: 14px;
        z-index: 2;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255,255,255,.92);
        color: var(--blue-deep);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        opacity: 0;
        transform: translateY(-4px);
        transition: opacity .3s,transform .3s;
        box-shadow: 0 4px 12px rgba(0,0,0,.15);
    }

    .__clsAbout .office-card:hover::after {
        opacity: 1;
        transform: translateY(0);
    }

    .__clsAbout .office-card:hover {
        border-color: rgba(59,79,228,.32);
        box-shadow: 0 20px 44px rgba(15,26,107,.12);
        transform: translateY(-5px);
    }

.__clsAbout .office-photo {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--off);
}

    .__clsAbout .office-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 1s cubic-bezier(.16,1,.3,1);
    }

.__clsAbout .office-card:hover .office-photo img {
    transform: scale(1.08);
}

.__clsAbout .office-ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    white-space: nowrap;
    background: var(--gold);
    color: var(--blue-deep);
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(160,120,64,.4);
}

.__clsAbout .office-body {
    padding: 22px 22px 24px;
}

.__clsAbout .office-city {
    font-family: var(--ff-head);
    font-size: 21px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 12px;
}

.__clsAbout .office-hq .office-city {
    color: var(--blue-deep);
}

.__clsAbout .office-address {
    font-family: var(--ff-body);
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
    min-height: 62px;
    margin-bottom: 2px;
}

.__clsAbout .office-hq .office-city {
    color: var(--blue-deep);
}
/* ── LICENCES ── */
.__clsAbout .licence-section {
    background: var(--off);
    padding: 72px 52px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.__clsAbout .licence-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    align-items: center;
}

.__clsAbout .licence-label-col {
    padding-right: 52px;
    border-right: 1px solid var(--border);
}

.__clsAbout .licence-title {
    font-family: var(--ff-head);
    font-size: 30px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.2;
    margin-top: 10px;
}

    .__clsAbout .licence-title em {
        font-style: italic;
        color: var(--blue);
        font-weight: 400;
    }

.__clsAbout .licence-logos {
    display: flex;
    align-items: stretch;
    padding-left: 52px;
    gap: 0;
}

.__clsAbout .lic-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 20px;
    border-right: 1px solid var(--border);
    transition: background .2s;
}

    .__clsAbout .lic-item:last-child {
        border-right: none;
    }

    .__clsAbout .lic-item:hover {
        background: var(--white);
    }

.__clsAbout .lic-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--white);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-deep);
    letter-spacing: .04em;
    transition: border-color .2s,box-shadow .2s;
    filter: grayscale(20%);
}

.__clsAbout .lic-item:hover .lic-box {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(59,79,228,.12);
    filter: none;
}

.__clsAbout .lic-name {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--faint);
    letter-spacing: .04em;
    text-align: center;
    line-height: 1.5;
}
/* WRTA gold */
.__clsAbout .lic-item.wrta .lic-box {
    color: var(--gold-dark);
    border-color: var(--border-gold);
}

.__clsAbout .lic-item.wrta:hover .lic-box {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(160,120,64,.15);
}
/* ── AWARDS ── */
.__clsAbout .awards-section {
    padding: 88px 52px;
    background: var(--white);
}

.__clsAbout .awards-head {
    max-width: 1180px;
    margin: 0 auto 40px;
}

.__clsAbout .awards-slider {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.__clsAbout .award-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: var(--r);
    margin-bottom: 5px;
}

.__clsAbout .award-track {
    display: flex;
    gap: 22px;
    transition: transform .55s cubic-bezier(.16,1,.3,1);
    will-change: transform;
}

.__clsAbout .award-slide {
    flex: 0 0 calc((100% - 24px) / 2); /* 2 visible, 1 gap of 24px */
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .35s,transform .35s,border-color .35s;
}

.__clsAbout .award-photo {
    aspect-ratio: 16/10;
    width: 100%;
    background: var(--off);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    border-bottom: 1px solid var(--border);
}

    .__clsAbout .award-photo img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }

.__clsAbout .award-caption {
    padding: 18px 22px;
    text-align: center;
}

.__clsAbout .award-caption-title {
    font-family: var(--ff-head);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 5px;
}

.__clsAbout .award-slide:hover {
    border-color: rgba(201,169,110,.45);
    box-shadow: 0 16px 40px rgba(15,26,107,.12);
    transform: translateY(-5px);
}

.__clsAbout .award-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--blue-deep);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s,color .25s,border-color .25s,box-shadow .25s;
    box-shadow: 0 2px 10px rgba(15,26,107,.06);
}

    .__clsAbout .award-arrow:hover {
        background: var(--blue);
        color: #fff;
        border-color: var(--blue);
    }

    .__clsAbout .award-arrow:disabled {
        opacity: .3;
        cursor: default;
    }

        .__clsAbout .award-arrow:disabled:hover {
            background: var(--white);
            color: var(--blue-deep);
            border-color: var(--border);
        }

.__clsAbout .award-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.__clsAbout .award-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .25s,width .25s;
}

    .__clsAbout .award-dot.active {
        background: var(--gold);
        width: 22px;
        border-radius: 4px;
    }

/* ── MILESTONES ── */
.__clsAbout .milestones-section {
    padding: 88px 52px;
    background: var(--blue-deep);
    position: relative;
    overflow: hidden;
}

    .__clsAbout .milestones-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 80% at 80% 50%,rgba(59,79,228,.3) 0%,transparent 70%);
        pointer-events: none;
    }

.__clsAbout .milestones-inner {
    position: relative;
    z-index: 1;
}

.__clsAbout .milestones-top {
    margin-bottom: 52px;
}

.__clsAbout .ms-slider {
    position: relative;
}

.__clsAbout .ms-viewport {
    overflow: hidden;
    border-radius: var(--r);
}

.__clsAbout .ms-track {
    display: flex;
    gap: 20px;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
    will-change: transform;
}

.__clsAbout .ms-slide {
    flex: 0 0 calc((100% - 20px) / 2); /* 2 large landscape cards, 1 gap of 20px */
    aspect-ratio: 3/2;
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    transition: transform .5s cubic-bezier(.16,1,.3,1),box-shadow .5s;
    cursor: default;
}

.__clsAbout .ms-img {
    position: absolute;
    inset: 0;
    background-image: var(--ms-bg);
    background-size: cover;
    background-position: center;
    transition: transform 1.1s cubic-bezier(.16,1,.3,1);
}

.__clsAbout .ms-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0,0,0,.4);
}

    .__clsAbout .ms-slide:hover .ms-img {
        transform: scale(1.07);
    }

.__clsAbout .ms-ov {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    background: linear-gradient(to top,rgba(6,10,40,.72) 0%,rgba(6,10,40,.15) 22%,rgba(6,10,40,0) 38%);
}

.__clsAbout .ms-title {
    font-family: var(--ff-head);
    font-size: 23px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 7px;
    text-shadow: 0 2px 12px rgba(0,0,0,.7);
    text-transform:uppercase;
}

.__clsAbout .ms-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    gap: 20px;
}

.__clsAbout .ms-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.__clsAbout .ms-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .25s,width .25s;
}

    .__clsAbout .ms-dot.active {
        background: var(--gold);
        width: 24px;
        border-radius: 4px;
    }

.__clsAbout .ms-arrows {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.__clsAbout .ms-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,.4);
    background: transparent;
    color: var(--gold-light);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s,color .25s,border-color .25s;
}

    .__clsAbout .ms-arrow:hover {
        background: var(--gold);
        color: var(--blue-deep);
        border-color: var(--gold);
    }

    .__clsAbout .ms-arrow:disabled {
        opacity: .3;
        cursor: default;
    }

        .__clsAbout .ms-arrow:disabled:hover {
            background: transparent;
            color: var(--gold-light);
            border-color: rgba(201,169,110,.4);
        }

/* ── SUBTLE REVEAL-ON-SCROLL (progressive enhancement) ── */
.__clsAbout .rvl {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .26s ease-out,transform .26s ease-out;
    transition-delay: var(--rd,0ms);
    will-change: opacity,transform;
}

    .__clsAbout .rvl.in {
        opacity: 1;
        transform: none;
    }

@media (prefers-reduced-motion: reduce) {
    .__clsAbout .rvl {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ── CLOSING CTA ── */
.__clsAbout .closing-section {
    background: var(--ink);
    padding: 100px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .__clsAbout .closing-section::before {
        content: 'ATM';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        font-family: var(--ff-head);
        font-size: 260px;
        font-weight: 600;
        color: rgba(255,255,255,.025);
        pointer-events: none;
        letter-spacing: -.04em;
        line-height: 1;
    }

.__clsAbout .closing-eyebrow {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .__clsAbout .closing-eyebrow::before, .__clsAbout .closing-eyebrow::after {
        content: '';
        width: 28px;
        height: 1px;
        background: var(--gold);
    }

.__clsAbout .closing-headline {
    font-family: var(--ff-head);
    font-size: clamp(36px,4.5vw,66px);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

    .__clsAbout .closing-headline em {
        color: var(--gold-light);
        font-style: normal;
    }

.__clsAbout .closing-sub {
    font-family: var(--ff-body);
    font-size: 15px;
    color: rgba(255,255,255,.5);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.__clsAbout .closing-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.__clsAbout .btn-gold {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    padding: 13px 26px 13px 22px;
    border-radius: 100px;
    background: linear-gradient(135deg,var(--gold-dark),var(--gold));
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(160,120,64,.35);
    transition: all .2s;
}

    .__clsAbout .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(160,120,64,.45);
    }

.__clsAbout .btn-outline-white {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: border-color .2s;
}

    .__clsAbout .btn-outline-white:hover {
        border-color: #fff;
    }
/* ── WA FAB ── */
.__clsAbout .wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
    transition: transform .2s;
}

    .__clsAbout .wa-fab:hover {
        transform: scale(1.08);
    }

    .__clsAbout .wa-fab svg {
        width: 25px;
        height: 25px;
        fill: #fff;
    }
/* ── MOBILE ── */
@media(max-width:768px) {
    .__clsAbout nav {
        padding: 0 16px;
    }

    .__clsAbout .about-hero {
        min-height: 70vh;
    }

    .__clsAbout .hero-content {
        padding: 40px 16px 56px;
    }

    .__clsAbout .hero-meta {
        gap: 20px;
    }

    .__clsAbout .scroll-hint {
        display: none;
    }

    .__clsAbout .intro-section {
        grid-template-columns: 1fr;
    }

    .__clsAbout .intro-left, .__clsAbout .intro-right {
        padding: 52px 20px;
    }

    .__clsAbout .legacy-section {
        padding: 64px 16px;
    }

    .__clsAbout .gen-grid {
        grid-template-columns: 1fr;
    }

    .__clsAbout .gen-photo {
        height: 320px;
    }

    .__clsAbout .journey-section {
        padding: 64px 16px 72px;
    }

    .__clsAbout .journey-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .__clsAbout .journey-copy {
        position: static;
    }

    .__clsAbout .journey-ghost {
        font-size: 120px;
        top: -14px;
        right: -8px;
    }

    .__clsAbout .journey-album {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .__clsAbout .print-signboard, .__clsAbout .print-visa {
        max-width: 100%;
        justify-self: center;
        margin-left: 0;
    }

    .__clsAbout .print-inauguration {
        margin-top: 0;
    }

    .__clsAbout .services-strip {
        padding: 56px 16px;
    }

    .__clsAbout .svc-strip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .__clsAbout .team-section {
        padding: 64px 16px 72px;
    }

    .__clsAbout .team-frame::before {
        inset: 12px -12px -12px 12px;
    }

    .__clsAbout .team-sub {
        margin-bottom: 36px;
    }

    .__clsAbout .presence-section {
        padding: 56px 16px;
    }

    .__clsAbout .offices-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 36px;
    }

    .__clsAbout .office-address {
        min-height: 0;
    }

    .__clsAbout .licence-section {
        padding: 52px 16px;
    }

    .__clsAbout .licence-inner {
        grid-template-columns: 1fr;
    }

    .__clsAbout .licence-label-col {
        border-right: none;
        padding-right: 0;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--border);
    }

    .__clsAbout .licence-logos {
        padding-left: 0;
        flex-wrap: wrap;
    }

    .__clsAbout .lic-item {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 20px 10px;
    }

        .__clsAbout .lic-item:nth-child(odd) {
            border-right: 1px solid var(--border);
        }

        .__clsAbout .lic-item:nth-last-child(-n+2) {
            border-bottom: none;
        }

    .__clsAbout .awards-section, .__clsAbout .milestones-section {
        padding: 56px 16px;
    }

    .__clsAbout .award-slide {
        flex: 0 0 100%; /* 1 visible on mobile */
    }

    .__clsAbout .awards-slider {
        gap: 10px;
    }

    .__clsAbout .award-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .__clsAbout .ms-slide {
        flex: 0 0 100%; /* 1 on mobile */
    }

    .__clsAbout .ms-arrow {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .__clsAbout .closing-section {
        padding: 72px 16px;
    }

        .__clsAbout .closing-section::before {
            font-size: 120px;
        }
}

@media(min-width:769px) and (max-width:1024px) {
    .__clsAbout .gen-grid {
        grid-template-columns: 1fr;
    }

    .__clsAbout .svc-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .__clsAbout .ms-slide {
        flex: 0 0 100%; /* 1 on tablet */
    }

    .__clsAbout .licence-inner {
        grid-template-columns: 1fr;
    }

    .__clsAbout .licence-label-col {
        border-right: none;
        padding-right: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border);
    }

    .__clsAbout .licence-logos {
        padding-left: 0;
        flex-wrap: wrap;
    }

    .__clsAbout .lic-item {
        flex: 0 0 33.3%;
    }
}
/* ── FADE IN ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.__clsAbout .fade-in {
    opacity: 0;
    animation: fadeUp .6s ease forwards;
}

.__clsAbout .fade-in-1 {
    animation-delay: .1s;
}

.__clsAbout .fade-in-2 {
    animation-delay: .22s;
}

.__clsAbout .fade-in-3 {
    animation-delay: .34s;
}

.__clsAbout .fade-in-4 {
    animation-delay: .46s;
}
/* ── UTILITY CLASSES (extracted from inline styles) ── */
.__clsAbout .eyebrow-start {
    justify-content: flex-start;
}

.__clsAbout .eyebrow-start-sm {
    justify-content: flex-start;
    margin-bottom: 10px;
}

.__clsAbout .eyebrow-start-md {
    justify-content: flex-start;
    margin-bottom: 14px;
}

.__clsAbout .eyebrow-start-lg {
    justify-content: flex-start;
    margin-bottom: 16px;
}

.__clsAbout .dash-blue {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--blue);
}

.__clsAbout .dash-gold {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gold);
}

.__clsAbout .title-left {
    text-align: left;
}

.__clsAbout .title-left-top {
    text-align: left;
    margin-top: 10px;
}

.__clsAbout .section-intro-md {
    max-width: 620px;
    margin-bottom: 52px;
}

.__clsAbout .section-intro-sm {
    max-width: 480px;
}

.__clsAbout .milestones-subtitle {
    color: rgba(255,255,255,.5);
    text-align: left;
    margin-top: 12px;
    max-width: 560px;
}

.__clsAbout .journey-body-spaced {
    margin-top: 14px;
}
