/* ==========================================================================
   ADAM VACATIONS — Design System
   Brand: Royal Blue #1E3FD4 | Coral Red #EF2B2B
   Desktop: Traditional wide responsive
   Mobile: App-like (sticky bottom nav, pills, cards)
   ========================================================================== */

:root {
    --av-blue: #1E3FD4;
    --av-blue1: #058be8;
    --av-blue-dark: #1834B5;
    --av-blue-light: #E8EDFE;
    --av-coral: #EF2B2B;
    --av-coral1: #15428f;
    --av-coral-dark: #D62020;
    --av-coral-light: #FDEAEA;
    --av-gold: #FFB84D;
    --av-cream: #FAF7F2;
    --av-navy: #0B1437;
    --av-gray-50: #F8FAFC;
    --av-gray-100: #F1F5F9;
    --av-gray-200: #E2E8F0;
    --av-gray-500: #64748B;
    --av-gray-700: #334155;
    --av-gray-900: #0F172A;
    --av-shadow-sm: 0 12px 28px rgba(15, 23, 42, .12), 0 4px 10px rgba(15, 23, 42, .06);
    --av-shadow-md: 0 4px 12px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .04);
    --av-shadow-lg: 0 18px 38px rgba(15, 23, 42, .12), 0 4px 10px rgba(15, 23, 42, .06);
    --av-shadow-xl: 0 24px 50px rgba(30, 63, 212, .18);
    --av-radius-sm: 8px;
    --av-radius-md: 14px;
    --av-radius-lg: 20px;
    --av-radius-xl: 28px;
    --av-radius-pill: 999px;
    --av-font-display: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --av-font-body: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
}

/* ----- Base ---------------------------------------------------------------- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--av-font-body);
    color: var(--av-gray-900);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--av-font-display);
    font-weight: 800;
    color: var(--av-navy);
    letter-spacing: -.01em;
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

a {
    color: var(--av-blue);
    text-decoration: none;
    transition: color .15s;
}

    a:hover {
        color: var(--av-coral);
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section {
    padding: 80px 0;
}

.section-tight {
    padding: 48px 0;
}

.section-bg-soft {
    background: var(--av-gray-50);
}

.section-bg-cream {
    background: var(--av-cream);
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--av-coral);
    background: var(--av-coral-light);
    padding: 6px 14px;
    border-radius: var(--av-radius-pill);
    margin-bottom: 18px;
}

.section-title {
    margin-bottom: 14px;
}

.section-subtitle {
    color: var(--av-gray-500);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* ----- Buttons (override Bootstrap) --------------------------------------- */
.btn {
    font-weight: 700;
    border-radius: var(--av-radius-pill);
    padding: 12px 28px;
    transition: all .2s;
    border: 2px solid #8096b9;
}

.btn-primary, .btn-av-blue {
    background: var(--av-blue);
    border-color: var(--av-blue);
    color: #fff;
}
.text-white-50 {
    color: #091d59 !important;
}
    .btn-primary:hover, .btn-av-blue:hover {
        background: var(--av-blue-dark);
        border-color: var(--av-blue-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: var(--av-shadow-lg);
    }

.btn-av-coral-1 {
    background: var(--av-coral);
    border-color: var(--av-coral);
    color: #fff;
}
.btn-av-coral {
    background: #ffffff;
    border-color: #ffffff;
    color: #002247;
}

    .btn-av-coral:hover {
        background: var(--av-coral-dark);
        border-color: var(--av-coral-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(239, 43, 43, .25);
    }

.btn-outline-av-coral {
    background: transparent;
    border-color: var(--av-coral);
    color: var(--av-coral);
}

    .btn-outline-av-coral:hover {
        background: var(--av-coral);
        color: #fff;
    }

.btn-outline-av-blue {
    background: transparent;
    border-color: var(--av-blue);
    color: var(--av-blue);
}

    .btn-outline-av-blue:hover {
        background: var(--av-blue);
        color: #fff;
    }

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* ----- Header ------------------------------------------------------------- */
.av-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--av-gray-100);
    box-shadow: var(--av-shadow-sm);
}

    .av-header .navbar {
        padding: 14px 0;
    }

.av-logo {
    height: 52px;
    display: flex;
    align-items: center;
}

    .av-logo img {
        height: 100%;
        width: auto;
    }

.av-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .av-nav .nav-link {
        color: var(--av-navy);
        font-weight: 600;
        font-size: 15px;
        padding: 10px 16px;
        border-radius: var(--av-radius-pill);
        transition: all .15s;
    }

        .av-nav .nav-link:hover {
            color: var(--av-blue);
            background: var(--av-blue-light);
        }

        .av-nav .nav-link.active {
            color: var(--av-blue);
            background: var(--av-blue-light);
        }

.av-dropdown {
    position: relative;
}

.av-dropdown-menu {
    position: absolute;
    top: 84%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 560px;
    background: #fff;
    border-radius: var(--av-radius-lg);
    box-shadow: var(--av-shadow-xl);
    padding: 24px;
    display: none;
    border: 1px solid var(--av-gray-100);
}

.av-dropdown:hover .av-dropdown-menu {
    display: grid;
}

.av-dropdown-menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.av-dd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px;
    border-radius: var(--av-radius-md);
    transition: background .15s;
    color: var(--av-navy);
}

    .av-dd-item:hover {
        background: var(--av-blue-light);
        color: var(--av-blue);
    }

.av-dd-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--av-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
    .av-dd-icon img{height:24px;}
    .av-dd-item:hover .av-dd-icon {
/*        background: var(--av-blue);
*/        color: #fff;
    }

.av-dd-name {
    font-weight: 700;
    font-size: 14px;
}

.av-dd-sub {
    font-size: 12px;
    color: var(--av-gray-500);
}

/* Mobile menu */
.av-mobile-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    font-size: 26px;
    color: var(--av-navy);
}

.av-mobile-menu {
    display: none;
    position: inherit;
    inset: 70px 0 0 0;
    background: #fff;
    z-index: 1029;
    overflow-y: auto;
    padding: 24px;
    animation: slideDown .25s ease;
}

    .av-mobile-menu.open {
        display: block;
    }

    .av-mobile-menu .av-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .av-mobile-menu .nav-link {
        padding: 5px 3px;
        font-size: 14px;
        border-bottom: 1px solid #dbdbdb;
        border-radius: 0;
        font-weight: 500;
    }

.av-mobile-dd-items {
    padding-left: 16px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 991px) {
    .av-nav.desktop-only {
        display: none;
    }

    .av-mobile-toggle {
        display: block;
    }
}

/* ----- Hero --------------------------------------------------------------- */
.av-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1E3FD4 0%, #2B4FE3 50%, #3B5BDB 100%);
    color: #fff;
    padding: 50px 0 156px;
    height: 760px;
}

    .av-hero::before {
        content: '';
        position: absolute;
        inset: 0;
/*        background: radial-gradient(circle at 80% 20%, rgba(239, 43, 43, .25), transparent 50%), radial-gradient(circle at 20% 80%, rgba(255, 184, 77, .15), transparent 40%);
*/        pointer-events: none;
    }

.av-hero-content {
    position: relative;
    z-index: 2;
}

.av-hero h1 {
    color: #fff;
    font-weight: 900;
}

.av-hero .lead {
    color: rgba(255, 255, 255, .92);
    font-size: 19px;
    max-width: 600px;
    margin: 20px 0 32px;
}

.av-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 8px 16px;
    border-radius: var(--av-radius-pill);
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    margin-bottom: 20px;
}

