/* ==========================================================================
   TOUR ARCHIVE â€“ Vibrant Homepage-Aligned Design
   Prefix: ta-   |   Palette & fonts match homepage
   ========================================================================== */

/* ===== Scoped Variables ===== */
.ta-page {
    --ta-sun: #FF6B35;
    --ta-sky: #00B4D8;
    --ta-lime: #06D6A0;
    --ta-rose: #FF4D6D;
    --ta-violet: #7B2FBE;
    --ta-yellow: #FFD166;
    --ta-dark: #1A1A2E;
    --ta-text: #2D2D44;
    --ta-muted: #6B7280;
    --ta-border: #E5E7EB;
    --ta-bg: #F8F9FF;
    --ta-white: #FFFFFF;
    --ta-radius: 16px;
    --ta-radius-sm: 10px;
    --ta-shadow: 0 4px 16px rgba(0, 0, 0, .06), 0 1px 4px rgba(0, 0, 0, .04);
    --ta-shadow-md: 0 8px 32px rgba(0, 0, 0, .10);
    --ta-shadow-lg: 0 16px 48px rgba(0, 0, 0, .14);
    --ta-font: 'Nunito', sans-serif;
    --ta-heading: 'Righteous', cursive;
    --ta-transition: .3s cubic-bezier(.4, 0, .2, 1);
    font-family: var(--ta-font);
    color: var(--ta-text);
    background: var(--ta-bg);
}

.ta-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== 1. HERO ===== */
.ta-hero {
    position: relative;
    padding: 90px 24px 110px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0D0D2B 0%, #16213E 30%, #1A1A3E 60%, #0F3460 100%);
    z-index: 1;
}

.ta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .40;
    animation: taOrbFloat 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.ta-orb--1 {
    width: 420px;
    height: 420px;
    background: var(--ta-sun);
    top: -120px;
    left: -80px;
}

.ta-orb--2 {
    width: 320px;
    height: 320px;
    background: var(--ta-violet);
    top: 60px;
    right: -80px;
    animation-delay: 2s;
}

.ta-orb--3 {
    width: 280px;
    height: 280px;
    background: var(--ta-sky);
    bottom: -60px;
    left: 30%;
    animation-delay: 4s;
}

.ta-orb--4 {
    width: 200px;
    height: 200px;
    background: var(--ta-lime);
    bottom: 20px;
    right: 15%;
    animation-delay: 6s;
}

@keyframes taOrbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.08);
    }
}

.ta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.ta-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 740px;
    margin: 0 auto;
}

.ta-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 40px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ta-yellow);
    margin-bottom: 22px;
    letter-spacing: .5px;
}

.ta-hero__badge .material-symbols-outlined {
    font-size: 18px;
}

.ta-hero__title {
    font-family: var(--ta-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.15;
    letter-spacing: .5px;
}

.ta-hero__sub {
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Search bar */
.ta-search {
    margin: 0 auto;
    max-width: 600px;
}

.ta-search__wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 60px;
    padding: 6px 6px 6px 20px;
    transition: border-color var(--ta-transition);
}

.ta-search__wrap:focus-within {
    border-color: var(--ta-sky);
}

.ta-search__icon {
    color: rgba(255, 255, 255, .5);
    font-size: 22px;
    margin-right: 10px;
}

.ta-search__input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    outline: none;
    font-size: 15px;
    color: #fff;
    padding: 12px 8px !important;
    font-family: var(--ta-font);
}

.ta-search__input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.ta-search__btn {
    background: linear-gradient(135deg, var(--ta-sun), var(--ta-rose));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-family: var(--ta-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--ta-transition), box-shadow var(--ta-transition);
}

.ta-search__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, .4);
}

/* ===== 2. FILTERS BAR ===== */
.ta-filters {
    background: var(--ta-white);
    border-bottom: 1px solid var(--ta-border);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.ta-filters__form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ta-filter-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--ta-bg);
    border: 1px solid var(--ta-border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--ta-text);
    transition: border-color var(--ta-transition), background var(--ta-transition);
    cursor: pointer;
}

.ta-filter-pill:hover,
.ta-filter-pill:focus-within {
    border-color: var(--ta-sky);
    background: rgba(0, 180, 216, .06);
}

.ta-filter-pill .material-symbols-outlined {
    font-size: 18px;
    color: var(--ta-sky);
}

.ta-filter-pill__select {
    border: none;
    background: transparent;
    font-family: var(--ta-font);
    font-size: 14px;
    color: var(--ta-text);
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 4px;
}

.ta-filter-pill--sort {
    margin-left: auto;
    background: transparent;
    border-color: transparent;
}

.ta-filter-pill--sort .material-symbols-outlined {
    color: var(--ta-muted);
}

.ta-filters__apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--ta-sky), var(--ta-lime));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-family: var(--ta-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--ta-transition), box-shadow var(--ta-transition);
}

.ta-filters__apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 180, 216, .35);
}

.ta-filters__apply .material-symbols-outlined {
    font-size: 18px;
}

.ta-filters__clear {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ta-rose);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: opacity var(--ta-transition);
}

.ta-filters__clear:hover {
    opacity: .7;
}

.ta-filters__clear .material-symbols-outlined {
    font-size: 16px;
}

/* ===== 3. CONTENT AREA ===== */
.ta-content {
    padding: 48px 0 72px;
}

.ta-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

.ta-results-bar__heading {
    font-family: var(--ta-heading);
    font-size: 26px;
    color: var(--ta-dark);
    margin: 0;
}

.ta-results-bar__count {
    font-size: 14px;
    color: var(--ta-muted);
    background: var(--ta-bg);
    border: 1px solid var(--ta-border);
    border-radius: 30px;
    padding: 6px 18px;
}

/* ===== 4. CARD GRID ===== */
.ta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.ta-card {
    background: var(--ta-white);
    border-radius: var(--ta-radius);
    overflow: hidden;
    box-shadow: var(--ta-shadow);
    transition: transform var(--ta-transition), box-shadow var(--ta-transition);
}

.ta-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ta-shadow-md);
}

.ta-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ta-card__img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.ta-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.ta-card:hover .ta-card__img img {
    transform: scale(1.08);
}

.ta-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ta-sky), var(--ta-violet));
    display: flex;
    align-items: center;
    justify-content: center;
}

.ta-card__placeholder .material-symbols-outlined {
    font-size: 48px;
    color: rgba(255, 255, 255, .4);
}

.ta-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    z-index: 2;
}

.ta-card__badge--sale {
    background: linear-gradient(135deg, var(--ta-rose), #ff6b8a);
    color: #fff;
}

.ta-card__badge--type {
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(8px);
    color: #fff;
    top: auto;
    bottom: 12px;
    left: 12px;
}

.ta-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ta-card__dest {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ta-sky);
    margin-bottom: 6px;
}

.ta-card__dest .material-symbols-outlined {
    font-size: 15px;
}

.ta-card__title {
    font-family: var(--ta-font);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--ta-dark);
    margin: 0 0 10px;
}

.ta-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--ta-border);
    font-size: 12px;
    color: var(--ta-muted);
    margin-bottom: auto;
}

.ta-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ta-card__meta .material-symbols-outlined {
    font-size: 16px;
    color: var(--ta-sky);
}

.ta-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--ta-border);
}

.ta-card__price-label {
    font-size: 11px;
    color: var(--ta-muted);
    display: block;
}

.ta-card__price-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--ta-sun);
}

.ta-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--ta-sun), var(--ta-rose));
    color: #fff;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 800;
    transition: transform var(--ta-transition), box-shadow var(--ta-transition);
}

.ta-card:hover .ta-card__cta {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, .3);
}

.ta-card__cta .material-symbols-outlined {
    font-size: 16px;
}

/* ===== 5. PAGINATION ===== */
.ta-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.ta-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    font-family: var(--ta-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--ta-text);
    background: var(--ta-white);
    border: 1px solid var(--ta-border);
    text-decoration: none;
    transition: all var(--ta-transition);
}

.ta-pagination .page-numbers:hover {
    border-color: var(--ta-sky);
    color: var(--ta-sky);
    background: rgba(0, 180, 216, .06);
}

.ta-pagination .page-numbers.current {
    background: linear-gradient(135deg, var(--ta-sky), var(--ta-lime));
    color: #fff;
    border-color: transparent;
}

.ta-pagination .page-numbers .material-symbols-outlined {
    font-size: 20px;
}

/* ===== 6. EMPTY STATE ===== */
.ta-empty {
    text-align: center;
    padding: 80px 20px;
}

.ta-empty__icon {
    font-size: 64px;
    color: var(--ta-border);
    margin-bottom: 16px;
}

.ta-empty h3 {
    font-family: var(--ta-heading);
    font-size: 24px;
    color: var(--ta-dark);
    margin: 0 0 8px;
}

.ta-empty p {
    color: var(--ta-muted);
    margin: 0 0 24px;
}

.ta-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--ta-sun), var(--ta-rose));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-family: var(--ta-font);
    font-size: 15px;
    font-weight: 700;
    transition: transform var(--ta-transition), box-shadow var(--ta-transition);
}

.ta-empty__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, .35);
}

