/* ============================================
   Hannah Kealoha Adventures Tours
   Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --lava-orange: #E85A3C;
  --lava-deep: #C44A30;
  --lava-light: #F4A261;
  --ocean-deep: #1A3A4A;
  --ocean-teal: #2D5A6B;
  --ocean-light: #4A8B9C;
  --sand-warm: #F5EDE4;
  --sand-light: #FAF7F2;
  --palm-green: #2D5B45;
  --palm-light: #4A7F64;
  --volcanic-black: #1C1C1E;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --text-light: #9A9A9A;
  --white: #FFFFFF;
  
  /* NEW FONTS - Bolder, More Premium */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
  --shadow-xl: 0 30px 60px rgba(0,0,0,0.2);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50px;
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--sand-light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
}

.headline {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.script-accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--palm-green);
}

.text-orange { color: var(--lava-orange); }
.text-green { color: var(--palm-green); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

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

.container-wide {
  max-width: 1600px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(28, 28, 30, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.875rem 4%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar.navbar-light:not(.scrolled) {
  background: transparent;
}

.navbar.navbar-dark {
  background: var(--volcanic-black);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 140px;
  width: auto;
  transition: all var(--transition-base);
}

.navbar.scrolled .logo img {
  height: 90px;
}

/* Text logo fallback (kept for footer) */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lava-orange);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lava-orange);
  transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--lava-orange);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(232, 90, 60, 0.3);
}

.nav-cta:hover {
  background: var(--lava-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 90, 60, 0.4);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}

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

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  
  .logo img {
    height: 80px;
  }
  
  .navbar.scrolled .logo img {
    height: 60px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--volcanic-black);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: right var(--transition-slow);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .nav-links a {
    font-size: 1.2rem;
  }
}

/* ============================================
   Buttons - BOLD & IMPACTFUL
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 2.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--lava-orange);
  color: var(--white);
  border-color: var(--lava-orange);
}

.btn-primary:hover {
  background: var(--lava-deep);
  border-color: var(--lava-deep);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 90, 60, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--lava-orange);
  border-color: var(--lava-orange);
}

.btn-outline:hover {
  background: var(--lava-orange);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--volcanic-black);
  color: var(--white);
  border-color: var(--volcanic-black);
}

.btn-dark:hover {
  background: var(--ocean-deep);
  border-color: var(--ocean-deep);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 1.25rem 2.75rem;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

.btn-icon {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
}

/* FareHarbor Button Styling */
.btn-book, 
.fareharbor-book-btn {
  background: var(--lava-orange);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 15px rgba(232, 90, 60, 0.3);
}

.btn-book:hover,
.fareharbor-book-btn:hover {
  background: var(--lava-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 90, 60, 0.4);
}

/* ============================================
   Hero Section - CENTERED & BOLD
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video,
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  padding: 0 5%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero h1 .accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--lava-light);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Page Hero (for interior pages) */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.page-hero .hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-top: 1rem;
  max-width: 600px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.5s;
}

/* ============================================
   Sections
   ============================================ */
section {
  padding: 6rem 0;
}

.section-lg {
  padding: 8rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.bg-sand { background: var(--sand-warm); }
.bg-light { background: var(--sand-light); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--volcanic-black); color: var(--white); }
.bg-ocean { background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-teal) 100%); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lava-orange);
  margin-bottom: 1rem;
  font-weight: 600;
}

.bg-dark .section-eyebrow {
  color: var(--lava-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title .accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--palm-green);
}

.bg-dark .section-title {
  color: var(--white);
}

.bg-dark .section-title .accent {
  color: var(--lava-light);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.bg-dark .section-description {
  color: rgba(255,255,255,0.75);
}

/* ============================================
   Tour Cards
   ============================================ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

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

.tour-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

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

.tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--lava-orange);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tour-badge.coming-soon {
  background: var(--ocean-teal);
}

.tour-badge.popular {
  background: var(--palm-green);
}

.tour-card-content {
  padding: 1.75rem;
}

.tour-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.tour-card-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.tour-card-meta svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
}

.tour-card-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.tour-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tour-highlight {
  background: var(--sand-light);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sand-warm);
}

.tour-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lava-orange);
}

.tour-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.tour-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ocean-deep);
  font-size: 0.9rem;
  font-weight: 500;
}

.tour-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.tour-link:hover {
  color: var(--lava-orange);
}

.tour-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   Region Cards
   ============================================ */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.region-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.region-card:hover img {
  transform: scale(1.1);
}

.region-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.5) 70%, transparent 100%);
  color: var(--white);
}

.region-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,1), 0 1px 3px rgba(0,0,0,1), 0 0 20px rgba(0,0,0,0.8);
  text-decoration: none;
  -webkit-text-decoration: none;
}

.region-card-teaser {
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.5;
  text-shadow: 0 2px 6px rgba(0,0,0,1), 0 1px 3px rgba(0,0,0,0.9);
}

@media (max-width: 1100px) {
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .regions-grid {
    grid-template-columns: 1fr;
  }
  
  .region-card {
    aspect-ratio: 16/9;
  }
}

