/* =============================================================
   TOUR EN INDE — Design System
   Bespoke inbound travel brand for European travelers in India
   ============================================================= */

:root {
    --navy: #0f2038;
    --navy-2: #16294a;
    --cream: #faf6ee;
    --cream-2: #f3ebdc;
    --terracotta: #c85a2e;
    --terracotta-dark: #a8461f;
    --gold: #d9a441;
    --ink: #20242c;
    --ink-soft: #565b66;
    --white: #ffffff;
    --line: #e7ddca;
    --shadow: 0 20px 45px -20px rgba(15,32,56,.25);
    --shadow-sm: 0 8px 20px -10px rgba(15,32,56,.25);
    --radius-lg: 22px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 .5em;
    color: var(--navy);
}

p {
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 1em;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.section-tight {
    padding: 64px 0;
}

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

    .section-tight {
        padding: 44px 0;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 700;
    margin-bottom: 14px;
}

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 2px;
        background: var(--gold);
        display: inline-block;
    }

.section-head {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

    .section-head h2 {
        font-size: clamp(1.9rem,3.4vw,2.7rem);
    }

    .section-head p {
        font-size: 1.05rem;
    }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: .95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--terracotta-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

.btn-outline {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
}

    .btn-outline:hover {
        background: var(--navy);
        color: #fff;
    }
/* btn-outline only renders white-on-transparent inside known dark backgrounds
   (hero, page-hero, cta-banner, mega-promo, translucent header). Everywhere
   else it defaults to navy so it never disappears on light sections. */
.hero .btn-outline, .page-hero .btn-outline, .cta-banner .btn-outline, .cta-dark .btn-outline,
.mega-promo .btn-outline, #site-header:not(.solid) .btn-outline,
section[style*="--navy"] .btn-outline, section[style*="var(--navy)"] .btn-outline {
    border-color: rgba(255,255,255,.55);
    color: #fff;
}

    .hero .btn-outline:hover, .page-hero .btn-outline:hover, .cta-banner .btn-outline:hover, .cta-dark .btn-outline:hover,
    .mega-promo .btn-outline:hover, #site-header:not(.solid) .btn-outline:hover,
    section[style*="--navy"] .btn-outline:hover, section[style*="var(--navy)"] .btn-outline:hover {
        background: #fff;
        color: var(--navy);
    }

.btn-dark {
    background: var(--navy);
    color: #fff;
}

    .btn-dark:hover {
        background: var(--navy-2);
    }

.btn-ghost {
    background: rgba(200,90,46,.08);
    color: var(--terracotta);
}

    .btn-ghost:hover {
        background: rgba(200,90,46,.16);
    }

.btn-sm {
    padding: 10px 20px;
    font-size: .85rem;
}

.btn-block {
    width: 100%;
}

/* ================= HEADER / NAV ================= */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .35s ease,box-shadow .35s ease,padding .35s ease;
    padding: 18px 0;
}

    #site-header .top-bar {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 22px;
        font-size: .8rem;
        color: rgba(255,255,255,.85);
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,.15);
        margin-bottom: 12px;
    }

    #site-header.solid .top-bar {
        color: var(--ink-soft);
        border-color: var(--line);
    }

    #site-header .top-bar a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    #site-header.solid {
        background: rgba(250,246,238,.97);
        box-shadow: 0 4px 24px rgba(15,32,56,.08);
        padding: 10px 0;
        backdrop-filter: blur(6px);
    }

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

#site-header.solid .brand {
    color: var(--navy);
}

.brand img {
    height: 38px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .main-nav > li {
        position: relative;
    }

        .main-nav > li > a {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 16px;
            border-radius: 100px;
            font-size: .92rem;
            font-weight: 600;
            color: rgba(255,255,255,.92);
            transition: .2s;
        }

#site-header.solid .main-nav > li > a {
    color: var(--navy);
}

.main-nav > li > a:hover, .main-nav > li.active > a {
    background: rgba(255,255,255,.14);
}

#site-header.solid .main-nav > li > a:hover, #site-header.solid .main-nav > li.active > a {
    background: var(--cream-2);
}

.main-nav .dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #fff;
    min-width: 250px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
}

.main-nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-size: .9rem;
    font-weight: 500;
}

    .main-nav .dropdown a:hover {
        background: var(--cream-2);
        color: var(--terracotta);
    }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

#lang-translate {
    position: relative;
}

.translate-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 100px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    border: 0;
}

#site-header.solid .translate-toggle {
    background: var(--cream-2);
    color: var(--navy);
}

#google_translate_element {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    padding: 10px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    display: none;
    min-width: 190px;
    z-index: 20;
}

    #google_translate_element.open {
        display: block;
    }

.goog-te-gadget-simple {
    border: 0 !important;
    background: transparent !important;
    font-family: var(--sans) !important;
}

