/* ============================================================
   ROAD GAMES TRAVEL — Design System
   Premium LIGHT theme with Cleveland Browns accent colors
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Design Tokens --- */
:root {
  /* Browns Colors */
  --browns-orange: #E03500;
  --browns-orange-light: #FF5722;
  --browns-orange-dark: #B82A00;
  --browns-orange-glow: rgba(224, 53, 0, 0.12);
  --browns-brown: #311D00;
  --browns-brown-light: #5C3A1E;

  /* Light Base Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f7f7fa;
  --bg-tertiary: #eeeef2;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --bg-glass: rgba(0, 0, 0, 0.02);
  --bg-glass-border: rgba(0, 0, 0, 0.07);
  --bg-warm: #fdf8f5;

  /* Text */
  --text-primary: #1a1a2e;
  --text-secondary: #5a5a72;
  --text-muted: #9a9ab0;
  --text-accent: var(--browns-orange);
  --text-on-accent: #ffffff;

  /* Surfaces */
  --surface-1: #ffffff;
  --surface-2: #f5f5f8;
  --surface-3: #eaeaf0;

  /* Gradients */
  --gradient-hero: linear-gradient(160deg, #ffffff 0%, #fdf6f3 40%, #f7f0ed 100%);
  --gradient-orange: linear-gradient(135deg, #E03500, #FF5722);
  --gradient-card: linear-gradient(145deg, rgba(224,53,0,0.04), rgba(255,87,34,0.01));
  --gradient-featured: linear-gradient(145deg, rgba(224,53,0,0.06), rgba(253,248,245,1));

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-glow: 0 4px 24px rgba(224, 53, 0, 0.12);
  --shadow-glow-strong: 0 8px 40px rgba(224, 53, 0, 0.20);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.06), 0 12px 40px rgba(0,0,0,0.08);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

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

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

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

a { color: var(--text-accent); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--browns-orange-dark); }
img { max-width: 100%; display: block; }

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-padding { padding: var(--space-4xl) 0; }
.text-center { text-align: center; }

.text-gradient {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}

/* --- Typography --- */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.heading-sm {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.body-md {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-accent);
}

/* --- Section Headers --- */
.section-header { margin-bottom: var(--space-3xl); }
.section-header .label { margin-bottom: var(--space-md); display: block; }
.section-header .heading-lg { margin-bottom: var(--space-md); }
.section-header .body-lg { max-width: 600px; margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
  color: #fff;
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--bg-glass-border);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: rgba(0,0,0,0.12);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--bg-glass-border);
  box-shadow: var(--shadow-xs);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-logo .logo-icon { font-size: 1.6rem; }
.nav-logo .logo-accent { color: var(--browns-orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: var(--space-4xl) 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,53,0,0.05) 0%, transparent 60%);
  animation: pulse-glow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,29,0,0.04) 0%, transparent 60%);
  animation: pulse-glow 10s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

/* Decorative football field lines */
.hero-field-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--browns-orange) 0px,
    var(--browns-orange) 30px,
    transparent 30px,
    transparent 60px
  );
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: var(--bg-primary);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--browns-orange);
  margin-bottom: var(--space-xl);
  animation: fade-in-up 0.6s ease-out;
  box-shadow: var(--shadow-sm);
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--browns-orange);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  animation: fade-in-up 0.6s ease-out 0.1s both;
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto var(--space-2xl);
  animation: fade-in-up 0.6s ease-out 0.2s both;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.6s ease-out 0.3s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  animation: fade-in-up 0.6s ease-out 0.4s both;
}

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

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--browns-orange);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fade-in-up 0.6s ease-out 0.6s both;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 24px; height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--browns-orange);
  border-radius: 2px;
  animation: scroll-bob 2s ease-in-out infinite;
}

@keyframes scroll-bob {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* --- How It Works --- */
.how-it-works {
  background: var(--bg-primary);
  border-top: 1px solid var(--bg-glass-border);
  border-bottom: 1px solid var(--bg-glass-border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.step-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224,53,0,0.15);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: var(--space-lg);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.step-card .heading-sm { margin-bottom: var(--space-sm); }
.step-card .body-md { font-size: 0.9rem; }

/* --- Featured Trip --- */
.featured-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}

.featured-card {
  background: var(--bg-primary);
  border: 1px solid rgba(224, 53, 0, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(circle at right center, rgba(224,53,0,0.04), transparent 70%);
  pointer-events: none;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-md);
}

.featured-info .heading-lg { margin-bottom: var(--space-md); }

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.featured-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.featured-meta-item .meta-icon { font-size: 1.1rem; }

.featured-details { position: relative; z-index: 1; }

.featured-includes {
  list-style: none;
  display: grid;
  gap: var(--space-md);
}

.featured-includes li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.featured-includes li .check {
  color: #16a34a;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.featured-price {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--bg-glass-border);
}

.featured-price .price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.featured-price .price-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-primary);
}

.featured-price .price-value .price-currency {
  font-size: 1.4rem;
  vertical-align: super;
  margin-right: 2px;
}

.featured-price .price-per {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 4px;
}

/* --- Trip Cards Grid --- */
.trips-section { background: var(--bg-secondary); }

