/* BTB modern overlay theme — sits on top of existing styles */
:root {
    --btb-accent: #4859A3;
    --btb-accent-dark: #3a4885;
    --btb-accent-soft: #eef0fa;
    --btb-cream: #f3f6fd;
    --btb-deep: #1f2858;
    --btb-deep-dark: #141c41;
    --btb-text: #1f2937;
    --btb-muted: #6b7280;
    --btb-border: #e5e7eb;
    --btb-shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
    --btb-shadow: 0 10px 30px rgba(15, 23, 42, .10);
    --btb-shadow-lg: 0 20px 50px rgba(15, 23, 42, .16);
    --btb-radius: 14px;
    --btb-radius-sm: 8px;
}

/* ============== EDITORIAL TYPOGRAPHY ============== */
body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.av-display {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.02;
    margin: 0;
    color: #fff;
}

.av-display em {
    font-style: italic;
    font-weight: 500;
    color: #fff;
    position: relative;
}

.av-display-md {
    font-size: clamp(32px, 4.5vw, 56px);
    color: var(--btb-deep);
    letter-spacing: -1px;
    line-height: 1.05;
}

.av-display-md em {
    color: var(--btb-accent);
    font-weight: 600;
}

.av-section-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--btb-accent);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 14px;
}

/* Section heads use serif for h2 too */
.av-section-head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -1px;
}

/* ============== EDITORIAL HERO ============== */
.av-hero-editorial {
    min-height: 100vh;
    padding: 120px 0 50px;
    align-items: center;
    overflow: hidden;
}

.av-hero-editorial .av-hero-overlay {
    background:
        linear-gradient(180deg, rgba(15, 20, 45, .40) 0%, rgba(10, 15, 40, .75) 100%),
        radial-gradient(circle at 20% 50%, rgba(72, 89, 163, .4), transparent 60%);
}

.av-hero-content {
    position: relative;
    z-index: 3;
    max-width: 920px;
}

.av-hero-kicker {
    display: inline-block;
    /* font-family: 'Playfair Display', serif; */
    /* font-style: italic; */
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f7d27a 0%, #e7b04a 50%, #c98a2a 100%);
    border: 1px solid rgba(255, 255, 255, .35);
    box-shadow: 0 4px 14px rgba(201, 138, 42, .35), inset 0 1px 0 rgba(255, 255, 255, .5);
}

.av-hero-editorial .av-display {
    font-size: clamp(46px, 8vw, 110px);
}

.av-hero-tag {
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.6;
    max-width: 580px;
    color: rgba(255, 255, 255, .85);
    margin: 24px 0 30px;
    font-weight: 400;
}

.av-hero-editorial .av-hero-cta {
    gap: 14px;
}

/* Marquee strip below hero text */
.av-hero-marquee {
    margin-top: 50px;
    z-index: 3;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.av-marquee-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: av-marquee 60s linear infinite;
    color: rgba(255, 255, 255, .65);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    white-space: nowrap;
}

.av-marquee-item {
    padding: 0 4px;
}

.av-marquee-dot {
    color: var(--btb-accent);
    margin-left: 18px;
}

@keyframes av-marquee {
    from {
        transform: translateX(0);
    }

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

/* ============== SEARCH STRIP ============== */
.av-search-strip {
    background: var(--btb-cream);
    padding: 40px 0;
    border-bottom: 1px solid var(--btb-border);
}

.av-search-strip .av-search {
    margin-top: 0;
    box-shadow: var(--btb-shadow);
}

/* Searchable destination combobox */
.av-combo {
    position: relative;
}

.av-combo-input {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--btb-text);
    outline: none;
    width: 100%;
    cursor: text;
}

.av-combo-input::placeholder {
    color: var(--btb-muted);
    font-weight: 400;
}

.av-combo.open .av-combo-input {
    color: var(--btb-deep);
}

.av-combo-list {
    position: absolute;
    top: calc(100% + 6px);
    left: -16px;
    right: -16px;
    background: #fff;
    border: 1px solid var(--btb-border);
    border-radius: 12px;
    box-shadow: var(--btb-shadow-lg);
    max-height: 320px;
    overflow-y: auto;
    z-index: 100;
    padding: 6px;
}

.av-combo-item {
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--btb-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background .12s;
}

.av-combo-item:hover {
    background: var(--btb-accent-soft);
    color: var(--btb-accent);
}

.av-combo-name {
    font-weight: 500;
}

.av-combo-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--btb-muted);
    font-weight: 600;
}

.av-combo-empty {
    padding: 16px;
    text-align: center;
    color: var(--btb-muted);
    font-size: 13px;
    font-style: italic;
}

@media (max-width:991px) {
    .av-combo-list {
        left: 0;
        right: 0;
    }
}

