/* Viajes y Depas — The Chakana theme (adapted) */

:root {
    --tc-red: #C8232B;
    --tc-red-dark: #6B1218;
    --tc-red-darker: #4A0C10;
    --tc-gold: #E3A01A;
    --tc-teal: #00A89B;
    --tc-green: #288846;
    --tc-orange: #D96328;
    --tc-black: #000000;
    --tc-white: #FFFFFF;

    --color-bg: #f5f5f5;
    --color-surface: var(--tc-white);
    --color-text: #1a1a1a;
    --color-muted: #5c5c5c;
    --color-gold: var(--tc-gold);
    --color-gold-hover: var(--tc-orange);
    --color-dark: var(--tc-black);
    --color-footer: var(--tc-red-dark);
    --color-border: rgba(0, 0, 0, 0.08);
    --color-wa: var(--tc-green);

    --font-body: 'Lato', Helvetica, Arial, sans-serif;
    --font-display: 'Bebas Neue', Helvetica, Arial, sans-serif;
    --container: 1320px;
    --header-h: 80px;
    --radius: 4px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: min(86%, var(--container));
    margin-inline: auto;
}

h1, h2, h3, h4,
.site-nav a,
.btn-enquire,
.btn-gold,
.section-heading h2,
.page-hero-inner h1,
.tour-card-content h3,
.tour-card-title,
.tours-catalog-title-main,
.tours-catalog-card-title,
.tour-hero-content h1,
.tour-highlight-title,
.tour-specs-card h4,
.tab-btn,
.gallery-title,
.why-card h3,
.why-card--intro h2,
.cta-banner h2,
.site-footer h4,
.content-block h2 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.04em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.15; }
h3 { font-size: 1.125rem; }

/* ===== HEADER ===== */
.site-header {
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.15rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: background 0.35s ease, padding 0.35s ease;
}

.page-home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    padding: 1.5rem 0;
}

.page-home .site-header:not(.header-scrolled) .logo-img {
    max-height: 72px;
    height: 72px;
}