.av-hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.av-hero-stat .num {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
}

.av-hero-stat .lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* Destination hero variant — image background */
.av-hero-dest {
    position: relative;
    height: 560px;
    color: #fff;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

    .av-hero-dest::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(11, 20, 55, .3) 0%, rgba(11, 20, 55, .85) 100%);
    }

    .av-hero-dest .container {
        position: relative;
        z-index: 2;
        padding-bottom: 60px;
    }

    .av-hero-dest h1 {
        color: #fff;
        font-size: clamp(2.4rem, 5vw, 4rem);
        margin-bottom: 14px;
    }

    .av-hero-dest .origin-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--av-coral);
        padding: 8px 18px;
        border-radius: var(--av-radius-pill);
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 18px;
    }

/* ----- Trust Strip -------------------------------------------------------- */
.av-trust-strip {
/*    background: var(--av-gray-50);
*/    padding: 60px 0;
}

.av-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.av-trust-card {
    background: #fff;
    border-radius: var(--av-radius-lg);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--av-shadow-sm);
    transition: transform .25s, box-shadow .25s;
}

    .av-trust-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--av-shadow-lg);
    }

.av-trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: #233878;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}
.av-trust-icon img{height:45px;}
.av-trust-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--av-navy);
}

@media (max-width: 992px) {
    .av-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .av-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .av-trust-card {
        padding: 22px 12px;
    }

    .av-trust-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .av-trust-title {
        font-size: 13px;
    }
}

/* ----- Destination Cards (Home) ------------------------------------------ */
.av-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.av-dest-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--av-radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--av-shadow-md);
    transition: transform .3s, box-shadow .3s;
}

    .av-dest-card img {
        display: block;
        margin: 0 auto 0;
        object-fit: cover;
        transition: transform .6s ease;
        text-align: center;
    }

.av-dest-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--av-shadow-xl);
}

.av-dest-card:hover img {
    transform: scale(1.08);
}

.av-dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 20, 55, .85) 100%);
}

.av-dest-name {
    position: absolute;
    bottom: 18px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}
/*.av-dest-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--av-coral);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--av-radius-pill);
    font-size: 11px;
    font-weight: 700;
}*/
.av-dest-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #fff;
    color: #0d2135;
    padding: 4px 10px;
    border-radius: var(--av-radius-pill);
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .av-dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .av-dest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* ----- Package Carousel Cards -------------------------------------------- */
.av-carousel-wrap {
    position: relative;
}

.av-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.av-carousel-nav {
    display: flex;
    gap: 10px;
}

.av-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--av-gray-200);
    background: #fff;
    color: var(--av-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    font-size: 18px;
}

    .av-carousel-btn:hover {
        border-color: var(--av-coral);
        color: var(--av-coral);
    }

    .av-carousel-btn.active {
        background: var(--av-coral);
        border-color: var(--av-coral);
        color: #fff;
    }

.av-carousel-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 16px;
}

    .av-carousel-track::-webkit-scrollbar {
        height: 0;
    }

.av-pkg-card {
    min-width: 340px;
    max-width: 340px;
    background: #fff;
    border-radius: var(--av-radius-lg);
    overflow: hidden;
    box-shadow: var(--av-shadow-md);
    scroll-snap-align: start;
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}

    .av-pkg-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--av-shadow-xl);
    }

.av-pkg-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

    .av-pkg-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.av-pkg-save {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--av-coral);
    color: #fff;
    padding: 3px 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 800;
    border: 2px solid #fff;
}

.av-pkg-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.av-pkg-stars {
    color: #FFB84D;
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.av-pkg-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--av-navy);
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 44px;
}

.av-pkg-loc {
    font-size: 13px;
    color: var(--av-gray-500);
    margin-bottom: 12px;
}

    .av-pkg-loc i {
        color: var(--av-coral);
        margin-right: 4px;
    }

.av-pkg-incl {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 10px;
    font-size: 12.5px;
    color: var(--av-gray-700);
}

    .av-pkg-incl li::before {
        content: '• ';
        color: var(--av-coral);
        font-weight: 700;
    }

.av-pkg-price {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--av-gray-100);
}

.av-pkg-strike {
    font-size: 13px;
    color: var(--av-gray-500);
    text-decoration: line-through;
    display: block;
}

.av-pkg-now {
    font-size: 22px;
    font-weight: 900;
    color: var(--av-navy);
    line-height: 1;
}

    .av-pkg-now small {
        font-size: 12px;
        font-weight: 500;
        color: var(--av-gray-500);
        margin-left: 2px;
    }

/* ----- Package Tier Cards (Landing pages) -------------------------------- */
.av-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.av-tier-card {
    background: #fff;
    border: 2px solid var(--av-gray-100);
    border-radius: var(--av-radius-xl);
    overflow: hidden;
    transition: all .3s;
    display: flex;
    flex-direction: column;
}

    .av-tier-card.featured {
        border-color: var(--av-coral);
        transform: scale(1.03);
        box-shadow: 0 16px 40px rgba(239, 43, 43, .15);
    }

    .av-tier-card:hover {
        box-shadow: var(--av-shadow-xl);
        transform: translateY(-4px);
    }

    .av-tier-card.featured:hover {
        transform: scale(1.03) translateY(-4px);
    }

.av-tier-head {
    padding: 32px 28px 20px;
}

.av-tier-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 5px 12px;
    border-radius: var(--av-radius-pill);
    margin-bottom: 12px;
}

.av-tier-card.popular .av-tier-badge {
    background: var(--av-blue-light);
    color: var(--av-blue);
}

.av-tier-card.premium .av-tier-badge {
    background: #FFF3D9;
    color: #C28A1F;
}

.av-tier-card.luxury .av-tier-badge {
    background: linear-gradient(135deg, var(--av-coral), var(--av-blue));
    color: #fff;
}

.av-tier-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--av-navy);
    margin-bottom: 6px;
}

.av-tier-nights {
    color: var(--av-gray-500);
    font-size: 14px;
}

.av-tier-price {
    padding: 0 28px 20px;
}

    .av-tier-price .strike {
        font-size: 14px;
        color: var(--av-gray-500);
        text-decoration: line-through;
    }

    .av-tier-price .now {
        font-size: 36px;
        font-weight: 900;
        color: var(--av-coral);
        line-height: 1;
    }

        .av-tier-price .now small {
            font-size: 13px;
            font-weight: 600;
            color: var(--av-gray-500);
        }

.av-tier-feats {
    padding: 0 28px 24px;
    list-style: none;
    margin: 0;
    flex: 1;
}

    .av-tier-feats li {
        padding: 8px 0;
        font-size: 14px;
        color: var(--av-gray-700);
        border-bottom: 1px dashed var(--av-gray-100);
    }

        .av-tier-feats li i {
            color: #10B981;
            margin-right: 8px;
        }

.av-tier-cta {
    padding: 0 28px 28px;
}

    .av-tier-cta .btn {
        width: 100%;
    }

@media (max-width: 992px) {
    .av-tier-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .av-tier-card.featured {
        transform: none;
    }

        .av-tier-card.featured:hover {
            transform: translateY(-4px);
        }
}

/* ----- Pill Tabs (Package Details) --------------------------------------- */
.av-pill-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--av-gray-100);
    border-radius: var(--av-radius-pill);
    padding: 8px;
    margin-bottom: 28px;
    box-shadow: var(--av-shadow-sm);
}