/* ============== EDITORIAL INTRO ============== */
.av-editorial {
    padding: 120px 0;
    background: #fff;
}

.av-editorial-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--btb-shadow-lg);
}

.av-editorial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.av-editorial-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--btb-shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}

.av-editorial-badge .num {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 800;
    color: var(--btb-accent);
    line-height: 1;
}

.av-editorial-badge .lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 600;
    color: var(--btb-muted);
    text-align: left;
}

.av-editorial-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--btb-text);
    margin: 18px 0 28px;
}

.av-editorial-meta {
    display: flex;
    gap: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--btb-border);
    flex-wrap: wrap;
}

.av-editorial-meta div {
    display: flex;
    flex-direction: column;
}

.av-editorial-meta strong {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--btb-deep);
    letter-spacing: -1px;
    line-height: 1;
}

.av-editorial-meta strong span {
    color: var(--btb-accent);
}

.av-editorial-meta .lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--btb-muted);
    font-weight: 600;
    margin-top: 6px;
}

/* ============== BIG PULL-QUOTE ============== */
.av-quote-section {
    padding: 120px 0;
    background: var(--btb-cream);
    position: relative;
    overflow: hidden;
}

.av-quote-wrap {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.av-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 240px;
    line-height: .7;
    color: var(--btb-accent);
    opacity: .18;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.av-quote-text {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 500;
    line-height: 1.45;
    color: var(--btb-deep);
    letter-spacing: -.4px;
    margin: 0;
    padding: 30px 0;
}

.av-quote-text em {
    color: var(--btb-accent);
    font-weight: 600;
}

.av-quote-author {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.av-quote-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--btb-accent), var(--btb-deep));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
}

.av-quote-author strong {
    display: block;
    color: var(--btb-deep);
    font-size: 15px;
}

.av-quote-author span {
    font-size: 13px;
    color: var(--btb-muted);
}

.av-quote-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--btb-border);
}

@media (max-width:767px) {
    .av-quote-strip {
        grid-template-columns: 1fr;
    }
}

.av-quote-small {
    text-align: center;
}

.av-quote-small-stars {
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 10px;
}

.av-quote-small-stars i {
    margin: 0 1px;
}

.av-quote-small p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--btb-deep);
    line-height: 1.5;
    margin: 0 0 10px;
}

.av-quote-small span {
    font-size: 12px;
    color: var(--btb-muted);
}

.av-quote-small strong {
    color: var(--btb-deep);
}

/* ============== MODERN UPGRADES ============== */

/* Scroll reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

[data-reveal].av-revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Bento grid for destinations (8 cards in mosaic) */
.av-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: 14px;
}

.av-bento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: #fff;
    transition: transform .35s ease, box-shadow .35s;
    box-shadow: var(--btb-shadow-sm);
}

.av-bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
    z-index: 0;
}

.av-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--btb-shadow-lg);
    color: #fff;
}

.av-bento-card:hover::after {
    transform: scale(1.1);
}

.av-bento-info {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px 20px;
    z-index: 2;
}

.av-bento-info h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.3px;
    color: #fff;
}

.av-bento-pill {
    display: inline-block;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 8px;
}

.av-bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s, transform .25s;
}

.av-bento-cta i {
    font-size: 11px;
    transition: transform .25s;
}

.av-bento-card:hover .av-bento-cta {
    opacity: 1;
    transform: none;
}

.av-bento-card:hover .av-bento-cta i {
    transform: translateX(4px);
}

.av-bento-xl {
    grid-column: span 2;
    grid-row: span 2;
}

.av-bento-xl .av-bento-info h3 {
    font-size: 30px;
}

.av-bento-lg {
    grid-column: span 2;
    grid-row: span 1;
}

.av-bento-md {
    grid-column: span 1;
    grid-row: span 1;
}

@media (max-width:991px) {
    .av-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .av-bento-xl {
        grid-column: span 2;
        grid-row: span 2;
    }

    .av-bento-lg {
        grid-column: span 2;
        grid-row: span 1;
    }

    .av-bento-md {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width:575px) {
    .av-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .av-bento-xl,
    .av-bento-lg,
    .av-bento-md {
        grid-column: span 1;
        grid-row: span 1;
    }

    .av-bento-xl {
        grid-row: span 2;
    }
}

/* Horizontal rail (snap carousel) — scrollbar hidden, navigated via arrows */
.av-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 4px 16px;
    margin: 0 -4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.av-rail::-webkit-scrollbar {
    display: none;
}

.av-rail-item {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

@media (max-width:575px) {
    .av-rail-item {
        flex: 0 0 78%;
    }
}

.av-rail-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.av-rail-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--btb-border);
    background: #fff;
    color: var(--btb-deep);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.av-rail-arrow:hover {
    background: var(--btb-accent);
    color: #fff;
    border-color: var(--btb-accent);
}

@media (max-width:767px) {
    .av-rail-arrow {
        display: none;
    }
}

/* FAQ accordion */
.av-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.av-faq-item {
    background: #fff;
    border: 1px solid var(--btb-border);
    border-radius: 12px;
    transition: border-color .2s, box-shadow .2s;
}

.av-faq-item[open] {
    border-color: var(--btb-accent);
    box-shadow: var(--btb-shadow-sm);
}

.av-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-weight: 600;
    font-size: 15px;
    color: var(--btb-deep);
}

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