.burger {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px;
}

    .burger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #fff;
        margin: 6px 0;
        border-radius: 2px;
        transition: .2s;
    }

#site-header.solid .burger span {
    background: var(--navy);
}

@media (max-width:1080px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        height: 100vh;
        width: 300px;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 24px 24px;
        transition: .3s ease;
        overflow-y: auto;
        z-index: 1100;
    }

        .main-nav.open {
            right: 0;
        }

        .main-nav > li > a {
            color: #fff;
            padding: 14px 10px;
            border-radius: 0;
            border-bottom: 1px solid rgba(255,255,255,.1);
        }

        .main-nav .dropdown {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            background: rgba(255,255,255,.06);
            box-shadow: none;
            display: none;
        }

        .main-nav li.mobile-open .dropdown {
            display: block;
        }

        .main-nav .dropdown a {
            color: rgba(255,255,255,.85);
        }

    .burger {
        display: block;
    }

    .nav-cta .btn-outline {
        display: none;
    }
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(180deg,rgba(15,32,56,.55),rgba(15,32,56,.75)),var(--navy) center/cover no-repeat;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: opacity 1.2s ease;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: -1;
}

.hero-inner {
    max-width: 760px;
    padding-top: 120px;
}

.hero .eyebrow {
    color: #f0c98a;
}

    .hero .eyebrow::before {
        background: #f0c98a;
    }

.hero h1 {
    color: #fff;
    font-size: clamp(2.5rem,5.6vw,4.4rem);
    margin-bottom: 20px;
}

    .hero h1 em {
        color: #f0c98a;
        font-style: normal;
    }

.hero p.lead {
    color: rgba(255,255,255,.88);
    font-size: 1.15rem;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-trust {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    margin-top: 56px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.2);
}

    .hero-trust div {
        font-size: .78rem;
        letter-spacing: .05em;
        color: rgba(255,255,255,.75);
        text-transform: uppercase;
    }

    .hero-trust strong {
        display: block;
        font-family: var(--serif);
        font-size: 1.5rem;
        color: #fff;
        text-transform: none;
        letter-spacing: 0;
    }

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: .75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

    .scroll-cue .line {
        width: 1px;
        height: 36px;
        background: rgba(255,255,255,.5);
        animation: scrollcue 2s infinite;
    }

@keyframes scrollcue {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* generic page hero (inner pages) */
.page-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    padding-bottom: 56px;
    background: var(--navy) center/cover no-repeat;
    overflow: hidden;
}
    /* dark veil — a real layer (not mixed into background-image) so an inline
   background-image on .page-hero, or a rotating .hero-bg slide underneath,
   both stay legible without extra markup */
    .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,rgba(15,32,56,.4) 0%,rgba(15,32,56,.55) 45%,rgba(15,32,56,.92) 100%);
        z-index: -1;
    }

    .page-hero .container {
        padding-top: 120px;
        position: relative;
        z-index: 1;
    }

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

    .breadcrumb a {
        color: rgba(255,255,255,.9);
        font-weight: 600;
    }

    .breadcrumb span {
        color: rgba(255,255,255,.5);
    }

.page-hero h1 {
    color: #fff;
    font-size: clamp(2.1rem,4.4vw,3.4rem);
    margin-bottom: 10px;
    max-width: 820px;
}

.page-hero p {
    color: rgba(255,255,255,.85);
    max-width: 640px;
    font-size: 1.05rem;
}

.page-hero .meta-row {
    display: flex;
    gap: 22px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.14);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
}

/* ================= CARDS ================= */
.grid {
    display: grid;
    gap: 28px;
}

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

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

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

@media (max-width:640px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--line);
}

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

.card-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

    .card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

.card:hover .card-media img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--terracotta);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: .03em;
}

    .card-badge.days {
        background: rgba(15,32,56,.82);
    }

.card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

    .card-body h3 {
        font-size: 1.18rem;
        margin-bottom: 2px;
    }

    .card-body .tag-line {
        color: var(--terracotta);
        font-size: .82rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .03em;
    }

    .card-body .desc {
        font-size: .92rem;
        color: var(--ink-soft);
        flex: 1;
    }

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-top: auto;
}

.tour-card .card-body {
    gap: 6px;
}

/* destination chip */
.dest-chip {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-sm);
}

    .dest-chip img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

    .dest-chip:hover img {
        transform: scale(1.1);
    }

    .dest-chip::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,transparent 40%,rgba(15,32,56,.85));
    }

    .dest-chip span {
        position: absolute;
        bottom: 16px;
        left: 0;
        right: 0;
        text-align: center;
        color: #fff;
        font-family: var(--serif);
        font-size: 1.1rem;
        z-index: 2;
    }

