/* =============================================================================
   package-details.css — Tour Detail Page Styles
   Leorah Ceylon Travels  | White Theme — v4.0.0
   Uses ONLY variables from main.css PLUS page-scoped white tokens below.
   No changes to main.css required.
   =============================================================================

   SECTIONS
   0.  White Theme Tokens (self-contained)
   1.  Loading Overlay
   2.  Hero — Full-Screen Image
   3.  Hero — Frosted Booking Sidebar
   4.  Hero Content & Typography
   5.  Hero Buttons
   6.  Slide Info Overlay
   7.  Quick Facts Bar
   8.  Tour Overview Section
   9.  Overview Slideshow
  10.  Itinerary / Day Cards
  11.  Pagination
  12.  Responsive
   ============================================================================= */

/* ─── 0. WHITE THEME TOKENS — self-contained ─────────────────────────────── */

:root {
  --pd-bg-white:        #ffffff;
  --pd-bg-warm-light:   #faf8f5;
  --pd-bg-warm-cream:   #f5f0e8;
  --pd-bg-warm-dark:    #1a120a;
  --pd-border-warm:     #e8e0d4;
  --pd-text-primary:    #1c140c;
  --pd-text-secondary:  #4a3f34;
  --pd-text-muted:      #8b7d6e;
  --pd-gold-dark:       #a07820;
  --pd-gold-light:      #e8b84b;
  --pd-green:           #2e7d52;
  --pd-error:           #c0392b;
  --pd-green-rgb:       46, 125, 82;
  --pd-shadow-sm:       0 1px 4px rgba(100, 75, 40, 0.08);
  --pd-shadow-card:     0 2px 16px rgba(100, 75, 40, 0.10);
  --pd-shadow-lg:       0 8px 32px rgba(100, 75, 40, 0.14);
}


/* ─── 1. LOADING OVERLAY ──────────────────────────────────────────────────── */

.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pd-bg-white);
    transition: opacity 0.5s ease;
}
.loading-overlay:not(.active) {
    pointer-events: none;
    opacity: 0;
}
.loading-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--pd-border-warm);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: pd-spin 0.8s linear infinite;
}
@keyframes pd-spin { to { transform: rotate(360deg); } }

.hero-loading {
    opacity: 0.5;
    animation: pd-pulse 1.4s ease-in-out infinite alternate;
}
@keyframes pd-pulse {
    from { opacity: 0.4; }
    to   { opacity: 0.8; }
}


/* ─── 2. HERO — FULL-SCREEN IMAGE ────────────────────────────────────────── */

.tour-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--pd-bg-warm-dark);
}

.lazzora-hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.lazzora-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}
.lazzora-hero-slide.active { opacity: 1; }

/* Gradient overlay — darker on left for text legibility */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(12, 8, 4, 0.82) 0%,
        rgba(12, 8, 4, 0.62) 50%,
        rgba(12, 8, 4, 0.40) 100%
    );
    z-index: 2;
}

/* Layout container — text left, sidebar right */
.hero-layout {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: stretch;
    min-height: 92vh;
}
.hero-layout__inner {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0;
}


/* ─── 3. HERO — FROSTED BOOKING SIDEBAR ──────────────────────────────────── */

.hero-sidebar {
    flex-shrink: 0;
    width: 360px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--pd-border-warm);
    padding: var(--spacing-10) var(--spacing-7);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-5);
    overflow-y: auto;
    box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}

.sidebar-eyebrow {
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--pd-gold-dark);
    margin-bottom: 2px;
}
.sidebar-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    color: var(--pd-text-primary);
    line-height: 1.25;
    margin-bottom: var(--spacing-4);
}

/* Info chips */
.sidebar-chips {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-2);
}
.sidebar-chip {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: 10px var(--spacing-4);
    background: var(--pd-bg-warm-light);
    border: 1px solid var(--pd-border-warm);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: var(--pd-text-secondary);
}
.sidebar-chip i {
    color: var(--color-gold);
    font-size: var(--text-base);
    width: 18px;
    flex-shrink: 0;
}
.sidebar-chip strong {
    color: var(--pd-text-primary);
    font-weight: var(--font-weight-semibold);
}

