/*
 * Taxi Rural Maestrat — Premium Design System
 * Dark Mode · Gold Accents · Scroll Animations
 * ============================================================
 */

/* ==========================================================================
   1. CSS Variables & Design Tokens
   ========================================================================== */
:root {
  /* Core Backgrounds */
  --c-bg:       #080808;
  --c-surface:  #101010;
  --c-elevated: #181818;
  --c-card:     rgba(20, 20, 20, 0.85);

  /* Brand */
  --c-gold:        #C9A94B;
  --c-gold-light:  #E8C96E;
  --c-gold-dim:    rgba(201, 169, 75, 0.12);
  --c-gold-glow:   rgba(201, 169, 75, 0.25);
  --c-whatsapp:    #25D366;

  /* Text */
  --c-text:        #EDEDED;
  --c-text-muted:  #848484;
  --c-text-subtle: #4a4a4a;

  /* Borders */
  --c-border:       rgba(255, 255, 255, 0.07);
  --c-border-gold:  rgba(201, 169, 75, 0.35);

  /* Fonts */
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.75rem;
  --sp-lg:  3rem;
  --sp-xl:  5.5rem;
  --sp-2xl: 9rem;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 999px;

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-base: 0.35s ease;
  --t-slow: 0.65s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-card: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 40px rgba(201,169,75,0.22);
  --shadow-lg:   0 24px 70px rgba(0,0,0,0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

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

/* ==========================================================================
   3. Typography
   ========================================================================== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem,   4vw,   3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--c-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--sp-sm);
}

/* ==========================================================================
   4. Layout Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.section {
  padding: var(--sp-2xl) 0;
  position: relative;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-sm);
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
}

.section-title {
  margin-bottom: var(--sp-lg);
}

.section-title.centered {
  text-align: center;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--c-text-muted);
  max-width: 620px;
  margin: 0 auto var(--sp-lg);
  text-align: center;
  line-height: 1.7;
}

.tag-gold {
  display: inline-block;
  background: var(--c-gold-dim);
  border: 1px solid var(--c-border-gold);
  color: var(--c-gold);
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-gold { color: var(--c-gold); }

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-md);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
  align-items: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-md);
}

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  border-radius: 2px;
  margin: var(--sp-sm) 0 var(--sp-md);
}

.divider.centered {
  margin: var(--sp-sm) auto var(--sp-md);
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.85rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t-base);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.btn svg {
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-gold), #a8802a);
  color: #0a0a0a;
  box-shadow: 0 4px 20px var(--c-gold-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  transform: translateY(-3px);
  box-shadow: 0 10px 35px var(--c-gold-glow);
  color: #0a0a0a;
}

.btn-outline {
  background: transparent;
  color: var(--c-gold);
  border: 1.5px solid var(--c-border-gold);
}

.btn-outline:hover {
  background: var(--c-gold-dim);
  transform: translateY(-3px);
  border-color: var(--c-gold);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--c-whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  background: #20b858;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

/* ==========================================================================
   6. Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--t-base), box-shadow var(--t-base), padding var(--t-base);
}

.header.scrolled {
  background: rgba(8, 8, 8, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border), 0 8px 30px rgba(0,0,0,0.4);
  padding: 0.8rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.logo span { color: var(--c-gold); }

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--c-gold-dim);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  color: var(--c-gold);
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a.btn-primary {
  color: #0a0a0a !important;
}

.nav-links a.btn-outline {
  color: var(--c-gold) !important;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-gold);
  transition: width var(--t-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-gold);
}

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

.nav-cta {
  margin-left: 0.5rem;
}

.lang-switch {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-full);
  padding: 3px;
  border: 1px solid var(--c-border);
}

.lang-switch a {
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-text-muted);
  transition: all var(--t-fast);
}

.lang-switch a.active,
.lang-switch a:hover {
  background: var(--c-gold);
  color: #0a0a0a;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}

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

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   7. Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.9) 0%,
    rgba(8, 8, 8, 0.75) 50%,
    rgba(5, 5, 5, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-gold-dim);
  border: 1px solid var(--c-border-gold);
  color: var(--c-gold);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.7s ease both;
}

.hero h1 {
  color: var(--c-text);
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.9s 0.1s ease both;
}

.hero h1 span {
  color: var(--c-gold);
  display: block;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(237,237,237,0.75);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.7;
  animation: heroFadeUp 0.9s 0.2s ease both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s 0.35s ease both;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s 0.5s ease both;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(237,237,237,0.65);
  font-size: 0.88rem;
}

.hero-badge svg {
  color: var(--c-gold);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--c-text-subtle);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease infinite;
}

.hero-scroll-indicator svg {
  color: var(--c-gold);
}

/* ==========================================================================
   8. Stats Bar
   ========================================================================== */
.stats-bar {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.stat-item {
  text-align: center;
  padding: 0 var(--sp-sm);
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--c-border);
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}

.stat-suffix {
  color: var(--c-gold-light);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ==========================================================================
   9. Glass Cards
   ========================================================================== */
.glass-card {
  background: var(--c-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-md);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,75,0.4), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--c-border-gold);
  border-color: var(--c-border-gold);
}

.glass-card:hover::before {
  opacity: 1;
}

/* Icon wrapper for cards */
.card-icon {
  width: 60px;
  height: 60px;
  background: var(--c-gold-dim);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  color: var(--c-gold);
  transition: background var(--t-base), transform var(--t-base);
  flex-shrink: 0;
}

.glass-card:hover .card-icon {
  background: rgba(201,169,75,0.22);
  transform: scale(1.08);
}

.glass-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.glass-card p {
  font-size: 0.97rem;
  margin-bottom: 0;
}

/* ==========================================================================
   10. Split Section (Text + Image)
   ========================================================================== */
.split-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-image:hover img {
  transform: scale(1.04);
}

.split-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--r-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.split-image-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--c-gold-dim);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}