.av-pill-tab {
    background: var(--av-gray-100);
    color: var(--av-navy);
    border: 0;
    padding: 12px 22px;
    border-radius: var(--av-radius-pill);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

    .av-pill-tab:hover {
        background: var(--av-blue-light);
        color: var(--av-blue);
    }

    .av-pill-tab.active {
        background: var(--av-blue);
        color: #fff;
        box-shadow: 0 6px 14px rgba(30, 63, 212, .3);
    }

.av-tab-panel {
    display: none;
    padding: 28px 0;
}

    .av-tab-panel.active {
        display: block;
        animation: fadeIn .25s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 768px) {
    .av-pill-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 6px;
    }

        .av-pill-tabs::-webkit-scrollbar {
            display: none;
        }

    .av-pill-tab {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ----- Day-by-day Accordion ---------------------------------------------- */
.av-day-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.av-day-item {
    background: #fff;
    border: 1px solid var(--av-gray-100);
    border-radius: var(--av-radius-md);
    overflow: hidden;
    transition: box-shadow .2s;
}

    .av-day-item:hover {
        box-shadow: var(--av-shadow-md);
    }

.av-day-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    background: #fff;
}

.av-day-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--av-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.av-day-title {
    flex: 1;
    font-weight: 700;
    color: var(--av-navy);
    font-size: 15.5px;
}

.av-day-chevron {
    color: var(--av-gray-500);
    transition: transform .25s;
}

.av-day-item.open .av-day-chevron {
    transform: rotate(180deg);
}

.av-day-item.open .av-day-num {
    background: var(--av-coral);
}

.av-day-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
    padding: 0 22px;
}

.av-day-item.open .av-day-body {
    max-height: 800px;
    padding: 0 22px 22px;
}

.av-day-body p {
    color: var(--av-gray-700);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 8px 0;
}

.av-day-body ul {
    padding-left: 20px;
    color: var(--av-gray-700);
    font-size: 14px;
}

.av-day-body li {
    padding: 4px 0;
}

/* ----- FAQ Accordion ----------------------------------------------------- */
.av-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 920px;
    margin: 0 auto;
}

.av-faq-item {
    background: #fff;
    border: 1px solid var(--av-gray-100);
    border-radius: var(--av-radius-md);
    overflow: hidden;
}

.av-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    color: var(--av-navy);
    font-size: 15px;
}

    .av-faq-q::after {
        content: '+';
        font-size: 22px;
        color: var(--av-blue);
        transition: transform .25s;
        font-weight: 400;
    }

.av-faq-item.open .av-faq-q::after {
    transform: rotate(45deg);
    color: var(--av-coral);
}

.av-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
    padding: 0 22px;
    color: var(--av-gray-700);
    font-size: 14.5px;
    line-height: 1.7;
}

.av-faq-item.open .av-faq-a {
    max-height: 500px;
    padding: 0 22px 18px;
}

/* ----- Booking Process Infographic --------------------------------------- */
.av-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.av-process-step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}

    .av-process-step::after {
        content: '';
        position: absolute;
        top: 44px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--av-blue), var(--av-coral));
        z-index: 0;
    }

    .av-process-step:last-child::after {
        display: none;
    }

.av-process-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--av-blue);
    color: var(--av-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    z-index: 1;
    transition: all .3s;
    box-shadow: 0 8px 20px rgba(30, 63, 212, .15);
}
    .av-process-icon img {
        width: auto;
        height: 45px;
    }
    .av-process-step:hover .av-process-icon {
        background: var(--av-blue);
        color: #fff;
        transform: scale(1.05);
    }

.av-process-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    background: var(--av-coral);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    border: 3px solid #fff;
}

.av-process-title {
    font-weight: 800;
    color: var(--av-navy);
    font-size: 16px;
    margin-bottom: 6px;
}

.av-process-desc {
    color: var(--av-gray-500);
    font-size: 13.5px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .av-process {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .av-process-step::after {
        display: none;
    }
}

/* ----- IATA Trust Banner ------------------------------------------------- */
.av-iata-banner {
    background: linear-gradient(135deg, var(--av-navy) 0%, #1A2654 100%);
    color: #fff;
    border-radius: var(--av-radius-xl);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

    .av-iata-banner::before {
        content: '';
        position: absolute;
        right: -80px;
        top: -80px;
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(239, 43, 43, .25), transparent 70%);
        border-radius: 50%;
    }

.av-iata-content {
    position: relative;
    z-index: 2;
}

.av-iata-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.av-iata-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 7px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--av-radius-pill);
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

    .av-iata-badge i {
        color: var(--av-gold);
    }

/* ----- One-Stop Service -------------------------------------------------- */
.av-onestop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.av-onestop-card {
    background: #fff;
    border: 1px solid var(--av-gray-100);
    border-radius: var(--av-radius-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all .2s;
}

    .av-onestop-card:hover {
        border-color: var(--av-blue);
        transform: translateY(-3px);
        box-shadow: var(--av-shadow-md);
    }

.av-onestop-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--av-blue-light);
    color: var(--av-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.av-onestop-title {
    font-weight: 800;
    color: var(--av-navy);
    font-size: 16px;
    margin-bottom: 4px;
}

.av-onestop-desc {
    color: var(--av-gray-500);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .av-onestop-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Prime Cities Cards ------------------------------------------------ */
.av-cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.av-city-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--av-radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--av-shadow-md);
    transition: all .3s;
}

    .av-city-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--av-shadow-xl);
    }

    .av-city-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s;
    }

    .av-city-card:hover img {
        transform: scale(1.06);
    }

    .av-city-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 30%, rgba(11, 20, 55, .92) 100%);
    }

.av-city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px;
    z-index: 2;
    color: #fff;
}

.av-city-name {
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 4px;
}

.av-city-desc {
    font-size: 13px;
    opacity: .9;
}