/* ============================================
   Why Us / Features
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--lava-orange);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   About Section
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-content h2 .accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--palm-green);
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.about-content em {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.about-values {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-value-icon {
  width: 48px;
  height: 48px;
  background: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-value-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--palm-green);
}

.about-value-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image-accent {
    right: 20px;
    bottom: -20px;
  }
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.testimonial-image {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.testimonial-content {
  color: var(--white);
}

.testimonial-stars {
  color: var(--lava-orange);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 2rem;
}

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

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.2);
}

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

.testimonial-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.testimonial-tour {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* No reviews yet - placeholder */
.testimonial-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
}

.testimonial-placeholder h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.testimonial-placeholder p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(28, 28, 30, 0.55) 0%,
    rgba(28, 28, 30, 0.7) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 0 2rem;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-content h2 .accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--lava-light);
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
}

.contact-info > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--lava-orange);
}

.contact-item-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.contact-item-text a:hover {
  color: var(--lava-orange);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all var(--transition-base);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lava-orange);
  box-shadow: 0 0 0 3px rgba(232, 90, 60, 0.1);
}

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

.contact-form .btn {
  width: 100%;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--volcanic-black);
  color: var(--white);
  padding: 5rem 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

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

.footer-column li {
  margin-bottom: 0.7rem;
}

.footer-column a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: color var(--transition-base);
}

.footer-column a:hover {
  color: var(--lava-orange);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--lava-orange);
  flex-shrink: 0;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ============================================
   Responsive Breakpoints
   ============================================ */
@media (max-width: 1200px) {
  section {
    padding: 5rem 0;
  }
}

@media (max-width: 900px) {
  section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.5rem 0;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
  
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Tour Detail Pages - Tabs & Enhanced Layout
   ============================================ */

/* Tour Hero Card - Side by Side Layout */
.tour-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.tour-hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tour-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.tour-hero-image .tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.tour-hero-content {
  padding: 1rem 0;
}

.tour-hero-content .tour-script-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.tour-hero-content h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tour-hero-content > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tour-quick-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tour-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.tour-info-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.tour-info-item .info-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tour-info-item .info-value {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .tour-hero-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tour-hero-image img {
    height: 300px;
  }
  
  .tour-quick-info {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .tour-quick-info {
    grid-template-columns: 1fr;
  }
}

/* Tour Highlights Grid */
.tour-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.highlight-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.highlight-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.tour-description-text {
  max-width: 800px;
}

.tour-description-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .tour-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .highlight-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    text-align: left;
  }
  
  .highlight-item img {
    height: 100px;
  }
}

.tour-detail-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tour-detail-header h2 {
  margin-top: 1rem;
}

.tour-detail-header .tour-card-meta {
  justify-content: center;
  margin-top: 1.5rem;
}

/* Tour Tabs */
.tour-tabs {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 2rem;
}

.tour-tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tour-tab-btn {
  flex: 1;
  min-width: max-content;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-base);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}

.tour-tab-btn:hover {
  color: var(--forest-green);
  background: var(--sand-light);
}

.tour-tab-btn.active {
  color: var(--forest-green);
  border-bottom-color: var(--lava-orange);
}

.tour-tabs-content {
  padding: 2rem;
}

.tour-tab-panel {
  display: none;
}

.tour-tab-panel.active {
  display: block;
}

.tour-tab-panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--volcanic-black);
}

.tour-tab-panel h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.tour-tab-panel p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Itinerary Timeline */
.itinerary-timeline {
  position: relative;
  padding-left: 2rem;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--lava-orange), var(--forest-green));
}

.itinerary-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}

.itinerary-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--lava-orange);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--lava-orange);
}

.itinerary-item:last-child {
  padding-bottom: 0;
}

.itinerary-time {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lava-orange);
  margin-bottom: 0.25rem;
}

.itinerary-content h4 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--volcanic-black);
}

.itinerary-content p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.itinerary-content ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.itinerary-content ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.itinerary-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--forest-green);
}

.itinerary-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--sand-light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

/* Included Grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
}

.included-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.included-item.included svg {
  color: var(--forest-green);
}

.included-item.not-included {
  opacity: 0.6;
}

.included-item.not-included svg {
  color: var(--text-muted);
}

.included-item span {
  font-size: 0.95rem;
}

/* What to Bring Grid */
.bring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.bring-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--sand-light);
  border-radius: var(--radius-md);
}

.bring-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.bring-item h4 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.bring-item p {
  font-size: 0.85rem;
  margin: 0;
}

/* Tour Pricing Bar */
.tour-pricing-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lava-orange);
  line-height: 1;
}

.price-per {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-child {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

@media (max-width: 600px) {
  .tour-pricing-bar {
    flex-direction: column;
    text-align: center;
  }
  
  .tour-pricing-bar .btn {
    width: 100%;
  }
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--volcanic-black);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-base);
}

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

.faq-question svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--lava-orange);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  color: var(--lava-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Tour Card Updates */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.tour-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.tour-card-image .tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.tour-badge.coming-soon {
  background: var(--text-muted);
  color: var(--white);
}

.tour-card-content {
  padding: 1.5rem;
}

.tour-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.tour-card-content .tour-card-meta {
  margin-bottom: 1rem;
}

.tour-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