.av-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--btb-accent-soft);
    color: var(--btb-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: transform .25s, background .2s;
}

.av-faq-item[open] .av-faq-icon {
    transform: rotate(45deg);
    background: var(--btb-accent);
    color: #fff;
}

.av-faq-body {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--btb-muted);
}

.av-faq-body a {
    color: var(--btb-accent);
    font-weight: 600;
    text-decoration: none;
}

.av-faq-body a:hover {
    text-decoration: underline;
}

/* Floating WhatsApp */
.av-fab-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
    z-index: 1050;
    font-weight: 600;
    font-size: 14px;
    transition: transform .2s, box-shadow .2s;
}

.av-fab-wa:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 18px 40px rgba(37, 211, 102, .55);
}

.av-fab-wa i {
    font-size: 20px;
}

@media (max-width:575px) {
    .av-fab-wa {
        padding: 14px;
    }

    .av-fab-wa span {
        display: none;
    }
}

/* Hero decorative orbs */
.av-hero::before,
.av-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .35;
    z-index: 1;
    pointer-events: none;
}

.av-hero::before {
    width: 380px;
    height: 380px;
    background: #4859A3;
    top: -100px;
    right: -80px;
    animation: av-orb-float 14s ease-in-out infinite alternate;
}

.av-hero::after {
    width: 300px;
    height: 300px;
    background: #7c8fcf;
    bottom: -100px;
    left: 10%;
    animation: av-orb-float 18s ease-in-out infinite alternate-reverse;
}

@keyframes av-orb-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -30px) scale(1.15);
    }
}

/* ============== AVIAN-STYLE HOMEPAGE ============== */

.av-eyebrow {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: var(--btb-accent);
    margin-bottom: 10px;
}

.av-eyebrow.eyebrow-blue {
    color: var(--btb-accent);
}

.av-eyebrow.text-white {
    color: rgba(255, 255, 255, .8);
}

.av-link {
    color: var(--btb-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.av-link:hover {
    color: var(--btb-deep);
}

.av-link i {
    transition: transform .2s;
}

.av-link:hover i {
    transform: translateX(4px);
}

.av-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    font-size: 15px;
    border: 1px solid transparent;
}

.av-btn i {
    font-size: 13px;
    transition: transform .2s;
}

.av-btn:hover i {
    transform: translateX(3px);
}

.av-btn-primary {
    background: var(--btb-accent);
    color: #fff;
}

.av-btn-primary:hover {
    background: var(--btb-deep);
    color: #fff;
}

.av-btn-ghost {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    backdrop-filter: blur(6px);
    border-color: rgba(255, 255, 255, .3);
}

.av-btn-ghost:hover {
    background: rgba(255, 255, 255, .22);
    color: #fff;
}

.av-btn-white {
    background: #fff;
    color: var(--btb-deep);
}

.av-btn-white:hover {
    background: var(--btb-cream);
    color: var(--btb-deep);
}

/* ===== Hero ===== */
.av-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 80px 0 80px;
}

.av-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: av-zoom 22s ease-in-out infinite alternate;
}

@keyframes av-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.12);
    }
}

.av-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 28, 65, .55) 0%, rgba(20, 28, 65, .85) 100%),
        radial-gradient(circle at 30% 30%, rgba(72, 89, 163, .30), transparent 60%);
}

.av-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.av-hero .av-eyebrow {
    color: rgba(255, 255, 255, .85);
}

.av-hero-title {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 18px;
    color: #fff;
}

.av-hero-sub {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.6;
    max-width: 620px;
    color: rgba(255, 255, 255, .88);
    margin: 0 0 28px;
}

.av-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== Hero search ===== */
.av-search {
    margin-top: 64px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(8, 15, 40, .35);
    padding: 14px;
}

.av-search-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 8px;
    align-items: stretch;
}

.av-field {
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
    border-right: 1px solid var(--btb-border);
}

.av-field:last-of-type {
    border-right: 0;
}

.av-field label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--btb-muted);
    margin-bottom: 4px;
}

.av-field label i {
    color: var(--btb-accent);
    margin-right: 4px;
}

.av-field select,
.av-field input {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--btb-text);
    outline: none;
}

.av-search-btn {
    background: var(--btb-accent);
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 0 28px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .1s;
    min-height: 60px;
}

