/* ============================================
   TRAVERSE TRIBE TOURS — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --maroon: #BC1C2C;
  --maroon-dark: #8E1522;
  --maroon-light: #D4333F;
  --gold: #D4A843;
  --gold-light: #E8C76A;
  --gold-dark: #B8922E;
  
  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FBF8F3;
  --warm-gray: #F5F0EB;
  --gray-100: #E8E4DF;
  --gray-200: #CCC7C1;
  --gray-400: #8A8480;
  --gray-600: #5C5856;
  --gray-800: #2D2926;
  --black: #1A1714;
  
  /* Functional */
  --success: #2E7D32;
  --info: #1565C0;
  
  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  
  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-width: 1200px;
  --container-padding: clamp(1.25rem, 4vw, 2rem);
  
  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26,23,20,0.06);
  --shadow-md: 0 4px 12px rgba(26,23,20,0.08);
  --shadow-lg: 0 8px 30px rgba(26,23,20,0.12);
  --shadow-xl: 0 20px 60px rgba(26,23,20,0.15);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

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

.section-padding {
  padding: var(--section-padding) 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--gray-800);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }

p { margin-bottom: 1rem; color: var(--gray-600); }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--gold);
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 640px;
  color: var(--gray-400);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(188,28,44,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
}

.btn-secondary:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,168,67,0.35);
}

.btn-white {
  background: var(--white);
  color: var(--maroon);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  transition: color 0.4s;
  z-index: 1001;
}

.nav.scrolled .nav-logo {
  color: var(--gray-800);
}

.nav-logo-icon {
  width: 200px;
  
}

/* Dual Logo System: white logo on hero, dark/colour logo on scroll */
.nav-logo-white,
.nav-logo-dark {
  width: 200px;
  object-fit: contain;
  transition: opacity 0.4s var(--ease-out);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-logo-white {
  opacity: 1;
}

.nav-logo-dark {
  opacity: 0;
}

.nav.scrolled .nav-logo-white {
  opacity: 0;
}

.nav.scrolled .nav-logo-dark {
  opacity: 1;
}

/* Logo container needs relative positioning for the absolute images */
.nav-logo-wrapper {
  position: relative;
  width: 200px;
}

/* Inner pages start scrolled, so dark logo shows by default */
.nav.scrolled .nav-logo-white {
  opacity: 0;
}

.nav.scrolled .nav-logo-dark {
  opacity: 1;
}

.nav-logo span:first-of-type {
  color: var(--maroon);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
}

.nav.scrolled .nav-links a {
  color: var(--gray-600);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active {
  color: var(--maroon);
  background: rgba(188,28,44,0.06);
}

.nav-cta {
  background: var(--maroon) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--maroon-dark) !important;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav.scrolled .nav-toggle span {
  background: var(--gray-800);
}

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

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

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

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1714 0%, #2D2926 50%, #3D3530 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(188,28,44,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,168,67,0.1) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 8rem 0 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.15s var(--ease-out) both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 560px;
  animation: fadeInUp 0.8s 0.3s var(--ease-out) both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.8s 0.45s var(--ease-out) both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s 0.6s var(--ease-out) both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--cream);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--gray-100);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-image {
  height: 402px;
  background: var(--warm-gray);
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--gray-800);
}

.card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ============================================
   FEATURES / WHY CHOOSE US
   ============================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
}

.feature-item:hover {
  border-color: rgba(188,28,44,0.2);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(188,28,44,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  margin-bottom: 1.25rem;
}

.feature-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.feature-item p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--gray-800);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(188,28,44,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--maroon);
  color: var(--white);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  padding: 10rem 0 4rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(188,28,44,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(212,168,67,0.08) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1.15rem;
  max-width: 600px;
}

.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.page-hero .breadcrumb a:hover {
  color: var(--gold);
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.steps {
  counter-reset: step;
}

.step-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 4.5rem;
  bottom: 0;
  width: 2px;
  background: var(--gray-100);
}

.step-number {
  counter-increment: step;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(188,28,44,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--maroon);
}

.step-number::before {
  content: counter(step);
}

.step-content h4 {
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--maroon);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s var(--ease-out);
  color: var(--gray-400);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--maroon);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-600);
}

/* ============================================
   FORM
   ============================================ */

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-800);
  transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(188,28,44,0.08);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s var(--ease-spring);
  animation: fadeInUp 0.8s 1s var(--ease-out) both;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* ============================================
   HERO BACKGROUND IMAGE
   ============================================ */

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,23,20,0.85) 0%, rgba(26,23,20,0.6) 40%, rgba(26,23,20,0.75) 100%);
}

/* ============================================
   PHOTO CAROUSEL
   ============================================ */

.photo-carousel-section {
  padding: 0;
  overflow: hidden;
  background: var(--black);
}