@media (max-width: 768px) {
    .av-cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .av-cities-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Sightseeing List -------------------------------------------------- */
.av-sights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.av-sight-card {
    background: #fff;
    border-radius: var(--av-radius-lg);
    overflow: hidden;
    box-shadow: var(--av-shadow-sm);
    transition: all .25s;
}

    .av-sight-card:hover {
        box-shadow: var(--av-shadow-lg);
        transform: translateY(-3px);
    }

.av-sight-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

    .av-sight-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

.av-sight-card:hover .av-sight-img img {
    transform: scale(1.06);
}

.av-sight-body {
    padding: 16px 18px;
}

.av-sight-name {
    font-weight: 800;
    color: var(--av-navy);
    font-size: 15px;
    margin-bottom: 4px;
}

.av-sight-loc {
    color: var(--av-gray-500);
    font-size: 12.5px;
}

    .av-sight-loc i {
        color: var(--av-coral);
        margin-right: 4px;
    }

@media (max-width: 768px) {
    .av-sights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .av-sights-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Testimonials ------------------------------------------------------ */
.av-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.av-testi-card {
    background: #fff;
    border-radius: var(--av-radius-lg);
    padding: 28px;
    box-shadow: var(--av-shadow-sm);
    position: relative;
    transition: all .25s;
}

    .av-testi-card:hover {
        box-shadow: var(--av-shadow-lg);
        transform: translateY(-3px);
    }

    .av-testi-card::before {
        content: '"';
        position: absolute;
        top: 6px;
        left: 18px;
        font-size: 80px;
        color: var(--av-blue-light);
        font-family: Georgia, serif;
        line-height: 1;
    }

.av-testi-stars {
    color: #FFB84D;
    font-size: 16px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.av-testi-text {
    color: var(--av-gray-700);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.av-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.av-testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1937b7, #0f2676);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.av-testi-name {
    font-weight: 800;
    color: var(--av-navy);
    font-size: 14.5px;
}

.av-testi-loc {
    color: var(--av-gray-500);
    font-size: 12.5px;
}

@media (max-width: 768px) {
    .av-testi-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Form Modal -------------------------------------------------------- */
.av-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 20, 55, .65);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

    .av-modal-backdrop.open {
        display: flex;
        animation: fadeIn .2s ease;
    }

.av-modal {
    background: #fff;
    border-radius: var(--av-radius-xl);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
    animation: modalIn .3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.av-modal-head {
    padding: 24px 28px;
    background: #051f6e;
    color: #fff;
    border-radius: var(--av-radius-xl) var(--av-radius-xl) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.av-modal-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.av-modal-sub {
    font-size: 13px;
    opacity: .9;
    margin: 4px 0 0;
}

.av-modal-close {
    background: rgba(255, 255, 255, .2);
    border: 0;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background .15s;
}

.av-modal-close:hover {
    background: rgba(255, 255, 255, .35);
}

.av-modal-body {
    padding: 28px;
}

.av-form-group {
    margin-bottom: 18px;
}

.av-form-label {
    display: block;
    font-weight: 700;
    color: var(--av-navy);
    font-size: 13px;
    margin-bottom: 6px;
}

.av-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--av-gray-200);
    border-radius: var(--av-radius-md);
    font-size: 14.5px;
    font-family: var(--av-font-body);
    transition: border-color .15s, box-shadow .15s;
}

.av-form-control:focus {
    outline: none;
    border-color: var(--av-blue);
    box-shadow: 0 0 0 4px rgba(30, 63, 212, .12);
}

.av-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.av-form-submit {
    width: 100%;
    margin-top: 6px;
    padding: 14px;
    font-size: 15px;
}

.av-form-feedback {
    display: none;
    padding: 12px 14px;
    border-radius: var(--av-radius-md);
    font-size: 13.5px;
    margin-top: 14px;
}

.av-form-feedback.success {
    display: block;
    background: #ECFDF5;
    color: #047857;
    border: 1px solid #6EE7B7;
}

.av-form-feedback.error {
    display: block;
    background: #FEF2F2;
    color: #B91C1C;
    border: 1px solid #f40b0b;
}

/* ----- Footer ------------------------------------------------------------ */
.av-footer {
    background: var(--av-navy);
    color: #fff;
    padding: 64px 0 24px;
    margin-top: 0;
}

.av-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.av-footer h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.av-footer p {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.7;
}

.av-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.av-footer-links li {
    padding: 5px 0;
}

.av-footer-links a {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    transition: color .15s;
}

.av-footer-links a:hover {
    color: var(--av-gold);
}

.av-footer-logo {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.av-footer-logo .blue {
    color: #6889FF;
}

.av-footer-logo .coral {
    color: var(--av-coral);
}

.av-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.av-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .2s;
}

.av-social a:hover {
    background: var(--av-coral);
    transform: translateY(-3px);
}

.av-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 48px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
}

.av-iata-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(255, 184, 77, .15);
    color: var(--av-gold);
    border-radius: var(--av-radius-pill);
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .av-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .av-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Mobile bottom action bar (app feel) ------------------------------ */
.av-mobile-bottom {
    display: none;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 35px;
    z-index: 1020;
    background: var(--av-coral);
    color: #fff;
    padding: 14px;
    border-radius: var(--av-radius-pill);
    text-align: center;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(239, 43, 43, .35);
    font-size: 15px;
}

@media (max-width: 768px) {
    .av-mobile-bottom {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

/* ----- Misc -------------------------------------------------------------- */
.av-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--av-radius-pill);
    font-size: 12px;
    font-weight: 700;
}

.av-pill-blue {
    background: var(--av-blue-light);
    color: var(--av-blue);
}

.av-pill-coral {
    background: var(--av-coral-light);
    color: var(--av-coral);
}

.av-pill-gold {
    background: #FFF3D9;
    color: #C28A1F;
}

.av-divider {
    height: 4px;
    width: 56px;
    background: var(--av-coral);
    border-radius: 2px;
    margin: 14px auto 22px;
}

.av-divider-left {
    margin-left: 0;
    margin-right: 0;
}

/* ================================================== */
/* DESTINATION LANDING PAGE — Italy template styles  */
/* (Reusable across all 11 destination landing pages) */
/* ================================================== */

:root {
    --av-blue: #1E3FD4;
    --av-coral: #EF2B2B;
    --av-navy: #0A1E5A;
    --av-cream: #FAF7F2;
    --av-gray-50: #F7F8FA;
    --av-gray-100: #EEF0F4;
    --av-gray-200: #DDE1EA;
    --av-gray-500: #7E869B;
    --av-gray-700: #3F485B;
}

/* ----- Typography setup ----- */
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--av-gray-700);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--av-navy);
}

.text-coral {
    color: #fff !important;
}

.bg-cream {
    background: #fff;
}

.bg-blue-soft {
    background: linear-gradient(180deg, #F4F7FF 0%, #E9EFFF 100%);
}

.bg-blue-dark {
    background: linear-gradient(135deg, #0A1E5A 0%, #1E3FD4 100%);
}

/* ----- Section helpers ----- */
.section-pad {
    padding: 80px 0;
}

.section-pad-sm {
    padding: 48px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16.5px;
    color: var(--av-gray-500);
    line-height: 1.7;
}

.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--av-coral);
    background: #f4f8fe;
    padding: 8px 15px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.eyebrow-light {
    color: #FFB84D;
    background: rgba(255, 184, 77, 0.15);
}

.lead-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--av-gray-700);
}

.min-vh-75 {
    min-height: 75vh;
}

/* ----- Buttons ----- */
.btn-coral {
    background: #fefefe;
    color: #002247;
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 999px;
    transition: all .2s;
}

    .btn-coral:hover {
        background: #d31d1d;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(239, 43, 43, 0.3);
    }

.btn-white {
    background: #fff;
    color: var(--av-coral);
    border: none;
    padding: 14px 32px;
    font-weight: 800;
    border-radius: 999px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .12), 0 4px 10px rgba(15, 23, 42, .06);
}

    .btn-white:hover {
        background: #f5f5f5;
        color: var(--av-coral);
        transform: translateY(-2px);
    }

/* ----- 1. HERO ----- */
.dest-hero {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.dest-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.3);
}

.dest-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.dest-hero-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
    max-width: 580px;
    margin-bottom: 30px;
}

.dest-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

    .dest-hero-meta .meta-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-size: 14.5px;
    }

        .dest-hero-meta .meta-item i {
            font-size: 20px;
            color: #fff;
        }

.dest-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ----- 2. ABOUT COUNTRY: info grid ----- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.info-card {
    display: flex;
    gap: 14px;
    padding: 18px 16px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--av-gray-100);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all .2s;
}

    .info-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(30, 63, 212, 0.1);
        border-color: var(--av-blue);
    }

    .info-card i {
        font-size: 24px;
        color: #051f6e;
        flex-shrink: 0;
    }

    .info-card div {
        display: flex;
        flex-direction: column;
    }

    .info-card strong {
        color: var(--av-navy);
        font-size: 13.5px;
        font-weight: 700;
    }

    .info-card span {
        color: var(--av-gray-500);
        font-size: 12.5px;
        line-height: 1.4;
    }

/* ----- 3. CULTURE CARDS ----- */
.culture-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--av-gray-100);
    height: 100%;
    transition: all .25s;
}

    .culture-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(30, 63, 212, 0.15);
        border-color: var(--av-blue);
    }