.av-search-btn:hover {
    background: var(--btb-deep);
}

.av-search-btn:active {
    transform: translateY(1px);
}

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

    .av-field {
        border-right: 0;
        border-bottom: 1px solid var(--btb-border);
    }

    .av-search-btn {
        grid-column: span 2;
        min-height: 50px;
        padding: 14px;
    }
}

/* ===== Stats ===== */
.av-stats {
    background: #fff;
    border-bottom: 1px solid var(--btb-border);
    padding: 36px 0;
}

.av-stat {
    text-align: center;
    padding: 8px 12px;
}

.av-stat .num {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.2px;
    color: var(--btb-deep);
}

.av-stat .num span {
    color: var(--btb-accent);
}

.av-stat .lbl {
    margin-top: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 600;
    color: var(--btb-muted);
}

/* ===== Section base ===== */
.av-section {
    padding: 80px 0;
    background: #fff;
}

.av-section-alt {
    background: var(--btb-cream);
}

.av-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.av-section-head.text-center {
    justify-content: center;
}

.av-section-head.text-center>div {
    max-width: 640px;
    text-align: center;
}

.av-section-head h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
    color: var(--btb-deep);
    line-height: 1.15;
}

/* ============= TOUR DETAIL PAGE ============= */

/* Tour hero (taller, centered title at bottom-left) */
.av-tour-hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0 60px;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

.av-breadcrumb {
    font-size: 13px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .85);
}

.av-breadcrumb a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    transition: color .15s;
}

.av-breadcrumb a:hover {
    color: #fff;
}

.av-breadcrumb span {
    margin: 0 8px;
    opacity: .5;
}

.av-tour-title {
    font-size: clamp(28px, 4.4vw, 50px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
    color: #fff;
    max-width: 780px;
}

.av-tour-loc {
    margin: 14px 0 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
}

.av-tour-loc i {
    margin-right: 6px;
}

/* Quick facts strip */
.av-tour-facts {
    background: #fff;
    border-bottom: 1px solid var(--btb-border);
    padding: 22px 0;
}

.av-fact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

@media (max-width:767px) {
    .av-fact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.av-fact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 16px;
    border-right: 1px solid var(--btb-border);
}

.av-fact:last-child {
    border-right: 0;
}

@media (max-width:767px) {
    .av-fact {
        border-right: 0;
        padding: 6px;
    }
}

.av-fact-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--btb-accent-soft);
    color: var(--btb-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.av-fact-lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--btb-muted);
    font-weight: 600;
}

.av-fact-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--btb-deep);
    margin-top: 1px;
}

.av-fact-price .av-fact-val {
    color: var(--btb-accent);
}

/* Body container */
.av-tour-body {
    padding: 48px 0 80px;
    background: #fff;
}

/* Sticky section nav (pill-style jump tabs) */
.av-section-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 32px;
    position: sticky;
    top: 68px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    z-index: 9;
    padding: 10px 0;
    border-bottom: 1px solid var(--btb-border);
    scrollbar-width: none;
}

@media (max-width:991.98px) {
    .av-section-nav {
        top: 64px;
    }
}

.av-section-nav::-webkit-scrollbar {
    display: none;
}

.av-section-nav a {
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--btb-muted);
    text-decoration: none;
    white-space: nowrap;
    border-radius: 50px;
    background: #f3f4f6;
    border: 1px solid transparent;
    transition: background .2s, color .2s, border-color .2s, transform .15s;
    cursor: pointer;
    user-select: none;
}

.av-section-nav a:hover {
    background: var(--btb-accent-soft);
    color: var(--btb-accent);
    border-color: rgba(72, 89, 163, .18);
}

.av-section-nav a:active {
    transform: scale(.97);
}

.av-section-nav a.active {
    background: var(--btb-accent);
    color: #fff;
    border-color: var(--btb-accent);
    box-shadow: 0 4px 12px rgba(72, 89, 163, .25);
}

/* Content blocks */
.av-tour-block {
    margin-bottom: 48px;
    scroll-margin-top: 140px;
}

@media (max-width:991.98px) {
    .av-tour-block {
        scroll-margin-top: 80px;
    }
}

.av-tour-block h2 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.4px;
    color: var(--btb-deep);
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--btb-border);
}

.av-lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--btb-text);
    margin-bottom: 14px;
    font-weight: 500;
}

.av-prose {
    font-size: 15px;
    line-height: 1.75;
    color: var(--btb-muted);
}

.av-prose p {
    margin-bottom: 14px;
}

/* Gallery: 1 large + 5 small */
.av-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 8px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.av-gallery-hero {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}

.av-gallery-thumb {
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}

.av-gallery a:hover {
    transform: scale(1.03);
}