/* testimonial */
.testi-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    height: 100%;
}

    .testi-card .stars {
        color: var(--gold);
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .testi-card p.quote {
        font-family: var(--serif);
        font-size: 1.08rem;
        color: var(--navy);
        font-style: italic;
    }

    .testi-card .who {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 18px;
    }

    .testi-card .avatar {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--cream-2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--serif);
        color: var(--terracotta);
        font-weight: 700;
    }

    .testi-card .who strong {
        display: block;
        color: var(--navy);
        font-size: .95rem;
    }

    .testi-card .who small {
        color: var(--ink-soft);
        font-size: .8rem;
    }

/* blog card */
.blog-card .card-media {
    aspect-ratio: 16/10;
}

.blog-meta {
    display: flex;
    gap: 14px;
    font-size: .78rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .04em;
}

    .blog-meta .cat {
        color: var(--terracotta);
        font-weight: 700;
    }

/* ================= ITINERARY TIMELINE ================= */
.itinerary {
    position: relative;
    margin-top: 10px;
}

    .itinerary::before {
        content: "";
        position: absolute;
        left: 27px;
        top: 10px;
        bottom: 10px;
        width: 2px;
        background: var(--line);
    }

.day-item {
    position: relative;
    padding-left: 76px;
    margin-bottom: 6px;
}

.day-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

    .day-marker span {
        font-size: .58rem;
        text-transform: uppercase;
        letter-spacing: .05em;
        font-family: var(--sans);
        font-weight: 600;
        opacity: .75;
    }

.day-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
}

    .day-card h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .day-card .place-note {
        background: var(--cream-2);
        border-left: 3px solid var(--terracotta);
        padding: 12px 16px;
        border-radius: 6px;
        font-size: .9rem;
        color: var(--ink);
        margin: 14px 0;
    }

    .day-card ul.bullets {
        margin: 10px 0;
    }

        .day-card ul.bullets li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 6px;
            color: var(--ink-soft);
            font-size: .95rem;
        }

            .day-card ul.bullets li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 9px;
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background: var(--terracotta);
            }

/* included / not included */
.incl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media(max-width:640px) {
    .incl-grid {
        grid-template-columns: 1fr;
    }
}

.incl-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
}

    .incl-box h4 {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .incl-box li {
        padding-left: 26px;
        position: relative;
        margin-bottom: 10px;
        font-size: .92rem;
        color: var(--ink-soft);
    }

    .incl-box.yes li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: #2f8f5b;
        font-weight: 700;
    }

    .incl-box.no li::before {
        content: "✕";
        position: absolute;
        left: 0;
        top: 0;
        color: #c0392b;
        font-weight: 700;
    }

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

@media (max-width:980px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }
}

.book-card {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    padding: 28px;
    overflow: hidden;
    z-index: 10;
    align-self: start !important;
}

    .book-card::before {
        content: "";
        display: block;
        height: 6px;
        border-radius: 4px 4px 0 0;
        background: linear-gradient(90deg,var(--terracotta),var(--gold));
        margin: -28px -28px 22px;
    }

    .book-card .price {
        font-family: var(--serif);
        font-size: 1.9rem;
        color: var(--navy);
    }

        .book-card .price small {
            font-family: var(--sans);
            font-size: .75rem;
            color: var(--ink-soft);
            font-weight: 600;
            text-transform: uppercase;
        }

    .book-card hr {
        border: 0;
        border-top: 1px solid var(--line);
        margin: 18px 0;
    }

    .book-card .facts li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 12px;
        font-size: .9rem;
        color: var(--ink-soft);
    }

        .book-card .facts li span {
            width: 110px;
            min-width: 110px;
            color: var(--ink-soft);
        }

        .book-card .facts li strong {
            flex: 1;
            color: var(--navy);
            text-align: right;
            line-height: 1.45;
            word-break: break-word;
        }

        .book-card .facts li strong {
            color: var(--navy);
        }

    .book-card h3, .book-card h4 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .book-card h3::before {
            content: "✉";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--cream-2);
            color: var(--terracotta);
            font-size: .8rem;
            flex-shrink: 0;
        }

    .book-card .trust-line {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .78rem;
        color: var(--ink-soft);
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px dashed var(--line);
    }

        .book-card .trust-line::before {
            content: "🔒";
        }

/* right-column stack: keeps the sidebar column full of content on long
   itineraries instead of leaving blank space once the sticky card settles */
.sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    align-self: stretch;
}