.split-image-badge-text strong {
  display: block;
  color: var(--c-text);
  font-size: 1rem;
  font-weight: 700;
}

.split-image-badge-text span {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

.check-list {
  margin-top: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
}

.check-item-icon {
  width: 22px;
  height: 22px;
  background: var(--c-gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-item-text {
  color: var(--c-text-muted);
  font-size: 0.97rem;
  line-height: 1.5;
}

/* ==========================================================================
   11. Destination Cards
   ========================================================================== */
.destination-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

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

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

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  transition: background var(--t-base);
}

.destination-card:hover .destination-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.1) 100%);
}

.destination-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.destination-card-tag {
  display: inline-block;
  background: var(--c-gold-dim);
  border: 1px solid var(--c-border-gold);
  color: var(--c-gold);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.destination-card-content h3 {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.destination-card-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   12. Steps / Timeline
   ========================================================================== */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(16.667% + 1.5rem);
  right: calc(16.667% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--c-border-gold), var(--c-border-gold));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-elevated);
  border: 2px solid var(--c-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-gold);
  margin-bottom: var(--sp-md);
  position: relative;
  z-index: 2;
  transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  flex-shrink: 0;
}

.step-item:hover .step-number {
  background: var(--c-gold-dim);
  box-shadow: 0 0 0 6px var(--c-gold-dim);
  transform: scale(1.1);
}

.step-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.step-item p {
  font-size: 0.93rem;
  max-width: 240px;
}

/* ==========================================================================
   13. Routes / Fares Cards
   ========================================================================== */
.route-card {
  background: var(--c-elevated);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-border-gold);
  box-shadow: var(--shadow-card);
}

.route-card-icon {
  width: 50px;
  height: 50px;
  background: var(--c-gold-dim);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}

.route-card-info {
  flex: 1;
  min-width: 0;
}

.route-card-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  line-height: 1.3;
}