.av-gallery-more {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

@media (max-width:767px) {
    .av-gallery {
        grid-template-rows: repeat(2, 120px);
    }
}

/* Itinerary */
.av-itinerary {
    list-style: none;
    padding: 0;
    margin: 0;
}

.av-itin-day {
    position: relative;
    padding-left: 36px;
    padding-bottom: 14px;
}

.av-itin-day:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 32px;
    bottom: 0;
    width: 2px;
    background: var(--btb-border);
}

.av-itin-day::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--btb-accent);
    box-shadow: 0 0 0 4px var(--btb-accent-soft);
}

.av-itin-day details {
    background: #f9fafb;
    border: 1px solid var(--btb-border);
    border-radius: 10px;
    transition: border-color .2s, box-shadow .2s;
}

.av-itin-day details[open] {
    border-color: var(--btb-accent);
    box-shadow: var(--btb-shadow-sm);
    background: #fff;
}

.av-itin-day summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.av-itin-day summary::-webkit-details-marker {
    display: none;
}

.av-itin-num {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--btb-accent);
    background: var(--btb-accent-soft);
    padding: 4px 10px;
    border-radius: 20px;
}

.av-itin-title {
    flex: 1;
    font-weight: 600;
    color: var(--btb-deep);
    font-size: 15px;
}

.av-itin-chevron {
    color: var(--btb-muted);
    transition: transform .25s;
}

.av-itin-day details[open] .av-itin-chevron {
    transform: rotate(180deg);
    color: var(--btb-accent);
}

.av-itin-bullets {
    list-style: none;
    padding: 0 18px 16px 18px;
    margin: 0;
}

.av-itin-bullets li {
    position: relative;
    padding: 6px 0 6px 20px;
    color: var(--btb-text);
    font-size: 14px;
    line-height: 1.6;
}

.av-itin-bullets li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--btb-accent);
}

/* Inclusions/Exclusions */
.av-inc-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.av-inc-yes {
    color: #065f46;
}

.av-inc-no {
    color: #991b1b;
}

.av-inc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.av-inc-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--btb-text);
    border-bottom: 1px solid var(--btb-border);
}

.av-inc-list li:last-child {
    border-bottom: 0;
}

.av-inc-list.yes li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    color: #10b981;
    font-size: 13px;
}

.av-inc-list.no li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    color: #ef4444;
    font-size: 13px;
}

/* Map */
.av-map {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--btb-shadow-sm);
}

.av-map iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

/* Sticky booking sidebar */
.av-book-card {
    background: #fff;
    border: 1px solid var(--btb-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--btb-shadow-sm);
}

/* Sticky booking form only on desktop, with header offset; never on tablet/mobile */
@media (min-width: 992px) {
    .av-book-card {
        position: sticky;
        top: 110px;
        /* never become an internal scroll container — flow with the page */
        max-height: none;
        overflow: visible;
    }
}

/* Kill any internal scrollbar on the booking card at every breakpoint */
.av-book-card {
    max-height: none;
    overflow: visible;
}

.av-book-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--btb-border);
    margin-bottom: 18px;
}

.av-book-price .lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--btb-muted);
    font-weight: 600;
}

.av-book-price .amt {
    font-size: 26px;
    font-weight: 800;
    color: var(--btb-deep);
    letter-spacing: -.5px;
}

.av-book-price .per {
    font-size: 12px;
    color: var(--btb-muted);
}

.av-book-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--btb-deep);
    margin: 0 0 4px;
}

.av-book-sub {
    font-size: 13px;
    color: var(--btb-muted);
    margin: 0 0 18px;
}

.av-book-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.av-book-field {
    display: flex;
    flex-direction: column;
}

.av-book-field label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--btb-muted);
    font-weight: 600;
    margin-bottom: 5px;
}

.av-book-field input,
.av-book-field textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--btb-border);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--btb-text);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    font-family: inherit;
}

.av-book-field input:focus,
.av-book-field textarea:focus {
    outline: none;
    border-color: var(--btb-accent);
    box-shadow: 0 0 0 3px rgba(72, 89, 163, .18);
}

.av-book-paxgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

/* grid items must allow shrink, else number inputs overflow the card */
.av-book-paxgrid .av-book-field {
    min-width: 0;
}

.av-book-submit {
    background: var(--btb-accent);
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s, transform .1s;
    margin-top: 6px;
}

.av-book-submit:hover {
    background: var(--btb-deep);
}

.av-book-submit:active {
    transform: translateY(1px);
}

.av-book-trust {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--btb-border);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--btb-muted);
    font-weight: 500;
}

.av-book-trust i {
    color: var(--btb-accent);
    margin-right: 5px;
}

.av-book-help {
    margin-top: 18px;
    background: var(--btb-cream);
    border-radius: 14px;
    padding: 18px 20px;
    text-align: center;
}