.sidebar-divider {
    height: 1px;
    background: var(--pd-border-warm);
    margin: 2px 0;
}

/* CTA buttons stacked */
.sidebar-cta-stack {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    margin-top: 2px;
}
.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: 12px var(--spacing-5);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--ls-wide);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    width: 100%;
}
.sidebar-btn--primary {
    background: var(--gradient-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}
.sidebar-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--color-white);
    opacity: 0.93;
}
.sidebar-btn--whatsapp {
    background: var(--pd-bg-white);
    color: #25D366;
    border: 2px solid #25D366;
}
.sidebar-btn--whatsapp:hover {
    background: #25D366;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.sidebar-btn--outline {
    background: transparent;
    color: var(--pd-text-secondary);
    border: 1.5px solid var(--pd-border-warm);
}
.sidebar-btn--outline:hover {
    border-color: var(--color-gold);
    color: var(--pd-gold-dark);
    background: rgba(var(--color-gold-rgb), 0.05);
    transform: translateY(-1px);
}

/* Trust line */
.sidebar-trust {
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    color: var(--pd-text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 2px;
}
.sidebar-trust i { color: var(--color-gold); font-size: 12px; }


/* ─── 4. HERO CONTENT & TYPOGRAPHY ───────────────────────────────────────── */

.hero-content {
    flex: 1;
    padding: 72px var(--spacing-10) 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.tour-code-display {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    padding: 5px 14px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
}

.tour-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.08;
    color: var(--color-white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.40);
    margin-bottom: 14px;
}

.tour-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: var(--font-weight-regular);
    color: rgba(255,255,255,0.80);
    text-shadow: 0 1px 6px rgba(0,0,0,0.30);
    margin-bottom: 20px;
    max-width: 560px;
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: rgba(255,255,255,0.70);
    margin-bottom: 28px;
}
.tour-duration i { color: var(--pd-gold-light); }

/* Highlight chips on hero */
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-8);
}
.hero-highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    letter-spacing: var(--ls-wide);
}
.hero-highlight-chip i { color: var(--pd-gold-light); font-size: 10px; }


/* ─── 5. HERO BUTTONS ─────────────────────────────────────────────────────── */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-buttons .btn {
    padding: 11px 26px;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 0.92rem;
    border-radius: var(--radius-full);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.hero-buttons .btn-primary {
    background: var(--gradient-gold);
    border: none;
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}
.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--color-white);
}
.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.45);
    color: var(--color-white);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}
.hero-buttons .btn-outline-light:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.70);
    transform: translateY(-2px);
    color: var(--color-white);
}


/* ─── 6. SLIDE INFO OVERLAY ───────────────────────────────────────────────── */

.slide-info-overlay {
    position: absolute;
    bottom: var(--spacing-6);
    left: var(--spacing-10);
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: var(--radius-xl);
    padding: 10px var(--spacing-5);
    z-index: 4;
}
.slide-info-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
    animation: pd-dot-pulse 2s ease-in-out infinite;
}
@keyframes pd-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(0.8); }
}
.slide-info-text {
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.85);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--ls-wide);
}
.slide-info-counter {
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.55);
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
}


/* ─── 7. QUICK FACTS BAR ──────────────────────────────────────────────────── */

.quick-facts-bar {
    background: var(--pd-bg-white);
    border-bottom: 1px solid var(--pd-border-warm);
    box-shadow: var(--pd-shadow-sm);
    padding: var(--spacing-6) 0;
}
.quick-facts-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.fact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3) var(--spacing-7);
    border-right: 1px solid var(--pd-border-warm);
}
.fact-item:last-child { border-right: none; }