.route-card-info span {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

.route-card-price {
  text-align: right;
  flex-shrink: 0;
}

.route-card-price strong {
  display: block;
  color: var(--c-gold);
  font-size: 1.1rem;
  font-weight: 700;
}

.route-card-price small {
  font-size: 0.75rem;
  color: var(--c-text-subtle);
}

/* ==========================================================================
   14. FAQ Accordion
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--c-elevated);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.faq-item.open {
  border-color: var(--c-border-gold);
  box-shadow: 0 0 0 1px var(--c-gold-dim);
}

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

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

.faq-item.open .faq-question {
  color: var(--c-gold);
}

.faq-chevron {
  color: var(--c-text-muted);
  transition: transform var(--t-base), color var(--t-base);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--c-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.4rem;
  color: var(--c-text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
  padding-top: 1.2rem;
}

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

/* ==========================================================================
   15. CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--c-elevated) 0%, rgba(201,169,75,0.08) 100%);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(201,169,75,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

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

/* ==========================================================================
   16. Footer
   ========================================================================== */
.footer {
  background-color: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: var(--sp-xl) 0 var(--sp-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: var(--sp-md);
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  display: block;
}

.footer-logo span { color: var(--c-gold); }

.footer-description {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
  max-width: 300px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-contact-item svg {
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-subtle);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  display: block;
  width: 6px;
  height: 1.5px;
  background: var(--c-text-subtle);
  border-radius: 2px;
  transition: background var(--t-fast), width var(--t-fast);
}

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

.footer-links a:hover::before {
  background: var(--c-gold);
  width: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--c-text-subtle);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--c-text-subtle);
  transition: color var(--t-fast);
}

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

/* ==========================================================================
   17. WhatsApp FAB
   ========================================================================== */
.fab-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: var(--c-whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.fab-whatsapp:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}

.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: fabPulse 2.5s ease-out infinite;
}

/* ==========================================================================
   18. Scroll Reveal Animations
   ========================================================================== */

/* Base state — hidden */
.reveal {
  opacity: 0;
  transition: opacity 0.8s var(--t-slow), transform 0.8s var(--t-slow);
}

.reveal-up    { transform: translateY(48px); }
.reveal-down  { transform: translateY(-48px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-scale { transform: scale(0.88); }

/* Visible state */
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--t-slow), transform 0.7s var(--t-slow);
}

.stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }

/* ==========================================================================
   19. Keyframes
   ========================================================================== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes fabPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ==========================================================================
   20. Dark section alternation
   ========================================================================== */
.section-alt {
  background: var(--c-surface);
}

/* ==========================================================================
   21. Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base);
    z-index: 900;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .nav-cta { display: none; }

  .mobile-toggle { display: flex; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--c-border);
    padding-bottom: var(--sp-md);
  }

  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .steps-wrapper::before { display: none; }

  .step-item {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
  }

  .step-number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-item p {
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-badges { gap: 1rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }

  .footer-grid > div:first-child {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-card { aspect-ratio: 1/1; }

  .route-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .route-card-icon {
    width: 40px;
    height: 40px;
  }
  
  .route-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .route-card-price strong {
    font-size: 1rem;
  }
}

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   22. Vehicle 7-Seat Section
   ========================================================================== */
.vehicle-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--sp-2xl) 0;
}

.vehicle-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transition: transform 0.1s linear;
  will-change: transform;
}

.vehicle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 5, 5, 0.92) 0%,
    rgba(8, 8, 8, 0.80) 55%,
    rgba(5, 5, 5, 0.70) 100%
  );
}

.vehicle-content-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

/* The big "7" badge */
.seats-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,169,75,0.18), rgba(201,169,75,0.04));
  border: 2px solid var(--c-border-gold);
  border-radius: var(--r-xl);
  padding: 2.5rem 3rem;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.seats-badge::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(201,169,75,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.seats-number {
  font-size: 7rem;
  font-weight: 900;
  color: var(--c-gold);
  line-height: 0.9;
  letter-spacing: -0.06em;
  display: block;
  text-shadow: 0 0 60px rgba(201,169,75,0.4);
}

.seats-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-top: 0.6rem;
  display: block;
}

