/* ===== The Chakana Theme Tokens ===== */
: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;

    --tc-accent: var(--tc-gold);
    --tc-accent-hover: var(--tc-orange);
    --tc-primary: var(--tc-red);
    --tc-secondary: var(--tc-teal);
    --tc-whatsapp: var(--tc-green);
    --tc-whatsapp-hover: #1f6b38;
    --tc-bg-dark: var(--tc-black);
    --tc-bg-light: #f5f5f5;
    --tc-text: #1a1a1a;
    --tc-text-muted: #5c5c5c;
    --tc-text-inverse: var(--tc-white);

    --tc-font-body: 'Lato', Helvetica, Arial, sans-serif;
    --tc-font-display: 'Bebas Neue', Helvetica, Arial, sans-serif;
}

/* Typography roles */
body,
p,
li,
td,
th,
label,
input,
textarea,
select,
.hero-subtitle,
.cursive-subtitle,
.cursive-grid-title,
.holiday-desc,
.why-choose-us-desc,
.testimonials-desc,
.featured-tours-desc,
.tour-duration,
.choose-item p,
.testimonial-text,
.testimonial-author,
.footer-contact-list,
.footer-menu a,
.footer-copyright,
.copyright-legal,
.copyright-author,
.tour-breadcrumbs,
.tour-presentation-content p,
.itinerary-day p,
.inclusions-list,
.faq-item p,
.specs-list,
.modal-box p,
.modal-form label,
.modal-form input,
.modal-form textarea,
.whatsapp-message-bubble,
.tours-page-header .cursive-subtitle {
    font-family: var(--tc-font-body);
}

h1, h2, h3, h4, h5, h6,
.main-nav,
.main-nav a,
.btn-enquire,
.btn-header-whatsapp,
.btn-hero-primary,
.btn-hero-secondary,
.btn-payment-methods,
.btn-primary,
#btn-open-contact,
.tab-btn,
.hero-title,
.holiday-title,
.holiday-intro-title,
.holiday-tour-title,
.routes-red-intro-title,
.routes-red-card-title,
.packages-title,
.testimonials-title,
.featured-tours-title,
.blog-title,
.blog-card-title,
.grid-content h4,
.choose-intro-title,
.choose-item h4,
.package-card-content h4,
.tour-card-content h4,
.footer-col h4,
.tour-hero-content h1,
.itinerary-day h5,
.inclusions-col h5,
.faq-item h6,
.tour-specs-card h4,
.tour-highlight-title,
.gallery-title,
.modal-box h3,
.tours-page-title,
.tours-catalog-title-main,
.tours-catalog-card-title {
    font-family: var(--tc-font-display);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.cursive-subtitle,
.cursive-grid-title,
.tours-page-header .cursive-subtitle {
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: var(--tc-font-body);
    background-color: var(--tc-bg-light);
    color: var(--tc-text);
    overflow-x: clip;
}

html {
    overflow-x: clip;
}

/* Header Styles */
.main-header {
    background-color: 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-color 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
}

.header-container {
    margin-left: 7%;
    margin-right: 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-theme-the-inka-peru {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 48px;
    height: auto;
    width: auto;
    display: block;
    transition: max-height 0.35s ease, transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-weight: 500;
    font-size: calc(1.08rem + 2px);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(227, 160, 26, 0.18);
    border-radius: 4px;
    transform: scale(0.9);
    opacity: 0;
    z-index: -1;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav a:hover {
    color: #E3A01A;
}

.main-nav a:hover::before {
    transform: scale(1);
    opacity: 1;
}

/* Navigation Toggle and Overlay */
.nav-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: left center;
}

/* Morph to Cross */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -1px);
}

.nav-toggle.active span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 1px);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-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.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-header-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background-color: #288846;
    color: #ffffff;
    border: 1px solid #288846;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1.02rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-header-whatsapp svg {
    flex-shrink: 0;
}

.btn-header-whatsapp:hover {
    background-color: #1f6b38;
    border-color: #1f6b38;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 136, 70, 0.35);
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.85);
    padding: 0.75rem 1.85rem;
    font-weight: 600;
    font-size: 1.02rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-enquire:hover {
    background-color: var(--tc-red);
    border-color: var(--tc-red);
    color: var(--tc-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 35, 43, 0.35);
}

/* Index: header overlay on hero */
.page-home .main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    padding: 1.5rem 0;
}

.page-home .main-header:not(.header-scrolled) .logo-img {
    max-height: 96px;
}

.page-home .main-header .main-nav a {
    color: #ffffff;
}

.page-home .main-header .main-nav a:hover {
    color: #E3A01A;
}

.page-home .main-header .nav-toggle span {
    background-color: #ffffff;
}

.page-home .main-header .btn-enquire {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.85);
    color: #ffffff;
}

.page-home .main-header .btn-enquire:hover {
    background-color: var(--tc-red);
    border-color: var(--tc-red);
    color: var(--tc-white);
}

.page-home .main-header.header-scrolled {
    position: fixed;
    padding: 0.85rem 0;
    background-color: 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 .main-header.header-scrolled .logo-img {
    max-height: 48px;
}

.page-home .main-header.header-scrolled .main-nav a {
    color: #ffffff;
}

.page-home .main-header.header-scrolled .main-nav a:hover {
    color: #E3A01A;
}

.page-home .main-header.header-scrolled .nav-toggle span {
    background-color: #ffffff;
}

.page-home .main-header.header-scrolled .btn-enquire {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.85);
    color: #ffffff;
}