.fact-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: rgba(var(--color-gold-rgb), 0.08);
    border: 1px solid rgba(var(--color-gold-rgb), 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fact-icon i { color: var(--color-gold); font-size: var(--text-base); }

.fact-label {
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--pd-text-muted);
    display: block;
    margin-bottom: 2px;
}
.fact-value {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    color: var(--pd-text-primary);
}

/* Compat: old fact-card */
.fact-card {
    background: var(--pd-bg-white);
    border: 1px solid var(--pd-border-warm);
    border-radius: var(--radius-xl);
    padding: var(--spacing-6) var(--spacing-5);
    text-align: center;
    box-shadow: var(--pd-shadow-card);
    transition: box-shadow var(--transition-smooth);
}
.fact-card:hover { box-shadow: var(--pd-shadow-lg); }
.fact-card .fact-icon { margin: 0 auto var(--spacing-3); }
.fact-card .fact-value { font-size: var(--text-base); }


/* ─── 8. TOUR OVERVIEW SECTION ────────────────────────────────────────────── */

.overview-section {
    background: var(--pd-bg-warm-light);
    padding: var(--spacing-20) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: var(--font-weight-bold);
    color: var(--pd-text-primary);
    margin-bottom: var(--spacing-4);
    position: relative;
    padding-bottom: var(--spacing-4);
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-eyebrow {
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--pd-gold-dark);
    margin-bottom: var(--spacing-2);
    display: block;
}

.overview-text {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--pd-text-secondary);
    line-height: 1.80;
}

/* Inclusions / Exclusions */
.inclusions-card {
    background: var(--pd-bg-white);
    border: 1px solid var(--pd-border-warm);
    border-radius: var(--radius-xl);
    padding: var(--spacing-7);
    box-shadow: var(--pd-shadow-card);
    height: 100%;
}
.inclusions-card__title {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--pd-text-primary);
    margin-bottom: var(--spacing-4);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}
.inclusions-card__title i           { color: var(--pd-green); }
.inclusions-card__title--excluded i { color: var(--pd-error); }

.inclusions-list { list-style: none; padding: 0; margin: 0; }
.inclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: var(--pd-text-secondary);
    padding: 6px 0;
    line-height: 1.55;
    border-bottom: 1px solid var(--pd-border-warm);
}
.inclusions-list li:last-child { border-bottom: none; }
.inclusions-list li i { margin-top: 2px; flex-shrink: 0; font-size: 12px; }
.inclusions-list li .inc-icon { color: var(--pd-green); }
.inclusions-list li .exc-icon { color: var(--pd-error); }

/* Experience highlight pills */
.experience-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
    margin-top: var(--spacing-5);
}
.exp-highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: var(--spacing-2) var(--spacing-4);
    background: rgba(var(--color-gold-rgb), 0.07);
    border: 1px solid rgba(var(--color-gold-rgb), 0.18);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--pd-gold-dark);
    transition: var(--transition-smooth);
}
.exp-highlight-pill:hover {
    background: rgba(var(--color-gold-rgb), 0.13);
    border-color: rgba(var(--color-gold-rgb), 0.30);
}
.exp-highlight-pill i { font-size: 10px; }


/* ─── 9. OVERVIEW SLIDESHOW ───────────────────────────────────────────────── */

.ov-slideshow {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--pd-shadow-lg);
    background: var(--pd-bg-warm-light);
    user-select: none;
}
.ov-slides { position: relative; width: 100%; aspect-ratio: 4 / 3; cursor: pointer; }
.ov-slide  { position: absolute; inset: 0; opacity: 0; transition: opacity 0.55s ease; }
.ov-slide.active { opacity: 1; }
.ov-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ov-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 16px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.60), transparent);
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}
.ov-day {
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pd-gold-light);
    background: rgba(0,0,0,0.35);
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}
.ov-loc {
    font-size: 0.8rem;
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ov-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.90);
    color: var(--pd-text-primary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
    z-index: 5;
    box-shadow: var(--pd-shadow-sm);
}
.ov-arrow:hover {
    background: var(--pd-bg-white);
    box-shadow: var(--pd-shadow-card);
    transform: translateY(-50%) scale(1.08);
}
.ov-prev { left: 10px; }
.ov-next { right: 10px; }