.page-home .site-header.header-scrolled {
    position: fixed;
    padding: 0.85rem 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .site-header.header-scrolled .logo-img {
    max-height: 48px;
    height: 48px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-img {
    display: block;
    width: auto;
    height: 48px;
    max-height: 48px;
    transition: max-height 0.35s ease, height 0.35s ease;
}

.logo-img--header { filter: none; }

.logo-img--footer {
    height: 56px;
    max-width: 140px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.site-nav a {
    font-size: calc(0.95rem + 2px);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tc-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.site-nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(227, 160, 26, 0.18);
    border-radius: 4px;
    transform: scale(0.9);
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

.site-nav a:hover { color: var(--tc-gold); }
.site-nav a:hover::before { transform: scale(1); opacity: 1; }

.lang-switch { opacity: 0.75; font-size: 0.8rem !important; }

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-header-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--tc-green);
    color: var(--tc-white) !important;
    border: 1px solid var(--tc-green);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-header-whatsapp:hover {
    background: #1f6b38;
    border-color: #1f6b38;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 136, 70, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    z-index: 10002;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--tc-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(2px, -1px); }
.nav-toggle.is-active span:nth-child(2) { width: 0; opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(2px, 1px); }

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.85rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
    background: var(--tc-gold);
    color: var(--tc-black) !important;
}

.btn-gold:hover {
    background: var(--tc-orange);
    color: var(--tc-white) !important;
}

.btn-enquire {
    background: transparent;
    color: var(--tc-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.85);
    padding: 0.75rem 1.85rem;
}

.btn-enquire:hover {
    background: var(--tc-red);
    border-color: var(--tc-red);
    color: var(--tc-white) !important;
    box-shadow: 0 4px 15px rgba(200, 35, 43, 0.35);
}

.page-inner .btn-enquire,
.section-cta .btn-enquire,
.cta-banner .btn-gold {
    background: var(--tc-red);
    border: 1px solid var(--tc-red);
    color: var(--tc-white) !important;
}

.page-inner .btn-enquire:hover,
.section-cta .btn-enquire:hover {
    background: var(--tc-gold);
    border-color: var(--tc-gold);
    color: var(--tc-black) !important;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--tc-red);
    color: var(--tc-red) !important;
}

.btn-block { display: flex; width: 100%; text-align: center; }

/* ===== HERO SLIDER (Chakana stack + marquee) ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--tc-black);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
    visibility: hidden;
    transform: translateY(100%);
    transition: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    pointer-events: none;
}

.slide.is-stacked {
    --stack-layer: 1;
    visibility: visible;
    transform: translateY(calc(var(--stack-layer) * -1.1%)) scale(calc(1 - (var(--stack-layer) * 0.004)));
    transform-origin: center top;
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide.is-stacked .hero-tagline,
.slide.is-stacked .hero-content {
    opacity: 0;
    visibility: hidden;
    transition: none;
}

.slide.is-stacked .hero-tagline-track {
    animation-play-state: paused;
}

.slide.active .hero-tagline,
.slide.active .hero-content {
    opacity: 0;
    visibility: visible;
    transition: opacity 0.85s ease;
}

.slide.active.is-content-visible .hero-tagline,
.slide.active.is-content-visible .hero-content {
    opacity: 1;
}

.slide.active.is-content-leaving .hero-tagline,
.slide.active.is-content-leaving .hero-content {
    opacity: 0;
}

.slide.active.is-content-leaving .hero-tagline-track {
    animation-play-state: paused;
}

.slide.active {
    visibility: visible;
    transform: translateY(0);
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.35);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 3;
}

.hero-tagline {
    position: absolute;
    inset: 0;
    z-index: 4;
    overflow: hidden;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-tagline-track {
    display: inline-flex;
    align-items: center;
    gap: 0.04em;
    white-space: nowrap;
    will-change: transform;
    animation-play-state: paused;
}

.slide.active .hero-tagline-track {
    animation-play-state: running;
}

.hero-tagline--rtl .hero-tagline-track {
    animation: hero-tagline-marquee-rtl 50s linear infinite;
}

.hero-tagline--ltr .hero-tagline-track {
    animation: hero-tagline-marquee-ltr 50s linear infinite;
}

.hero-tagline-char {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 90vh;
    font-size: 90dvh;
    line-height: 0.82;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
}

@keyframes hero-tagline-marquee-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes hero-tagline-marquee-ltr {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7%;
    color: var(--tc-white);
    text-align: center;
}

.hero-copy {
    width: min(900px, 100%);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #e2e8f0;
    margin: 0 auto 2rem;
    max-width: 640px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tc-gold);
    color: var(--tc-black) !important;
    padding: 0.8rem 2rem;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: var(--tc-orange);
    color: var(--tc-white) !important;
    transform: translateY(-2px);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 6;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--tc-gold);
    transform: scale(1.15);
}

.dot:hover {
    background: var(--tc-teal);
    transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
    .slide,
    .slide.active,
    .slide.is-stacked {
        transition: none !important;
        transform: none !important;
    }

    .hero-tagline-track {
        animation: none !important;
    }
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section-alt { background: var(--tc-white); }
.section-muted { background: var(--color-bg); }

.section-heading { margin-bottom: 3rem; }
.section-heading--center { text-align: center; }

.section-eyebrow {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.65rem;
    color: var(--tc-teal);
    margin-bottom: 0.35rem;
    text-transform: none;
    letter-spacing: 0.02em;
}

.section-eyebrow--light { color: var(--tc-gold); }

.section-heading h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--tc-black);
    margin-bottom: 0;
}

.section-sub {
    color: #718096;
    max-width: 640px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.section-cta { text-align: center; margin-top: 2.5rem; }
.lead { font-size: 1.05rem; color: var(--color-muted); }

/* ===== TOUR CARDS — Featured (3/4) ===== */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tour-grid--featured { grid-template-columns: repeat(3, 1fr); }

.tour-card--featured {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-card--featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tour-card--featured .tour-card-link {
    display: block;
    height: 100%;
    color: inherit;
}

.tour-card--featured .tour-card-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #334155;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.75rem;
}

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
    transition: background 0.35s ease;
}

.tour-card--featured:hover .tour-card-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.92) 100%);
}

.tour-card--featured .tour-card-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    background: var(--tc-gold);
    color: var(--tc-black);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.tour-card--featured .tour-stars {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    color: var(--tc-gold);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.45);
    margin: 0;
}