.av-book-help-title {
    font-size: 13px;
    color: var(--btb-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.av-book-help-cta {
    display: block;
    color: var(--btb-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 0;
    transition: color .15s;
}

.av-book-help-cta:hover {
    color: var(--btb-accent);
}

.av-book-help-cta i {
    color: var(--btb-accent);
    margin-right: 6px;
    width: 16px;
}

/* Related tours block on tour-detail */
.av-related {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--btb-border);
}

/* ===== Page hero (destination / tour detail / listing) ===== */
.av-page-hero {
    background-size: cover;
    background-position: center;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    padding: 140px 0 50px;
}

.av-page-hero h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
    color: #fff;
    line-height: 1.1;
}

.av-page-hero-sub {
    display: block;
    margin: 10px 0 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
    letter-spacing: 0;
}

.av-page-hero-sub i {
    margin-right: 6px;
}

/* ===== Destination cards (minimal) ===== */
.av-dest-card {
    display: block;
    text-decoration: none;
    color: var(--btb-text);
    transition: transform .3s ease;
}

.av-dest-card:hover {
    transform: translateY(-4px);
    color: var(--btb-text);
}

.av-dest-img-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f4f6;
}

.av-dest-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

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

.av-dest-info {
    padding: 14px 4px 4px;
}

.av-dest-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 2px;
    color: var(--btb-deep);
    letter-spacing: -.2px;
    transition: color .2s;
}

.av-dest-card:hover h3 {
    color: var(--btb-accent);
}

.av-dest-info .av-dest-meta {
    font-size: 13px;
    color: var(--btb-muted);
    font-weight: 400;
}

/* ===== Package cards (minimal) ===== */
.av-pkg-card {
    display: block;
    text-decoration: none;
    color: var(--btb-text);
    height: 100%;
    transition: transform .3s ease;
}

.av-pkg-card:hover {
    transform: translateY(-4px);
    color: var(--btb-text);
}

.av-pkg-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f4f6;
    margin-bottom: 14px;
}

.av-pkg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.av-pkg-card:hover .av-pkg-img {
    transform: scale(1.06);
}

.av-pkg-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    color: var(--btb-deep);
    padding: 5px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .4px;
}

.av-pkg-body {
    padding: 0 4px;
}

.av-pkg-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--btb-deep);
    line-height: 1.4;
    letter-spacing: -.1px;
    transition: color .2s;
}

.av-pkg-card:hover h4 {
    color: var(--btb-accent);
}

.av-pkg-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--btb-muted);
}

.av-pkg-meta .dot {
    color: #d1d5db;
}

.av-pkg-price {
    color: var(--btb-deep);
    font-weight: 600;
}

/* ===== Service cards ===== */
.av-service-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--btb-border);
    border-radius: 14px;
    padding: 22px 24px;
    text-decoration: none;
    color: var(--btb-text);
    height: 100%;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.av-service-card:hover {
    border-color: var(--btb-accent);
    box-shadow: var(--btb-shadow);
    color: var(--btb-text);
    transform: translateY(-4px);
}

.av-service-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--btb-accent-soft), #dde3f5);
    color: var(--btb-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.av-service-card h5 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--btb-deep);
}

.av-service-card p {
    font-size: 13px;
    color: var(--btb-muted);
    margin: 0;
    line-height: 1.5;
}

.av-service-arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: var(--btb-accent);
    opacity: 0;
    transition: opacity .2s, transform .2s;
}

.av-service-card:hover .av-service-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

/* ===== Why us cards ===== */
.av-why-card {
    background: #fff;
    border: 1px solid var(--btb-border);
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    text-align: center;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.av-why-card:hover {
    transform: translateY(-4px);
    border-color: var(--btb-accent);
    box-shadow: var(--btb-shadow);
}

.av-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--btb-accent-soft), #dde3f5);
    color: var(--btb-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.av-why-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--btb-deep);
}

.av-why-card p {
    font-size: 14px;
    color: var(--btb-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA banner ===== */
.av-cta-banner {
    padding: 80px 0;
    background:
        linear-gradient(135deg, var(--btb-deep) 0%, var(--btb-accent) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.av-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .08), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, .05), transparent 50%);
}

.av-cta-banner>.container {
    position: relative;
    z-index: 2;
}

.av-cta-banner h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.5px;
    color: #fff;
    margin: 8px 0 14px;
}

.av-cta-banner p {
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    margin: 0;
    max-width: 540px;
}

/* ===== Testimonials ===== */
.av-testimonial {
    background: #fff;
    border: 1px solid var(--btb-border);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: box-shadow .25s;
}

.av-testimonial:hover {
    box-shadow: var(--btb-shadow);
}

.av-testimonial-stars {
    color: #f59e0b;
    margin-bottom: 12px;
    font-size: 14px;
}

.av-testimonial-stars i {
    margin-right: 2px;
}

.av-testimonial p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--btb-text);
    margin: 0 0 18px;
}