.page-home .main-header.header-scrolled .btn-enquire:hover {
    background-color: var(--tc-red);
    border-color: var(--tc-red);
    color: var(--tc-white);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: #000000;
    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(--tc-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: #ffffff;
    text-align: center;
}

.hero-copy {
    width: min(900px, 100%);
}

.hero-title {
    font-family: var(--tc-font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
}

.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);
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: var(--tc-orange);
    color: var(--tc-white);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: rgba(0, 168, 155, 0.15);
    border-color: var(--tc-teal);
    color: var(--tc-white);
    transform: translateY(-2px);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 5;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    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);
}

/* Holiday Selection Section */
.holiday-section {
    padding: 6rem 0;
    background-color: #ffffff;
    overflow: visible;
}

.holiday-container {
    margin-left: 7%;
    margin-right: 7%;
    overflow: visible;
}

.cursive-subtitle {
    font-family: var(--tc-font-body);
    color: var(--tc-teal);
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.25rem;
}

.holiday-title {
    font-family: var(--tc-font-display);
    font-size: 2.6rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.holiday-desc {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
}

.holiday-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
    overflow: visible;
}

.holiday-intro-col {
    flex: 0 0 clamp(260px, 22vw, 320px);
    width: clamp(260px, 22vw, 320px);
    position: sticky;
    top: var(--holiday-sticky-top, 5.75rem);
    align-self: flex-start;
    z-index: 2;
    overflow: visible;
}

.holiday-intro-box {
    background: linear-gradient(165deg, var(--tc-bg-light) 0%, #ffffff 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(--tc-font-body);
    color: var(--tc-teal);
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.holiday-intro-title {
    font-family: var(--tc-font-display);
    font-size: 2.35rem;
    color: var(--tc-black);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin: 0 0 1rem;
}

.holiday-intro-desc {
    font-size: 0.95rem;
    color: var(--tc-text-muted);
    line-height: 1.65;
    margin: 0;
}

.page-home {
    --holiday-sticky-top: 1.5rem;
}

.page-home.header-is-scrolled {
    --holiday-sticky-top: 5.75rem;
}

.holiday-tours-col {
    flex: 1 1 0;
    min-width: 0;
    overflow: visible;
}

.holiday-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.holiday-tour-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 0;
}

.holiday-tour-media {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background-color: #d9d9d9;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.holiday-tour-card:hover .holiday-tour-media {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.holiday-tour-card:hover .holiday-tour-media .holiday-tour-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.92) 100%);
}

.holiday-tour-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.82) 100%);
    transition: background 0.35s ease;
    z-index: 1;
}

.holiday-tour-duration {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    color: var(--tc-gold);
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.holiday-tour-stars {
    position: absolute;
    top: 0.8rem;
    right: 0.85rem;
    z-index: 2;
    color: var(--tc-gold);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.holiday-tour-title {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 2;
    margin: 0;
    font-family: var(--tc-font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--tc-white);
    text-transform: uppercase;
}

.holiday-tour-desc {
    margin: 0;
    padding: 0 0.2rem;
    font-size: 0.88rem;
    color: var(--tc-text-muted);
    line-height: 1.55;
}

/* Signature Routes — red bg, grid left, sticky intro right */
.routes-red-section {
    padding: 6rem 0;
    background-color: var(--tc-red);
    overflow: visible;
}

.routes-red-container {
    margin-left: 7%;
    margin-right: 7%;
    overflow: visible;
}

.routes-red-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
    overflow: visible;
}

.routes-red-tours-col {
    flex: 1 1 0;
    min-width: 0;
    order: 1;
    overflow: visible;
}

.routes-red-intro-col {
    flex: 0 0 clamp(260px, 22vw, 320px);
    width: clamp(260px, 22vw, 320px);
    order: 2;
    position: sticky;
    top: var(--holiday-sticky-top, 5.75rem);
    align-self: flex-start;
    z-index: 2;
    overflow: visible;
}

.routes-red-intro-box {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 4px solid var(--tc-gold);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.routes-red-eyebrow {
    display: block;
    font-family: var(--tc-font-body);
    color: var(--tc-gold);
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.routes-red-intro-title {
    font-family: var(--tc-font-display);
    font-size: 2.35rem;
    color: var(--tc-black);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin: 0 0 1rem;
}

.routes-red-intro-desc {
    font-size: 0.95rem;
    color: var(--tc-text-muted);
    line-height: 1.65;
    margin: 0;
}

.routes-red-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
}

.routes-red-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-width: 0;
    min-height: 210px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.routes-red-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.routes-red-media {
    flex: 0 0 47.5%;
    min-height: 210px;
    background-color: rgba(0, 0, 0, 0.15);
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}

.routes-red-card:hover .routes-red-media {
    transform: scale(1.04);
}

.routes-red-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.45rem;
    padding: 1.1rem 1.15rem;
    min-width: 0;
}

.routes-red-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.15rem;
}