.culture-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1937b7, #0f2676);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.culture-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.culture-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--av-gray-500);
    margin: 0;
}

/* ----- 4. WHY VISIT — reason cards ----- */
.reason-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    border: 1px solid var(--av-gray-100);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .25s;
}

    .reason-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: var(--av-coral);
        transition: height .3s;
    }

    .reason-card:hover::before {
        height: 100%;
    }

    .reason-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }

.reason-num {
    font-family: 'Plus Jakarta Sans';
    font-size: 36px;
    font-weight: 800;
    color: var(--av-blue);
    opacity: 0.18;
    line-height: 1;
    margin-bottom: 8px;
}

.reason-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--av-gray-500);
    margin: 0;
}

/* ----- 5. TRUST STRIP ----- */
.trust-strip-row {
    justify-content: center;
}

.trust-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 14px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--av-gray-100);
    height: 100%;
    transition: all .2s;
}

    .trust-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(30, 63, 212, 0.15);
    }

.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #051f6e, #051f6e);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
    .trust-icon img, .culture-icon img{
        height: 35px;
    }
.trust-card h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--av-navy);
    margin: 0;
    line-height: 1.3;
}

/* ----- 6. PACKAGE TIERS ----- */
.package-tier {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--av-gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .3s;
}

    .package-tier:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

    .package-tier.tier-featured {
        border: 2px solid var(--av-coral);
        transform: scale(1.02);
        position: relative;
        z-index: 2;
    }

        .package-tier.tier-featured:hover {
            transform: scale(1.02) translateY(-8px);
        }

.tier-header {
    padding: 32px 28px 28px;
    position: relative;
    color: #fff;
}

.tier-popular {
    background: linear-gradient(135deg, #5E7AE8, #1E3FD4);
}

.tier-premium {
    background: linear-gradient(135deg, #1E3FD4, #0A1E5A);
}

.tier-luxury {
    background: linear-gradient(135deg, #0A1E5A 0%, #000 100%);
}

.tier-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.tier-badge-gold {
    background: #FFB84D;
    color: #6B3A00;
}

.tier-badge-luxury {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #4A2D00;
}

.package-tier h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 6px;
}

.tier-tagline {
    color: rgba(255,255,255,0.85);
    font-size: 14.5px;
    margin: 0;
}

.tier-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tier-price {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--av-gray-200);
}

.from-label {
    display: block;
    font-size: 12px;
    color: var(--av-gray-500);
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-amount {
    display: block;
    font-family: 'Plus Jakarta Sans';
    font-size: 36px;
    font-weight: 800;
    color: var(--av-navy);
    line-height: 1;
}

    .price-amount .per-person {
        font-size: 14px;
        font-weight: 600;
        color: var(--av-gray-500);
    }

.original-price {
    display: inline-block;
    text-decoration: line-through;
    color: var(--av-gray-500);
    font-size: 14px;
    margin-right: 10px;
    margin-top: 4px;
}

.save-badge {
    display: inline-block;
    background: #DCFCE7;
    color: #047857;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex: 1;
}

    .tier-features li {
        padding: 8px 0;
        font-size: 14px;
        color: var(--av-gray-700);
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid #F4F5F8;
    }

        .tier-features li:last-child {
            border-bottom: none;
        }

        .tier-features li i {
            color: var(--av-blue);
            font-size: 15px;
            width: 18px;
        }

/* ----- 7. PILL TABS ----- */
.pill-tabs-container {
    background: #fff;
    border-radius: 999px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: inline-flex;
    max-width: 100%;
    overflow-x: auto;
}

.pill-tabs {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
}

.pill-tab {
    background: transparent;
    border: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    color: var(--av-gray-700);
    white-space: nowrap;
    transition: all .2s;
    cursor: pointer;
}

    .pill-tab:hover {
        background: var(--av-gray-50);
    }

    .pill-tab.active {
        background: #051f6e;
        color: #fff;
        box-shadow: 0 4px 12px rgba(30, 63, 212, 0.3);
    }

.tab-panels {
    min-height: 300px;
}

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
        animation: fadeIn .3s;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab content: Highlights */
.hl-item {
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid var(--av-gray-100);
    display: flex;
    gap: 14px;
    height: 100%;
    transition: all .2s;
}

    .hl-item:hover {
        border-color: var(--av-blue);
        box-shadow: 0 6px 18px rgba(30,63,212,0.08);
    }

    .hl-item i {
        font-size: 28px;
        color: var(--av-coral);
        flex-shrink: 0;
    }

    .hl-item h6 {
        font-size: 15px;
        margin-bottom: 4px;
        color: var(--av-navy);
    }

    .hl-item p {
        font-size: 13px;
        color: var(--av-gray-500);
        margin: 0;
        line-height: 1.5;
    }

/* Tab content: What's Included */
.incl-h {
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--av-navy);
}

.incl-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .incl-list li {
        padding: 8px 0;
        font-size: 14.5px;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid #F4F5F8;
    }

        .incl-list li i {
            color: var(--av-blue);
            font-size: 16px;
            width: 22px;
        }

    .incl-list.excluded li i {
        color: var(--av-gray-500);
    }

    .incl-list.excluded li {
        color: var(--av-gray-500);
    }

/* Tab content: Day Pills + Day Cards */
.day-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 6px;
}

.day-pill {
    background: #fff;
    border: 2px solid var(--av-gray-200);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--av-navy);
    white-space: nowrap;
    cursor: pointer;
    transition: all .2s;
}

    .day-pill:hover {
        border-color: var(--av-blue);
        color: var(--av-blue);
    }

    .day-pill.active {
        background: var(--av-blue);
        border-color: var(--av-blue);
        color: #fff;
    }

.day-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.day-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--av-gray-100);
    scroll-margin-top: 100px;
    transition: all .2s;
}

    .day-card:target, .day-card.active {
        border-color: var(--av-blue);
        box-shadow: 0 8px 24px rgba(30,63,212,0.12);
    }

.day-card-head {
    background: linear-gradient(90deg, #F4F7FF, #fff);
    padding: 18px 22px;
    border-bottom: 1px solid var(--av-gray-100);
    display: flex;
    align-items: center;
    gap: 16px;
}

.day-num {
    background: var(--av-coral);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.day-card h5 {
    font-size: 17px;
    margin: 0;
    color: var(--av-navy);
}

.day-card-body {
    padding: 22px;
}

    .day-card-body p {
        font-size: 15px;
        line-height: 1.7;
        color: var(--av-gray-700);
        margin-bottom: 12px;
    }

    .day-card-body ul {
        padding-left: 0;
        list-style: none;
    }

        .day-card-body ul li {
            padding: 6px 0;
            font-size: 14.5px;
            color: var(--av-gray-700);
        }

/* Tab content: Hotels */
.hotel-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--av-gray-100);
    height: 100%;
    transition: all .25s;
}

    .hotel-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }

.hotel-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.hotel-body {
    padding: 20px;
}

.hotel-stars {
    color: #FFB84D;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.hotel-card h6 {
    font-size: 16px;
    margin-bottom: 6px;
}