/* ===== 7. RESPONSIVE ===== */
@media (max-width: 1200px) {
    .ta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .ta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ta-hero {
        padding: 70px 20px 80px;
    }

    .ta-filters__form {
        gap: 8px;
    }

    .ta-filter-pill--sort {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .ta-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ta-hero {
        padding: 60px 16px 70px;
    }

    .ta-hero__title {
        font-size: 1.8rem;
    }

    .ta-search__wrap {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
        gap: 10px;
    }

    .ta-search__input {
        width: 100%;
        text-align: center;
    }

    .ta-search__btn {
        width: 100%;
    }

    .ta-search__icon {
        display: none;
    }

    .ta-filters {
        position: static;
    }

    .ta-filters__form {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .ta-filter-pill {
        flex-shrink: 0;
    }

    .ta-results-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .ta-card__cta {
        padding: 6px 14px;
        font-size: 11px;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOUR TEMPLATE â€“ COMPLETE CSS (from tour-package-wordpress-spec.md)
   Traveler Theme / TravelPro
   Sections: Hero, Overview, Itinerary, Hotels, Inclusions,
             Policies, FAQ, Related Packages, Destinations,
             Reviews, Instagram, Blogs, Layout 2 Dark Luxury,
             Admin Layout Picker, Responsive
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CSS VARIABLES & COLOR REFERENCE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
    --color-primary: #0b8fa8;
    /* Teal â€“ main brand color */
    --color-primary-light: #e6f7fa;
    /* Light teal â€“ open accordion bg */
    --color-accent: #1a6faf;
    /* Blue â€“ buttons, links */
    --color-orange: #e87c1e;
    /* Orange â€“ Read More button */
    --color-dark: #1a2a5e;
    /* Dark navy â€“ major headings */
    --color-green: #2ecc71;
    /* Green â€“ inclusions, highlights */
    --color-red: #e74c3c;
    /* Red â€“ exclusions */
    --color-gold: #f5a623;
    /* Gold â€“ stars, ratings */
    --color-text: #444444;
    /* Default body text */
    --color-muted: #888888;
    /* Secondary text */
    --color-border: #e0e0e0;
    /* Default border */
    --color-bg-cream: #fdf7ee;
    /* Warm cream background */
    --color-bg-light: #f4f6f9;
    /* Cool light background */
    --color-bg-slider: #cdd6df;
    /* Blog section background */

    --radius-card: 14px;
    --shadow-card: 0 3px 16px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.14);

    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 1 â€“ HERO (Image Slider + Price Card)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Hero Wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tour-full-width-bg {
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box;
    max-width: 100vw !important;
}

body {
    overflow-x: hidden;
}

.tour-hero-wrapper {
    /* background: linear-gradient(160deg, #e6f7fa 0%, #fdf7ee 100%); */
    padding: 24px 0 0;
    max-width: 100%;
    overflow-x: hidden;
}

.tour-back-link {
    padding: 0 0 12px;
}

.tour-back-link a {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.tour-back-link a:hover {
    color: var(--color-primary);
}

/* â”€â”€ Two-column hero grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tour-hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px;
    align-items: stretch;
    max-width: 100%;
}

/* â”€â”€ Slider Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tour-hero-slider-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    padding-bottom: 10px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.tour-slider {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
}

.slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

.slider-counter {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 10;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.slider-btn svg {
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #f5f5f5;
}

.slider-prev {
    left: 12px;
}

.slider-next {
    right: 12px;
}

.slider-thumbs {
    display: flex;
    gap: 10px;
    padding: 8px 16px 0;
    overflow-x: auto;
}

.thumb-btn {
    flex-shrink: 0;
    width: 72px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s, transform 0.2s;
}

.thumb-btn.is-active {
    border-color: var(--color-primary);
}

.thumb-btn:hover {
    transform: scale(1.05);
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* â”€â”€ Price Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tour-hero-price-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #eaf0f6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.price-card-topbar {
    background: linear-gradient(135deg, #008cff 0%, #005ce6 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-radius: 12px;
    margin: 14px 14px 0;
    box-shadow: 0 6px 16px rgba(0, 140, 255, 0.25);
}

.duration-label {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.featured-badge {
    background: linear-gradient(135deg, #ff4e00 0%, #ec9f05 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 78, 0, 0.3);
}

.price-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #141823;
    padding: 20px 20px 6px;
    margin: 0;
    line-height: 1.3;
}

.price-card-location {
    font-size: 14px;
    color: #008cff;
    font-weight: 600;
    padding: 0 20px 16px;
    margin: 0;
    line-height: 1.4;
}

.price-box {
    margin: 0 20px 16px;
    background: linear-gradient(to bottom, #f9fbfc 0%, #f0f5fa 100%);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #e1ebf5;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.price-current {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(135deg, #eb2026 0%, #ff6d38 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.price-row-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.price-original {
    font-size: 16px;
    color: #8892a0;
    text-decoration: line-through;
    font-weight: 600;
}

.price-discount {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    background: #25d366;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3);
}

.price-meta {
    font-size: 13.5px;
    color: #555;
    font-weight: 500;
    line-height: 1.7;
}

.price-total {
    color: #eb2026;
    font-weight: 700;
}

.price-total strong {
    color: #eb2026;
    font-weight: 800;
}

.currency-switcher-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px 12px;
    font-size: 13px;
    color: #555;
}

.currency-switcher-inline select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 13px;
    cursor: pointer;
}

.amenity-icons-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    padding: 10px 16px 20px;
    margin-top: auto;
}

.amenity-icon {
    text-align: center;
    width: 46px;
    height: 46px;
    border: none;
    background: #e6f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 140, 255, 0.15);
}

.amenity-icon:hover {
    background: linear-gradient(135deg, #008cff 0%, #005ce6 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 140, 255, 0.3);
}

.amenity-icon:hover .amenity-emoji {
    color: #fff;
    filter: none;
}

.amenity-emoji {
    font-size: 20px;
    color: #008cff;
    transition: color 0.3s ease;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 16px 16px;
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .tour-hero-grid {
        grid-template-columns: 1fr 340px;
        gap: 16px;
    }
}

@media (max-width: 900px) {
    .tour-hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .tour-hero-wrapper {
        padding: 16px 0 0;
    }

    .tour-hero-grid {
        gap: 16px;
    }

    .tour-hero-slider-card {
        border-radius: 12px;
        max-width: 100%;
        overflow: hidden;
    }

    .tour-slider {
        border-radius: 12px 12px 0 0;
        max-width: 100%;
        overflow: hidden;
    }

    .slider-track {
        width: 100%;
    }

    .slide {
        width: 100%;
        min-width: 100%;
    }

    .slide img {
        height: 250px;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
        display: block;
    }

    .slider-btn {
        width: 34px;
        height: 34px;
    }

    .slider-btn svg {
        width: 16px;
        height: 16px;
    }

    .slider-counter {
        font-size: 12px;
        padding: 4px 10px;
    }

    .slider-thumbs {
        padding: 8px 12px 0;
        gap: 6px;
    }

    .thumb-btn {
        width: 56px;
        height: 40px;
    }

    .tour-back-link {
        padding: 0 0 10px;
    }

    .tour-back-link a {
        font-size: 12px;
    }

    .tour-hero-price-card {
        border-radius: 12px;
        max-width: 100%;
    }

    .price-card-topbar {
        margin: 10px 10px 0;
        padding: 12px 16px;
        border-radius: 8px;
    }

    .price-card-title {
        font-size: 18px;
        padding: 14px 14px 4px;
    }

    .price-card-location {
        padding: 0 14px 10px;
        font-size: 13px;
    }

    .price-box {
        margin: 0 12px 12px;
        padding: 14px 12px;
    }

    .price-current {
        font-size: 26px;
    }

    .amenity-icons-row {
        gap: 14px;
        padding: 10px 14px;
    }

    .amenity-icon {
        width: 38px;
        height: 38px;
    }

    .amenity-emoji {
        font-size: 16px;
    }

    .btn-whatsapp {
        margin: 8px 12px 12px;
        padding: 12px;
        font-size: 15px;
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .tour-hero-wrapper {
        padding: 10px 0 0;
    }

    .tour-hero-slider-card {
        border-radius: 10px;
        margin: 0 auto;
        max-width: 100%;
    }

    .tour-slider {
        border-radius: 10px 10px 0 0;
        max-width: 100%;
    }

    .slide img {
        height: 220px;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
    }

    .slider-btn svg {
        width: 14px;
        height: 14px;
    }

    .slider-prev {
        left: 8px;
    }

    .slider-next {
        right: 8px;
    }

    .slider-counter {
        font-size: 11px;
        padding: 4px 10px;
        top: 10px;
        left: 10px;
    }

    .slider-thumbs {
        display: none;
    }

    .price-card-title {
        font-size: 16px;
        padding: 14px 14px 4px;
    }

    .price-card-location {
        font-size: 12px;
    }

    .price-current {
        font-size: 24px;
    }

    .price-original {
        font-size: 13px;
    }

    .amenity-icons-row {
        gap: 12px;
    }

    .amenity-icon {
        width: 38px;
        height: 38px;
    }

    .amenity-emoji {
        font-size: 16px;
    }

    .btn-whatsapp {
        margin: 12px 14px;
        font-size: 14px;
    }

    .price-card-topbar {
        padding: 10px 14px;
    }

    .duration-label {
        font-size: 13px;
    }

    .featured-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 2 â€“ OVERVIEW + STICKY CALLBACK FORM
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Two-column layout used by Sections 2â€“7 */
.tour-two-col-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
    padding: 0px 0;
}

.tour-main-col {
    min-width: 0;
}

.tour-sidebar-col {}

.js-sticky-form {
    position: sticky;
    top: 80px;
}

/* Section card (white rounded) */
.section-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 28px 32px;
    margin-bottom: 24px;
}

/* Section heading with underline bar */
.section-heading {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0 0 6px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
}

/* Overview text â€“ clamp to 5 lines then read more */
.overview-text {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}

.overview-text.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-orange);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin: 14px 0 20px;
    transition: background 0.2s;
}

.btn-read-more:hover {
    background: #e06820;
}

/* Meta rows (Location, Accommodation) */
.overview-meta-box {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.meta-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.meta-row:last-child {
    border-bottom: none;
}

.meta-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* Highlights */
.highlights-box {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
}

.highlights-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 12px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 6px;
    display: inline-block;
}

.highlights-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

/* Callback Card */
.callback-form-card {
    background: #fff;
    border-radius: 14px;
    border: 1px dashed #c0d0e0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 24px;
}

.callback-form-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin: 0 0 20px;
}