.tour-card-content {
    position: relative;
    z-index: 2;
    color: var(--tc-white);
}

.tour-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
    line-height: 1.25;
    text-transform: uppercase;
}

.tour-card-duration {
    font-size: 0.82rem;
    color: var(--tc-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== TOURS CATALOG (Chakana) ===== */
.page-tours .tours-catalog-hero {
    background: linear-gradient(135deg, var(--tc-red-dark) 0%, var(--tc-red) 55%, #a81d24 100%);
    padding: calc(var(--header-h) + 2rem) 7% 3.75rem;
}

.page-tours .tours-catalog-breadcrumbs,
.page-tours .tours-catalog-breadcrumbs a { color: rgba(255, 255, 255, 0.78); }

.page-tours .tours-catalog-breadcrumbs a:hover { color: var(--tc-gold); }
.page-tours .tours-catalog-breadcrumbs span { color: var(--tc-white); font-weight: 600; }

.tours-catalog-eyebrow {
    display: block;
    color: var(--tc-gold);
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.tours-catalog-title-main {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.2vw, 3rem);
    letter-spacing: 0.02em;
    line-height: 1.05;
    color: var(--tc-white);
    margin: 0 0 0.85rem;
}

.tours-catalog-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.84);
    max-width: 640px;
    margin: 0;
}

.page-tours .tours-catalog-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, rgba(200, 35, 43, 0.06) 0%, #ffffff 22%);
}

.tours-catalog-container { margin-left: 7%; margin-right: 7%; }

.tours-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.tours-catalog-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(200, 35, 43, 0.14);
    box-shadow: 0 10px 28px rgba(200, 35, 43, 0.12);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tours-catalog-card:hover {
    transform: translateY(-8px);
    border-color: var(--tc-gold);
    box-shadow: 0 18px 40px rgba(200, 35, 43, 0.24);
}

.tours-catalog-media {
    position: absolute;
    inset: 0;
    background-color: #d9d9d9;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease;
}

.tours-catalog-card:hover .tours-catalog-media { transform: scale(1.07); }

.tours-catalog-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.02) 38%, rgba(74,12,16,0.55) 72%, rgba(74,12,16,0.92) 100%);
}

.tours-catalog-card:hover .tours-catalog-shade {
    background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.05) 35%, rgba(200,35,43,0.62) 70%, rgba(107,18,24,0.95) 100%);
}

.tours-catalog-stars {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    color: var(--tc-gold);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.tours-catalog-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.35rem 1.2rem 1.25rem;
    overflow: hidden;
}

.tours-catalog-caption-main { transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.tours-catalog-card:hover .tours-catalog-caption-main { transform: translateY(-0.65rem); }

.tours-catalog-duration {
    display: inline-block;
    background: rgba(255,255,255,0.16);
    color: var(--tc-gold);
    padding: 0.28rem 0.55rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.tours-catalog-card-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.55rem;
    letter-spacing: 0.03em;
    line-height: 1.1;
    color: var(--tc-white);
    text-transform: uppercase;
}

.tours-catalog-desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.9);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: max-height 0.45s cubic-bezier(0.25,1,0.5,1), opacity 0.35s ease 0.05s, transform 0.4s cubic-bezier(0.25,1,0.5,1) 0.05s;
}

.tours-catalog-card:hover .tours-catalog-desc {
    max-height: 5rem;
    opacity: 1;
    transform: translateY(0);
}

/* ===== PACKAGES CAROUSEL ===== */
.cursive-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.packages-section {
    padding: 5rem 0 6rem;
    background-color: var(--tc-red);
}

.packages-container { width: 100%; }

.packages-header {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-bottom: 3rem;
    margin-left: 7%;
    margin-right: 7%;
}

.packages-section .packages-eyebrow {
    color: var(--tc-gold);
    font-size: 2rem;
    line-height: 1;
}

.packages-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--tc-white);
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1;
}

.packages-carousel-window {
    width: 100%;
    overflow: hidden;
    padding: 0 7%;
}

.packages-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(0);
    will-change: transform;
}

.package-card {
    flex: 0 0 auto;
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: block;
    color: inherit;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

.package-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #334155;
    transition: transform 0.5s ease;
}