.hotel-loc {
    font-size: 13.5px;
    color: var(--av-gray-700);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hotel-feat {
    font-size: 12.5px;
    color: var(--av-gray-500);
    margin: 0;
    line-height: 1.5;
}

/* Tab content: Top Plans */
.plan-item {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    border-left: 4px solid var(--av-coral);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%;
}

    .plan-item i {
        font-size: 28px;
        color: var(--av-blue);
        margin-bottom: 12px;
        display: block;
    }

    .plan-item h6 {
        font-size: 15.5px;
        margin-bottom: 6px;
    }

    .plan-item p {
        font-size: 13.5px;
        color: var(--av-gray-500);
        margin: 0;
        line-height: 1.6;
    }

/* Tab content: Other Attractions */
.attr-card {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid var(--av-gray-100);
    height: 100%;
    transition: all .25s;
}

    .attr-card:hover {
        border-color: var(--av-blue);
        transform: translateY(-3px);
    }

.attr-num {
    display: inline-block;
    font-family: 'Plus Jakarta Sans';
    font-size: 28px;
    font-weight: 800;
    color: var(--av-blue);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 6px;
}

.attr-card h6 {
    font-size: 15.5px;
    margin-bottom: 6px;
}

.attr-card p {
    font-size: 13px;
    color: var(--av-gray-500);
    margin: 0;
    line-height: 1.55;
}

/* ----- 8. CITY CARDS ----- */
.city-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    height: 100%;
    transition: all .25s;
    cursor: pointer;
}

    .city-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 36px rgba(0,0,0,0.15);
    }

.city-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    transition: transform .5s;
}

.city-card:hover .city-img {
    transform: scale(1.08);
}

.city-body {
    padding: 16px 18px;
    background: #fff;
}

    .city-body h5 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .city-body p {
        font-size: 13px;
        color: var(--av-gray-500);
        margin: 0;
    }

/* ----- 9. SIGHTSEEING ----- */
.sight-card {
    background: #fff;
    padding: 26px 24px;
    border-radius: 16px;
    border: 1px solid var(--av-gray-100);
    height: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: all .25s;
}

    .sight-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(30,63,212,0.1);
        border-color: var(--av-blue);
    }

.sight-num {
    display: inline-block;
    font-family: 'Plus Jakarta Sans';
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: var(--av-coral);
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.sight-card h6 {
    font-size: 16px;
    margin-bottom: 8px;
}

.sight-card p {
    font-size: 14px;
    color: var(--av-gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ----- 10. ONE-STOP CARDS ----- */
.onestop-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 26px 22px;
    text-align: center;
    height: 100%;
    transition: all .25s;
}

    .onestop-card:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-4px);
        border-color: #FFB84D;
    }

.onestop-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #fff;
    color: #9db4fc;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.onestop-card h6 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.onestop-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.78);
    margin: 0;
    line-height: 1.55;
}

/* ----- 11. BOOKING FLOW INFOGRAPHIC ----- */
.booking-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.flow-step {
    flex: 1;
    min-width: 220px;
    max-width: 240px;
    background: #fff;
    border-radius: 20px;
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border: 1px solid var(--av-gray-100);
    position: relative;
    transition: all .25s;
}

    .flow-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 36px rgba(30,63,212,0.12);
    }

.flow-num {
    position: absolute;
    top: -16px;
    left: 22px;
    background: var(--av-coral);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(239,43,43,0.3);
}

.flow-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--av-blue), #4F6FE8);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto 18px;
}

.flow-step h6 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--av-navy);
}

.flow-step p {
    font-size: 13px;
    color: var(--av-gray-500);
    margin: 0;
    line-height: 1.55;
}

.flow-arrow {
    display: flex;
    align-items: center;
    padding-top: 60px;
    color: var(--av-blue);
    font-size: 32px;
}

@media (max-width: 991px) {
    .flow-arrow {
        display: none;
    }
}

/* ----- 12. IATA BANNER ----- */
.iata-banner {
    background: linear-gradient(135deg, #0A1E5A 0%, #1E3FD4 50%, #0A1E5A 100%);
    color: #fff;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

    .iata-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 320px;
        height: 320px;
        background: rgba(255,184,77,0.1);
        border-radius: 50%;
    }

    .iata-banner::after {
        content: '';
        position: absolute;
        bottom: -50%;
        right: -10%;
        width: 280px;
        height: 280px;
        background: rgba(239,43,43,0.08);
        border-radius: 50%;
    }

.iata-badge {
    position: relative;
    z-index: 2;
}

.iata-stamp {
    width: 150px;
    height: 150px;
    border: 4px solid #FFB84D;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: rgba(255,184,77,0.1);
    transform: rotate(-8deg);
}

.iata-text {
    font-family: 'Plus Jakarta Sans';
    font-size: 38px;
    font-weight: 800;
    color: #FFB84D;
    letter-spacing: 0.1em;
    line-height: 1;
}

.iata-cert {
    font-size: 10px;
    font-weight: 700;
    color: #FFB84D;
    letter-spacing: 0.25em;
    margin-top: 4px;
}

.iata-title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.iata-text-body {
    color: rgba(255,255,255,0.9);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.iata-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.iata-feature {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,184,77,0.4);
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
}

    .iata-feature i {
        color: #FFB84D;
        margin-right: 4px;
    }

/* ----- 13. PACKAGE CAROUSEL ----- */
.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--av-gray-200);
    color: var(--av-gray-700);
    font-size: 18px;
    transition: all .2s;
    cursor: pointer;
}

    .carousel-arrow:hover {
        border-color: var(--av-coral);
        color: var(--av-coral);
    }

.carousel-arrow-active {
    background: var(--av-coral);
    border-color: var(--av-coral);
    color: #fff;
}

    .carousel-arrow-active:hover {
        background: #d31d1d;
        color: #fff;
    }

.package-carousel {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
}

    .package-carousel::-webkit-scrollbar {
        height: 6px;
    }

    .package-carousel::-webkit-scrollbar-thumb {
        background: var(--av-gray-200);
        border-radius: 999px;
    }

.pkg-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border: 1px solid var(--av-gray-100);
    transition: all .25s;
    display: flex;
    flex-direction: column;
}

    .pkg-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 36px rgba(0,0,0,0.13);
    }

.pkg-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pkg-discount {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--av-coral);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(239,43,43,0.3);
}

.pkg-body {
    padding: 18px;
    flex: 1;
}

.pkg-stars {
    color: #FFB84D;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 6px;
}

.pkg-card h6 {
    font-size: 15.5px;
    line-height: 1.35;
    margin-bottom: 8px;
    min-height: 42px;
}

.pkg-loc {
    font-size: 13px;
    color: var(--av-gray-700);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pkg-incl {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
    font-size: 12.5px;
    color: var(--av-gray-700);
}

    .pkg-incl li::before {
        content: '• ';
        color: var(--av-coral);
    }

.pkg-footer {
    padding: 14px 18px;
    border-top: 1px solid var(--av-gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pkg-original {
    display: block;
    text-decoration: line-through;
    color: var(--av-gray-500);
    font-size: 12px;
}

.pkg-price {
    font-family: 'Plus Jakarta Sans';
    font-weight: 800;
    font-size: 19px;
    color: var(--av-navy);
}

.pkg-pp {
    font-size: 11px;
    font-weight: 600;
    color: var(--av-gray-500);
}

.btn-view-deal {
    background: #fff;
    border: 2px solid var(--av-coral);
    color: var(--av-coral);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
}

    .btn-view-deal:hover {
        background: var(--av-coral);
        color: #fff;
    }

/* ----- 14. TESTIMONIALS ----- */
.testi-card {
    background: #fff;
    padding: 28px 26px;
    border-radius: 18px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--av-gray-100);
    height: 100%;
    position: relative;
    transition: all .25s;
}

    .testi-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 32px rgba(0,0,0,0.1);
    }

    .testi-card::before {
        content: '"';
        position: absolute;
        top: 12px;
        right: 18px;
        font-family: serif;
        font-size: 64px;
        color: var(--av-blue);
        opacity: 0.12;
        line-height: 1;
    }

.testi-stars {
    color: #FFB84D;
    letter-spacing: 2px;
    font-size: 15px;
    margin-bottom: 14px;
}

.testi-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--av-gray-700);
    margin-bottom: 22px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--av-gray-100);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1937b7, #0f2676);
    color: #fff;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans';
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-author strong {
    display: block;
    font-size: 14px;
    color: var(--av-navy);
}