.tour-callback-form input,
.tour-callback-form select,
.tour-callback-form textarea {
    width: 100%;
    border: 1px solid #dde3ea;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

.tour-callback-form input:focus,
.tour-callback-form select:focus,
.tour-callback-form textarea:focus {
    border-color: var(--color-primary);
}

.tour-callback-form textarea {
    resize: vertical;
    min-height: 90px;
}

.btn-callback-submit {
    width: 100%;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-callback-submit:hover {
    background: #0052cc;
}

/* Overview + Callback Responsive */
@media (max-width: 960px) {
    .tour-two-col-layout {
        grid-template-columns: 1fr;
    }

    .js-sticky-form {
        position: static;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 3 â€“ ITINERARY ACCORDION (Full Width)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.tour-section--fullwidth {
    background: #fdf7ee !important;
}

.section-title-centered {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.section-underline {
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    margin: 0 auto 32px;
    border-radius: 2px;
}

.itinerary-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.itinerary-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.itinerary-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #0b8fa8 0%, #1a6faf 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 16px 24px;
    text-align: left;
}

.day-pill {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    flex-shrink: 0;
}

.day-title-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}

.accordion-chevron {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.itinerary-item.is-open .accordion-chevron {
    transform: rotate(180deg);
}

.itinerary-body {
    background: #fff;
    padding: 28px 32px;
    border: 1px solid #e8eef4;
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.day-block {
    padding: 20px 20px 20px 28px;
    border-left: 4px solid var(--color-primary);
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
    background: #f8fafc;
}

.day-block:last-child {
    margin-bottom: 0;
}

.day-block-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.day-block-icon {
    font-size: 20px;
}

.day-block-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.day-block-underline {
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    margin: 4px 0 12px;
    border-radius: 2px;
}

.day-block p {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    margin: 0;
    text-align: justify;
}

.highlights-inline {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
}

.highlights-inline span {
    white-space: nowrap;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 4 â€“ HOTELS & ACCOMMODATION (Horizontal Scroll â€“ Full Detail)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.tour-hotels {
    padding: 10px 0 10px;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.hotels-scroll-wrapper {
    overflow: hidden;
}

.hotels-carousel {
    display: flex;
    gap: 28px;
    transition: transform 0.4s ease;
    padding: 20px 8px 24px;
}

/* â”€â”€ Hotel Card (Full Detail â€“ Tall) â”€â”€ */
.hotel-card--full {
    flex-shrink: 0;
    width: 340px;
    background: #fff;
    border-radius: 20px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.25, .8, .25, 1), box-shadow 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hotel-card--full:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
}

/* Image â€“ taller for impact */
.hotel-card--full .hotel-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    display: block;
    text-decoration: none;
    color: inherit;
}

.hotel-card--full .hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.25, .8, .25, 1);
}

.hotel-card--full:hover .hotel-card-image img {
    transform: scale(1.06);
}

.hotel-card--full .hotel-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

/* Star Badge on image */
.hotel-star-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    color: #f5a623;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
    letter-spacing: 0.5px;
}

.hotel-star-badge em {
    font-style: normal;
    color: #333;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Price badge on image */
.hotel-price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    background: var(--color-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.hotel-price-badge em {
    font-style: normal;
    font-size: 10px;
    font-weight: 600;
    opacity: 0.85;
}

/* Card Body â€“ full details */
.hotel-card--full .hotel-card-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--color-primary);
}

.hotel-name-link {
    text-decoration: none;
    color: inherit;
}

.hotel-name-link:hover .hotel-name {
    color: var(--color-primary);
}

.hotel-card--full .hotel-name {
    font-size: 18px;
    font-weight: 800;
    color: #1a2a5e;
    margin: 0 0 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.2px;
    transition: color 0.2s;
}

/* City/Address */
.hotel-card--full .hotel-city {
    font-size: 12.5px;
    color: var(--color-primary);
    margin: 0 0 10px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-weight: 600;
    line-height: 1.4;
}

.city-pin-icon {
    flex-shrink: 0;
    opacity: 0.8;
    margin-top: 1px;
}

/* Description excerpt */
.hotel-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Quick Info Grid (check-in, check-out, rooms) */
.hotel-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
    background: #f5f8fc;
    border-radius: 12px;
    padding: 12px;
}

.hotel-info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11.5px;
    color: #555;
    line-height: 1.3;
}

.hotel-info-item svg {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 1px;
}

.hotel-info-item span {
    display: flex;
    flex-direction: column;
}

.hotel-info-item strong {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

/* Amenity Tags */
.hotel-amenity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.amenity-tag {
    font-size: 10.5px;
    font-weight: 600;
    background: #f0f4f8;
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    color: #556;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
}

.amenity-tag--more {
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
}

.amenity-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
    opacity: 0.6;
}

.hotel-card--full:hover .amenity-tag {
    background: #e6f0fa;
}

.hotel-card--full:hover .amenity-tag--more {
    background: var(--color-accent);
}

/* Card Footer â€“ Price & CTA */
.hotel-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #eef0f3;
    gap: 12px;
}

.hotel-price-info {
    display: flex;
    flex-direction: column;
}

.hotel-price-label {
    font-size: 10px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-price-value {
    font-size: 20px;
    font-weight: 900;
    color: #1a2a5e;
    line-height: 1.2;
}

.hotel-price-range {
    font-size: 11px;
    color: #888;
    font-weight: 500;
}

/* View Details Button */
.hotel-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-primary);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, gap 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(var(--color-primary-rgb, 0, 0, 0), 0.2);
}

.hotel-view-btn:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-1px);
    gap: 10px;
    text-decoration: none;
}

.hotel-view-btn svg {
    transition: transform 0.3s ease;
}

.hotel-card--full:hover .hotel-view-btn svg {
    transform: translateX(3px);
}

/* Nav */
.hotels-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
}

.hotels-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.hotels-nav-btn svg {
    flex-shrink: 0;
}

.hotels-nav-btn:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

.hotels-nav-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Hotels Responsive */
@media (max-width: 768px) {
    .hotel-card--full {
        width: 300px;
    }

    .hotel-card--full .hotel-card-image {
        height: 200px;
    }

    .hotel-card--full .hotel-card-body {
        padding: 16px 18px 18px;
    }

    .hotel-card--full .hotel-name {
        font-size: 16px;
    }

    .hotel-info-grid {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px;
    }

    .hotel-price-value {
        font-size: 17px;
    }

    .hotel-view-btn {
        padding: 8px 16px;
        font-size: 12px;
    }


}

@media (max-width: 480px) {
    .hotel-card--full {
        width: 270px;
    }

    .hotel-card--full .hotel-card-image {
        height: 180px;
    }

    .hotels-nav-label {
        display: none;
    }

    .amenity-tag {
        font-size: 10px;
        padding: 3px 8px;
    }

    .hotel-description {
        -webkit-line-clamp: 1;
    }

    .hotel-card-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .hotel-view-btn {
        justify-content: center;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 5 â€“ WHAT'S INCLUDED & EXCLUDED
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.tour-section--bg-cream {
    background: #fdf7ee;
    padding: 48px 0;
}

.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.inc-exc-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 24px;
    border-left: 4px solid transparent;
}

.inc-exc-card--green {
    border-left-color: #2ecc71;
}

.inc-exc-card--red {
    border-left-color: #e74c3c;
}

.inc-exc-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.inc-exc-card-header h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.inc-exc-card--green h3 {
    color: #1a9e52;
}

.inc-exc-card--red h3 {
    color: #c0392b;
}

.inc-exc-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.inc-exc-badge--green {
    background: #2ecc71;
}

.inc-exc-badge--red {
    background: #e74c3c;
}

.inc-exc-badge svg {
    stroke: white;
    stroke-width: 2.5;
    fill: none;
}

.inc-exc-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0 0 14px;
}

.inc-exc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.inc-exc-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
}

.inc-icon {
    color: #2ecc71;
    font-weight: 700;
    flex-shrink: 0;
}

.exc-icon {
    color: #e74c3c;
    font-weight: 700;
    flex-shrink: 0;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 6 â€“ POLICIES (Package / Payment / Cancellation)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.tour-section--light {
    background: #f4f6f9;
    padding: 48px 0;
}

.policies-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-card {
    background: #fff;
    border-radius: 10px;
    border-left: 5px solid var(--policy-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    padding: 24px 28px;
}

.policy-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--policy-color);
    margin: 0 0 8px;
}

.policy-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0 0 16px;
}

.policy-content {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

.policy-content.is-truncated {
    max-height: 130px;
    overflow: hidden;
}

.policy-content ul {
    padding-left: 20px;
    margin: 0;
}

.policy-content ul li {
    margin-bottom: 8px;
}

.btn-policy-readmore {
    display: inline-block;
    margin-top: 14px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.btn-policy-readmore:hover {
    background: #0052cc;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 7 â€“ FREQUENTLY ASKED QUESTIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.faq-main-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #1a2a5e;
    margin-bottom: 8px;
}

.faq-red-underline {
    width: 60px;
    height: 3px;
    background: #e53935;
    margin: 0 auto 36px;
    border-radius: 2px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: none;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.faq-item.is-open .faq-trigger {
    background: var(--color-primary-light);
}

.faq-q-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.faq-item.is-open .faq-question-text {
    color: var(--color-primary);
}

.faq-answer {
    padding: 0 20px 20px 66px;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 8 â€“ RECENTLY PUBLISHED PACKAGES (Full Detail Cards)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.section-underline--orange {
    background: #e87c1e;
}

.related-packages {
    padding: 10px 0 10px;
    background: linear-gradient(180deg, #fff9f4 0%, #fef5ee 100%);
    overflow: hidden;
}

.packages-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.packages-slider {
    display: flex;
    gap: 28px;
    transition: transform 0.4s ease;
    padding: 20px 4px 24px;
}

.pkg-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #DD2476;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.pkg-slider-btn svg {
    flex-shrink: 0;
}

.pkg-slider-btn.js-pkg-prev,
.pkg-slider-btn.js-hotels-prev {
    left: 0;
}

.pkg-slider-btn.js-pkg-next,
.pkg-slider-btn.js-hotels-next {
    right: 0;
}

.pkg-slider-btn:hover {
    background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(221, 36, 118, 0.3);
}

/* â”€â”€ Package Card (Full Detail â€“ Tall) â”€â”€ */
.pkg-card--full {
    flex-shrink: 0;
    width: 340px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(.25, .8, .25, 1), box-shadow 0.4s ease;
    position: relative;
}

.pkg-card--full:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
}

/* Image Area â€“ taller for impact */
.pkg-card--full .pkg-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    display: block;
    text-decoration: none;
    color: inherit;
}

.pkg-card--full .pkg-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.25, .8, .25, 1);
}

.pkg-card--full:hover .pkg-card-image img {
    transform: scale(1.06);
}

.pkg-card--full .pkg-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

/* Badges on image */
.pkg-discount-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #2ecc71;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.3);
}

.pkg-rating-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(255, 255, 255, 0.95);
    color: #f5a623;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 13px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
}

.pkg-price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(221, 36, 118, 0.4);
    letter-spacing: 0.5px;
}

.pkg-price-badge em {
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
}

/* Card Body â€“ full details */
.pkg-card--full .pkg-card-body {
    padding: 20px 22px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: none;
}

.pkg-card--full .pkg-card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
}

.pkg-card--full .pkg-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.2px;
}

.pkg-card--full .pkg-title a {
    color: #1a2a5e;
    text-decoration: none;
    transition: color 0.2s;
}

.pkg-card--full .pkg-title a:hover {
    color: #DD2476;
}

/* Location */
.pkg-card--full .pkg-location {
    font-size: 12.5px;
    color: #FF512F;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
}

/* Description excerpt */
.pkg-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Quick Info Grid (duration, accommodation, group, level) */
.pkg-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
    background: #fef5ee;
    border-radius: 12px;
    padding: 12px;
}

.pkg-info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11.5px;
    color: #555;
    line-height: 1.3;
}

.pkg-info-item svg {
    flex-shrink: 0;
    color: #DD2476;
    margin-top: 1px;
}

.pkg-info-item span {
    display: flex;
    flex-direction: column;
}