.package-card:hover .package-img { transform: scale(1.06); }

.package-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.88) 100%);
    z-index: 1;
}

.package-duration {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(5px);
    color: var(--tc-gold);
    padding: 0.4rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-stars {
    position: absolute;
    top: 1.15rem;
    right: 1.25rem;
    z-index: 2;
    color: var(--tc-gold);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.package-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.75rem 1.5rem;
    z-index: 2;
}

.package-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--tc-white);
    margin: 0;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ===== HOLIDAY SECTION (sticky intro + grid) ===== */
.page-home { --holiday-sticky-top: 1.5rem; }
.page-home.header-is-scrolled { --holiday-sticky-top: 5.75rem; }

.holiday-section {
    padding: 6rem 0;
    background: var(--tc-white);
    overflow: visible;
}

.holiday-container {
    margin-left: 7%;
    margin-right: 7%;
    overflow: visible;
}

.holiday-layout {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    overflow: visible;
}

.holiday-intro-col {
    flex: 0 0 clamp(260px, 22vw, 320px);
    position: sticky;
    top: var(--holiday-sticky-top, 5.75rem);
    align-self: flex-start;
    z-index: 2;
}

.holiday-intro-box {
    background: linear-gradient(165deg, var(--color-bg) 0%, var(--tc-white) 100%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-left: 4px solid var(--tc-teal);
    border-radius: 14px;
    padding: 2rem 1.75rem;
}

.holiday-intro-eyebrow {
    display: block;
    font-family: var(--font-body);
    color: var(--tc-teal);
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: 0.4rem;
    font-style: italic;
}

.holiday-intro-title {
    font-family: var(--font-display);
    font-size: 2.35rem;
    color: var(--tc-black);
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin: 0 0 1rem;
}

.holiday-intro-desc {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.65;
    margin: 0;
}

.holiday-tours-col { flex: 1; min-width: 0; }

.holiday-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.holiday-tours-col .section-cta { margin-top: 2.5rem; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--tc-white); padding: 6rem 0; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.25rem 1.35rem;
    border-radius: 14px;
    color: var(--tc-white);
    min-height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

.why-card--intro {
    align-items: flex-start;
    text-align: left;
    background: var(--tc-black);
    padding: 2.25rem 1.75rem;
}

.why-card--intro h2 {
    font-size: 2.1rem;
    color: var(--tc-white);
    margin-bottom: 1rem;
    line-height: 1.05;
}

.why-card--intro p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.65;
    margin: 0;
}

.why-card--red { background: var(--tc-red); }
.why-card--orange { background: var(--tc-orange); }
.why-card--teal { background: var(--tc-teal); }
.why-card--green { background: var(--tc-green); }

.why-icon {
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    background: var(--tc-white);
    color: var(--tc-red);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1.35rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.why-card h3 {
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    color: var(--tc-white);
}

.why-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.55;
    margin: 0;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials-section.testimonials-parallax {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 1;
}

.testimonials-container {
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 7%;
}

.testimonials-header .cursive-subtitle {
    display: block;
    color: var(--tc-gold);
    font-size: 1.65rem;
    margin-bottom: 0.35rem;
}

.testimonials-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--tc-white);
    margin-bottom: 1rem;
}

.testimonials-desc {
    font-size: 1rem;
    color: #cbd5e0;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.testimonials-carousel-window {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 7%;
}

.testimonials-carousel-track {
    display: flex;
    gap: 2.66%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(0);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 23%;
    min-width: 0;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.testimonial-card .stars {
    color: var(--tc-gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.92rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--tc-white);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--tc-gold);
    font-weight: 600;
}

/* ===== MARKETS ===== */
.markets-section { background: var(--color-bg); }

.market-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.chip {
    padding: 0.55rem 1.1rem;
    background: var(--tc-white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.chip:hover {
    border-color: var(--tc-red);
    background: rgba(200, 35, 43, 0.06);
    color: var(--tc-red);
}

/* ===== PAGE HERO (inner) ===== */
.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    background-color: var(--tc-red-dark);
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    color: var(--tc-white);
}

.page-tours .page-hero,
.page-inner .page-hero {
    background-color: var(--tc-red-dark);
}

.page-hero--compact { min-height: 320px; }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74,12,16,0.88) 0%, rgba(200,35,43,0.55) 55%, rgba(0,0,0,0.45) 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: calc(var(--header-h) + 2rem) 0 3.5rem;
}

