/* ==========================================================================
   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-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;
    font-size: 22px; 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: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: #d0cecaa6; border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex; flex-direction: column;
}

.price-card-topbar {
    background: linear-gradient(135deg, #0b8fa8 0%, #1a6faf 100%);
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px;
    border-radius: 10px;
    margin: 12px 12px 0;
}
.duration-label { 
    color: #fff; font-size: 15px; font-weight: 700;
    letter-spacing: 0.3px;
}
.featured-badge {
    background: #fff;
    color: var(--color-primary); font-size: 11px; font-weight: 800;
    padding: 5px 16px; border-radius: 4px; letter-spacing: 1px;
    text-transform: uppercase;
}

.price-card-title {
    font-size: 22px; font-weight: 700; color: var(--color-primary);
    padding: 16px 16px 4px; margin: 0; line-height: 1.35;
}
.price-card-location { 
    font-size: 14px; color: #555; padding: 0 16px 14px; margin: 0;
    line-height: 1.4;
}

.price-box {
    margin: 0 16px 14px;
    background: #fff; border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid #e8edf2;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.price-row { 
    display: flex; align-items: baseline; justify-content: center;
    gap: 10px; margin-bottom: 4px; 
}
.price-current { font-size: 34px; font-weight: 800; color: #d9534f; }
.price-row-secondary {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-bottom: 8px;
}
.price-original { font-size: 15px; color: #999; text-decoration: line-through; }
.price-discount { 
    color: #28a745; font-size: 13px; font-weight: 700;
    background: transparent; padding: 0;
}
.price-meta { font-size: 13px; color: #555; line-height: 1.7; }
.price-total { color: #d9534f; }
.price-total strong { color: #d9534f; font-weight: 700; }

.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: 14px 16px;
    margin-top: auto;
}
.amenity-icon { 
    text-align: center;
    width: 44px; height: 44px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
}
.amenity-icon:hover {
    background: var(--color-primary);
}
.amenity-icon:hover .amenity-emoji {
    filter: brightness(10);
}
.amenity-emoji { font-size: 19px; color: var(--color-primary); transition: filter 0.25s; }

.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; font-size: 18px; }
    .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; font-size: 16px; }
    .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: 40px 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: linear-gradient(160deg, #eef6f8 0%, #f4f6f9 100%); padding: 48px 0; }

.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: 56px 0 64px; 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; font-size: 22px; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.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; }
    .tour-hotels { padding: 40px 0 48px; }
}
@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: 60px 0 68px; background: linear-gradient(180deg, #fff9f4 0%, #fef5ee 100%); }
.packages-slider-wrapper { display: flex; align-items: center; gap: 16px; }
.packages-slider { display: flex; gap: 28px; overflow: hidden; flex: 1; transition: transform 0.4s ease; padding: 20px 4px 24px; }
.pkg-slider-btn {
    width: 46px; height: 46px; border-radius: 50%;
    border: 2px solid #e87c1e; background: #fff;
    font-size: 22px; cursor: pointer; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease; color: #e87c1e;
}
.pkg-slider-btn:hover {
    background: #e87c1e; color: #fff;
    transform: scale(1.1); border-color: #e87c1e;
}

/* ── 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: #e87c1e; color: #fff;
    font-size: 15px; font-weight: 800;
    padding: 6px 14px; border-radius: 10px;
    box-shadow: 0 4px 14px rgba(232,124,30,0.35);
    letter-spacing: 0.3px;
}
.pkg-price-badge em {
    font-style: normal; font-size: 10px; font-weight: 600;
    opacity: 0.85;
}

/* Card Body – full details */
.pkg-card--full .pkg-card-body {
    padding: 20px 22px 16px; flex: 1; display: flex; flex-direction: column;
    border-top: 3px solid #e87c1e;
}
.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: #e87c1e; }

/* Location */
.pkg-card--full .pkg-location {
    font-size: 12.5px; color: #c96a12; margin: 0 0 10px;
    display: flex; align-items: center; gap: 4px;
    font-weight: 600;
}

/* 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: #e87c1e; 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: #e87c1e;
}
.pkg-highlight-tag--more {
    background: #e87c1e; color: #fff; font-weight: 700;
}
.pkg-card--full:hover .pkg-highlight-tag { background: #ffe8cc; }
.pkg-card--full:hover .pkg-highlight-tag--more { background: #d4690c; }

/* Card Footer — Price & CTA */
.pkg-card--full .pkg-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 14px 22px 18px;
    background: transparent;
    border-top: 1px solid #eef0f3;
    margin-top: auto;
}
.pkg-card--full .pkg-price-block { display: flex; flex-direction: column; }
.pkg-card--full .pkg-price-label {
    font-size: 10px; font-weight: 600; color: #999;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.pkg-card--full .pkg-price {
    font-size: 20px; font-weight: 900; color: #c96a12; 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: 6px;
    background: #e87c1e; 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(232,124,30,0.3);
}
.pkg-view-btn:hover {
    background: #d4690c; color: #fff;
    transform: translateY(-1px); gap: 10px;
    text-decoration: none;
}
.pkg-view-btn svg { transition: transform 0.3s ease; }
.pkg-card--full:hover .pkg-view-btn svg { transform: translateX(3px); }

/* 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-info-grid { grid-template-columns: 1fr; gap: 6px; padding: 10px; }
    .pkg-view-btn { padding: 8px 16px; font-size: 12px; }
    .related-packages { padding: 44px 0 48px; }
    .pkg-slider-btn { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
    .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-view-btn { justify-content: center; }
    .related-packages { padding: 36px 0 40px; }
    .pkg-description { -webkit-line-clamp: 1; }
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION 9 – EXPLORE OUR DESTINATIONS
═══════════════════════════════════════════════════════════════════ */

.tour-destinations {
    background: linear-gradient(180deg, #fdf7ee 0%, #f5ead6 100%);
    padding: 64px 0 76px;
}
.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: 40px 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; font-size: 22px; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background 0.2s;
}
.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%;
    font-size: 28px; line-height: 1;
    cursor: pointer; z-index: 5;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.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; }
    .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;
    }
}