.pkg-info-item strong {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

/* Highlight Tags */
.pkg-highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.pkg-highlight-tag {
    font-size: 10.5px;
    font-weight: 600;
    background: #fff3e6;
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    color: #7a4a12;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
}

.pkg-highlight-tag .amenity-dot {
    background: #FF512F;
}

.pkg-highlight-tag--more {
    background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
    color: #fff;
    font-weight: 700;
}

.pkg-card--full:hover .pkg-highlight-tag {
    background: #ffeef4;
}

.pkg-card--full:hover .pkg-highlight-tag--more {
    background: linear-gradient(135deg, #E23D1E 0%, #C21960 100%);
}

/* Card Footer â€” Price & CTA */
.pkg-card--full .pkg-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px 20px;
    background: linear-gradient(to right, #fff9f8 0%, #fff5f7 100%);
    border-top: 1px solid #ffeaee;
    margin-top: auto;
}

.pkg-card--full .pkg-price-block {
    display: flex;
    flex-direction: column;
}

.pkg-card--full .pkg-price-label {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.pkg-card--full .pkg-price {
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.pkg-card--full .pkg-price-orig {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
}

/* View Details Button â€“ solid primary */
.pkg-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(221, 36, 118, 0.35);
}

.pkg-view-btn:hover {
    background: linear-gradient(135deg, #E23D1E 0%, #C21960 100%);
    color: #fff;
    transform: translateY(-2px);
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(221, 36, 118, 0.45);
}

.pkg-view-btn svg {
    transition: transform 0.3s ease;
}

.pkg-card--full:hover .pkg-view-btn svg {
    transform: translateX(4px);
}

/* Packages Responsive */
@media (max-width: 768px) {
    .pkg-card--full {
        width: 300px;
    }

    .pkg-card--full .pkg-card-image {
        height: 200px;
    }

    .pkg-card--full .pkg-card-body {
        padding: 16px 18px 12px;
    }

    .pkg-card--full .pkg-card-footer {
        padding: 12px 18px 16px;
    }

    .pkg-card--full .pkg-title {
        font-size: 16px;
    }

    .pkg-card--full .pkg-price {
        font-size: 17px;
    }

    .pkg-slider-btn {
        width: 38px;
        height: 38px;
    }

    .pkg-slider-btn.js-pkg-prev {
        left: 0;
    }

    .pkg-slider-btn.js-pkg-next {
        right: 0;
    }
}

@media (max-width: 480px) {
    .pkg-view-btn {
        justify-content: center;
    }

    .related-packages {
        padding: 36px 0 40px;
    }

    .pkg-description {
        -webkit-line-clamp: 1;
    }

    .pkg-slider-btn {
        width: 34px;
        height: 34px;
    }

    .pkg-slider-btn.js-pkg-prev {
        left: 0;
    }

    .pkg-slider-btn.js-pkg-next {
        right: 0;
    }

    .pkg-info-grid {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px;
    }

    .pkg-view-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .pkg-card--full {
        width: 270px;
    }

    .pkg-card--full .pkg-card-image {
        height: 180px;
    }

    .pkg-card--full .pkg-card-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .pkg-slider-btn {
        width: 34px;
        height: 34px;
    }

    .pkg-slider-btn.js-pkg-prev {
        left: 0;
    }

    .pkg-slider-btn.js-pkg-next {
        right: 0;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 9 â€“ EXPLORE OUR DESTINATIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.tour-destinations {
    background-color: #fdf7ee !important;
    padding: 0px 0 30px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* â”€â”€ Destination Card â”€â”€ */
.destination-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
    text-decoration: none;
    color: inherit;
}

/* Image */
.dest-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.dest-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.destination-card:hover .dest-card-image img {
    transform: scale(1.1);
}

.dest-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(26, 42, 94, 0.5), transparent);
    pointer-events: none;
}

/* Package Count Overlay */
.dest-pkg-overlay {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(4px);
}

/* Card Body */
.dest-card-body {
    padding: 20px 22px 24px;
}

.dest-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a5e;
    margin: 0 0 8px;
    line-height: 1.3;
}

.dest-description {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    border-bottom: 2px solid transparent;
}

.destination-card:hover .dest-explore-link {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* Destinations Responsive */
@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .dest-card-image {
        height: 180px;
    }

    .dest-card-body {
        padding: 16px 18px 20px;
    }

    .dest-name {
        font-size: 17px;
    }

    .dest-description {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }

    .inc-exc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dest-card-image {
        height: 200px;
    }

    .dest-name {
        font-size: 18px;
    }

    .tour-destinations {
        padding: 0px 0 52px;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 10 â€“ WHAT OUR GUESTS SAY (Reviews)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.tour-reviews {
    padding: 60px 0;
}

.reviews-slider-wrapper {
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 4px 20px;
    scroll-snap-type: x mandatory;
    flex: 1;
}

.reviews-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.reviews-nav-btn svg {
    flex-shrink: 0;
}

.reviews-nav-btn:hover {
    background: var(--color-accent);
}

/* â”€â”€ Review Card â”€â”€ */
.review-card {
    flex-shrink: 0;
    width: 310px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 20px;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(.25, .8, .25, 1), box-shadow 0.4s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.11);
}

/* Colored accent bar at top */
.review-accent-bar {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, #6dd5ed 50%, #f5a623 100%);
    flex-shrink: 0;
}

/* Inner content area */
.review-card-inner {
    padding: 22px 24px 16px;
    flex: 1;
    position: relative;
}

/* Large quote icon */
.review-quote-icon {
    margin-bottom: 6px;
}

.review-quote-icon svg {
    display: block;
}

/* Review Text */
.review-text {
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 14px;
    font-style: italic;
}

/* Stars */
.review-stars-row {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 16px;
    line-height: 1;
}

.rv-star-filled {
    color: #f5a623;
}

.rv-star-empty {
    color: #ddd;
}

/* Footer â€” avatar + name */
.review-card-footer {
    display: flex;
    align-items: center;
    padding: 16px 24px 20px;
    gap: 12px;
    background: #f8fafb;
    border-top: 1px solid #eef0f3;
}

.review-avatar-wrap {
    flex-shrink: 0;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reviewer-avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a2a5e;
}

.reviewer-dest {
    font-size: 11.5px;
    color: #999;
    font-weight: 500;
    margin-top: 1px;
}

/* Hide scrollbar on review/hotel/package sliders */
.reviews-slider::-webkit-scrollbar,
.hotels-carousel::-webkit-scrollbar,
.packages-slider::-webkit-scrollbar {
    display: none;
}

.reviews-slider,
.hotels-carousel,
.packages-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 11 â€“ INSTAGRAM IMAGES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.tour-instagram {
    padding: 60px 0;
    background: #fff;
}

.section-underline--dark {
    background: #333;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.instagram-post-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.ig-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid #f0f0f0;
}

.ig-profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ig-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.ig-handle {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.ig-followers {
    font-size: 11px;
    color: #888;
}

.btn-ig-profile {
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    padding: 5px 10px;
    text-decoration: none;
    white-space: nowrap;
}

.ig-post-embed {
    overflow: hidden;
}

.ig-post-embed iframe,
.ig-post-embed blockquote {
    width: 100% !important;
    margin: 0 !important;
}

.ig-post-footer {
    padding: 10px 14px;
    border-top: 1px solid #f0f0f0;
}

.ig-view-more {
    font-size: 13px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

/* Instagram Responsive */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION 12 â€“ OUR BLOGS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.tour-blogs {
    background: #cdd6df;
    padding: 60px 0;
}

.blogs-eyebrow {
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 4px;
}

.blogs-main-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 32px;
}

.blogs-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: start;
}

.blog-featured {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.blog-featured-meta {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px 4px;
    font-size: 12px;
    color: #888;
}

.blog-featured-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 0 20px 10px;
    margin: 0;
}

.blog-featured-title a {
    color: inherit;
    text-decoration: none;
}

.blog-featured-title a:hover {
    color: var(--color-primary);
}

.blog-featured-excerpt {
    font-size: 13px;
    color: #666;
    padding: 0 20px 20px;
    margin: 0;
    line-height: 1.6;
}

.blog-secondary-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-secondary-item {
    background: #fff;
    border-radius: 12px;
    display: flex;
    gap: 14px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-sec-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-sec-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-sec-content {
    flex: 1;
    min-width: 0;
}

.blog-sec-meta {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 4px;
}

.blog-sec-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.4;
}

.blog-sec-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.blog-sec-title a:hover {
    color: var(--color-primary);
}

.blog-sec-time {
    font-size: 12px;
    color: #888;
}

/* Blogs Responsive */
@media (max-width: 768px) {
    .blogs-layout {
        grid-template-columns: 1fr;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GALLERY MODAL (Shared â€“ Photos + Videos Lightbox)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
body.gallery-open {
    overflow: hidden;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal[hidden] {
    display: none;
}

.gallery-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.gallery-modal-container {
    position: relative;
    z-index: 1;
    background: #1a1a1a;
    color: #fff;
    border-radius: 16px;
    width: 90vw;
    max-width: 960px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.gallery-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-modal-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-modal-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.gallery-modal-close-btn:hover {
    opacity: 1;
}

/* Tabs */
.gallery-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.gallery-tab.is-active {
    color: #fff;
    border-bottom-color: #fff;
}

/* Main image area */
.gallery-main-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    min-height: 300px;
    background: #111;
}

.gallery-main-image .js-gallery-main-img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 8px;
}

/* Nav arrows */
.gallery-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.gallery-nav-arrow svg {
    flex-shrink: 0;
}

.gallery-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

.gallery-nav-prev {
    left: 16px;
}

.gallery-nav-next {
    right: 16px;
}

/* Counter */
.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
}

/* Thumbs strip */
.gallery-thumbs-strip {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #0f0f0f;
}

.gallery-thumb-btn {
    flex-shrink: 0;
    width: 64px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.5;
}

.gallery-thumb-btn.is-active,
.gallery-thumb-btn:hover {
    border-color: #fff;
    opacity: 1;
}

.gallery-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Videos grid */
.gallery-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
}

.gallery-video-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.gallery-video-item iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 600px) {
    .gallery-modal-container {
        width: 98vw;
        border-radius: 12px;
    }

    .gallery-videos-grid {
        grid-template-columns: 1fr;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ MODERN LUXURY VARIABLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Prevent horizontal scroll on the page when Layout 2 is active */
body.has-luxury-layout {
    overflow-x: hidden;
}

.tour-layout-luxury {
    --lux-primary: #1152d4;
    --lux-bg: #f6f6f8;
    --lux-surface: #ffffff;
    --lux-surface2: #f6f6f8;
    --lux-border: #e2e8f0;
    --lux-text: #0f172a;
    --lux-muted: #64748b;
    --lux-green: #10b981;
    --lux-red: #ef4444;
    background: var(--lux-bg);
    color: var(--lux-text);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    width: 100%;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ HERO (Full-Width Image + Gradient Overlay)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lux-hero {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.lux-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lux-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lux-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.20) 50%, transparent 100%);
}

.lux-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 48px;
    width: 100%;
}

/* Breadcrumb */
.lux-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.lux-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.lux-breadcrumb a:hover {
    color: #fff;
}

.lux-bc-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.lux-bc-current {
    color: #fff;
    font-weight: 500;
}

/* Hero Bottom */
.lux-hero-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.lux-hero-text {
    flex: 1;
    min-width: 280px;
}

.lux-hero-title {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.lux-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
}

.lux-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
}

.lux-hero-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

/* Hero Price Card (Glassmorphism) */
.lux-hero-price-card {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 12px;
    padding: 24px;
    min-width: 280px;
    color: #fff;
}

.lux-hpc-label {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
    margin: 0 0 6px;
}

.lux-hpc-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.lux-hpc-price {
    font-size: 30px;
    font-weight: 800;
}

.lux-hpc-per {
    font-size: 13px;
    opacity: 0.6;
}

.lux-hpc-old-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.lux-hpc-old {
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.5;
}

.lux-hpc-discount {
    background: var(--lux-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.lux-hpc-actions {
    display: flex;
    gap: 8px;
}

.lux-hpc-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.lux-hpc-wa:hover {
    background: #1ebe5d;
}

.lux-wa-icon {
    width: 22px;
    height: 22px;
}

.lux-hpc-gallery {
    flex: 1;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.lux-hpc-gallery:hover {
    background: rgba(255, 255, 255, 0.20);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ QUICK SUMMARY INFO STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lux-info-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0;
    background: var(--lux-surface);
    border: 1px solid var(--lux-border);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: -32px;
    position: relative;
    z-index: 20;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.lux-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 8px 12px;
    border-right: 1px solid var(--lux-border);
}

.lux-strip-item:last-child {
    border-right: none;
}

.lux-strip-icon {
    font-size: 20px;
    color: var(--lux-primary);
}

.lux-strip-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lux-muted);
    margin: 0;
}

.lux-strip-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--lux-text);
    margin: 0;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ LAYOUT GRID
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lux-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.lux-two-col {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    align-items: flex-start;
}

.lux-main-col {
    flex: 1;
    min-width: 0;
}

.lux-sidebar-col {
    width: 400px;
    flex-shrink: 0;
}

.lux-sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    z-index: 10;
}

.admin-bar .lux-sidebar-sticky {
    top: 52px;
}

.lux-section {
    margin-bottom: 48px;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ SECTION HEADINGS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lux-heading {
    font-size: 24px;
    font-weight: 800;
    color: var(--lux-text);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lux-heading-icon {
    font-size: 22px;
    color: var(--lux-primary);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ OVERVIEW
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tour-layout-luxury .lux-overview-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--lux-muted);
}

.tour-layout-luxury .lux-overview-text.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-layout-luxury .lux-btn-read-more {
    background: transparent;
    border: 1px solid var(--lux-primary);
    color: var(--lux-primary);
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.2s, color 0.2s;
}

.tour-layout-luxury .lux-btn-read-more:hover {
    background: var(--lux-primary);
    color: #fff;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ PACKAGE HIGHLIGHTS LIST
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tour-layout-luxury .lux-highlights-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-layout-luxury .lux-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--lux-text);
    margin-bottom: 12px;
    line-height: 1.6;
}

.lux-hl-check {
    color: var(--lux-green);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ ITINERARY (Accordion / Dropdown)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lux-itin-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lux-itin-item {
    border: 1px solid var(--lux-border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--lux-surface);
    transition: box-shadow 0.2s;
}

.lux-itin-item.is-open {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.lux-itin-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 16px 20px;
    text-align: left;
    transition: background 0.2s;
}

.lux-itin-item.is-open .lux-itin-trigger {
    background: var(--lux-surface2);
    border-bottom: 1px solid var(--lux-border);
}

.lux-itin-day-badge {
    background: var(--lux-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.lux-itin-title {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--lux-text);
}

.lux-itin-item.is-open .lux-itin-title {
    color: var(--lux-primary);
}

.lux-itin-item .lux-chevron {
    flex-shrink: 0;
    color: var(--lux-muted);
    transition: transform 0.3s;
}

.lux-itin-item.is-open .lux-chevron {
    transform: rotate(180deg);
    color: var(--lux-primary);
}

.lux-itin-body {
    padding: 20px 24px;
}

.lux-itin-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--lux-muted);
    margin: 0;
}

.lux-itin-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.lux-itin-hl-tag {
    background: var(--lux-surface2);
    border: 1px solid var(--lux-border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--lux-primary);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ INCLUSIONS / EXCLUSIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tour-layout-luxury .lux-inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tour-layout-luxury .lux-inc-card {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    padding: 24px;
    border-top: none;
}

.tour-layout-luxury .lux-exc-card {
    background: var(--lux-surface2);
    border: 1px solid var(--lux-border);
    border-radius: 12px;
    padding: 24px;
    border-top: none;
}

.tour-layout-luxury .lux-inc-card h3 {
    color: #047857;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-layout-luxury .lux-exc-card h3 {
    color: var(--lux-muted);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-layout-luxury .lux-inc-list,
.tour-layout-luxury .lux-exc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-layout-luxury .lux-inc-list li,
.tour-layout-luxury .lux-exc-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.tour-layout-luxury .lux-inc-list li {
    color: #374151;
}

.tour-layout-luxury .lux-exc-list li {
    color: var(--lux-muted);
}

.tour-layout-luxury .lux-inc-icon {
    color: var(--lux-green);
    font-weight: 700;
    font-size: 15px;
}

.tour-layout-luxury .lux-exc-icon {
    color: var(--lux-muted);
    font-weight: 700;
    font-size: 15px;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ POLICIES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tour-layout-luxury .lux-policy-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tour-layout-luxury .lux-policy-card {
    background: var(--lux-surface);
    border: 1px solid var(--lux-border);
    border-radius: 10px;
    border-left: 4px solid var(--policy-color, var(--lux-primary));
    padding: 22px 24px;
}

.tour-layout-luxury .lux-policy-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--lux-text);
    margin: 0 0 10px;
}

.tour-layout-luxury .lux-policy-content {
    font-size: 13px;
    line-height: 1.8;
    color: var(--lux-muted);
}

.tour-layout-luxury .lux-policy-content.is-truncated {
    max-height: 110px;
    overflow: hidden;
}

.tour-layout-luxury .lux-policy-content ul li {
    margin-bottom: 8px;
}

.tour-layout-luxury .lux-btn-policy-more {
    background: transparent;
    border: 1px solid var(--lux-border);
    color: var(--lux-muted);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 12px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: border-color 0.2s, color 0.2s;
}

.tour-layout-luxury .lux-btn-policy-more:hover {
    border-color: var(--lux-primary);
    color: var(--lux-primary);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ FAQ
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tour-layout-luxury .lux-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tour-layout-luxury .lux-faq-item {
    background: var(--lux-surface);
    border: 1px solid var(--lux-border);
    border-radius: 8px;
    overflow: hidden;
}

.tour-layout-luxury .lux-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.tour-layout-luxury .lux-faq-item.is-open .lux-faq-trigger {
    background: var(--lux-surface2);
}

.tour-layout-luxury .lux-faq-q-badge {
    display: none;
    /* hidden in this design */
}

.tour-layout-luxury .lux-faq-question {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--lux-text);
}

.tour-layout-luxury .lux-faq-item.is-open .lux-faq-question {
    color: var(--lux-primary);
}

.tour-layout-luxury .lux-chevron {
    flex-shrink: 0;
    color: var(--lux-muted);
    transition: transform 0.3s;
}

.tour-layout-luxury .lux-faq-item.is-open .lux-chevron {
    transform: rotate(180deg);
    color: var(--lux-primary);
}

.tour-layout-luxury .lux-faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--lux-muted);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ SIDEBAR CARD
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lux-sidebar-card {
    background: var(--lux-surface);
    border: 1px solid var(--lux-border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
}

.lux-sidebar-form-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--lux-text);
    margin: 0 0 24px;
}