.page-hero-inner h1 {
    max-width: 820px;
    margin-bottom: 0.75rem;
    font-size: clamp(2.2rem, 4.2vw, 3rem);
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.page-hero-lead {
    max-width: 620px;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.page-hero .breadcrumbs { padding: 0 0 1rem; width: 100%; max-width: none; }
.page-hero .breadcrumbs a,
.page-hero .breadcrumbs li:not(:last-child)::after { color: rgba(255,255,255,0.72); }
.page-hero .breadcrumbs a:hover { color: var(--tc-gold); }
.page-hero .breadcrumbs span { color: var(--tc-white); font-weight: 600; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--tc-red);
    color: var(--tc-white);
    padding: 3.5rem 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner h2 {
    margin-bottom: 0.35rem;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    color: var(--tc-white);
}

.cta-banner p { margin: 0; opacity: 0.88; max-width: 520px; }

.cta-banner .btn-gold {
    background: var(--tc-gold);
    color: var(--tc-black) !important;
}

/* ===== TOUR DETAIL (Chakana) ===== */
.tour-detail-section {
    padding: calc(var(--header-h) + 1.5rem) 0 6rem;
    background: linear-gradient(180deg, #ffffff 0%, rgba(200, 35, 43, 0.04) 100%);
}

.tour-detail-container { margin-left: 7%; margin-right: 7%; }

.tour-breadcrumbs {
    font-size: 0.82rem;
    color: #a0aec0;
    margin-bottom: 2rem;
}

.tour-breadcrumbs a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tour .tour-breadcrumbs a:hover { color: var(--tc-red); }
.page-tour .tour-breadcrumbs span { color: var(--tc-red); font-weight: 600; }

.tour-detail-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.tour-main-content { flex: 1; min-width: 0; }

.tour-sidebar {
    flex: 0 0 340px;
    max-width: 100%;
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.tour-hero-inline {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tour-hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #000;
}

.tour-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    visibility: hidden;
    transform: translateY(100%);
    transition: none;
    z-index: 1;
    will-change: transform;
    pointer-events: none;
}

.tour-hero-slide.is-stacked {
    --stack-layer: 1;
    visibility: visible;
    transform: translateY(calc(var(--stack-layer) * -1.1%)) scale(calc(1 - (var(--stack-layer) * 0.004)));
    transform-origin: center top;
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-hero-slide.active {
    visibility: visible;
    transform: translateY(0);
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    box-shadow: 0 -12px 48px rgba(0,0,0,0.35);
}

.tour-hero-stars {
    position: absolute;
    top: 1.25rem;
    right: 1.35rem;
    z-index: 3;
    color: var(--tc-gold);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    pointer-events: none;
}

.tour-hero-content {
    position: absolute;
    bottom: 2.2rem;
    left: 2.5rem;
    z-index: 2;
    max-width: 80%;
}

.page-tour .tour-hero-content .cursive-subtitle { color: var(--tc-gold); text-shadow: 0 2px 10px rgba(0,0,0,0.75); }

.tour-hero-content h1 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-top: 0.2rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.75);
}

.tour-highlight-card {
    background: linear-gradient(145deg, var(--tc-red) 0%, var(--tc-red-dark) 100%);
    border-radius: 14px;
    padding: 1.45rem 1.35rem 1.35rem;
    box-shadow: 0 14px 40px rgba(200, 35, 43, 0.28);
}

.tour-highlight-eyebrow {
    display: block;
    color: var(--tc-gold);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.tour-highlight-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1.05;
    color: var(--tc-white);
    margin: 0 0 1rem;
}

.tour-highlight-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.tour-highlight-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: rgba(0,0,0,0.16);
    border-radius: 10px;
    padding: 0.7rem 0.65rem;
}

.tour-highlight-icon {
    width: 18px;
    height: 18px;
    color: var(--tc-gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.tour-highlight-meta-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

.tour-highlight-meta-value {
    display: block;
    font-family: var(--font-display);
    font-size: 0.92rem;
    color: var(--tc-white);
}

.tour-specs-card {
    background: var(--color-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.03);
}

.tour-specs-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.page-tour .tour-specs-card--compact {
    background: var(--tc-white);
    border: 1px solid rgba(200, 35, 43, 0.12);
    box-shadow: 0 8px 24px rgba(200, 35, 43, 0.1);
    padding: 1.15rem 1.2rem 1.2rem;
    border-radius: 12px;
}

.page-tour .tour-specs-card--compact h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--tc-red);
    margin-bottom: 0.75rem;
}

.tour-market-extra h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--tc-red);
    margin: 0 0 0.5rem;
}