.testi-author span {
    font-size: 12px;
    color: var(--av-gray-500);
}

/* ----- 15. FAQ ----- */
.faq-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 14px;
    margin-bottom: 22px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-tab-btn {
    background: #fff;
    border: 2px solid var(--av-gray-200);
    color: var(--av-gray-700);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

    .faq-tab-btn:hover {
        border-color: var(--av-blue);
        color: var(--av-blue);
    }

    .faq-tab-btn.active {
        background: #051f6e;
        border-color: #051f6e;
        color: #fff;
    }

.faq-accordion .accordion-item {
    background: #fff;
    border: 1px solid var(--av-gray-100);
    border-radius: 12px !important;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: #fff;
    color: var(--av-navy);
    font-weight: 700;
    font-size: 15px;
    padding: 18px 22px;
}

    .faq-accordion .accordion-button:not(.collapsed) {
        background: #F4F7FF;
        color: var(--av-blue);
        box-shadow: none;
    }

    .faq-accordion .accordion-button:focus {
        box-shadow: 0 0 0 3px rgba(30,63,212,0.15);
    }

.faq-accordion .accordion-body {
    padding: 4px 22px 20px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--av-gray-700);
}

/* ----- 16. FINAL CTA ----- */
.bg-coral-gradient {
    background: #f8f9ff;
    position: relative;
    overflow: hidden;
}

    .bg-coral-gradient::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
    }