/* Vehicle features list */
.vehicle-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: var(--sp-md);
}

.vehicle-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--c-text-muted);
}

.vehicle-feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-gold-dim);
  border: 1px solid var(--c-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   23. Payment Methods Section
   ========================================================================== */
.payment-section {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-lg) 0;
}

.payment-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.payment-label-col {
  flex: 1;
  min-width: 220px;
}

.payment-label-col .section-eyebrow {
  margin-bottom: 0.5rem;
}

.payment-label-col h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--c-text);
}

.payment-label-col p {
  font-size: 0.95rem;
  margin: 0;
  max-width: 340px;
}

.payment-cards-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Each payment badge — white card style */
.pay-badge {
  background: #ffffff;
  border-radius: var(--r-md);
  padding: 1rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 110px;
  min-height: 72px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform var(--t-base), box-shadow var(--t-base);
  cursor: default;
}

.pay-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55), 0 0 0 2px var(--c-gold-glow);
}

.pay-badge-name {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  line-height: 1;
}

/* Mastercard */
.pay-mastercard { background: #ffffff; }

/* Bizum — white background so the image shows cleanly */
.pay-bizum {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.06);
}

.pay-bizum:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,0.35), 0 0 0 2px var(--c-gold-glow);
}

/* Cash (Efectivo) */
.pay-cash {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.pay-cash:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,0.35), 0 0 0 2px var(--c-gold-glow);
}

.pay-cash .pay-badge-name {
  color: #888;
}

/* ==========================================================================
   24. Responsive — Vehicle & Payment
   ========================================================================== */
@media (max-width: 900px) {
  .vehicle-content-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-lg);
  }

  .seats-badge {
    margin: 0 auto;
    padding: 1.8rem 2.5rem;
  }

  .seats-number { font-size: 5rem; }

  .vehicle-features {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 380px;
    margin: var(--sp-md) auto 0;
  }
}

@media (max-width: 680px) {
  .payment-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-lg);
  }

  .payment-cards-row {
    gap: 0.75rem;
  }

  .pay-badge {
    min-width: 90px;
    padding: 0.8rem 1.2rem;
  }
}

/* ==========================================================================
   25. Service Area Map Section
   ========================================================================== */
.map-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* The iframe fills the entire section */
.map-iframe-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.map-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) brightness(0.92);
}

/* Thin dark gradient on the left so the glass panel pops */
.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(5,5,5,0.72) 0%,
    rgba(5,5,5,0.35) 45%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

/* Glassmorphism panel */
.map-glass-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  margin: var(--sp-xl) var(--sp-xl);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(201,169,75,0.22);
  border-radius: var(--r-xl);
  padding: var(--sp-lg) var(--sp-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  align-self: center;
}

.map-glass-panel .section-eyebrow {
  margin-bottom: 0.75rem;
}

.map-glass-panel h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.map-glass-panel p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: var(--sp-md);
}

/* Zone pills */
.zone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--sp-md);
}

.zone-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--c-gold-dim);
  border: 1px solid var(--c-border-gold);
  color: var(--c-gold-light);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.zone-pill svg {
  color: var(--c-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   26. Responsive — Map Section
   ========================================================================== */
@media (max-width: 768px) {
  .map-section {
    flex-direction: column;
    min-height: auto;
  }

  .map-iframe-wrap {
    position: relative;
    height: 320px;
  }

  .map-section::before {
    background: linear-gradient(
      180deg,
      rgba(5,5,5,0.55) 0%,
      transparent 100%
    );
  }

  .map-glass-panel {
    position: relative;
    max-width: 100%;
    margin: var(--sp-lg) var(--sp-md);
    background: var(--c-elevated);
    border: 1px solid var(--c-border-gold);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}