.av-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--btb-border);
}

.av-testimonial-author small {
    color: var(--btb-muted);
    font-size: 12px;
}

.av-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--btb-accent), var(--btb-deep));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

/* ===== Newsletter ===== */
.av-newsletter {
    padding: 40px 0 80px;
    background: #fff;
}

.av-newsletter-card {
    background: linear-gradient(135deg, var(--btb-cream) 0%, #fff 100%);
    border: 1px solid var(--btb-border);
    border-radius: 20px;
    padding: 40px 48px;
}

.av-newsletter h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--btb-deep);
    margin: 0 0 6px;
    letter-spacing: -.3px;
}

.av-newsletter p {
    color: var(--btb-muted);
    font-size: 14px;
}

.av-newsletter-form {
    display: flex;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--btb-border);
    border-radius: 50px;
    padding: 6px 6px 6px 22px;
}

.av-newsletter-form input {
    flex: 1;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: var(--btb-text);
}

.av-newsletter-form button {
    background: var(--btb-accent);
    color: #fff;
    border: 0;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
}

.av-newsletter-form button:hover {
    background: var(--btb-deep);
}

/* ===== Mobile tweaks ===== */
@media (max-width:767px) {
    .av-hero {
        min-height: 560px;
        padding: 60px 0 100px;
    }

    .av-section {
        padding: 56px 0;
    }

    .av-section-head {
        margin-bottom: 24px;
    }

    .av-cta-banner {
        padding: 56px 0;
    }

    .av-newsletter-card {
        padding: 28px 22px;
    }

    .av-newsletter-form {
        flex-direction: column;
        padding: 8px;
        border-radius: 12px;
    }

    .av-newsletter-form input {
        padding: 10px 14px;
    }

    .av-newsletter-form button {
        width: 100%;
        justify-content: center;
    }
}

/* ============== LIGHTBOX ============== */
.av-lb {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 28, .92);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
}

.av-lb.open {
    opacity: 1;
}

.av-lb-stage {
    max-width: 92vw;
    max-height: 84vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.av-lb-stage img {
    max-width: 100%;
    max-height: 84vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.av-lb-close,
.av-lb-prev,
.av-lb-next {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    cursor: pointer;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, transform .15s;
    z-index: 9100;
    font-size: 18px;
}

.av-lb-close:hover,
.av-lb-prev:hover,
.av-lb-next:hover {
    background: rgba(255, 255, 255, .22);
    transform: scale(1.05);
}

.av-lb-close {
    top: 20px;
    right: 20px;
    font-size: 26px;
    line-height: 1;
}

.av-lb-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.av-lb-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.av-lb-prev:hover {
    transform: translateY(-50%) scale(1.05);
}

.av-lb-next:hover {
    transform: translateY(-50%) scale(1.05);
}

.av-lb-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .5);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    backdrop-filter: blur(8px);
}

@media (max-width:575px) {

    .av-lb-prev,
    .av-lb-next {
        width: 40px;
        height: 40px;
    }

    .av-lb-prev {
        left: 10px;
    }

    .av-lb-next {
        right: 10px;
    }

    .av-lb-close {
        top: 14px;
        right: 14px;
    }
}

/* Make gallery thumbs feel clickable */
.av-gallery-hero,
.av-gallery-thumb {
    cursor: zoom-in;
}

/* +N more becomes a clickable button */
.av-gallery-more {
    cursor: zoom-in;
    text-decoration: none;
}

.av-gallery-more:hover {
    background: rgba(0, 0, 0, .85);
    color: #fff;
}

/* ============== TOUR CARD V5 (single-bg, no seam) ============== */
.av-tour-card {
    --card-rgb: 31, 40, 88;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: rgb(var(--card-rgb));
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(15, 23, 42, .08);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s, background .8s ease;
    height: 100%;
}

.av-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .22);
}

/* Image area — taller (espi ratio) */
.av-tour-img {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: transparent;
    /* card bg shows through */
}

.av-tour-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.av-tour-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(var(--card-rgb), 1) 90%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px 16px 16px;
    color: #fff;
    pointer-events: none;
}

.av-tour-top-row {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.av-tour-pill {
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 5px 11px;
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: .2px;
    line-height: 1;
}

.av-tour-pill i {
    font-size: 10px;
    opacity: .9;
}

.av-tour-pill .fa-star {
    color: #fbbf24;
    opacity: 1;
}

.av-tour-title {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.35;
    letter-spacing: -.1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.av-tour-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-height: 54px;
    overflow: hidden;
}

.av-tour-tags span {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .2px;
    line-height: 1.5;
}

/* Bottom panel — transparent, inherits card bg (no seam) */
.av-tour-bottom {
    background: transparent;
    padding: 14px 16px 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.av-tour-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
}

.av-tour-price-left {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    min-width: 0;
}

.av-tour-price-amt {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    white-space: nowrap;
}

.av-tour-price-amt::before {
    content: 'INR ';
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .7);
    margin-right: 2px;
}