.sidebar-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 26px;
}

    .sidebar-card h4 {
        font-size: .98rem;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .sidebar-card ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

        .sidebar-card ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: .88rem;
            color: var(--ink-soft);
        }

            .sidebar-card ul li .ic {
                width: 30px;
                height: 30px;
                border-radius: 50%;
                background: var(--cream-2);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: .85rem;
                flex-shrink: 0;
            }

    .sidebar-card.dark {
        background: linear-gradient(135deg,var(--navy),var(--navy-2));
        border-color: transparent;
        color: #fff;
    }

        .sidebar-card.dark h4 {
            color: #fff;
        }

        .sidebar-card.dark p {
            color: rgba(255,255,255,.75);
            font-size: .88rem;
            margin-bottom: 14px;
        }

    .sidebar-card .mini-testi {
        font-family: var(--serif);
        font-style: italic;
        color: var(--navy);
        font-size: .92rem;
        line-height: 1.6;
    }

        .sidebar-card .mini-testi .who {
            font-family: var(--sans);
            font-style: normal;
            font-size: .78rem;
            color: var(--ink-soft);
            margin-top: 10px;
            display: block;
        }

    .sidebar-card .stars {
        color: var(--gold);
        letter-spacing: 1px;
        margin-bottom: 10px;
        display: block;
    }

/* Zoho form embed frame */
.form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.zoho-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--cream);
}

    .zoho-embed iframe {
        width: 100% !important;
        border: 0 !important;
        display: block;
    }

/* modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,32,56,.72);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(3px);
}

    .modal-overlay.open {
        display: flex;
    }

.modal-box {
    background: linear-gradient(180deg,var(--navy) 0,var(--navy) 92px,var(--cream) 92px,var(--cream) 100%);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    max-height: min(680px,90vh);
    overflow: hidden;
    position: relative;
    padding: 26px 60px 22px 28px;
    box-shadow: 0 30px 70px -25px rgba(15,32,56,.55);
    display: flex;
    flex-direction: column;
}

    .modal-box::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 92px;
        height: 6px;
        background: linear-gradient(90deg,var(--terracotta),var(--gold));
    }

    .modal-box h3 {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #fff;
        margin: 0 0 6px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

        .modal-box h3::before {
            content: "✉";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255,255,255,.14);
            color: #f0c98a;
            font-size: .95rem;
            flex-shrink: 0;
        }

    .modal-box > p {
        color: rgba(255,255,255,.75) !important;
        margin: 0 0 22px;
        font-size: .85rem;
        flex-shrink: 0;
    }

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,.16);
    color: #fff;
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.05rem;
    z-index: 5;
    transition: .2s;
}

    .modal-close:hover {
        background: var(--terracotta);
        color: #fff;
    }

.modal-box .zoho-embed {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    margin-top: 6px;
}

@media (max-width:560px) {
    .modal-box {
        max-height: 94vh;
        padding: 22px 50px 18px 22px;
    }
}

/* ================= FOOTER ================= */
#site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

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

@media (max-width:560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

#site-footer h5 {
    color: #fff;
    font-family: var(--sans);
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: .08em;
    margin-bottom: 20px;
}

#site-footer .brand {
    color: #fff;
    margin-bottom: 16px;
}

#site-footer p {
    color: rgba(255,255,255,.65);
    font-size: .9rem;
}

#site-footer li {
    margin-bottom: 10px;
}

#site-footer a {
    font-size: .9rem;
    color: rgba(255,255,255,.75);
}

    #site-footer a:hover {
        color: var(--gold);
    }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    font-size: .82rem;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-bottom a {
        color: rgba(255,255,255,.6);
    }

.reg-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.06);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    margin-top: 16px;
    font-size: .78rem;
}

    .reg-badge img {
        height: 38px;
        width: auto;
        max-width: 170px;
        object-fit: contain;
        background: transparent;
        border-radius: 0;
        padding: 0;
    }

/* ================= FLOATING CTA ================= */
.floating-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

    .floating-cta a {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        box-shadow: 0 10px 25px rgba(0,0,0,.25);
        font-size: 1.4rem;
        transition: .2s;
    }

        .floating-cta a:hover {
            transform: scale(1.08);
        }

.fc-call {
    background: var(--navy);
}

.fc-whatsapp {
    background: #25D366;
}

/* ================= UTILS ================= */
.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: none;
    }

.divider-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.3rem,2.6vw,1.8rem);
    color: var(--navy);
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.5;
}

    .divider-quote span {
        color: var(--terracotta);
    }