.trip-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-primary);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover {
  color: var(--text-primary);
  border-color: rgba(0,0,0,0.15);
  box-shadow: var(--shadow-xs);
}

.filter-btn.active {
  background: var(--gradient-orange);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
}

/* --- Individual Trip Card --- */
.trip-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-card);
}

.trip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 53, 0, 0.2);
  box-shadow: var(--shadow-card-hover);
}

.trip-card-header {
  position: relative;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trip-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  transition: all var(--transition-slow);
}

.trip-card:hover .trip-card-bg {
  transform: scale(1.05);
  opacity: 0.8;
}

.trip-card-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,46,0.15) 0%, rgba(26,26,46,0.7) 100%);
}

.trip-card-badges {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.trip-type-badge {
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.trip-type-badge.bus {
  background: rgba(22, 163, 74, 0.85);
  color: #fff;
}

.trip-type-badge.fly {
  background: rgba(37, 99, 235, 0.85);
  color: #fff;
}

.trip-status-badge {
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.trip-status-badge.booking {
  background: rgba(224, 53, 0, 0.9);
  color: #fff;
}

.trip-status-badge.coming-soon {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-secondary);
}

.trip-status-badge.interest {
  background: rgba(124, 58, 237, 0.85);
  color: #fff;
}

.trip-city-name {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.trip-card-body { padding: var(--space-lg); }

.trip-opponent {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.trip-details-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.trip-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trip-detail .detail-icon { font-size: 1rem; flex-shrink: 0; }

.trip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--bg-glass-border);
  background: var(--bg-secondary);
}

.trip-price { font-family: var(--font-display); }

.trip-price .from-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trip-price .amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

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

/* --- About Section --- */
.about-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--bg-glass-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-content .heading-lg { margin-bottom: var(--space-lg); }
.about-content .body-lg { margin-bottom: var(--space-lg); }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.about-highlight {
  padding: var(--space-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.about-highlight:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(224,53,0,0.12);
}

.about-highlight .highlight-icon { font-size: 1.5rem; margin-bottom: var(--space-sm); }

.about-highlight .highlight-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.about-highlight .highlight-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- FAQ Section --- */
.faq-section { background: var(--bg-secondary); }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-md);
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.faq-item.active {
  border-color: rgba(224, 53, 0, 0.2);
  box-shadow: var(--shadow-sm);
}

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

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

.faq-arrow {
  font-size: 1.2rem;
  transition: transform var(--transition-base);
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--browns-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--browns-brown);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,53,0,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content .heading-lg {
  margin-bottom: var(--space-md);
  color: #fff;
}

.cta-content .body-lg {
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  color: rgba(255,255,255,0.75);
}

/* --- Footer --- */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--bg-glass-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .nav-logo { margin-bottom: var(--space-md); }

.footer-brand .body-md {
  font-size: 0.85rem;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.footer-contact-item .contact-icon { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--bg-glass-border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-glass-border);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--browns-orange-glow);
  border-color: rgba(224,53,0,0.3);
  color: var(--browns-orange);
}

/* --- Booking Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-primary);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-lg);
}

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

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--space-xl);
  border-bottom: 1px solid var(--bg-glass-border);
  position: sticky;
  top: 0;
  background: var(--bg-primary);
  z-index: 1;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-close {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-glass-border);
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.modal-close:hover {
  background: rgba(224,53,0,0.1);
  color: var(--browns-orange);
}

.modal-body { padding: var(--space-xl); }

.modal-section { margin-bottom: var(--space-xl); }
.modal-section:last-child { margin-bottom: 0; }

.modal-section-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--browns-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.itinerary-list {
  list-style: none;
  display: grid;
  gap: var(--space-sm);
}

.itinerary-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
}

.itinerary-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--browns-orange);
  min-width: 80px;
  flex-shrink: 0;
}

.itinerary-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.include-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}

.include-item .check-icon {
  color: #16a34a;
  flex-shrink: 0;
}

.modal-footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--bg-glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  position: sticky;
  bottom: 0;
  background: var(--bg-primary);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.modal-price-display .from-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.modal-price-display .per-person {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Email Form --- */
.email-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 460px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  color: #fff;
  outline: none;
  transition: border-color var(--transition-fast);
}

.email-input::placeholder { color: rgba(255,255,255,0.5); }
.email-input:focus { border-color: var(--browns-orange-light); }

/* --- Toast --- */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px 24px;
  background: var(--bg-primary);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast .toast-icon { font-size: 1.2rem; }

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

.reveal.visible {
  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; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .featured-card { grid-template-columns: 1fr; padding: var(--space-2xl); }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    flex-direction: column;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bg-glass-border);
    gap: var(--space-md);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .hero-stats { gap: var(--space-xl); }
  .trips-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  .modal-footer { flex-direction: column; text-align: center; }
  .email-form { flex-direction: column; }
  .includes-grid { grid-template-columns: 1fr; }
  .featured-card { padding: var(--space-xl); }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: var(--space-lg); }
  .trip-details-row { flex-direction: column; gap: var(--space-sm); }
  .featured-meta { flex-direction: column; gap: var(--space-sm); }
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--browns-orange); }

/* --- Selection --- */
::selection { background: rgba(224, 53, 0, 0.15); color: var(--text-primary); }