.tour-market-extra p { margin: 0; font-size: 0.88rem; color: var(--color-muted); line-height: 1.55; }

.specs-list { list-style: none; padding: 0; margin: 0 0 1rem; }

.specs-list--compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.specs-list--compact li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.55rem 0.6rem;
    border-radius: 8px;
    background: rgba(200, 35, 43, 0.05);
    font-size: 0.82rem;
}

.spec-label { display: flex; align-items: center; gap: 0.35rem; }
.spec-icon { width: 13px; height: 13px; color: var(--tc-red); flex-shrink: 0; }

.specs-list--compact li strong {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(107, 18, 24, 0.72);
}

.specs-list--compact li span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--tc-red-dark);
    line-height: 1.25;
}

.btn-primary {
    display: inline-block;
    background: var(--tc-red);
    color: var(--tc-white) !important;
    border: 2px solid var(--tc-red);
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--tc-gold);
    border-color: var(--tc-gold);
    color: var(--tc-black) !important;
    transform: translateY(-2px);
}

.btn-block { display: block; width: 100%; }

.tour-contact-btn { margin-top: 0.25rem; }

.tour-tabs-headers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.tour-tabs-headers::-webkit-scrollbar { display: none; }

.tab-btn {
    background: var(--tc-white);
    border: 1px solid rgba(0,0,0,0.07);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--tc-red-dark);
    padding: 0.85rem 1.45rem;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.tab-btn:hover:not(.active) {
    color: var(--tc-red);
    border-color: rgba(200, 35, 43, 0.18);
    transform: translateY(-2px);
}

.page-tour .tab-btn.active {
    background: var(--tc-red);
    color: var(--tc-white);
    border-color: var(--tc-red);
    box-shadow: 0 10px 24px rgba(200, 35, 43, 0.34);
    transform: translateY(-3px);
}

.tour-tabs-content {
    background: #f8f8f8;
    border: 1px solid #edf2f7;
    border-left: 4px solid var(--tc-red);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 1.8rem;
}

.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.tour-presentation-content p,
.tour-prices-note {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.tour-tab-subtitle {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--tc-red-dark);
    margin: 1.5rem 0 1rem;
}

.itinerary-short-list { list-style: none; padding: 0; margin: 0; }

.itinerary-short-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

.itinerary-short-list li strong { color: var(--tc-red-dark); }

.itinerary-sub-list { list-style: none; padding-left: 1.2rem; margin-top: 0.5rem; }

.itinerary-sub-list li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    display: flex;
    gap: 0.5rem;
}

.itinerary-sub-list li::before { content: '—'; color: var(--tc-red); font-weight: bold; }

.itinerary-day {
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 2px solid rgba(200, 35, 43, 0.22);
    position: relative;
}

.itinerary-day::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -6px;
    width: 10px;
    height: 10px;
    background: var(--tc-red);
    border-radius: 50%;
}

.itinerary-day h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.itinerary-day p { font-size: 0.92rem; color: #4a5568; line-height: 1.6; margin: 0; }

.inclusions-layout { display: flex; gap: 3rem; }

.inclusions-col { flex: 1; }

.inclusions-col h5 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--tc-red-dark);
    margin-bottom: 1.5rem;
}

.inclusions-list { list-style: none; padding: 0; margin: 0; }

.inclusions-list li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.5;
}