.av-tour-price-strike {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .55);
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    font-weight: 500;
    margin-top: 3px;
    white-space: nowrap;
}

.av-tour-save {
    background: #dcfce7;
    color: #065f46;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .3px;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
}

.av-tour-cb-btn {
    display: block;
    background: #fff;
    color: #1f2858;
    padding: 11px 16px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .2px;
    transition: transform .15s, box-shadow .25s, color .2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .10);
}

.av-tour-card:hover .av-tour-cb-btn {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.av-tour-cb-btn::after {
    content: ' →';
    opacity: 0;
    margin-left: 0;
    transition: opacity .25s, margin-left .25s;
}

.av-tour-card:hover .av-tour-cb-btn::after {
    opacity: 1;
    margin-left: 6px;
}

/* Rail sizing */
.av-rail-item.av-tour-card {
    flex: 0 0 290px;
    min-width: 0;
}

@media (max-width:575px) {
    .av-rail-item.av-tour-card {
        flex: 0 0 78%;
    }
}

.av-rail {
    align-items: stretch;
}

/* ============== PLACES (CIARA-STYLE) ============== */
.av-places {
    padding: 100px 0;
}

.av-places-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.av-places-head h2 {
    margin-top: 8px;
}

.av-place-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 36px;
    flex-wrap: wrap;
}

.av-place-tab {
    background: transparent;
    border: 0;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    color: var(--btb-muted);
    border-radius: 50px;
    cursor: pointer;
    transition: background .25s, color .25s, box-shadow .25s;
    font-family: 'Inter', sans-serif;
}

.av-place-tab:hover {
    color: var(--btb-deep);
    background: var(--btb-accent-soft);
}

.av-place-tab.active {
    background: var(--btb-accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(72, 89, 163, .28);
}

.av-place-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width:1199px) {
    .av-place-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:767px) {
    .av-place-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width:479px) {
    .av-place-grid {
        grid-template-columns: 1fr;
    }
}

.av-place-card {
    position: relative;
    aspect-ratio: 3 / 5;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: var(--btb-deep);
    box-shadow: var(--btb-shadow-sm);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s;
    background-color: #0e1430;
}

.av-place-card::before {
    /* dark overlay layer (deepens on hover) */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 20, 45, .05) 30%, rgba(15, 20, 45, .55) 100%);
    transition: background .4s;
    z-index: 1;
}

.av-place-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--btb-shadow-lg);
    color: var(--btb-deep);
}

.av-place-card:hover::before {
    background: linear-gradient(180deg, rgba(15, 20, 45, .35) 0%, rgba(15, 20, 45, .75) 100%);
}

.av-place-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: var(--btb-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transform: translateY(-8px) scale(.8);
    transition: opacity .35s, transform .4s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    font-size: 14px;
}

.av-place-card:hover .av-place-arrow {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.av-place-pill {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    background: #fff;
    border-radius: 14px;
    padding: 18px 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    transition: padding .4s, transform .4s cubic-bezier(.16, 1, .3, 1);
}

.av-place-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 22px;
    color: var(--btb-deep);
    margin: 0;
    letter-spacing: -.3px;
    transition: color .25s;
}

.av-place-card:hover .av-place-name {
    color: var(--btb-accent);
}

.av-place-tag {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 14px;
    color: var(--btb-accent);
    line-height: 1.45;
    margin: 8px 0 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .4s ease, opacity .35s ease, margin .35s ease;
}

.av-place-card:hover .av-place-tag {
    max-height: 80px;
    opacity: 1;
    margin-top: 8px;
}

.av-place-card:hover .av-place-pill {
    padding: 22px 18px 22px;
}

.av-places-cta {
    text-align: center;
    margin-top: 48px;
}

.av-btn-deep {
    background: var(--btb-deep);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
}

.av-btn-deep:hover {
    background: #000;
    color: #fff;
}

@media (max-width:767px) {
    .av-place-card {
        aspect-ratio: 4 / 5;
    }

    .av-place-name {
        font-size: 20px;
    }
}

/* ============== Spacing + horizontal-scroll fixes ============== */
html,
body {
    overflow-x: clip;
    max-width: 100%;
}

/* Editorial hero: keep text clear of fixed quick-connect widget on desktop */
@media (min-width: 769px) {
    .av-hero-editorial .av-hero-content {
        padding-left: 64px;
        max-width: 984px;
    }

    .av-hero-editorial .av-hero-marquee {
        padding-left: 64px;
    }
}

/* Section rails should not push body scroll */
.av-rail {
    max-width: 100%;
}

.av-quote-strip {
    max-width: 100%;
}