.cta-banner {
    background: linear-gradient(135deg,var(--navy),var(--navy-2));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

    .cta-banner h3 {
        color: #fff;
        font-size: 1.7rem;
        max-width: 480px;
    }

    .cta-banner p {
        color: rgba(255,255,255,.75);
    }

/* prose (blog / long text) */
.prose {
    max-width: 760px;
    margin: 0 auto;
}

    .prose h2 {
        font-size: 1.6rem;
        margin-top: 1.6em;
    }

    .prose h3 {
        font-size: 1.25rem;
        margin-top: 1.3em;
    }

    .prose p {
        font-size: 1.03rem;
    }

    .prose ul {
        margin: 0 0 1.2em;
        padding-left: 1.2em;
        list-style: disc;
    }

    .prose li {
        margin-bottom: .4em;
        color: var(--ink-soft);
    }

    .prose blockquote {
        border-left: 3px solid var(--terracotta);
        padding: 6px 22px;
        font-style: italic;
        color: var(--navy);
        font-family: var(--serif);
        font-size: 1.15rem;
    }

    .prose img {
        border-radius: var(--radius-md);
        margin: 1.5em 0;
    }

/* category chips (blog filter) */
.chip-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.chip {
    padding: 9px 18px;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--ink-soft);
}

    .chip.active, .chip:hover {
        background: var(--navy);
        color: #fff;
        border-color: var(--navy);
    }

/* search box */
.search-box {
    display: flex;
    border: 1px solid var(--line);
    border-radius: 100px;
    overflow: hidden;
    background: #fff;
}

    .search-box input {
        flex: 1;
        border: 0;
        padding: 12px 20px;
        font-family: var(--sans);
        font-size: .92rem;
        outline: none;
    }

    .search-box button {
        border: 0;
        background: var(--terracotta);
        color: #fff;
        padding: 0 22px;
        cursor: pointer;
        font-weight: 600;
    }

table.compare {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
}

    table.compare td, table.compare th {
        border: 1px solid var(--line);
        padding: 10px 14px;
        text-align: left;
        font-size: .92rem;
    }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width:860px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

    .img-frame img {
        width: 100%;
    }

.stat-strip {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

    .stat-strip div {
        text-align: center;
    }

    .stat-strip strong {
        display: block;
        font-family: var(--serif);
        font-size: 2rem;
        color: var(--terracotta);
    }

    .stat-strip span {
        font-size: .8rem;
        color: var(--ink-soft);
        text-transform: uppercase;
        letter-spacing: .04em;
    }

.team-card {
    text-align: center;
}

    .team-card .card-media {
        aspect-ratio: 1/1;
        border-radius: 50%;
        margin: 0 auto 18px;
        width: 160px;
        box-shadow: var(--shadow-sm);
    }

    .team-card h3 {
        margin-bottom: 2px;
        font-size: 1.05rem;
    }

    .team-card .role {
        color: var(--terracotta);
        font-size: .82rem;
        font-weight: 600;
        text-transform: uppercase;
    }

.gallery-grid {
    columns: 4 260px;
    column-gap: 16px;
}

    .gallery-grid img {
        width: 100%;
        border-radius: var(--radius-md);
        margin-bottom: 16px;
        box-shadow: var(--shadow-sm);
    }

@media(max-width:700px) {
    .gallery-grid {
        columns: 2 160px;
    }
}

#google_translate_element select {
    padding: 6px;
    border-radius: 6px;
    border: 1px solid var(--line);
    font-family: var(--sans);
}

body.translated-ltr #site-header {
    position: fixed !important;
}

/* =============================================================
   MEGA MENU (HubSpot-style)
   ============================================================= */
.main-nav li.has-mega {
    position: static;
}

.mega-panel {
    position: fixed;
    left: 50%;
    top: 76px;
    transform: translateX(-50%) translateY(8px);
    width: min(1120px,92vw);
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 36px;
    display: grid;
    grid-template-columns: repeat(3,1fr) 260px;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease,transform .22s ease,visibility .22s;
    z-index: 1500;
    text-align: left;
}

.main-nav li.has-mega:hover .mega-panel,
.main-nav li.has-mega.mobile-open .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-col h6 {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--terracotta);
    margin-bottom: 14px;
    font-weight: 700;
}