.ov-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 5;
}
.ov-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition-smooth), transform var(--transition-smooth);
}
.ov-dot.active { background: var(--color-gold); transform: scale(1.25); }


/* ─── 10. ITINERARY / DAY CARDS ───────────────────────────────────────────── */

.itinerary-section {
    background: var(--pd-bg-white);
    padding: var(--spacing-20) 0;
}

.day-card {
    background: var(--pd-bg-white);
    border: 1px solid var(--pd-border-warm);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--pd-shadow-card);
    transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}
.day-card:hover {
    box-shadow: var(--pd-shadow-lg);
    transform: translateY(-2px);
}

.day-card-header {
    background: var(--pd-bg-warm-cream);
    border-bottom: 1px solid var(--pd-border-warm);
    padding: var(--spacing-5) var(--spacing-7);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-4);
}

/* Numbered day badge */
.day-number-badge {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}
.day-number-badge span {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1;
}

.day-header-content { flex: 1; }
.day-badge {
    display: inline-block;
    background: rgba(var(--color-gold-rgb), 0.10);
    color: var(--pd-gold-dark);
    border: 1px solid rgba(var(--color-gold-rgb), 0.22);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.day-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-bold);
    color: var(--pd-text-primary);
    margin-bottom: 4px;
}
.day-distance {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--pd-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.day-distance i { color: var(--color-gold); font-size: 12px; }

.day-card-body { padding: var(--spacing-7); }

.day-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--pd-shadow-card);
    margin-bottom: var(--spacing-5);
}
.day-image-wrap img { width: 100%; height: 240px; object-fit: cover; display: block; }
.day-image-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
}

.day-description {
    font-family: var(--font-primary);
    font-size: 0.93rem;
    color: var(--pd-text-secondary);
    line-height: 1.80;
    margin-bottom: var(--spacing-5);
}

.activities-box {
    background: var(--pd-bg-warm-light);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: var(--spacing-5);
}
.activities-title {
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pd-text-primary);
    margin-bottom: var(--spacing-3);
    display: flex;
    align-items: center;
    gap: 7px;
}
.activities-title i { color: var(--pd-green); }

.activities-list { list-style: none; padding: 0; margin: 0; }
.activities-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    color: var(--pd-text-secondary);
    padding: 4px 0;
    line-height: 1.55;
}
.activities-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    margin-top: 7px;
}

.accommodation-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: var(--spacing-3) var(--spacing-4);
    background: var(--pd-bg-white);
    border: 1px solid var(--pd-border-warm);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-4);
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    color: var(--pd-text-muted);
}
.accommodation-note i { color: var(--color-gold); font-size: var(--text-sm); flex-shrink: 0; }


/* ─── 11. PAGINATION ──────────────────────────────────────────────────────── */

.pagination-wrap {
    background: var(--pd-bg-white);
    border: 1px solid var(--pd-border-warm);
    border-radius: var(--radius-xl);
    padding: var(--spacing-4) var(--spacing-6);
    box-shadow: var(--pd-shadow-sm);
}
.pagination-info {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--pd-text-muted);
}

.pagination .page-link {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--pd-text-secondary);
    border: 1px solid var(--pd-border-warm);
    padding: 6px 12px;
    transition: background var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
    border-radius: var(--radius-md) !important;
    margin: 0 2px;
    background: var(--pd-bg-white);
}
.pagination .page-link:hover {
    background: rgba(var(--color-gold-rgb), 0.08);
    color: var(--pd-gold-dark);
    border-color: rgba(var(--color-gold-rgb), 0.30);
}
.pagination .page-item.active .page-link {
    background: var(--gradient-gold) !important;
    border-color: transparent !important;
    color: var(--color-white) !important;
    font-weight: var(--font-weight-semibold);
    box-shadow: var(--shadow-gold);
}
.pagination .page-item.disabled .page-link {
    color: var(--pd-text-muted);
    background: var(--pd-bg-warm-light);
    border-color: var(--pd-border-warm);
}