.photo-carousel-header {
  padding: var(--section-padding) var(--container-padding) 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.photo-carousel-track {
  display: flex;
  gap: 1rem;
  animation: scrollPhotos 30s linear infinite;
  width: max-content;
  padding-bottom: var(--section-padding);
}

.photo-carousel-track:hover {
  animation-play-state: paused;
}

.photo-carousel-item {
  width: 320px;
  min-width: 320px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.photo-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.photo-carousel-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
}

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

/* ============================================
   VIDEO SECTION
   ============================================ */

.video-section {
  background: var(--gray-800);
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
  background: var(--black);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A1714, #2D2926);
  color: var(--gray-400);
  cursor: pointer;
  transition: all 0.3s;
}

.video-placeholder:hover {
  background: linear-gradient(135deg, #2D2926, #3D3530);
}

.video-play-btn {
  width: 72px;
  height: 72px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(188,28,44,0.4);
  transition: transform 0.3s var(--ease-spring);
}

.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
}

/* ============================================
   SCROLLING LOGOS
   ============================================ */

.logos-section {
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.logos-track-wrapper {
  position: relative;
  overflow: hidden;
}

.logos-track-wrapper::before,
.logos-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logos-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.logos-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scrollLogos 25s linear infinite;
  width: max-content;
}

.logos-track:hover {
  animation-play-state: paused;
}

.logo-item {
  height: 80px;
  opacity: 0.45;
  transition: opacity 0.3s;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-item:hover {
  opacity: 0.8;
}

.logo-item img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 2rem;
  font-family: var(--font-display);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(188,28,44,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--maroon);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Force all inline 2-column grids to stack */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  /* ---- Navigation ---- */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,23,20,0.98);
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }
  
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links a {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255,255,255,0.8) !important;
  }
  
  .nav-links a:hover {
    color: var(--gold) !important;
    background: rgba(255,255,255,0.05) !important;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  /* ---- Hero ---- */
  .hero-content {
    padding: 7rem 0 3rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .hero-stat {
    min-width: 40%;
  }
  
  .hero-stat-number {
    font-size: 1.75rem;
  }
  
  /* ---- Trust Bar ---- */
  .trust-bar-inner {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .trust-item {
    min-width: 45%;
  }
  
  /* ---- All Grid Layouts: Force Single Column ---- */
  [style*="grid-template-columns"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns:380px 1fr"],
  [style*="grid-template-columns: 380px 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  /* ---- Tour cards on programs page ---- */
  .tour-card {
    grid-template-columns: 1fr !important;
  }
  
  .tour-card-image {
    min-height: 200px !important;
  }
  
  .tour-card-body {
    padding: 1.5rem !important;
  }
  
  .tour-card-title {
    font-size: 1.3rem !important;
  }
  
  /* ---- Feature Grid ---- */
  .feature-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* ---- Cards ---- */
  .card-image {
    height: 180px;
  }
  
  /* ---- Gallery ---- */
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem;
  }
  
  /* ---- Sections ---- */
  .section-padding {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
  
  .page-hero {
    padding: 7rem 0 2.5rem;
  }
  
  .page-hero h1 {
    font-size: 1.75rem;
  }
  
  /* ---- Steps ---- */
  .step-item {
    gap: 1.25rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }
  
  .step-item:not(:last-child)::after {
    left: 20px;
  }
  
  /* ---- FAQ ---- */
  .faq-question {
    font-size: 0.9rem;
    padding: 1.25rem 0;
  }
  
  /* ---- Footer ---- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  /* ---- Sticky sidebar becomes normal ---- */
  [style*="position:sticky"],
  [style*="position: sticky"] {
    position: static !important;
  }
  
  /* ---- CTA sections ---- */
  .cta-content h2 {
    font-size: 1.5rem;
  }
  
  /* ---- Inline gap overrides ---- */
  [style*="gap:4rem"],
  [style*="gap: 4rem"] {
    gap: 2rem !important;
  }
  
  [style*="gap:3rem"],
  [style*="gap: 3rem"] {
    gap: 1.5rem !important;
  }
  
  /* ---- Contact form 2-col to 1-col ---- */
  .form-group [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  /* ---- Padding overrides for inner sections ---- */
  [style*="padding:2.5rem"],
  [style*="padding: 2.5rem"] {
    padding: 1.5rem !important;
  }
  
  [style*="padding:2rem 2.5rem"],
  [style*="padding: 2rem 2.5rem"] {
    padding: 1.25rem !important;
  }
  
  /* ---- Absolute positioned elements ---- */
  [style*="position:absolute"][style*="bottom:-1.5rem"] {
    position: static !important;
    margin-top: 1rem;
  }
  
  /* ---- Photo Carousel ---- */
  .photo-carousel-item {
    width: 260px;
    min-width: 260px;
    height: 195px;
  }
  
  /* ---- Testimonials ---- */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* ---- Video ---- */
  .video-wrapper {
    border-radius: 12px;
  }
  
  .video-play-btn {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  /* ---- Hero ---- */
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 1.25rem;
  }
  
  .hero-stat {
    min-width: 45%;
  }
  
  /* ---- CTA buttons ---- */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* ---- Trust bar stacks ---- */
  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .trust-item {
    min-width: 100%;
  }
  
  /* ---- Gallery single column ---- */
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* ---- Tour card meta wraps ---- */
  .tour-card-meta {
    gap: 0.5rem !important;
  }
  
  .tour-card-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start !important;
  }
  
  /* ---- Highlight grid in tour pages ---- */
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  /* ---- Section headings ---- */
  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.4rem !important; }
  h3 { font-size: 1.15rem !important; }
  
  /* ---- Contact WhatsApp block ---- */
  [style*="display:flex"][style*="gap:1rem"][style*="background:#25D366"] {
    flex-direction: row;
    padding: 1.25rem !important;
  }
  
  /* ---- Nav logo ---- */
  .nav-logo-wrapper,
  .nav-logo-white,
  .nav-logo-dark,
  .nav-logo-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
}