.cta-final-title {
    font-size: 44px;
    color: #0a1e5a;
    margin-bottom: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.cta-final-sub {
    font-size: 18px;
    color: #091d59;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

/* ----- MODAL ----- */
.rq-modal {
    border-radius: 24px;
    overflow: hidden;
    border: none;
}

.rq-modal-head {
    background: linear-gradient(135deg, var(--av-blue), var(--av-navy));
    padding: 28px 32px;
    color: #fff;
    position: relative;
}

    .rq-modal-head h4 {
        color: #fff;
        font-size: 24px;
        margin-bottom: 6px;
        padding-right: 30px;
    }

    .rq-modal-head p {
        color: rgba(255,255,255,0.85);
        font-size: 14.5px;
        margin: 0;
        line-height: 1.55;
        padding-right: 30px;
    }

    .rq-modal-head .btn-close {
        position: absolute;
        top: 18px;
        right: 22px;
    }

.rq-modal-body {
    padding: 28px 32px 32px;
}

    .rq-modal-body .form-label {
        font-weight: 700;
        color: var(--av-navy);
        font-size: 13.5px;
        margin-bottom: 5px;
    }

    .rq-modal-body .form-control, .rq-modal-body .form-select {
        padding: 11px 14px;
        border: 1.5px solid var(--av-gray-200);
        border-radius: 10px;
        font-size: 14px;
    }

        .rq-modal-body .form-control:focus, .rq-modal-body .form-select:focus {
            border-color: var(--av-blue);
            box-shadow: 0 0 0 3px rgba(30,63,212,0.1);
        }

.rq-success, .rq-error {
    text-align: center;
    padding: 20px 10px;
}

.rq-success-icon {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 14px;
}

.rq-error-icon {
    font-size: 64px;
    color: var(--av-coral);
    margin-bottom: 14px;
}

.rq-success h4, .rq-error h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.rq-success p, .rq-error p {
    color: var(--av-gray-700);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 991px) {
    .dest-hero-title {
        font-size: 44px;
    }

    .section-title {
        font-size: 30px;
    }

    .cta-final-title {
        font-size: 34px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .booking-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .flow-step {
        max-width: none;
    }

    .package-tier.tier-featured {
        transform: scale(1);
    }

        .package-tier.tier-featured:hover {
            transform: translateY(-8px);
        }
}

@media (max-width: 575px) {
    .section-pad {
        padding: 56px 0;
    }

    .dest-hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 25px;
    }

    .dest-hero-meta {
        gap: 14px;
    }

    .pkg-card {
        flex: 0 0 280px;
    }
    .cta-final-title {
        font-size: 20px;
    }
    .rq-modal-head, .rq-modal-body {
        padding-left: 22px;
        padding-right: 22px;
    }
    .section-subtitle, .lead-text, .cta-final-sub, .faq-accordion .accordion-button {
        font-size: 14px;
    }
}



.footer-adam {
    background: #0F2454;
    padding-top: 30px;
    float: left;
    width: 100%;
    padding-bottom: 5px;
    position: relative;
    opacity: 0.9;
}

.foot-logo {
    text-align: center;
}

    .foot-logo p {
        color: #fff;
        font-size: 13px;
        font-weight: 400;
        line-height: 25px;
        margin-top: 11px;
    }

.foot {
    position: relative;
}

    .foot h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
    }

    .foot hr {
        width: 44px;
        margin-top: 0;
        margin-bottom: 0;
        content: " ";
        top: 57px;
        left: 42px;
        position: absolute;
    }

.nometer {
    margin: 16px 0 4px;
    text-align: center;
}

p.nometer em {
    color: red;
    font-size: 15px;
    font-weight: 600;
}

.addressnew {
    width: 100%;
    float: left;
    border: 1px solid #8792AA;
    padding: 16px
}

    .addressnew ul {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


        .addressnew ul li {
            display: inline-flex;
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            align-items: center;
        }

            .addressnew ul li a {
                color: #fff;
                display: inline;
                text-decoration: none;
            }

            .addressnew ul li span {
                margin-left: 10px;
                display: inline-block;
                /* padding-top: 7px;*/
            }

.foot p {
    color: #fff;
    font-size: 13px;
    line-height: 22px;
}

.footer-data {
    display: flex;
    color: #fff;
    justify-content: space-between;
    margin-top: 12px;
    margin-bottom: 15px;
}

.footer-adam hr {
    /*border-color: #8792AA;*/
    margin: 10px 0 10px;
}

.foot {
    float: left;
    width: 100%;
    margin: 6px 0 10px;
}

.footer-item-active a {
    color: #000;
}

.foot ul {
    margin: 9px 0 0;
    padding: 0;
}

    .foot ul li {
        display: block;
        padding: 3px 3px;
        color: #fff;
        font-weight: 400;
    }

p.mr0 {
    padding: 2px 0 8px;
    margin: 0;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

strong.mr0 {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    /* display: grid;*/
}

.foot {
    float: left;
    width: 100%;
    margin: 6px 0 10px;
}

    .foot h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
    }

.footerEnd {
    padding-bottom: 0;
    background-color: #EEE;
}

.footerLinks h4 {
    font-size: 24px;
    font-family: 'Lato', sans-serif;
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .social-links a {
        width: 30px;
        height: 30px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        border: 2px solid #fff;
        box-shadow: 0 0 2px 3px rgba(0, 0, 0, 0.05);
        margin: 5px 5px;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        transition: transform 0.5s;
    }

        .social-links a .fab {
            font-size: 14px;
            line-height: 27px;
            position: relative;
            z-index: 10;
            transition: color 0.5s;
        }

        .social-links a::after {
            content: '';
            width: 100%;
            height: 100%;
            top: -90px;
            left: 0;
            background: #000;
            background: linear-gradient(-45deg, #ed1c94, #ffec17);
            position: absolute;
            transition: 0.5s;
        }

        .social-links a:hover::after {
            top: 0;
        }

        .social-links a:hover .fab {
            color: #fff;
        }

        .social-links a:hover {
            transform: translateY(-10px);
        }

.footerLinks i {
    color: #fff;
    padding-right: 0;
}

.footerLinks a {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    /*transition:all 0.5s ease;*/
}

    .footerLinks a:hover,
    .footerLinks a:focus {
        text-decoration: none;
        /*margin-left:10px;transition:all 0.5s ease;*/
    }

.footerP {
    padding-top: 20px;
    padding-bottom: 0;
    font-size: 16px;
    color: #555555;
}

.av-hero.add-1 {
    background: url('/images/Holidays/banner.png');
}
.av-hero.add-2 {
    background: url('/images/Holidays/italy-banner-2.png');
}
.av-hero.add-3 {
    background: url('/images/Holidays/greece-banner-2.png');
}
.av-hero.add-4 {
    background: url('/images/Holidays/bali-banner.png');
}
.av-hero.add-5 {
    background: url('/images/Holidays/bangkok-banner.png');
}
.av-hero.add-6 {
    background: url('/images/Holidays/cancun-banner.png');
}
.av-hero.add-7 {
    background: url('/images/Holidays/bamhas-banner.png');
}
.av-hero.add-8 {
    background: url('/images/Holidays/dubai-banner.png');
}
.av-hero.add-9 {
    background: url('/images/Holidays/iceland-banner.png');
}
.av-hero.add-10 {
    background: url('/images/Holidays/singapore-banner.png');
}
.av-hero.add-11 {
    background: url('/images/Holidays/montigo-banner.png');
}
.av-hero.add-12 {
    background: url('/images/Holidays/package-banner.png');
}
.av-hero.add-13 {
    background: url('/images/Holidays/About-banner.png');
}
.av-hero.add-14 {
    background: url('/images/Holidays/contact-banner.png');
}
.av-hero.add-15 {
    background: url('/images/Holidays/terms-condation.png');
}
.av-hero.add-16 {
    background: url('/images/Holidays/Privacy-Policy.png');
}
.av-hero.add-17 {
    background: url('/images/Holidays/cookies-policies.png');
}
.av-hero.add-18 {
    background: url('/images/Holidays/Cancellation-refund-Policy.png');
}
.av-hero.add-19 {
    background: url('/images/Holidays/Faq-banner.png');
}
.mt-6{margin-top:110px!important;}
.tier-cta .btn-coral {
    color: #fff;
    font-weight: 700;
    background: #ef2b2b;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 12px 28px;
    border-radius: 999px;
    transition: 0.2s;
}
.av-booking-form .btn-av-coral {
    color: #fff;
    font-weight: 700;
    background: #ef2b2b;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    padding: 12px 28px;
    border-radius: 999px;
    transition: 0.2s;
}

nav ul li .btn:hover {
    background: #002247;
    color: #fff;
}
.terms h1 {
    color: #2c3e50;
    font-size: 25px;
    margin-bottom: 5px;
    border-bottom: 1px solid #2c3e50;
    padding-bottom: 15px;
}

.terms h2 {
    color: #0a1e5a;
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 15px;
}
.terms h3 {
    color: #0a1e5a;
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.terms p {
    margin: 12px 0;
    text-align: justify;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
.terms p a{

    color: #000;

}
.terms ul{
   
}
.terms ul li{
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
.terms .subtitle {
    font-size: 1.1em;
    color: #7f8c8d;
    margin-bottom: 5px;
    font-style: italic;
}

.terms .meta-info {
    font-size: 0.9em;
    color: #95a5a6;
    margin-bottom: 30px;
    border-left: 3px solid #bdc3c7;
    padding-left: 10px;
}

.terms .highlight {
    font-weight: 600;
}

.terms address {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}


.terms table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95em;
}

.terms th, .terms td {
    border: 1px solid #dbdbdb;
    padding: 12px;
    text-align: left;
    font-size:14px;
    color:#000;
}
    .terms th:nth-child(1), .terms td:nth-child(1) {
        width: 16%;
    }
    .terms th:nth-child(2), .terms td:nth-child(2) {
        width: 68%;
    }
    .terms th:nth-child(3), .terms td:nth-child(3) {
        width: 16%;
    }
.terms th {
    background-color: #f5f5f5;
    font-weight: 600;
}
.holidays{width:100%; float:left;}
.holidays h1 {
    color: #2c3e50;
    font-size: 25px;
    margin-bottom: 5px;
    border-bottom: 1px solid #2c3e50;
    padding-bottom: 15px;
}

.holidays h2 {
    color: #0a1e5a;
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.holidays h3 {
    color: #0a1e5a;
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.holidays p, .holidays li {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
    .holidays p a, .holidays li a{
        color: #000;
        font-size: 15px;
        font-weight: 500;
    }
.holidays ul, .holidays ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.holidays li {
    margin-bottom: 12px;
}

.holidays .meta-info {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 30px;
    border-left: 3px solid #0f4c81;
    padding-left: 10px;
}

.holidays .tier-container {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.holidays .tier-item {
    margin-bottom: 13px;
    font-weight: 500;
    color: #000;
    font-size: 14px;
}

.holidays .tier-item:last-child {
    margin-bottom: 0;
}

.holidays .tier-title {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.1em;
    display: block;
    margin-bottom: 4px;
}

.holidays address {
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
/* Base */
.btn-floating:hover img {
    margin-bottom: -3px;
    display: inline-block;
    height: 37px;
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: #233878;
    font-weight:600;
    transition: .2s;
}

    .btn-floating:hover {
        width: auto;
        padding: 0 20px;
        cursor: pointer;
    }

    .btn-floating span {
        font-size: 16px;
        margin-left: 5px;
        transition: .2s;
        line-height: 0px;
        display: none;
    }

    .btn-floating:hover span {
        display: inline-block;
    }

    /* Phone */
    .btn-floating.phone {
        bottom: 85px;
        background-color: #ffffff;
        box-shadow:0 18px 38px rgba(15, 23, 42, .12), 0 4px 10px rgba(15, 23, 42, .06)
    }

        .btn-floating.phone:hover {
            background-color: #ffffff;

        }

    /* WhatsApp */
    .btn-floating.whatsapp {
        background-color: #ffffff;
        bottom: 25px;
        box-shadow: 0 18px 38px rgba(15, 23, 42, .12), 0 4px 10px rgba(15, 23, 42, .06)
    }

        .btn-floating.whatsapp:hover {
            background-color: #ffffff;
        }
.space{margin-bottom:200px;}
.ui-autocomplete {width:350px !important;  height:300px; padding-top:0.5rem; overflow-y:scroll;overflow-x:hidden;   }
.ui-widget.ui-widget-content{border:0; }
.ui-menu-item a{padding:0.3rem 0.4rem 0.4rem 0.4rem !important; width:100%; display:inline-block; border-radius:0px; font-size:15px; border-bottom:1px solid #f3f3f3;   font-family: "Lato", sans-serif !important;  }
.ui-menu-item.ui-state-focus{color:rgb(0, 113, 206);background: rgba(209, 240, 255,0.6); border:0;  border-bottom:1px solid #f3f3f3 !important;  }
.ui-menu-item span{text-transform:uppercase; font-weight:bold; color:#fd3e00;}