.mega-item {
    display: flex;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 10px;
    align-items: flex-start;
}

    .mega-item:hover {
        background: var(--cream-2);
    }

    .mega-item .ic {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: var(--cream-2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.05rem;
        flex-shrink: 0;
    }

    .mega-item strong {
        display: block;
        color: var(--navy);
        font-size: .9rem;
        font-weight: 600;
    }

    .mega-item span {
        font-size: .78rem;
        color: var(--ink-soft);
    }

.mega-promo {
    background: linear-gradient(135deg,var(--navy),var(--navy-2));
    border-radius: 14px;
    padding: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

    .mega-promo h5 {
        color: #fff;
        font-size: 1.02rem;
        margin-bottom: 6px;
    }

    .mega-promo p {
        color: rgba(255,255,255,.75);
        font-size: .82rem;
        margin: 0;
    }

@media (max-width:1080px) {
    .mega-panel {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        padding: 6px 0 6px 14px;
        display: none;
        grid-template-columns: 1fr;
        width: auto;
        gap: 18px;
    }

    .main-nav li.has-mega.mobile-open .mega-panel {
        display: grid;
    }

    .mega-col h6 {
        color: rgba(255,255,255,.55);
    }

    .mega-item strong {
        color: #fff;
    }

    .mega-item span {
        color: rgba(255,255,255,.55);
    }

    .mega-item:hover {
        background: rgba(255,255,255,.08);
    }

    .mega-promo {
        display: none;
    }
}

/* =============================================================
   TOURRADAR-STYLE QUICK SEARCH + RATING BADGES
   ============================================================= */
.quick-search {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 22px 26px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 18px;
    align-items: end;
    margin-top: -64px;
    position: relative;
    z-index: 60;
}

    .quick-search .qs-field {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .quick-search label {
        font-size: .7rem;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--ink-soft);
        font-weight: 700;
    }

    .quick-search select {
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 11px 12px;
        font-family: var(--sans);
        font-size: .9rem;
        color: var(--ink);
        background: #fff;
    }

    .quick-search .btn {
        height: 44px;
    }

@media (max-width:900px) {
    .quick-search {
        grid-template-columns: 1fr 1fr;
        margin-top: -40px;
    }
}

@media (max-width:560px) {
    .quick-search {
        grid-template-columns: 1fr;
    }
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--ink-soft);
    margin: 2px 0 6px;
}

    .rating-row .stars {
        color: var(--gold);
        letter-spacing: 1px;
        font-size: .85rem;
    }

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--cream-2);
    padding: 5px 11px;
    border-radius: 100px;
    font-size: .74rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.trust-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 22px 0 6px;
}

    .trust-strip div {
        text-align: center;
        font-size: .76rem;
        color: var(--ink-soft);
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    .trust-strip strong {
        display: block;
        font-family: var(--serif);
        font-size: 1.3rem;
        color: var(--navy);
        text-transform: none;
        letter-spacing: 0;
    }

/* =============================================================
   SALESFORCE-STYLE BLOG POST LAYOUT
   ============================================================= */
.post-wrap {
    display: grid;
    grid-template-columns: 64px minmax(0,1fr) 320px;
    gap: 36px;
    align-items: start;
}

@media (max-width:1080px) {
    .post-wrap {
        grid-template-columns: 1fr;
    }
}

.share-sticky {
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .share-sticky a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        box-shadow: var(--shadow-sm);
        font-size: .95rem;
        font-weight: 700;
    }

        .share-sticky a:hover {
            background: var(--terracotta);
            color: #fff;
            border-color: var(--terracotta);
        }

@media (max-width:1080px) {
    .share-sticky {
        flex-direction: row;
        position: static;
        justify-content: center;
        margin-bottom: 24px;
    }
}

.byline-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 0 0 2.4em;
    flex-wrap: wrap;
}

    .byline-row .avatar-lg {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--navy);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--serif);
        font-weight: 700;
        font-size: 1.05rem;
        flex-shrink: 0;
    }

    .byline-row .who strong {
        display: block;
        color: var(--navy);
        font-size: .95rem;
    }

    .byline-row .who span {
        font-size: .8rem;
        color: var(--ink-soft);
    }

    .byline-row .share-inline {
        margin-left: auto;
        display: flex;
        gap: 8px;
    }

.share-inline a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: .82rem;
    font-weight: 700;
}

    .share-inline a:hover {
        background: var(--navy);
        color: #fff;
    }

.cta-inline {
    background: var(--cream-2);
    border-left: 4px solid var(--terracotta);
    border-radius: 10px;
    padding: 24px 28px;
    margin: 2.2em 0;
}

    .cta-inline h4 {
        margin-bottom: 8px;
        color: var(--navy);
    }

    .cta-inline p {
        margin-bottom: 14px;
    }

.tag-chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2.4em;
    padding-top: 2em;
    border-top: 1px solid var(--line);
}

.tag-chip {
    background: var(--cream-2);
    color: var(--navy);
    font-size: .78rem;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: 100px;
}

/* =============================================================
   MAGAZINE-STYLE BLOG INDEX
   ============================================================= */
.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 56px;
    background: #fff;
}

    .featured-post .fp-media {
        position: relative;
        min-height: 440px;
    }

        .featured-post .fp-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

    .featured-post .fp-body {
        padding: 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .featured-post .fp-body h2 {
            font-size: clamp(1.6rem,2.8vw,2.3rem);
        }

    .featured-post .fp-meta {
        display: flex;
        gap: 14px;
        align-items: center;
        margin-bottom: 16px;
    }

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

        .featured-post .fp-media {
            min-height: 260px;
        }

        .featured-post .fp-body {
            padding: 30px;
        }
}


.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-video-slider {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out, visibility 1s;
}

    .hero-video.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .hero-video.slide-out {
        opacity: 0;
        visibility: visible;
        transform: translateX(-100%);
    }

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: transparent;
}

