/* ==========================================
   CSS VARIABLES & RESET (Ultra Attractive Editorial)
========================================== */
:root {
    /* Color Palette - Warm & Inviting */
    --bg-color: #F8F6F0; /* Creamy paper warm white */
    --bg-surface: #FFFFFF; /* Pure white for cards */
    --text-primary: #1C1A18; /* Near Black */
    --text-secondary: #6B6862; /* Soft Grey-Brown */
    --accent: #E64C2E; /* Punchy Terracotta / Orange */
    --accent-hover: #C9391E;
    --accent-light: #FCECE9;
    --border-color: rgba(28, 26, 24, 0.1);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 1300px;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .eyebrow {
    font-family: var(--font-display);
    font-weight: 800;
}

.text-accent {
    color: var(--accent);
}

.text-center {
    text-align: center;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

.container-narrow {
    max-width: 900px;
}

.section {
    padding: 6rem 0;
}

/* Graphic Shapes */
.img-arch {
    border-radius: 999px 999px 12px 12px;
}

.img-arch-tall {
    border-radius: 200px 200px 12px 12px;
}

/* ==========================================
   BUTTONS
========================================== */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 99px; /* Pill shape */
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 8px 16px rgba(230, 76, 46, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(230, 76, 46, 0.3);
}

.btn-text {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 0.875rem;
    position: relative;
    display: inline-block;
}

.btn-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.tour-card:hover .btn-text::after, .btn-text:hover::after {
    width: 100%;
}

.btn-whatsapp-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #25D366;
}

.btn-whatsapp-text::after {
    background-color: #25D366;
}

/* ==========================================
   NAVBAR
========================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background-color 0.4s ease, border-bottom 0.4s ease, padding 0.4s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

/* White text on transparent navbar (dark hero) */
.navbar:not(.scrolled) .logo {
    color: white;
}

.navbar:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

.navbar:not(.scrolled) .nav-links a:hover {
    color: var(--accent);
}

.navbar:not(.scrolled) .nav-cta {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.75);
    box-shadow: none;
}

.navbar:not(.scrolled) .nav-cta:hover {
    background: white;
    color: var(--text-primary);
    transform: translateY(-3px);
}

.navbar:not(.scrolled) .hamburger span {
    background-color: white;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo.large {
    font-size: clamp(2rem, 5vw, 3rem);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    white-space: nowrap;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ==========================================
   HERO — Full Bleed
========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 6rem;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    padding-top: 120px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.9;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-visual * {
    pointer-events: none;
}

.hero-img-box {
    position: absolute;
    overflow: hidden;
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-box.img-arch {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    box-shadow: none;
    z-index: 0;
}

.hero-img-box.img-arch > div {
    border-radius: 0 !important;
}

.hero-img-box.img-small {
    display: none;
}

/* Stamp Badge - hidden in full-bleed hero */
.stamp-badge {
    display: none;
}

.stamp-badge-hidden {
    position: absolute;
    top: 5%;
    right: -10%;
    width: 120px;
    height: 120px;
    z-index: 3;
    animation: rotate 15s linear infinite;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.stamp-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    fill: white;
    letter-spacing: 4px;
}

.stamp-center {
    position: absolute;
    font-size: 2rem;
    animation: counter-rotate 15s linear infinite;
}

@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes counter-rotate { 100% { transform: rotate(-360deg); } }


/* ==========================================
   MARQUEE
========================================== */
.marquee-section {
    background-color: var(--text-primary);
    color: var(--bg-color);
    padding: 1.5rem 0;
    transform: rotate(-2deg);
    margin: -7rem -2vw 2rem;
    width: 105vw;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.marquee-inner {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.marquee-inner span {
    padding: 0 1rem;
}

.marquee-inner .dot {
    color: var(--accent);
}

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================
   PHILOSOPHY
========================================== */
.philosophy-header h2 {
    font-size: clamp(2.6rem, 4.5vw, 3.5rem);
    line-height: 1;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.philosophy-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    align-items: start;
}

.philosophy-item:last-child {
    border-bottom: 1px solid var(--border-color);
}

.phil-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px var(--text-primary);
    line-height: 1;
}

.philosophy-item:hover .phil-num {
    color: var(--accent);
    -webkit-text-stroke: 0px;
}

.phil-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.phil-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 650px;
    line-height: 1.8;
}

/* ==========================================
   TOURS GRID
========================================== */
.tours-section {
    background-color: var(--bg-surface);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section-heading {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.6rem, 4.5vw, 3.5rem);
    line-height: 1;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.section-heading p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
}

.tour-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-primary);
}

.tour-img-wrap {
    position: relative;
    height: 480px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    background-color: var(--bg-color);
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.tour-card:hover .tour-img {
    transform: scale(1.08); 
}

.tour-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    transform: scale(0);
    transform-origin: left bottom;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b4a 100%);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(230, 76, 46, 0.4);
    opacity: 0;
    z-index: 4;
}