.pagination-jump .form-select {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--pd-text-secondary);
    border: 1px solid var(--pd-border-warm);
    border-radius: var(--radius-lg);
    padding: 6px 32px 6px 12px;
    background-color: var(--pd-bg-white);
    min-width: 160px;
}
.pagination-jump .form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(var(--color-gold-rgb), 0.12);
    outline: none;
}


/* ─── 12. RESPONSIVE ──────────────────────────────────────────────────────── */

@media (max-width: 1199.98px) {
    .tour-title { font-size: 3rem; }
    .hero-sidebar { width: 320px; }
    .hero-content { padding: 72px var(--spacing-8) 80px; }
}

@media (max-width: 991.98px) {
    .tour-hero { min-height: auto; }
    .hero-layout { min-height: auto; flex-direction: column; }
    .hero-layout__inner { flex-direction: column; }
    .hero-content {
        max-width: 100%;
        padding: 80px var(--spacing-6) var(--spacing-8);
        text-align: center;
    }
    .tour-duration { justify-content: center; }
    .hero-highlights { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .section-title::after { left: 50%; transform: translateX(-50%); }
    .slide-info-overlay { left: var(--spacing-4); right: var(--spacing-4); bottom: var(--spacing-4); }

    /* Sidebar becomes horizontal bar below hero on tablet */
    .hero-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-4);
        align-items: center;
        padding: var(--spacing-6) var(--spacing-5);
        border-left: none;
        border-top: 1px solid var(--pd-border-warm);
        box-shadow: var(--pd-shadow-sm);
        min-height: auto;
    }
    .sidebar-title   { display: none; }
    .sidebar-eyebrow { display: none; }
    .sidebar-chips   { flex-direction: row; flex-wrap: wrap; flex: 1; margin-bottom: 0; }
    .sidebar-divider { display: none; }
    .sidebar-cta-stack { flex-direction: row; margin-top: 0; flex-shrink: 0; }
    .sidebar-trust   { display: none; }

    .quick-facts-grid { flex-wrap: wrap; }
    .fact-item { width: calc(50% - 1px); border-right: none; border-bottom: 1px solid var(--pd-border-warm); }
    .fact-item:nth-child(odd) { border-right: 1px solid var(--pd-border-warm); }
    .fact-item:nth-last-child(-n+2) { border-bottom: none; }
    .day-card-body { padding: var(--spacing-5); }
    .day-card-header { padding: var(--spacing-4) var(--spacing-5); }
}

@media (max-width: 767.98px) {
    .hero-content { padding: 52px var(--spacing-4) var(--spacing-6); text-align: left; }
    .tour-title { font-size: 2.2rem; }
    .tour-duration { justify-content: flex-start; }
    .hero-highlights { justify-content: flex-start; }
    .hero-buttons { justify-content: flex-start; }
    .section-title::after { left: 0; transform: none; }
    .slide-info-overlay { display: none; }
    .hero-sidebar { flex-direction: column; align-items: stretch; }
    .sidebar-chips { flex-direction: column; }
    .sidebar-cta-stack { flex-direction: column; }
    .day-image-wrap img { height: 200px; }
    .pagination-wrap { flex-direction: column; gap: 12px; text-align: center; }
    .ov-slides { aspect-ratio: 3 / 2; }
    .ov-arrow  { width: 30px; height: 30px; font-size: 1.1rem; }
    .fact-item { width: 100%; border-right: none; }
    .fact-item:nth-child(odd) { border-right: none; }
    .fact-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--pd-border-warm); }
    .fact-item:last-child { border-bottom: none; }
}

@media (max-width: 575.98px) {
    .tour-title { font-size: 1.9rem; }
    .tour-subtitle { font-size: 1rem; }
    .day-card-header { padding: var(--spacing-4); }
    .day-card-body { padding: var(--spacing-4); }
    .inclusions-card { padding: var(--spacing-5); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