/* Purana image background disable */
.hero-bg {
    display: none !important;
}

/* ===== TERMS PAGE FIX ===== */

.prose {
    max-width: 100%;
}

.term-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 24px;
    padding: 34px;
    margin-bottom: 32px !important;
    box-shadow: 0 10px 35px rgba(15,32,56,.08);
    overflow: hidden;
}

    .term-card > * + * {
        margin-top: 24px;
    }

    .term-card > div {
        margin-bottom: 0 !important;
    }

    .term-card h2 {
        margin: 0;
    }

    .term-card h3,
    .term-card h4 {
        margin: 0 0 12px;
    }

    .term-card p:last-child {
        margin-bottom: 0;
    }

    .term-card [style*="display:grid"] {
        gap: 24px !important;
    }

    .term-card [style*="display:flex"] {
        gap: 20px !important;
    }

    /* white boxes */

    .term-card [style*="background:#fafafa"],
    .term-card [style*="background:#fff"],
    .term-card [style*="background:#f0fff5"],
    .term-card [style*="background:#fff9ec"],
    .term-card [style*="background:#fff1f1"],
    .term-card [style*="background:#eef6ff"],
    .term-card [style*="background:#faf5ff"],
    .term-card [style*="background:#eff6ff"],
    .term-card [style*="background:#f0fdf4"] {
        border-radius: 18px !important;
        margin-bottom: 22px !important;
    }

/* footer fix */

footer {
    margin-top: 70px;
    clear: both;
    position: relative;
    z-index: 10;
}

    footer .container {
        position: relative;
    }

    footer * {
        box-sizing: border-box:
    }

/* spacing */

section.term-card:last-child {
    margin-bottom: 60px;
}

@media(max-width:992px) {

    .term-card {
        padding: 24px;
        margin-bottom: 24px !important;
    }
}

@media(max-width:768px) {

    .term-card {
        padding: 20px;
        border-radius: 18px;
    }

        .term-card [style*="display:flex"] {
            flex-direction: column;
        }
}

/* =============================================================
   FAQ / AEO Accordion — used site-wide for Answer-Engine content
   ============================================================= */
.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

    .faq-item summary {
        cursor: pointer;
        list-style: none;
        padding: 20px 26px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        font-family: var(--serif);
        font-weight: 600;
        color: var(--navy);
        font-size: 1.02rem;
    }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "+";
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--cream-2);
            color: var(--terracotta);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            line-height: 1;
            transition: transform .25s ease, background .25s ease, color .25s ease;
        }

    .faq-item[open] summary::after {
        transform: rotate(45deg);
        background: var(--terracotta);
        color: #fff;
    }

    .faq-item .faq-answer {
        padding: 0 26px 22px;
        color: var(--ink-soft);
        font-size: .95rem;
        line-height: 1.7;
    }

        .faq-item .faq-answer p:last-child {
            margin-bottom: 0;
        }

@media(max-width:600px) {
    .faq-item summary {
        padding: 16px 18px;
        font-size: .96rem;
    }

    .faq-item .faq-answer {
        padding: 0 18px 18px;
    }
}


/* =============================================================
   GLOBAL CARD / BLOCK HOVER
   Gives reusable cards and content blocks a consistent active
   state across the website without affecting touch devices.
   ============================================================= */
@media (hover: hover) and (pointer: fine) {

    .card,
    .dest-chip,
    .testi-card,
    .day-card,
    .incl-box,
    .book-card,
    .sidebar-card,
    .form-wrap,
    .stat-strip,
    .img-frame,
    .featured-post,
    .term-card,
    .faq-item,
    .cta-inline {
        transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

        .card:hover,
        .dest-chip:hover,
        .testi-card:hover,
        .day-card:hover,
        .incl-box:hover,
        .book-card:hover,
        .sidebar-card:hover,
        .form-wrap:hover,
        .stat-strip:hover,
        .img-frame:hover,
        .featured-post:hover,
        .term-card:hover,
        .faq-item:hover,
        .cta-inline:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: rgba(200,90,46,.45);
        }

    .gallery-grid img {
        transition: transform .35s ease, box-shadow .35s ease;
    }

        .gallery-grid img:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

    .tag-chip {
        transition: background .2s ease, color .2s ease, transform .2s ease;
    }

        .tag-chip:hover {
            background: var(--terracotta);
            color: #fff;
            transform: translateY(-2px);
        }
}


/* =============================================================
   UNIVERSAL HOVER GLOW — ALL VISUAL CARDS / CONTAINERS / BLOCKS
   Keeps existing hover animations and adds the theme glow around
   the entire element on hover.
   ============================================================= */