.inclusions-list.included li::before { content: '✓'; color: #288846; font-weight: bold; }
.inclusions-list.excluded li::before { content: '✗'; color: var(--tc-red); font-weight: bold; }

.tour-prices-wrap { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }

.faq-item {
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: 8px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(0,0,0,0.02);
    border-left: 3px solid var(--tc-red);
}

.faq-item h6 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.faq-item p { font-size: 0.9rem; color: #718096; line-height: 1.6; margin: 0; }

.tour-gallery-section {
    background: var(--tc-red-dark);
    padding: 5rem 0;
}

.page-tour .tour-gallery-section .cursive-subtitle { color: var(--tc-gold); }

.gallery-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--tc-white);
    margin-bottom: 2.5rem;
}

.tour-gallery-container { margin-left: 7%; margin-right: 7%; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover { transform: translateY(-4px); }
.gallery-item:hover img { transform: scale(1.08); }

.sidebar-card,
.meta-list {
    background: var(--tc-white);
    border: 1px solid rgba(200, 35, 43, 0.12);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(200, 35, 43, 0.08);
}

.sidebar-card h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--tc-red);
}

.sidebar-card p { margin: 0; font-size: 0.9rem; color: var(--color-muted); }

.meta-list { list-style: none; margin: 0; font-size: 0.875rem; }

.meta-list li { margin-bottom: 0.5rem; }
.meta-list li:last-child { margin-bottom: 0; }

.meta-list--dark {
    background: linear-gradient(145deg, var(--tc-red) 0%, var(--tc-red-dark) 100%);
    color: var(--tc-white);
    border: none;
    box-shadow: 0 14px 40px rgba(200, 35, 43, 0.28);
}

.meta-list--dark strong { color: var(--tc-gold); }

.content-main--card {
    background: var(--tc-white);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--tc-teal);
    box-shadow: var(--shadow);
}

.content-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.content-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

.content-intro { font-size: 0.95rem; line-height: 1.7; color: #4a5568; }

.content-block h2 {
    font-size: 1.35rem;
    color: var(--tc-red-dark);
    margin-bottom: 1rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.includes-card {
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-bg);
}

.includes-card--yes { border-top: 3px solid var(--tc-gold); }
.includes-card--no { border-top: 3px solid #94a3b8; }

.includes-card h2 { font-size: 1rem; margin-top: 0; font-family: var(--font-display); }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-box {
    background: var(--tc-white);
    border-left: 4px solid var(--tc-red);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    box-shadow: var(--shadow);
}

.info-box h2 { margin-top: 0; font-size: 1rem; font-family: var(--font-display); color: var(--tc-red); }
.info-box p { margin-bottom: 0; color: var(--color-muted); }

.check-list, .bullet-list { padding-left: 1.25rem; }
.check-list--gold { list-style: disc; }
.check-list--gold li::marker { color: var(--tc-gold); }

.itinerary-list {
    list-style: none;
    padding: 0;
    border-left: 3px solid var(--tc-red);
}

.itinerary-list li { padding: 0 0 1.25rem 1.25rem; }

.itinerary-list h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-family: var(--font-display);
    color: var(--tc-red-dark);
}

.faq-list details {
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--tc-red);
    padding: 0.85rem 1rem;
    margin-bottom: 0.5rem;
    background: var(--color-bg);
    border-radius: 0 8px 8px 0;
}

.faq-list summary { cursor: pointer; font-weight: 600; }
.faq-list p { margin: 0.75rem 0 0; color: var(--color-muted); }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: var(--tc-white);
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--tc-red);
}

.contact-icon { display: block; font-size: 1.75rem; margin-bottom: 0.75rem; }

.contact-card h3 {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tc-red);
}

.contact-card a { color: var(--color-text); font-weight: 600; }
.contact-card a:hover { color: var(--tc-red); }

.text-center { text-align: center; }