/* Form Styles */
.lux-form-group {
    margin-bottom: 16px;
}

.lux-form-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lux-muted);
    margin-bottom: 8px;
}

.lux-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tour-layout-luxury .lux-form input,
.tour-layout-luxury .lux-form select,
.tour-layout-luxury .lux-form textarea {
    width: 100%;
    box-sizing: border-box;
    background: var(--lux-surface2);
    border: none;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--lux-text);
    outline: none;
    transition: box-shadow 0.2s;
}

.tour-layout-luxury .lux-form input:focus,
.tour-layout-luxury .lux-form select:focus,
.tour-layout-luxury .lux-form textarea:focus {
    box-shadow: 0 0 0 2px var(--lux-primary);
}

.tour-layout-luxury .lux-form input::placeholder,
.tour-layout-luxury .lux-form textarea::placeholder {
    color: #94a3b8;
}

.tour-layout-luxury .btn-callback-submit {
    width: 100%;
    background: var(--lux-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(17, 82, 212, 0.30);
    transition: box-shadow 0.2s, background 0.2s;
    margin-top: 8px;
}

.tour-layout-luxury .btn-callback-submit:hover {
    box-shadow: 0 10px 40px rgba(17, 82, 212, 0.50);
}

.lux-form-disclaimer {
    font-size: 10px;
    text-align: center;
    color: var(--lux-muted);
    margin: 16px 0 0;
}

/* Trust Section */
.lux-trust-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--lux-border);
}

.lux-trust-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--lux-text);
    margin: 0 0 16px;
}

.lux-trust-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lux-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--lux-muted);
}

.lux-trust-icon {
    font-size: 18px;
}