@media (hover: hover) and (pointer: fine) {

    :is( .card, .testi-card, .dest-chip, .day-card, .incl-box, .book-card, .sidebar-card, .form-wrap, .zoho-embed, .modal-box, .cta-banner, .img-frame, .stat-strip, .quick-search, .mega-panel, .mega-promo, .mega-item, .chip, .search-box, .gallery-grid img, [class*="-card"], [class*="_card"], [class*="card-"], [class*="box"], [class*="panel"], [class*="feature"], [class*="service"], [class*="testimonial"], [class*="testi"], [class*="review"], [class*="faq"], [class*="accordion"], [class*="pricing"], [class*="info"], [class*="stat"], [class*="gallery"] ):not( #site-header, #site-header *, #site-footer, #site-footer *, .main-nav, .main-nav *, .floating-cta, .floating-cta *, .modal-overlay, .modal-overlay *, .mega-panel .mega-item *, .btn, button, a, input, textarea, select, option ) {
        position: relative;
        z-index: 0;
        transition: box-shadow .35s ease, border-color .35s ease;
    }

        /* The glow is a separate layer, so the existing transform/image hover
       effects remain exactly as they are. */
        :is( .card, .testi-card, .dest-chip, .day-card, .incl-box, .book-card, .sidebar-card, .form-wrap, .zoho-embed, .modal-box, .cta-banner, .img-frame, .stat-strip, .quick-search, .mega-panel, .mega-promo, .mega-item, .chip, .search-box, .gallery-grid img, [class*="-card"], [class*="_card"], [class*="card-"], [class*="box"], [class*="panel"], [class*="feature"], [class*="service"], [class*="testimonial"], [class*="testi"], [class*="review"], [class*="faq"], [class*="accordion"], [class*="pricing"], [class*="info"], [class*="stat"], [class*="gallery"] ):not( #site-header, #site-header *, #site-footer, #site-footer *, .main-nav, .main-nav *, .floating-cta, .floating-cta *, .modal-overlay, .modal-overlay *, .mega-panel .mega-item *, .btn, button, a, input, textarea, select, option ):hover::after {
            content: "";
            position: absolute;
            inset: -7px;
            z-index: -1;
            pointer-events: none;
            border-radius: inherit;
            background: radial-gradient( circle at 50% 0%, rgba(217,164,65,.30), transparent 42% ), radial-gradient( circle at 100% 50%, rgba(200,90,46,.28), transparent 44% ), radial-gradient( circle at 0% 50%, rgba(15,32,56,.20), transparent 44% ), radial-gradient( circle at 50% 100%, rgba(200,90,46,.24), transparent 44% );
            filter: blur(10px);
            opacity: 1;
            transition: opacity .35s ease, transform .35s ease;
        }

    /* Stronger four-side edge light for the main card family. */
    :is( .card, .testi-card, .day-card, .incl-box, .book-card, .sidebar-card, .form-wrap, .cta-banner, .stat-strip, .quick-search, [class*="-card"], [class*="_card"], [class*="box"], [class*="panel"], [class*="feature"], [class*="service"], [class*="testimonial"], [class*="testi"], [class*="review"], [class*="faq"], [class*="pricing"] ):not( #site-header *, #site-footer *, .main-nav *, .floating-cta *, .modal-overlay * ):hover {
        border-color: rgba(200,90,46,.48);
        box-shadow: 0 0 0 1px rgba(217,164,65,.18), 0 -7px 24px rgba(217,164,65,.12), 7px 0 26px rgba(200,90,46,.15), 0 7px 26px rgba(200,90,46,.15), -7px 0 26px rgba(15,32,56,.10), 0 18px 42px rgba(15,32,56,.18);
    }

    /* Forms/inputs: keep their own focus styles, but add the same theme
       light around each control when hovered. */
    :is( input, textarea, select ):hover {
        border-color: rgba(200,90,46,.55) !important;
        box-shadow: 0 0 0 2px rgba(217,164,65,.08), 0 -5px 14px rgba(217,164,65,.08), 5px 0 16px rgba(200,90,46,.10), 0 5px 16px rgba(200,90,46,.10), -5px 0 16px rgba(15,32,56,.07);
        transition: border-color .25s ease, box-shadow .25s ease;
    }
}

/* Never create hover lift/glow on touch devices. */
@media (hover: none), (pointer: coarse) {
    :is( [class*="-card"], [class*="_card"], [class*="card-"], [class*="box"], [class*="panel"], [class*="feature"], [class*="service"], [class*="testimonial"], [class*="testi"], [class*="review"], [class*="faq"], [class*="accordion"], [class*="pricing"], [class*="info"], [class*="stat"], [class*="gallery"] ):not( #site-header *, #site-footer *, .main-nav *, .floating-cta *, .modal-overlay * )::after {
        content: none !important;
    }
}