.breadcrumbs {
    padding: calc(var(--header-h) + 1rem) 0 0;
    font-size: 0.82rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.breadcrumbs a { color: #718096; }
.breadcrumbs a:hover { color: var(--tc-gold); }
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 0.35rem; color: #718096; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--tc-red-dark);
    color: rgba(255,255,255,0.72);
    padding: 5rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
}

.footer-logo { display: inline-block; margin-bottom: 1.5rem; }

.site-footer h4 {
    color: var(--tc-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.site-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--tc-gold);
}

.footer-contact {
    list-style: none;
    font-size: 0.88rem;
}

.footer-contact li { margin-bottom: 0.75rem; }
.footer-contact a { color: rgba(255,255,255,0.72); transition: color 0.3s; }
.footer-contact a:hover { color: var(--tc-gold); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover { color: var(--tc-gold); padding-left: 5px; }

.footer-bottom {
    background: var(--tc-red-darker);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    font-size: 0.8rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--tc-green);
    color: var(--tc-white);
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(40, 136, 70, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float:hover {
    color: var(--tc-white);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(40, 136, 70, 0.4);
}

.wa-float span { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .tour-grid,
    .tour-grid--featured { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-card--intro { grid-column: 1 / -1; }
    .holiday-layout { flex-direction: column; gap: 2rem; }
    .holiday-intro-col { position: static; flex: none; width: 100%; }
    .holiday-tours-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .testimonial-card { flex: 0 0 48%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tour-detail-layout { flex-direction: column; gap: 2.5rem; }
    .tour-sidebar { flex: auto; position: static; width: 100%; }
    .tour-detail-container,
    .tours-catalog-container { margin-left: 5%; margin-right: 5%; }
    .tours-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-home .site-header:not(.header-scrolled) .logo-img {
        max-height: 56px;
        height: 56px;
    }

    .site-header {
        z-index: 9999;
        background: rgba(0, 0, 0, 0.88);
    }

    .nav-toggle { display: flex; }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(280px, 85vw);
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 1.75rem 2rem;
        gap: 1.5rem;
        background: var(--tc-black);
        transform: translateX(100%);
        transition: transform 0.4s ease, visibility 0.4s;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        z-index: 10001;
        box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    }

    .site-nav.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav a {
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .site-nav a::before { display: none; }

    .header-cta { margin-left: auto; }
    .header-cta .btn-header-whatsapp span { display: none; }
    .header-cta .btn-header-whatsapp { font-size: 0; padding: 0.65rem; }
    .header-cta .btn-header-whatsapp svg { width: 18px; height: 18px; }
    .header-cta .btn-enquire { display: none; }

    .header-inner { position: relative; }

    .hero-title { font-size: 1.75rem; }
    .hero-tagline-char { font-size: 40vh; font-size: 40dvh; }

    .tour-grid,
    .tour-grid--featured { grid-template-columns: 1fr; }

    .tours-catalog-grid { grid-template-columns: 1fr; }
    .tours-catalog-card { max-width: 420px; margin-inline: auto; }
    .page-tours .tours-catalog-hero { padding: calc(var(--header-h) + 1.5rem) 5% 3rem; }
    .tour-detail-container,
    .tour-gallery-container,
    .tours-catalog-container { margin-left: 4%; margin-right: 4%; }
    .tour-hero-inline { aspect-ratio: 4 / 3; margin-bottom: 2rem; }
    .tour-hero-content { bottom: 1.2rem; left: 1.2rem; right: 1.2rem; max-width: none; }
    .tour-hero-content h1 { font-size: 1.55rem; }
    .tour-tabs-content { padding: 1.5rem; }
    .tour-tabs-headers { flex-wrap: nowrap; }
    .tab-btn { font-size: 0.88rem; padding: 0.75rem 1.1rem; }
    .inclusions-layout { flex-direction: column; gap: 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .gallery-title { font-size: 1.6rem; margin-bottom: 1.5rem; }

    .why-grid { grid-template-columns: 1fr; }
    .holiday-tours-grid { grid-template-columns: 1fr; }
    .holiday-intro-title { font-size: 2rem; }
    .packages-header { margin-left: 5%; margin-right: 5%; }
    .packages-carousel-window { padding: 0 5%; }
    .packages-title { font-size: 2.6rem; }
    .packages-section .packages-eyebrow { font-size: 1.5rem; }
    .testimonial-card { flex: 0 0 90%; }
    .testimonials-carousel-window { padding: 1.5rem 5%; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .site-footer h4::after { left: 50%; transform: translateX(-50%); }

    .includes-grid { grid-template-columns: 1fr; }
    .content-main--card { padding: 1.25rem; }
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .page-hero { min-height: 360px; }
    .section { padding: 4rem 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .tour-card--featured:hover,
    .tour-card--catalog:hover .tour-card-media,
    .btn:hover,
    .wa-float:hover { transform: none; }
}