/* WhatsApp Sidebar CTA */
.lux-sidebar-wa {
    display: block;
    text-align: center;
    background: #25D366;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.lux-sidebar-wa:hover {
    background: #1ebe5d;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ HOTELS (inline section)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tour-layout-luxury .section-title-centered {
    color: var(--lux-text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

.tour-layout-luxury .section-underline {
    background: var(--lux-primary);
}

.tour-layout-luxury .hotel-card {
    background: var(--lux-surface);
    border: 1px solid var(--lux-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
}

.tour-layout-luxury .hotel-card:hover {
    border-color: var(--lux-primary);
    box-shadow: 0 20px 50px rgba(17, 82, 212, 0.12);
    transform: translateY(-6px);
}

.tour-layout-luxury .hotel-card-body {
    border-top-color: var(--lux-primary);
}

.tour-layout-luxury .hotel-name {
    color: var(--lux-text);
}

.tour-layout-luxury .hotel-city {
    color: var(--lux-primary);
}

.tour-layout-luxury .city-pin-icon {
    opacity: 0.8;
}

.tour-layout-luxury .amenity-tag {
    background: rgba(17, 82, 212, 0.06);
    border: none;
    color: var(--lux-muted);
}

.tour-layout-luxury .amenity-dot {
    background: var(--lux-primary);
}

.tour-layout-luxury .hotel-card:hover .amenity-tag {
    background: rgba(17, 82, 212, 0.10);
}

.tour-layout-luxury .hotel-star-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #f59e0b;
}

.tour-layout-luxury .hotel-star-badge em {
    color: var(--lux-text);
}

.tour-layout-luxury .hotel-view-link {
    color: var(--lux-primary);
    border-top-color: var(--lux-border);
}

.tour-layout-luxury .hotels-nav-btn {
    background: var(--lux-primary);
    color: #fff;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ SECTIONS 8â€“12 OVERRIDES (full-width bottom)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tour-layout-luxury .related-packages,
.tour-layout-luxury .tour-destinations,
.tour-layout-luxury .tour-reviews,
.tour-layout-luxury .tour-instagram,
.tour-layout-luxury .tour-blogs {
    background: var(--lux-surface2);
}

/* Package Cards */
.tour-layout-luxury .pkg-card {
    background: var(--lux-surface);
    border: 1px solid var(--lux-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.tour-layout-luxury .pkg-title a {
    color: var(--lux-text);
}

.tour-layout-luxury .pkg-title a:hover {
    color: var(--lux-primary);
}

.tour-layout-luxury .pkg-location {
    color: var(--lux-muted);
}

.tour-layout-luxury .pkg-duration-text {
    color: var(--lux-muted);
}

.tour-layout-luxury .pkg-card-footer {
    background: rgba(17, 82, 212, 0.06);
    border-top-color: var(--lux-border);
}

.tour-layout-luxury .pkg-price {
    color: var(--lux-primary);
    font-weight: 800;
}

.tour-layout-luxury .btn-view-details {
    background: var(--lux-primary);
    color: #fff;
    border: none;
    box-shadow: 0 3px 12px rgba(17, 82, 212, 0.2);
}

.tour-layout-luxury .btn-view-details:hover {
    background: #0d3fa8;
    box-shadow: 0 6px 20px rgba(17, 82, 212, 0.3);
}

.tour-layout-luxury .pkg-discount-badge {
    background: #16a34a;
}

.tour-layout-luxury .pkg-rating-badge {
    background: #f59e0b;
    color: #fff;
}

/* Destination Cards */
.tour-layout-luxury .destination-card {
    background: var(--lux-surface);
    border: 1px solid var(--lux-border);
    border-radius: 18px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tour-layout-luxury .destination-card:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
    border-color: var(--lux-primary);
}

.tour-layout-luxury .dest-name {
    color: var(--lux-text);
}

.tour-layout-luxury .dest-description {
    color: var(--lux-muted);
}

.tour-layout-luxury .dest-pkg-overlay {
    background: rgba(255, 255, 255, 0.92);
    color: var(--lux-primary);
}

.tour-layout-luxury .dest-explore-link {
    color: var(--lux-primary);
    background: none;
    box-shadow: none;
    padding: 0;
}

.tour-layout-luxury .destination-card:hover .dest-explore-link {
    color: #0d3fa8;
    border-bottom-color: #0d3fa8;
}

.tour-layout-luxury .review-card {
    background: var(--lux-surface);
    border: 1px solid var(--lux-border);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.tour-layout-luxury .review-accent-bar {
    background: linear-gradient(90deg, var(--lux-primary) 0%, #6dd5ed 50%, #f59e0b 100%);
}

.tour-layout-luxury .review-card-footer {
    background: rgba(17, 82, 212, 0.03);
    border-top-color: var(--lux-border);
}

.tour-layout-luxury .reviewer-name {
    color: var(--lux-primary);
}

.tour-layout-luxury .reviewer-dest {
    color: var(--lux-muted);
}

.tour-layout-luxury .rv-star-filled {
    color: #f59e0b;
}

.tour-layout-luxury .rv-star-empty {
    color: #444;
}

.tour-layout-luxury .review-text {
    color: var(--lux-muted);
}

.tour-layout-luxury .review-quote-icon svg {
    fill: var(--lux-primary);
}

.tour-layout-luxury .instagram-post-card {
    background: var(--lux-surface);
    border-color: var(--lux-border);
}

.tour-layout-luxury .ig-handle {
    color: var(--lux-text);
}

.tour-layout-luxury .ig-followers {
    color: var(--lux-muted);
}

.tour-layout-luxury .tour-blogs {
    background: var(--lux-surface2);
}

.tour-layout-luxury .blog-featured {
    background: var(--lux-surface);
}

.tour-layout-luxury .blog-featured-title a {
    color: var(--lux-text);
}

.tour-layout-luxury .blog-secondary-item {
    background: var(--lux-surface);
    border: 1px solid var(--lux-border);
}

.tour-layout-luxury .blog-sec-title a {
    color: var(--lux-text);
}

.tour-layout-luxury .blogs-main-title {
    color: var(--lux-text);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAYOUT 2 â€“ RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Tablet (â‰¤1024px) â”€â”€ */
@media (max-width: 1024px) {
    .lux-two-col {
        flex-direction: column;
        gap: 24px;
    }

    .lux-sidebar-col {
        width: 100%;
        min-width: 0;
    }

    .lux-sidebar-sticky {
        position: static;
    }

    .lux-hero {
        height: 450px;
    }

    .lux-hero-title {
        font-size: 36px;
    }

    .lux-container {
        padding: 0 20px;
    }

    .lux-hero-inner {
        padding: 0 20px 36px;
    }

    /* Constrain all inner elements */
    .lux-main-col,
    .lux-sidebar-col,
    .lux-info-strip,
    .lux-section,
    .lux-sidebar-card {
        max-width: 100%;
    }
}

/* â”€â”€ Mobile (â‰¤768px) â”€â”€ */
@media (max-width: 768px) {

    /* Container */
    .lux-container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }

    /* Constrain all children */
    .lux-main-col,
    .lux-sidebar-col,
    .lux-info-strip,
    .lux-section,
    .lux-sidebar-card,
    .lux-itin-accordion,
    .lux-itin-item,
    .tour-layout-luxury .lux-inc-exc-grid,
    .tour-layout-luxury .lux-policy-list,
    .tour-layout-luxury .lux-faq-accordion,
    .lux-highlights-list,
    .lux-overview-text {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* Hero */
    .lux-hero {
        height: 420px;
        width: 100%;
    }

    .lux-hero-inner {
        padding: 0 16px 24px;
        max-width: 100%;
    }

    .lux-hero-title {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .lux-hero-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .lux-hero-text {
        min-width: unset;
    }

    .lux-hero-meta {
        gap: 8px;
    }

    .lux-hero-badge {
        font-size: 13px;
    }

    .lux-hero-price-card {
        min-width: unset;
        width: 100%;
        padding: 16px;
        border-radius: 10px;
    }

    .lux-hpc-price {
        font-size: 24px;
    }

    .lux-hpc-per {
        font-size: 12px;
    }

    .lux-hpc-label {
        font-size: 12px;
    }

    .lux-hpc-old {
        font-size: 13px;
    }

    .lux-breadcrumb {
        font-size: 12px;
        margin-bottom: 12px;
    }

    /* Info Strip */
    .lux-info-strip {
        grid-template-columns: repeat(3, 1fr);
        padding: 14px 12px;
        margin-top: -24px;
        border-radius: 10px;
        gap: 0;
    }

    .lux-strip-item {
        border-right: none;
        border-bottom: 1px solid var(--lux-border);
        padding: 10px 6px;
    }

    .lux-strip-item:nth-last-child(-n+3) {
        border-bottom: none;
    }

    .lux-strip-icon {
        font-size: 16px;
    }

    .lux-strip-label {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .lux-strip-value {
        font-size: 12px;
    }

    /* Two Column & Sections */
    .lux-two-col {
        padding: 24px 0;
        gap: 24px;
        max-width: 100%;
    }

    .lux-section {
        margin-bottom: 32px;
        max-width: 100%;
    }

    /* Headings */
    .lux-heading {
        font-size: 20px;
        gap: 6px;
    }

    .lux-heading-icon {
        font-size: 18px;
    }

    /* Overview */
    .tour-layout-luxury .lux-overview-text {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Package Highlights */
    .tour-layout-luxury .lux-highlights-list li {
        font-size: 13px;
        gap: 8px;
    }

    /* Itinerary Accordion */
    .lux-itin-accordion {
        gap: 8px;
    }

    .lux-itin-trigger {
        padding: 14px 16px;
        gap: 10px;
    }

    .lux-itin-day-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .lux-itin-title {
        font-size: 14px;
    }

    .lux-itin-body {
        padding: 16px;
    }

    .lux-itin-desc {
        font-size: 13px;
    }

    .lux-itin-hl-tag {
        font-size: 10px;
        padding: 3px 8px;
    }

    /* Inclusions / Exclusions */
    .tour-layout-luxury .lux-inc-exc-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tour-layout-luxury .lux-inc-card,
    .tour-layout-luxury .lux-exc-card {
        padding: 18px;
    }

    /* Policies */
    .tour-layout-luxury .lux-policy-card {
        padding: 18px 16px;
    }

    .tour-layout-luxury .lux-policy-title {
        font-size: 15px;
    }

    /* FAQ */
    .tour-layout-luxury .lux-faq-trigger {
        padding: 14px 16px;
    }

    .tour-layout-luxury .lux-faq-question {
        font-size: 13px;
    }

    .tour-layout-luxury .lux-faq-answer {
        padding: 0 16px 16px 16px;
        font-size: 12px;
    }

    /* Sidebar Card */
    .lux-sidebar-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .lux-sidebar-form-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    /* Form */
    .lux-form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .lux-form-group {
        margin-bottom: 14px;
    }

    .tour-layout-luxury .lux-form input,
    .tour-layout-luxury .lux-form select,
    .tour-layout-luxury .lux-form textarea {
        padding: 11px 12px;
        font-size: 14px;
    }

    .tour-layout-luxury .btn-callback-submit {
        padding: 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    .lux-form-disclaimer {
        font-size: 10px;
    }

    /* Trust */
    .lux-trust-section {
        margin-top: 24px;
        padding-top: 24px;
    }

    .lux-trust-item {
        font-size: 12px;
        gap: 10px;
    }

    /* WhatsApp */
    .lux-sidebar-wa {
        padding: 12px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* Hotels scroll */
    .tour-layout-luxury .hotels-scroll-wrapper {
        margin: 0;
        padding: 0;
        overflow-x: auto;
        max-width: 100%;
    }

    .tour-layout-luxury .hotels-carousel {
        padding: 8px 2px;
    }

    /* Bottom full-width sections */
    .tour-layout-luxury .related-packages,
    .tour-layout-luxury .tour-destinations,
    .tour-layout-luxury .tour-reviews,
    .tour-layout-luxury .tour-instagram,
    .tour-layout-luxury .tour-blogs {
        padding: 32px 0;
        max-width: 100%;
    }

    .tour-layout-luxury .related-packages .container,
    .tour-layout-luxury .tour-destinations .container,
    .tour-layout-luxury .tour-reviews .container,
    .tour-layout-luxury .tour-instagram .container,
    .tour-layout-luxury .tour-blogs .container {
        padding: 0 16px;
        box-sizing: border-box;
        max-width: 100%;
    }

    .tour-layout-luxury .lux-fullwidth-sections {
        width: 100%;
        max-width: 100%;
    }

    .tour-layout-luxury .packages-slider-wrapper,
    .tour-layout-luxury .reviews-slider-wrapper,
    .tour-layout-luxury .destinations-grid,
    .tour-layout-luxury .instagram-grid {
        max-width: 100%;
    }

    .tour-layout-luxury .packages-slider,
    .tour-layout-luxury .reviews-slider {
        overflow-x: auto;
    }
}

/* â”€â”€ Small Mobile (â‰¤480px) â”€â”€ */
@media (max-width: 480px) {

    /* Hero */
    .lux-hero {
        height: 360px;
    }

    .lux-hero-inner {
        padding: 0 12px 20px;
    }

    .lux-hero-title {
        font-size: 22px;
    }

    .lux-hero-meta {
        font-size: 12px;
    }

    .lux-hero-price-card {
        padding: 14px;
    }

    .lux-hpc-price {
        font-size: 22px;
    }

    .lux-hpc-actions {
        flex-direction: row;
    }

    .lux-hpc-wa {
        width: 40px;
        height: 40px;
    }

    .lux-hpc-gallery {
        padding: 10px 14px;
        font-size: 13px;
    }

    .lux-breadcrumb {
        font-size: 11px;
    }

    /* Container */
    .lux-container {
        padding: 0 12px;
        width: 100%;
    }

    /* Hero */
    .lux-hero-inner {
        max-width: 100%;
    }

    /* Info Strip */
    .lux-info-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -20px;
        padding: 12px 10px;
    }

    .lux-strip-item {
        padding: 8px 4px;
    }

    .lux-strip-item:nth-last-child(-n+3) {
        border-bottom: 1px solid var(--lux-border);
    }

    .lux-strip-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .lux-strip-value {
        font-size: 11px;
    }

    .lux-strip-label {
        font-size: 8px;
    }

    /* Sections */
    .lux-two-col {
        padding: 20px 0;
        gap: 20px;
    }

    .lux-section {
        margin-bottom: 28px;
    }

    .lux-heading {
        font-size: 18px;
    }

    /* Sidebar */
    .lux-sidebar-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .lux-sidebar-form-title {
        font-size: 17px;
        margin-bottom: 16px;
    }

    /* Itinerary */
    .lux-itin-trigger {
        padding: 12px 14px;
        gap: 8px;
    }

    .lux-itin-day-badge {
        font-size: 9px;
        padding: 3px 8px;
    }

    .lux-itin-title {
        font-size: 13px;
    }

    .lux-itin-body {
        padding: 14px;
    }

    /* Inclusions */
    .tour-layout-luxury .lux-inc-card,
    .tour-layout-luxury .lux-exc-card {
        padding: 14px;
    }

    .tour-layout-luxury .lux-inc-card h3,
    .tour-layout-luxury .lux-exc-card h3 {
        font-size: 14px;
    }

    .tour-layout-luxury .lux-inc-list li,
    .tour-layout-luxury .lux-exc-list li {
        font-size: 12px;
    }

    /* FAQ */
    .tour-layout-luxury .lux-faq-trigger {
        padding: 12px 14px;
    }

    .tour-layout-luxury .lux-faq-question {
        font-size: 12px;
    }

    .tour-layout-luxury .lux-faq-answer {
        padding: 0 14px 14px;
        font-size: 11px;
    }

    /* Policies */
    .tour-layout-luxury .lux-policy-card {
        padding: 14px;
    }

    .tour-layout-luxury .lux-policy-title {
        font-size: 14px;
    }

    .tour-layout-luxury .lux-policy-content {
        font-size: 12px;
    }

    /* Form */
    .tour-layout-luxury .lux-form input,
    .tour-layout-luxury .lux-form select,
    .tour-layout-luxury .lux-form textarea {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 6px;
    }

    .tour-layout-luxury .btn-callback-submit {
        padding: 13px;
        font-size: 13px;
    }

    /* Bottom sections */
    .tour-layout-luxury .related-packages,
    .tour-layout-luxury .tour-destinations,
    .tour-layout-luxury .tour-reviews,
    .tour-layout-luxury .tour-instagram,
    .tour-layout-luxury .tour-blogs {
        padding: 24px 0;
        max-width: 100%;
    }

    .tour-layout-luxury .related-packages .container,
    .tour-layout-luxury .tour-destinations .container,
    .tour-layout-luxury .tour-reviews .container,
    .tour-layout-luxury .tour-instagram .container,
    .tour-layout-luxury .tour-blogs .container {
        padding: 0 12px;
        max-width: 100%;
    }

    .tour-layout-luxury .lux-fullwidth-sections {
        width: 100%;
        max-width: 100%;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ADMIN â€“ LAYOUT PICKER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.layout-picker {
    display: flex;
    gap: 24px;
}

.layout-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: border-color 0.2s, background 0.2s;
}

.layout-option:hover {
    border-color: var(--color-primary);
    background: #f0f6ff;
}

.layout-option.is-selected {
    border-color: var(--color-primary);
    background: #e8f0ff;
}

.layout-option input[type="radio"] {
    display: none;
}

.layout-preview-thumb {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.layout-option span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-align: center;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE â€“ PAGINATION DOTS (for Hotel, Package, Review sliders)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Dots â€“ hidden on desktop, visible on mobile */
.slider-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 18px 0 4px;
    flex-wrap: wrap;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dot.is-active {
    background: var(--color-primary);
    transform: scale(1.35);
}

.tour-layout-luxury .slider-dot.is-active {
    background: var(--lux-primary);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE â€“ ONE-CARD-AT-A-TIME SLIDERS (â‰¤768px)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {

    /* Show pagination dots */
    .slider-dots {
        display: flex;
    }

    /* Hide arrow buttons & labels */
    .hotels-nav-btn,
    .hotels-nav-label,
    .pkg-slider-btn,
    .reviews-nav-btn {
        display: none !important;
    }

    .hotels-nav {
        margin-top: 0;
    }

    .packages-slider-wrapper {
        gap: 0;
        padding: 0;
    }

    .reviews-slider-wrapper {
        gap: 0;
        overflow: hidden;
    }

    /* â”€â”€ Hotels Carousel (fullwidth, no container) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hotels-carousel {
        transform: none !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 12px 16px 16px;
        gap: 16px;
    }

    .hotel-card {
        width: calc(100vw - 64px) !important;
        min-width: calc(100vw - 64px) !important;
        scroll-snap-align: center;
    }

    /* â”€â”€ Packages Slider (inside .container) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .packages-slider {
        transform: none !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 12px 4px 16px;
        gap: 16px;
        flex: unset;
        width: 100%;
    }

    .pkg-card {
        width: calc(100vw - 64px) !important;
        min-width: calc(100vw - 64px) !important;
        scroll-snap-align: center;
    }

    /* â”€â”€ Reviews Slider (inside .container, already overflow-based) â”€â”€ */
    .reviews-slider {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 12px 4px 16px;
        gap: 16px;
    }

    .review-card {
        width: calc(100vw - 64px) !important;
        min-width: calc(100vw - 64px) !important;
        scroll-snap-align: center;
    }
}

/* â”€â”€ Small Mobile (â‰¤480px) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 480px) {

    .hotel-card,
    .pkg-card,
    .review-card {
        width: calc(100vw - 48px) !important;
        min-width: calc(100vw - 48px) !important;
    }

    .hotels-carousel,
    .packages-slider,
    .reviews-slider {
        padding: 10px 12px 14px;
        gap: 12px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dots {
        gap: 6px;
        padding: 14px 0 4px;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LUXURY TEMPLATE â€“ MOBILE OVERFLOW FIX
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tour-layout-luxury {
    overflow-x: hidden;
    max-width: 100vw;
}

.lux-fullwidth-sections {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Ensure all fullwidth sections stay within bounds */
.tour-layout-luxury .tour-hotels,
.tour-layout-luxury .related-packages,
.tour-layout-luxury .tour-reviews,
.tour-layout-luxury .tour-destinations,
.tour-layout-luxury .tour-instagram,
.tour-layout-luxury .tour-blogs {
    overflow: hidden;
    max-width: 100vw;
}

@media (max-width: 768px) {
    .tour-layout-luxury .hotels-scroll-wrapper {
        overflow: hidden;
        max-width: 100%;
    }

    .tour-layout-luxury .packages-slider-wrapper {
        overflow: hidden;
        max-width: 100%;
    }

    .tour-layout-luxury .reviews-slider-wrapper {
        overflow: hidden;
        max-width: 100%;
    }

    /* Ensure lux hero doesn't cause overflow */
    .lux-hero {
        max-width: 100vw;
    }

    .lux-hero-inner {
        box-sizing: border-box;
    }

    .lux-info-strip {
        box-sizing: border-box;
        max-width: calc(100vw - 32px);
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STICKY BOTTOM BAR â€“ "Get Quote / Book Now" (Mobile Only)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hidden on desktop/laptop */
.tour-sticky-bar {
    display: none;
}

/* Show only on mobile/tablet (â‰¤ 768px) */
@media (max-width: 768px) {
    .tour-sticky-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: linear-gradient(to right, #fff 0%, #f8fbff 100%);
        border-top: none;
        box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.12);
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .tour-sticky-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #0b8fa8, #1a6faf, #0b8fa8);
    }

    .tour-sticky-bar.is-visible {
        transform: translateY(0);
    }

    .tour-sticky-bar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        gap: 12px;
    }

    /* Left: Price info */
    .tour-sticky-bar-price {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .sticky-bar-label {
        font-size: 10px;
        font-weight: 700;
        color: #777;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .sticky-bar-amount {
        font-size: 22px;
        font-weight: 900;
        color: #1a2a5e;
        line-height: 1.1;
    }

    .sticky-bar-gst {
        font-size: 10px;
        color: #aaa;
        font-weight: 500;
    }

    /* Right: Book Now button */
    .tour-sticky-bar-btn {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #0b8fa8 0%, #1a6faf 100%);
        color: #fff;
        text-decoration: none;
        border-radius: 10px;
        padding: 10px 28px;
        min-width: 135px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 14px rgba(11, 143, 168, 0.3);
        position: relative;
        overflow: hidden;
    }

    .tour-sticky-bar-btn::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg,
                transparent 40%,
                rgba(255, 255, 255, 0.15) 50%,
                transparent 60%);
        animation: stickyBtnShine 3s ease-in-out infinite;
    }

    @keyframes stickyBtnShine {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(100%);
        }
    }

    .tour-sticky-bar-btn:active {
        transform: scale(0.97);
        box-shadow: 0 2px 8px rgba(11, 143, 168, 0.25);
    }

    .tour-sticky-bar-btn:hover {
        color: #fff;
    }

    .sticky-btn-text {
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 1.2px;
        line-height: 1.3;
        position: relative;
        z-index: 1;
    }

    .sticky-btn-sub {
        font-size: 11px;
        font-weight: 500;
        opacity: 0.9;
        line-height: 1.2;
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .tour-sticky-bar-inner {
        padding: 10px 12px;
    }

    .sticky-bar-amount {
        font-size: 20px;
    }

    .tour-sticky-bar-btn {
        padding: 9px 20px;
        min-width: 120px;
        border-radius: 8px;
    }

    .sticky-btn-text {
        font-size: 13px;
    }

    .sticky-btn-sub {
        font-size: 10px;
    }
}

/* Card Redesign Matching Screenshot (tmk-pkg-card) */
.tmk-pkg-card {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s cubic-bezier(.4, 0, .2, 1);
    height: 100%;
}

.tmk-pkg-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.tmk-card-image-wrap {
    position: relative;
    padding: 12px 12px 0 12px;
}

.tmk-card-image-wrap img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.tmk-image-arrows {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.tmk-arr {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.tmk-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tmk-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tmk-tag {
    background: #f4f7f9;
    color: #1a6faf;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.tmk-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #333;
    line-height: 1.3;
}

.tmk-title a {
    color: inherit;
    text-decoration: none;
}

.tmk-routing {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    font-weight: 500;
}

.tmk-route-plus {
    color: #1a6faf;
    font-weight: 700;
}

.tmk-amenities {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.tmk-am {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tmk-am-icon-wrap {
    position: relative;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tmk-am-flight {
    background: #f4f8fc;
}

.tmk-am-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #000;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 2px;
    white-space: nowrap;
}

.tmk-am-label {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    margin-top: 6px;
}

.tmk-divider {
    border-top: 1px dashed #dcdcdc;
    margin: auto 0 16px 0;
}

.tmk-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tmk-old-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.tmk-price-old {
    text-decoration: line-through;
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

.tmk-badge-off {
    background: #ff6b00;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.tmk-cur-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.tmk-price-cur {
    font-size: 18px;
    font-weight: 800;
    color: #333;
}

.tmk-price-txt {
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

.tmk-btn {
    background: #114fb0;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.tmk-btn:hover {
    background: #0d3d8c;
    color: #fff;
    transform: translateY(-2px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UPDATED CUSTOM STYLES PER REQUIREMENTS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Section Background Colors & Professional Padding */
.tour-hero-wrapper {
    background-color: #ffffff !important;
    padding-bottom: 40px !important;
}

#overview {
    background-color: #fdf7ee !important;
}

#policies {
    background-color: #fdf7ee !important;
    padding-top: 29px !important;
}

/* Professional Headings styling */
.section-heading,
.section-title-centered,
.tour-section-title,
.blogs-main-title {
    color: #000000 !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    margin-bottom: 40px !important;
    position: relative;
    padding-bottom: 12px;
}

/* Elegant decorative indicator for section titles */
.section-heading::after,
.section-title-centered::after,
.tour-section-title::after,
.blogs-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #0b8fa8;
    /* Theme accent color */
    border-radius: 4px;
}

/* Center the indicator for centered titles */
.section-title-centered::after,
.tour-section-title::after,
.blogs-main-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Fix Recently Published Packages Slider */
.packages-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 28px;
    transition: transform 0.3s ease;
}

.packages-slider .pkg-card,
.packages-slider .tmk-pkg-card {
    flex: 0 0 340px;
    width: 340px;
    max-width: 100vw;
}

/* Beautiful Blog Featured Styling */
.blog-featured {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.blog-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-featured-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 0.6s ease;
}

.blog-featured:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-featured-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-featured-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-featured-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 16px 0;
    text-transform: capitalize;
}

.blog-featured-title a {
    color: #1a2a5e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-featured-title a:hover {
    color: #0b8fa8;
}

.blog-featured-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Secondary list styling adjustments */
.blog-secondary-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-secondary-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.blog-secondary-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-sec-thumb {
    width: 130px;
    flex: 0 0 130px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-sec-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 0.5s ease;
}

.blog-secondary-item:hover .blog-sec-thumb img {
    transform: scale(1.08);
}

.blog-sec-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-sec-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 6px 0;
    text-transform: capitalize;
}

.blog-sec-title a {
    color: #1a2a5e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-secondary-item:hover .blog-sec-title a {
    color: #0b8fa8;
}

.blog-sec-meta {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.blog-sec-time {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blogs-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .blogs-layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MAGAZINE BLOG SECTION
   ========================================================================== */
.section-magazine-wrap {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-eyebrow {
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary, #1D7A55);
    margin-bottom: 8px;
}

.section-title {
    text-align: center;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    color: var(--color-dark, #1A1917);
    margin-bottom: 6px;
    line-height: 1.15;
}

.section-underline {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--color-primary, #1D7A55);
    border-radius: 4px;
    margin: 0 auto 2.5rem;
}

/* ── Magazine layout ── */
.blog-magazine {
    display: grid;
    grid-template-columns: 1fr 380px;
    border: 1px solid var(--color-border, #E4E0D8);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(26, 25, 23, 0.07);
}

/* ── Featured / left panel ── */
.featured {
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px 0 0 16px;
}

.featured-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}

.featured:hover .featured-bg {
    transform: scale(1.04);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 8, 0.82) 0%, rgba(10, 10, 8, 0.30) 55%, rgba(10, 10, 8, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--color-primary, #1D7A55);
    color: #fff;
    padding: 5px 11px;
    border-radius: 20px;
}

.featured-content {
    position: relative;
    z-index: 2;
}

.featured-cat {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
}

.featured-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
}

.featured-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 440px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.featured-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 9px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: var(--font-primary, sans-serif);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.read-more-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ── Sidebar / right panel ── */
.sidebar {
    border-left: 1px solid var(--color-border, #E4E0D8);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--color-border, #E4E0D8);
}

.sidebar-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #A09C96;
}

.side-item {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--color-border, #E4E0D8);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.side-item:last-child {
    border-bottom: none;
}

.side-item:hover {
    background: #F9F7F3;
}

.side-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.side-item:hover .side-thumb img {
    transform: scale(1.06);
}

.side-thumb.g1 {
    background: linear-gradient(135deg, #B5D4F4, #378ADD);
}

.side-thumb.g2 {
    background: linear-gradient(135deg, #FAC775, #BA7517);
}

.side-thumb.g3 {
    background: linear-gradient(135deg, #E8D4F0, #9B5DB8);
}

.side-info {
    flex: 1;
    min-width: 0;
}

.side-cat {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary, #1D7A55);
    margin-bottom: 4px;
}

.side-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text, #1A1917);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #A09C96;
}

.side-meta-dot {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #A09C96;
}

/* ── View all link ── */
.view-all-wrap {
    text-align: center;
    margin-top: 1.5rem;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary, #1D7A55);
    text-decoration: none;
    padding: 10px 22px;
    border: 1px solid var(--color-primary, #1D7A55);
    border-radius: 30px;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-all:hover {
    background: var(--color-primary, #1D7A55);
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .blog-magazine {
        grid-template-columns: 1fr;
    }

    .sidebar {
        border-left: none;
        border-top: 1px solid var(--color-border, #E4E0D8);
    }

    .featured {
        min-height: 340px;
        border-radius: 16px 16px 0 0;
    }
}

@media (max-width: 480px) {
    .featured {
        min-height: 280px;
        padding: 20px;
    }

    .side-thumb {
        width: 60px;
        height: 60px;
    }
}

/* ==========================================================================
   TOUR SINGLE — REVIEWS SLIDER SECTION
   ========================================================================== */
.tour-reviews {
    padding: 48px 0;
    background: var(--color-bg-light, #f4f6f9);
}

.tour-reviews .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Slider wrapper */
.reviews-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0;
    flex: 1;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

/* Nav buttons */
.reviews-nav-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border, #e0e0e0);
    background: #fff;
    color: var(--color-text, #444);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 2;
}

.reviews-nav-btn:hover {
    background: var(--color-primary, #0b8fa8);
    color: #fff;
    border-color: var(--color-primary, #0b8fa8);
    box-shadow: 0 4px 14px rgba(11, 143, 168, 0.25);
}

/* ── Review Card ── */
.review-card {
    min-width: 320px;
    max-width: 380px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.review-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary, #0b8fa8), var(--color-accent, #1a6faf));
}

.review-card-inner {
    padding: 20px 22px 16px;
    flex: 1;
}

.review-quote-icon {
    margin-bottom: 8px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text, #444);
    margin: 0 0 14px;
}

/* ── Star Ratings ── */
.review-stars-row {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.rv-star-filled {
    color: #F5A623;
    font-size: 16px;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(245, 166, 35, 0.3));
}

.rv-star-empty {
    color: #D1D5DB;
    font-size: 16px;
    line-height: 1;
}

/* ── Card Footer ── */
.review-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px 18px;
    border-top: 1px solid #f0f0f0;
}

.review-avatar-wrap {
    flex-shrink: 0;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-avatar--placeholder {
    background: linear-gradient(135deg, var(--color-primary, #0b8fa8), var(--color-accent, #1a6faf));
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark, #1a2a5e);
}

.reviewer-dest {
    font-size: 12px;
    color: var(--color-muted, #888);
}

/* Slider dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.25s ease;
}

.slider-dots .dot.active {
    background: var(--color-primary, #0b8fa8);
    transform: scale(1.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .review-card {
        min-width: 280px;
        max-width: 320px;
    }

    .reviews-nav-btn {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 480px) {
    .review-card {
        min-width: 260px;
        max-width: 290px;
    }

    .reviews-nav-btn {
        display: none;
    }

    .tour-reviews {
        padding: 32px 0;
    }
}