.routes-red-duration {
    display: inline-block;
    background: var(--tc-teal);
    color: var(--tc-white);
    padding: 0.28rem 0.55rem;
    border-radius: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

.routes-red-stars {
    color: var(--tc-gold);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    line-height: 1;
    flex-shrink: 0;
}

.routes-red-card-title {
    margin: 0;
    font-family: var(--tc-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.15;
    color: var(--tc-black);
    text-transform: uppercase;
}

.routes-red-desc {
    margin: 0;
    font-size: 0.82rem;
    color: var(--tc-text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.holiday-grid-random {
    margin-top: 2.5rem;
}

.grid-item {
    position: relative;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.circle-item {
    border-radius: 50%;
}

.square-item {
    border-radius: 12px;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.4s ease;
    z-index: 1;
}

.grid-item:hover .grid-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.grid-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.grid-content h4 {
    font-family: var(--tc-font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.cursive-grid-title {
    font-family: var(--tc-font-body) !important;
    text-transform: none !important;
    font-size: 2.2rem !important;
    letter-spacing: normal !important;
}

.grid-item.align-bottom-right {
    align-items: flex-end;
    justify-content: flex-end;
}

.align-bottom-right .grid-content {
    text-align: right;
    padding: 1.5rem;
    width: 100%;
}

.tour-duration {
    display: inline-block;
    background-color: #E3A01A;
    color: #000000;
    padding: 0.3rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 6rem 0;
    background-color: var(--tc-white);
}

.why-choose-us-container {
    margin-left: 7%;
    margin-right: 7%;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.choose-item {
    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;
}

.choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.choose-item-intro {
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    background-color: var(--tc-black);
    padding: 2.25rem 1.75rem;
}

.choose-intro-title {
    font-family: var(--tc-font-display);
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.05;
    color: var(--tc-white);
    margin: 0 0 1rem;
}

.choose-intro-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.choose-item--red {
    background-color: var(--tc-red);
}

.choose-item--orange {
    background-color: var(--tc-orange);
}

.choose-item--teal {
    background-color: var(--tc-teal);
}

.choose-item--green {
    background-color: var(--tc-green);
}

.choose-icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: var(--tc-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.45s ease;
}

.choose-item:hover .choose-icon-wrapper {
    transform: scale(1.08);
}

.choose-icon {
    max-width: 38px;
    height: auto;
}

.choose-item h4 {
    font-family: var(--tc-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--tc-white);
    margin: 0 0 0.65rem;
    text-transform: uppercase;
}

.choose-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    margin: 0;
}

/* Peru Packages Section */
.packages-section {
    padding: 5rem 0 6rem;
    background-color: var(--tc-red);
}

.packages-container {
    width: 100%;
}

.packages-header {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    text-align: left;
    margin-bottom: 3rem;
    margin-left: 7%;
    margin-right: 7%;
}

.packages-section .packages-eyebrow {
    color: var(--tc-gold);
    font-size: 2rem;
    margin-bottom: 0;
    line-height: 1;
}

.packages-title {
    font-family: var(--tc-font-display);
    font-size: 3.4rem;
    color: var(--tc-white);
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1;
}

.packages-carousel-window {
    width: 100%;
    overflow: hidden;
    position: relative;
    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;
    width: auto;
    max-width: none;
    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 cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

.package-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    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;
    background-color: 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;
    z-index: 2;
}

.package-stars {
    position: absolute;
    top: 1.15rem;
    right: 1.25rem;
    color: var(--tc-gold);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    z-index: 2;
    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 h4 {
    font-family: var(--tc-font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--tc-white);
    margin: 0;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

/* Testimonials Section with Parallax Background */
.testimonials-section.testimonials-parallax {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88); /* Deep charcoal overlay */
    z-index: 1;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    margin-left: 7%;
    margin-right: 7%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-left: 7%;
    margin-right: 7%;
}

.testimonials-title {
    font-family: var(--tc-font-display);
    font-size: 2.6rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.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;
    position: relative;
    padding: 1.5rem 0;
}

.testimonials-carousel-track {
    display: flex;
    gap: 2.66%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(0);
}

.testimonial-card {
    flex: 0 0 23%;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-card .stars {
    color: #E3A01A;
    margin-bottom: 1rem;
    font-size: 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: #ffffff;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #E3A01A;
    font-weight: 600;
}

/* Featured Tours Section */
.featured-tours-section {
    padding: 6rem 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-tours-container {
    margin-left: 7%;
    margin-right: 7%;
}

.featured-tours-header {
    text-align: center;
    margin-bottom: 4rem;
}

.featured-tours-title {
    font-family: var(--tc-font-display);
    font-size: 2.6rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.featured-tours-desc {
    font-size: 1rem;
    color: #718096;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.featured-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.featured-tour-card {
    position: relative;
    aspect-ratio: 3 / 4; /* Reduced height by 25% (from 9/16 to 9/12 or 3/4) */
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.featured-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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;
}

.tour-price {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: #E3A01A;
    color: #000000;
    font-size: 0.72rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.price-amount {
    font-size: 1.45rem; /* Exactly double the label size 0.72rem */
    font-weight: 800;
    display: inline-block;
    margin-top: 3px;
    letter-spacing: -0.02em;
}

.featured-tour-card:hover .tour-price {
    animation: shakePrice 0.5s ease-in-out infinite;
    background-color: #000000;
    color: #E3A01A;
}

@keyframes shakePrice {
    0% { transform: translate(0, 0) rotate(0deg); }
    15% { transform: translate(-3px, 1px) rotate(-2deg); }
    30% { transform: translate(2px, -1px) rotate(1.5deg); }
    45% { transform: translate(-2px, 2px) rotate(-1deg); }
    60% { transform: translate(1px, -1px) rotate(1deg); }
    75% { transform: translate(-1px, 1px) rotate(-0.5deg); }
    90% { transform: translate(1px, 0) rotate(0.5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.tour-stars {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #E3A01A;
    font-size: 1.35rem; /* Increased size by ~50% for high visibility */
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tour-card-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.tour-card-content h4 {
    font-family: var(--tc-font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.3;
}

.tour-card-duration {
    font-size: 0.82rem;
    color: #E3A01A;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Blog Articles Section */
.blog-section {
    padding: 6rem 0;
    background-color: var(--tc-bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-container {
    margin-left: 7%;
    margin-right: 7%;
}

.blog-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.blog-eyebrow {
    display: block;
    font-family: var(--tc-font-body);
    color: var(--tc-teal);
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.blog-title {
    font-family: var(--tc-font-display);
    font-size: 2.6rem;
    color: var(--tc-black);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin: 0 0 1rem;
}

.blog-desc {
    font-size: 1rem;
    color: var(--tc-text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.blog-card {
    min-width: 0;
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--tc-white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.blog-card-media {
    aspect-ratio: 16 / 10;
    background-color: #d9d9d9;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}

.blog-card-link:hover .blog-card-media {
    transform: scale(1.03);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.65rem;
    padding: 1.35rem 1.4rem 1.5rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.15rem;
}

.blog-card-category {
    display: inline-block;
    background: rgba(0, 168, 155, 0.12);
    color: var(--tc-teal);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.blog-card-date {
    font-size: 0.78rem;
    color: var(--tc-text-muted);
    white-space: nowrap;
}

.blog-card-title {
    font-family: var(--tc-font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--tc-black);
    margin: 0;
    transition: color 0.25s ease;
}

.blog-card-link:hover .blog-card-title {
    color: var(--tc-red);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--tc-text-muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    font-family: var(--tc-font-display);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tc-gold);
    transition: color 0.25s ease, gap 0.25s ease;
}

.blog-card-cta::after {
    content: '→';
    transition: transform 0.25s ease;
}

.blog-card-link:hover .blog-card-cta {
    color: var(--tc-red);
}

.blog-card-link:hover .blog-card-cta::after {
    transform: translateX(4px);
}

/* Accreditations Section */
.accreditations-section {
    padding: 4rem 0;
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accreditations-container {
    margin-left: 7%;
    margin-right: 7%;
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.accreditation-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.accreditation-item img {
    max-width: 110px;
    width: 100%;
    height: auto;
    opacity: 0.6;
    filter: brightness(0) invert(1); /* Forces logos to turn completely white */
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.accreditation-item img:hover {
    opacity: 1;
    filter: brightness(1) invert(0); /* Restores original logo colors on hover */
    transform: scale(1.05);
}

/* Footer Section */
.footer-section {
    background-color: var(--tc-red-dark);
    color: rgba(255, 255, 255, 0.72);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    margin-left: 7%;
    margin-right: 7%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-col h4 {
    font-family: var(--tc-font-display);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--tc-gold);
}

.footer-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); /* Forces logo to turn completely white */
    opacity: 0.9;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--tc-gold);
    flex-shrink: 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-menu a:hover {
    color: var(--tc-gold);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.18);
    color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--tc-gold);
    color: var(--tc-black);
    transform: translateY(-3px);
}

.social-icon {
    width: 18px;
    height: 18px;
}

.btn-payment-methods {
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--tc-gold);
    color: var(--tc-gold);
    padding: 0.6rem 1.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-payment-methods:hover {
    background-color: var(--tc-gold);
    color: var(--tc-black);
    box-shadow: 0 4px 12px rgba(227, 160, 26, 0.2);
}

.footer-copyright {
    background-color: var(--tc-red-darker);
    padding: 2.5rem 7%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-legal {
    color: #e2e8f0;
    font-size: 0.85rem;
    margin: 0.5rem 0;
    line-height: 1.7;
    font-weight: 400;
}

.copyright-brand {
    text-decoration: none;
    border-bottom: 1px solid var(--tc-gold);
    color: var(--tc-gold);
    font-weight: 600;
}

.copyright-author {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.68rem;
    margin: 0.8rem 0 0;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.copyright-author-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright-author-link:hover {
    color: var(--tc-gold);
}

/* WhatsApp Floating CTA */
.whatsapp-cta-wrapper {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    pointer-events: none;
}

.whatsapp-message-bubble {
    pointer-events: auto;
    background-color: #ffffff;
    color: #000000;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    position: relative;
    opacity: 0;
    transform: translateX(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-family: var(--tc-font-display);
}

.whatsapp-message-bubble.active {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-message-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-btn {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #288846;
    color: #ffffff;
    box-shadow: 0 5px 25px rgba(40, 136, 70, 0.3);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #1f6b38;
    box-shadow: 0 8px 30px rgba(40, 136, 70, 0.4);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* Tour Detail Page Styles */
.tour-hero-inline {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Perfect landscape proportion within the column */
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tour-hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color: #000000;
}

.tour-hero-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;
    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);
    pointer-events: none;
}

.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;
    line-height: 1;
    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;
    text-align: left;
    z-index: 2;
    max-width: 80%;
    padding: 0;
}

.tour-hero-content h1 {
    font-family: var(--tc-font-display);
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 0.2rem;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.tour-hero-content .cursive-subtitle {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.85);
}

.tour-detail-section {
    padding: 2.5rem 0 6rem; /* Reduced top padding to move content closer to the header */
    background-color: #ffffff;
}

.tour-breadcrumbs {
    font-size: 0.82rem;
    color: #a0aec0;
    margin-bottom: 2rem;
    font-family: var(--tc-font-body);
    font-weight: 400;
}

.tour-breadcrumbs a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-breadcrumbs a:hover {
    color: #E3A01A;
}

.tour-breadcrumbs span {
    color: #000000;
    font-weight: 600;
}

.tour-detail-container {
    margin-left: 7%;
    margin-right: 7%;
    max-width: 100%;
}

.tour-detail-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    min-width: 0;
}

.tour-main-content {
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

.tour-sidebar {
    flex: 0 0 340px;
    max-width: 100%;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

/* Sidebar highlight card */
.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;
    font-family: var(--tc-font-body);
    color: var(--tc-gold);
    font-size: 1.05rem;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.tour-highlight-title {
    font-family: var(--tc-font-display);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.02em;
    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);
    margin-bottom: 0.12rem;
}

.tour-highlight-meta-value {
    display: block;
    font-family: var(--tc-font-display);
    font-size: 0.92rem;
    line-height: 1.2;
    color: var(--tc-white);
}

/* Tours catalog page */
.tours-page-header {
    margin-top: 3.5rem;
    margin-left: 7%;
    margin-right: 7%;
}

.tours-page-header .cursive-subtitle {
    display: block;
    font-size: 1.8rem;
    color: var(--tc-teal);
    margin-bottom: 0.2rem;
}

.tours-page-title {
    font-family: var(--tc-font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: #000000;
    margin: 0;
    line-height: 1.15;
    word-wrap: break-word;
}

.tours-catalog-section {
    padding-top: 1rem;
}

.tours-catalog-breadcrumbs {
    margin-bottom: 3rem;
}

/* Tours catalog page — red theme */
.page-tours .tours-catalog-hero {
    background: linear-gradient(135deg, var(--tc-red-dark) 0%, var(--tc-red) 55%, #a81d24 100%);
    padding: 3.25rem 7% 3.75rem;
}

.page-tours .tours-catalog-hero-inner {
    max-width: 100%;
}

.page-tours .tours-catalog-breadcrumbs {
    margin-bottom: 1.15rem;
}

.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;
    font-family: var(--tc-font-body);
    color: var(--tc-gold);
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.tours-catalog-title-main {
    font-family: var(--tc-font-display);
    font-size: clamp(2.2rem, 4.2vw, 3rem);
    font-weight: 700;
    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;
    min-width: 0;
    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%
    );
    transition: opacity 0.35s ease;
}

.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-price-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--tc-red);
    color: var(--tc-white);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.tours-catalog-price-tag strong {
    display: block;
    font-family: var(--tc-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-top: 0.1rem;
}

.tours-catalog-stars {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    color: var(--tc-gold);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    line-height: 1;
    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: calc(0.62rem + 2px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0.45rem;
}

.tours-catalog-card-title {
    margin: 0;
    font-family: var(--tc-font-display);
    font-size: calc(1.45rem + 2px);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.1;
    color: var(--tc-white);
    text-transform: uppercase;
}

.tours-catalog-desc {
    margin: 0;
    font-size: calc(0.8rem + 2px);
    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);
}

.tour-presentation-content p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tour-presentation-content p:last-child {
    margin-bottom: 0;
}

/* Tabs */
.tour-tabs-container {
    margin-top: 0;
}

.tour-tabs-headers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 100%;
}

.tour-tabs-headers::-webkit-scrollbar {
    display: none;
}

.tour-tabs-headers .tab-btn {
    background-color: var(--tc-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    font-family: var(--tc-font-display);
    font-size: calc(0.9rem + 6px);
    font-weight: 600;
    color: #5c5c5c;
    padding: calc(0.6rem + 5px) calc(1.4rem + 5px);
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.tour-tabs-headers .tab-btn:hover:not(.active) {
    color: var(--tc-red);
    border-color: rgba(200, 35, 43, 0.18);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.tour-tabs-headers .tab-btn.active {
    background-color: 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);
}

/* Legacy selector kept for typography rules */
.tab-btn {
    border: none;
}

.tour-tabs-content {
    background-color: #f8f8f8;
    border: 1px solid #edf2f7;
    border-left: 4px solid var(--tc-teal);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Tour Prices Table */
.tour-prices-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-prices-note {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.tour-prices-table-scroll {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tour-prices-table {
    width: 100%;
    min-width: 420px;
    border-collapse: collapse;
    background: var(--tc-white);
}

.tour-prices-table thead {
    background: rgba(200, 35, 43, 0.08);
}

.tour-prices-table th,
.tour-prices-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tour-prices-table th {
    font-family: var(--tc-font-display);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--tc-red-dark);
}

.tour-prices-table td {
    color: #4a5568;
}

.tour-prices-table td:last-child,
.tour-prices-table th:last-child {
    text-align: right;
}

.tour-prices-table tbody tr:last-child td {
    border-bottom: none;
}

.tour-prices-table tbody tr:hover {
    background: rgba(200, 35, 43, 0.04);
}

.tour-prices-table td:nth-child(2),
.tour-prices-table td:nth-child(3) {
    font-weight: 700;
    color: var(--tc-red-dark);
}

/* Short Itinerary List */
.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:first-child {
    padding-top: 0;
}

.itinerary-short-list li strong {
    color: #000000;
    font-weight: 600;
}

.itinerary-sub-list {
    list-style: none;
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.itinerary-sub-list li {
    padding: 0.25rem 0 !important;
    border-bottom: none !important;
    font-size: 0.9rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.itinerary-sub-list li::before {
    content: '—';
    color: #E3A01A;
    font-weight: bold;
}

/* Full Itinerary Day */
.itinerary-day {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid #edf2f7;
}

.itinerary-day::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -6px;
    width: 10px;
    height: 10px;
    background-color: #E3A01A;
    border-radius: 50%;
}

.itinerary-day h5 {
    font-family: var(--tc-font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.6rem;
}

.itinerary-day p {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Inclusions & Exclusions */
.inclusions-layout {
    display: flex;
    gap: 3rem;
}

.inclusions-col {
    flex: 1;
}

.inclusions-col h5 {
    font-family: var(--tc-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
}

.inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions-list li {
    display: flex;
    align-items: flex-start;
    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;
    font-size: 1.1rem;
}

.inclusions-list.excluded li::before {
    content: '✗';
    color: var(--tc-red);
    font-weight: bold;
    font-size: 1.1rem;
}

/* FAQs */
.faq-item {
    padding: 1.5rem;
    background-color: var(--tc-bg-light);
    border-radius: 8px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.faq-item h6 {
    font-family: var(--tc-font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar Details Card */
.tour-specs-card {
    background-color: var(--tc-bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.01);
}

.tour-specs-card h4 {
    font-family: var(--tc-font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.8rem;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.92rem;
}

.specs-list li:last-child {
    border-bottom: none;
}

.spec-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.spec-icon {
    width: 16px;
    height: 16px;
    color: var(--tc-teal);
    flex-shrink: 0;
}

.specs-list li strong {
    color: #4a5568;
    font-weight: 500;
}

.specs-list li span {
    color: #000000;
    font-weight: 600;
    text-align: right;
}

.tour-specs-card--compact {
    padding: 1.15rem 1.2rem 1.2rem;
    border-radius: 12px;
}

.tour-specs-card--compact h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.specs-list--compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.specs-list--compact li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.55rem 0.6rem;
    border-bottom: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.03);
    font-size: 0.82rem;
}

.specs-list--compact .spec-label {
    gap: 0.35rem;
}

.specs-list--compact .spec-icon {
    width: 13px;
    height: 13px;
}

.specs-list--compact li strong {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.specs-list--compact li span {
    font-size: 0.8rem;
    text-align: left;
    line-height: 1.25;
}

.tour-specs-card--compact #btn-open-contact {
    padding: 0.65rem 1rem;
    font-size: 0.76rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

#btn-open-contact {
    background-color: #000000; /* Dark luxury base background */
    color: #E3A01A; /* Brand Gold text */
    border: 2px solid #E3A01A;
    padding: 0.9rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

#btn-open-contact:hover {
    transform: translateY(-3px);
    background-color: var(--tc-red);
    border-color: var(--tc-red);
    color: var(--tc-white);
    box-shadow: 0 8px 25px rgba(200, 35, 43, 0.35);
}

#btn-open-contact:active {
    transform: translateY(1px);
}

/* Tour Gallery Section */
.tour-gallery-section {
    background-color: var(--tc-bg-light);
    padding: 5rem 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.tour-gallery-container {
    margin-left: 7%;
    margin-right: 7%;
}

.gallery-title {
    font-family: var(--tc-font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1; /* Beautiful square layout */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Tour detail page — red brand theme */
.page-tour .tour-detail-section {
    background: linear-gradient(180deg, #ffffff 0%, rgba(200, 35, 43, 0.04) 100%);
}

.page-tour .tour-hero-content .cursive-subtitle {
    color: var(--tc-gold);
}

.page-tour .tour-breadcrumbs a:hover {
    color: var(--tc-red);
}

.page-tour .tour-breadcrumbs span {
    color: var(--tc-red);
}

.page-tour .tour-tabs-headers .tab-btn:not(.active) {
    background-color: rgba(255, 255, 255, 0.96);
    color: var(--tc-red-dark);
}

.page-tour .tour-tabs-headers .tab-btn:hover:not(.active) {
    background-color: var(--tc-white);
    color: var(--tc-red);
}

.page-tour .tour-tabs-headers .tab-btn.active {
    background-color: var(--tc-red);
    color: var(--tc-white);
    border-color: var(--tc-red);
}

.page-tour .tour-tabs-content {
    border-left-color: var(--tc-red);
}

.page-tour .itinerary-short-list li strong {
    color: var(--tc-red-dark);
}

.page-tour .itinerary-sub-list li::before {
    color: var(--tc-red);
}

.page-tour .itinerary-day {
    border-left-color: rgba(200, 35, 43, 0.22);
}

.page-tour .itinerary-day::before {
    background-color: var(--tc-red);
}

.page-tour .inclusions-col h5 {
    color: var(--tc-red-dark);
}

.page-tour .faq-item {
    border-left: 3px solid var(--tc-red);
}

.page-tour .tour-specs-card--compact {
    background-color: var(--tc-white);
    border: 1px solid rgba(200, 35, 43, 0.12);
    box-shadow: 0 8px 24px rgba(200, 35, 43, 0.1);
}

.page-tour .tour-specs-card--compact h4 {
    color: var(--tc-red);
}

.page-tour .tour-specs-card--compact .spec-icon {
    color: var(--tc-red);
}

.page-tour .tour-specs-card--compact .specs-list li {
    background: rgba(200, 35, 43, 0.05);
}

.page-tour .tour-specs-card--compact .specs-list li strong {
    color: rgba(107, 18, 24, 0.72);
}

.page-tour .tour-specs-card--compact .specs-list li span {
    color: var(--tc-red-dark);
}

.page-tour .tour-specs-card--compact #btn-open-contact {
    background-color: var(--tc-red);
    color: var(--tc-white);
    border-color: var(--tc-red);
}

.page-tour .tour-specs-card--compact #btn-open-contact:hover {
    background-color: var(--tc-gold);
    border-color: var(--tc-gold);
    color: var(--tc-black);
}

.page-tour .tour-gallery-section {
    background-color: var(--tc-red-dark);
    border-top: none;
    border-bottom: none;
}

.page-tour .tour-gallery-section .cursive-subtitle {
    color: var(--tc-gold);
}

.page-tour .gallery-title {
    color: var(--tc-white);
}

.page-tour .modal-box h3 {
    color: var(--tc-red);
}

.page-tour .modal-form input:focus,
.page-tour .modal-form textarea:focus {
    border-color: var(--tc-red);
    box-shadow: 0 0 0 3px rgba(200, 35, 43, 0.15);
}

/* Contact Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: #ffffff;
    padding: 3.5rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2.2rem;
    line-height: 1;
    color: #a0aec0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: #000000;
}

.modal-box h3 {
    font-family: var(--tc-font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.modal-box p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-form label {
    font-family: var(--tc-font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
}

.modal-form input,
.modal-form textarea {
    font-family: var(--tc-font-display);
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.92rem;
    color: #000000;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #E3A01A;
    box-shadow: 0 0 0 3px rgba(227, 160, 26, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-home .main-header:not(.header-scrolled) {
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .page-home .main-header:not(.header-scrolled) .logo-img {
        max-height: 72px;
    }
    .main-header {
        z-index: 9999;
        overflow: visible;
        background-color: rgba(0, 0, 0, 0.88);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
    .page-home .main-header.header-scrolled {
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        margin-left: 5%;
        margin-right: 5%;
        min-width: 0;
        max-width: 100%;
    }
    .logo-theme-the-inka-peru {
        min-width: 0;
        flex-shrink: 1;
    }
    .logo-img {
        max-height: 40px;
        max-width: 100%;
    }
    .page-home .main-header.header-scrolled .logo-img {
        max-height: 40px;
    }
    .nav-toggle {
        display: flex; /* Show toggle on mobile */
        position: relative;
        z-index: 10002;
        flex-shrink: 0;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: min(280px, 85vw);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        background-color: #000000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 1.75rem 2rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
        z-index: 10001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .main-nav.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    .main-nav a {
        color: #ffffff;
        font-size: calc(1.05rem + 2px);
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .main-nav a::before {
        display: none; /* Disable hover underline effect on mobile */
    }
    .main-nav a:hover {
        color: #E3A01A;
    }
    .header-cta {
        margin-left: auto;
        margin-right: 0.5rem;
        flex-shrink: 0;
        gap: 0.45rem;
    }
    .header-cta .btn-header-whatsapp,
    .header-cta .btn-enquire {
        padding: 0.6rem 0.85rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }
    .header-cta .btn-header-whatsapp svg {
        width: 16px;
        height: 16px;
    }
    .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));
        gap: 1.35rem;
    }
    .holiday-intro-title {
        font-size: 2rem;
    }
    .holiday-tour-title {
        font-size: 1.05rem;
    }
    .routes-red-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .routes-red-intro-col {
        order: 0;
        position: static;
        flex: none;
        width: 100%;
    }
    .routes-red-tours-col {
        order: 1;
    }
    .routes-red-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .routes-red-card {
        flex-direction: column;
        min-height: 0;
    }
    .routes-red-media {
        flex: none;
        width: 100%;
        min-height: 238px;
    }
    .routes-red-intro-title {
        font-size: 2rem;
    }
    .routes-red-card-title {
        font-size: 1rem;
    }
    .why-choose-us-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
    .choose-item-intro {
        grid-column: 1 / -1;
    }
    .choose-intro-title {
        font-size: 1.85rem;
    }
    .packages-carousel-window {
        padding: 0 5%;
    }
    .packages-header {
        margin-left: 5%;
        margin-right: 5%;
        margin-bottom: 2.5rem;
    }
    .packages-section .packages-eyebrow {
        font-size: 1.5rem;
    }
    .packages-title {
        font-size: 2.6rem;
    }
    .packages-carousel-track {
        transform: translateX(0);
        gap: 1.5rem;
    }
    .testimonials-carousel-window {
        padding: 1.5rem 0;
    }
    .testimonials-carousel-track {
        transform: translateX(0);
        gap: 4%;
    }
    .testimonial-card {
        flex: 0 0 48%;
    }
    .featured-tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.35rem;
    }
    .blog-title {
        font-size: 2.1rem;
    }
    .accreditations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .tour-detail-container,
    .tours-page-header {
        margin-left: 5%;
        margin-right: 5%;
    }
    .tour-detail-layout {
        flex-direction: column;
        gap: 2.5rem;
    }
    .tour-sidebar {
        flex: auto;
        position: relative;
        top: 0;
        width: 100%;
        max-width: 100%;
    }
    .tour-main-content,
    .tour-tabs-container,
    .tour-tabs-content,
    .tour-specs-card,
    .featured-tours-grid,
    .gallery-grid {
        min-width: 0;
        max-width: 100%;
    }
    .tour-hero-inline {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
        margin-bottom: 2rem;
    }
    .tour-hero-stars {
        top: 0.85rem;
        right: 0.85rem;
        font-size: 1.05rem;
    }
    .tour-hero-content {
        bottom: 1.2rem;
        left: 1.2rem;
        right: 1.2rem;
        max-width: none;
    }
    .tour-hero-content h1 {
        font-size: 1.55rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    .tour-tabs-content {
        padding: 1.5rem;
    }
    .tour-tabs-headers {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        gap: 0.5rem;
    }
    .tour-tabs-headers .tab-btn {
        flex: 0 0 auto;
        font-size: calc(0.82rem + 6px);
        padding: calc(0.55rem + 5px) calc(1rem + 5px);
    }
    .inclusions-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    .gallery-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    .tours-page-header {
        margin-top: 2.5rem;
    }
    .tours-page-header .cursive-subtitle {
        font-size: 1.35rem;
    }
    .tours-page-title {
        font-size: 1.85rem;
    }
    .tours-catalog-breadcrumbs {
        margin-bottom: 2rem;
    }
    .page-tours .tours-catalog-hero {
        padding: 2.5rem 5% 3rem;
    }
    .tours-catalog-container {
        margin-left: 5%;
        margin-right: 5%;
    }
    .tours-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.15rem;
    }
    .tours-catalog-card {
        aspect-ratio: 1 / 1;
    }
    .tours-catalog-card-title {
        font-size: calc(1.2rem + 2px);
    }
    .tours-catalog-title-main {
        font-size: 2rem;
    }
    .featured-tour-card {
        padding: 1.8rem 1.4rem;
    }
}

@media (max-width: 480px) {
    .holiday-tours-grid {
        grid-template-columns: 1fr;
    }
    .holiday-intro-eyebrow {
        font-size: 1.35rem;
    }
    .holiday-intro-title {
        font-size: 1.75rem;
    }
    .routes-red-media {
        min-height: 263px;
    }
    .routes-red-eyebrow {
        font-size: 1.35rem;
    }
    .routes-red-intro-title {
        font-size: 1.75rem;
    }
    .why-choose-us-grid {
        grid-template-columns: 1fr;
    }
    .choose-item {
        min-height: 240px;
    }
    .choose-intro-title {
        font-size: 1.65rem;
    }
    .packages-carousel-window {
        padding: 0 5%;
    }
    .packages-header {
        margin-left: 5%;
        margin-right: 5%;
        gap: 0.5rem 1rem;
    }
    .packages-section .packages-eyebrow {
        font-size: 1.25rem;
    }
    .packages-title {
        font-size: 2.2rem;
    }
    .package-card-content h4 {
        font-size: 1.45rem;
    }
    .packages-carousel-track {
        transform: translateX(0);
        gap: 1.25rem;
    }
    .testimonials-carousel-window {
        padding: 1.5rem 0;
    }
    .testimonials-carousel-track {
        transform: translateX(0);
        gap: 5%;
    }
    .testimonial-card {
        flex: 0 0 90%;
    }
    .featured-tours-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .tours-catalog-grid {
        grid-template-columns: 1fr;
    }
    .tours-catalog-card {
        aspect-ratio: 1 / 1;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-title {
        font-size: 1.85rem;
    }
    .accreditations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact-list li {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .tour-detail-container,
    .tours-page-header {
        margin-left: 4%;
        margin-right: 4%;
    }
    .tour-detail-section {
        padding: 1.5rem 0 4rem;
    }
    .tour-hero-content h1 {
        font-size: 1.35rem;
    }
    .tour-tabs-content {
        padding: 1.15rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }
    .tours-page-header .cursive-subtitle {
        font-size: 1.2rem;
    }
    .tours-page-title {
        font-size: 1.55rem;
    }
    .tour-card-content h4 {
        font-size: 1.15rem;
    }
}

/* Bebas Neue — single weight, consistent tracking on display type */
h1, h2, h3, h4, h5, h6,
.main-nav a,
.btn-enquire,
.btn-header-whatsapp,
.btn-hero-primary,
.btn-hero-secondary,
.btn-payment-methods,
.btn-primary,
#btn-open-contact,
.tab-btn,
.hero-title,
.holiday-title,
.holiday-intro-title,
.holiday-tour-title,
.routes-red-intro-title,
.routes-red-card-title,
.packages-title,
.testimonials-title,
.featured-tours-title,
.blog-title,
.blog-card-title,
.grid-content h4,
.choose-intro-title,
.choose-item h4,
.package-card-content h4,
.tour-card-content h4,
.footer-col h4,
.tour-hero-content h1,
.itinerary-day h5,
.inclusions-col h5,
.faq-item h6,
.tour-specs-card h4,
.tour-highlight-title,
.gallery-title,
.modal-box h3,
.tours-page-title,
.tours-catalog-title-main,
.tours-catalog-card-title {
    font-weight: 400;
    letter-spacing: 0.04em;
}