.tour-badge.badge-visible {
    opacity: 1;
    transform: scale(1);
}

/* MAX SPOTS pill */
.spots-pill {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

/* Book This Tour — squircle button */
.btn-book {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.85rem 1.4rem;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-book:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 76, 46, 0.3);
}

.tour-meta {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.tour-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.tour-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.tour-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: auto;
}

.price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
}

/* ==========================================
   EXPERIENCE / ATMOSPHERE OVERLAP
========================================== */
.experience-section {
    padding: 8rem 0;
    overflow: hidden;
    background-color: var(--bg-color);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.experience-text h2 {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.experience-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.8;
}

.experience-images {
    position: relative;
    height: 700px;
}

.exp-img-box {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-radius: 12px;
}

.exp-parallax {
    width: 100%;
    height: 130%; /* Extra height for parallax */
    object-fit: cover;
}

.box-1 {
    width: 65%;
    height: 450px;
    top: 5%;
    left: 0;
    z-index: 2;
}

.box-2 {
    width: 55%;
    height: 380px;
    bottom: -5%;
    right: 5%;
    z-index: 3;
    border: 10px solid var(--bg-color);
}

.box-3 {
    width: 45%;
    height: 300px;
    top: 0;
    right: 0;
    z-index: 1;
}

/* ==========================================
   REVIEWS
========================================== */
.reviews-section {
    background-color: var(--bg-surface);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.review-card {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.review-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.reviewer {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ==========================================
   FOOTER
========================================== */
.footer {
    background-color: var(--text-primary);
    color: var(--bg-color);
    padding-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
    font-size: 1.05rem;
}

.footer-links h4, .footer-social h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a, .social-icons a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.footer-links a:hover, .social-icons a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}

/* ==========================================
   TEAMBUILDING B2B SECTION
========================================== */
.teambuilding-section {
    background-color: var(--bg-surface);
    color: var(--text-primary);
}

.teambuilding-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.teambuilding-text .eyebrow {
    color: var(--accent);
}

.teambuilding-text h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--text-primary);
}

.teambuilding-text > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.teambuilding-perks {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.teambuilding-perks li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.teambuilding-perks li::before {
    content: '✦';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 0.75rem;
    top: 0.15rem;
}

.teambuilding-perks li strong {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.teambuilding-cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.teambuilding-cta-group .btn-text {
    color: var(--text-secondary);
}

.teambuilding-cta-group .btn-text:hover {
    color: var(--accent);
}

.tb-img-wrap {
    height: 500px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.tb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .teambuilding-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .tb-img-wrap {
        height: 350px;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .legal-links {
        justify-content: center;
    }
}

/* ==========================================
   TOUR DETAILS PAGE (.tour-page-body)
========================================== */
.tour-hero {
    position: relative;
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    overflow: hidden;
    margin-top: 0;
    border-radius: 0 0 24px 24px;
}

.tour-hero-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.tour-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(28,26,24,0.95) 0%, rgba(28,26,24,0.1) 100%);
    z-index: -1;
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tour-badge.large {
    position: static;
    transform: none;
    display: inline-block;
    background-color: var(--accent);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.tour-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
}

.tour-quick-facts {
    display: flex;
    gap: 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    flex-wrap: wrap;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    width: 100%;
}

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    padding-top: 5rem;
    padding-bottom: 8rem;
    align-items: start;
}

.tour-section {
    margin-bottom: 4rem;
}

.tour-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
}

.tour-section h3 {
    font-size: 1.5rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.tour-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.tour-section p.lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.6;
}

.included-list {
    list-style: none;
    margin-bottom: 2rem;
}

.included-list li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.itinerary-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.itinerary-item .time {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    min-width: 90px;
    flex-shrink: 0;
}

.itinerary-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Sidebar Widget */
.tour-sidebar {
    position: sticky;
    top: 120px;
}

.booking-widget {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.widget-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.price-big {
    font-size: 1.6rem;
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    color: var(--accent);
}

.per-person {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

.rating-small {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.fomo-alert {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

/* Compact CTA button inside booking widget */
.booking-widget .btn-block {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    width: 100%;
}

.money-back {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

.money-back-box {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.support-box {
    background-color: var(--accent-light);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.support-box h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.support-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.support-box .btn-whatsapp {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.support-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.05rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    height: 56px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 0 16px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-icon {
    flex-shrink: 0;
}

.whatsapp-label {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55);
}

/* ==========================================
   SEASONAL BANNER
========================================== */
.seasonal-banner {
    background-color: var(--text-primary);
    color: var(--bg-color);
    padding: 2.5rem 0;
    margin: 0;
}

.seasonal-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.seasonal-badge {
    background-color: var(--accent);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.2rem;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
}

.seasonal-text {
    flex: 1;
    min-width: 200px;
}

.seasonal-text h3 {
    font-size: 1.4rem;
    color: white;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.seasonal-text p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    margin: 0;
}

.seasonal-cta {
    flex-shrink: 0;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .seasonal-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .seasonal-cta {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   TEAM / GUIDES SECTION
========================================== */
.team-section {
    background-color: var(--bg-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.guide-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
}

.guide-img-wrap {
    position: relative;
    height: 420px;
    overflow: hidden;
    margin-bottom: 2rem;
    background-color: var(--border-color);
}

.guide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    filter: grayscale(20%);
}

.guide-card:hover .guide-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.guide-info h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.guide-role {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.guide-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ==========================================
   AVAILABILITY / SCHEDULE SECTION
========================================== */
.availability-section {
    background-color: var(--bg-surface);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.schedule-card {
    background-color: var(--bg-color);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.schedule-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.schedule-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.schedule-link {
    margin-top: 1.5rem;
}

.schedule-times {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-times li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.schedule-times .day {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.schedule-times .time {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.95rem;
}

.schedule-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    padding: 2rem;
    background-color: var(--accent-light);
    border-radius: 12px;
}

.schedule-note a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .whatsapp-label {
        display: none;
    }
    .whatsapp-float {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-visual {
        height: 500px;
    }

    /* Experience section: stack grid + fix images */
    .experience-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .experience-text p {
        margin: 0 auto;
    }
    .experience-images {
        position: relative;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .exp-img-box {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        border: none !important;
    }
    .exp-img-box.box-1 {
        grid-column: 1 / -1;
        height: 300px !important;
    }

    /* Tour sidebar: better tablet layout */
    .tour-layout {
        grid-template-columns: 1fr 320px;
        gap: 3rem;
    }
}

/* ==========================================
   HAMBURGER MENU
========================================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--bg-color);
    z-index: 1050;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -1px;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links, .nav-cta {
        display: none;
    }
    .philosophy-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 3rem 0;
    }
    .phil-num {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .tour-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .tour-sidebar {
        position: static;
        order: -1;
    }

    /* Tours grid: prevent horizontal scroll on small phones */
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Marquee: scale down on mobile */
    .marquee-inner {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }
    .marquee-section {
        margin: -5rem -2vw 1rem;
        padding: 1rem 0;
    }

    /* Schedule grid: single column */
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    /* Reviews grid: single column */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Team grid: single column */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Teambuilding section: stack */
    .teambuilding-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
