/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,15,30,0.85) 0%, rgba(26,26,46,0.7) 50%, rgba(26,26,46,0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero h1 {
  margin: 1.25rem 0 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}
.hero h1 span { color: var(--color-accent); }
.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 2rem;
  max-width: 620px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  color: var(--color-text-muted);
  font-size: 1rem;
}
.trust-badges span { display: flex; align-items: center; gap: 0.5rem; }
.trust-badges svg { width: 18px; height: 18px; color: var(--color-gold); }

/* === MINI HERO (route pages) === */
.mini-hero {
  padding: 9rem 0 4rem;
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-primary-light) 100%);
  overflow: hidden;
}
.mini-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(circle, rgba(233,69,96,0.15), transparent 70%);
}
.mini-hero h1 { max-width: 800px; margin-bottom: 1rem; }
.mini-hero p { font-size: 1.2rem; max-width: 640px; margin-bottom: 2rem; }
.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* === ROUTES === */
.route-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}
.route-pill {
  padding: 0.9rem 1.25rem;
  background: var(--color-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  transition: all var(--transition);
}
.route-pill:hover {
  background: var(--color-card-hover);
  border-color: var(--color-accent);
  transform: translateX(4px);
}
.route-pill span { color: var(--color-text-dim); font-size: 0.9rem; }

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem;
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: 1rem; }

/* === ROUTE TABLE === */
.route-table {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.route-table-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  gap: 1rem;
}
.route-table-row:last-child { border-bottom: none; }
.route-table-row dt { color: var(--color-text-muted); font-size: 1rem; }
.route-table-row dd { font-weight: 600; font-size: 1.05rem; color: white; }
.route-table-row dd strong { color: var(--color-gold); }

/* === FAQ === */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--color-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] { border-color: var(--color-accent); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  font-family: var(--font-heading);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item div {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-card);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--color-accent); }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info .card { padding: 1.5rem; }
.contact-info h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.contact-info a { color: var(--color-accent-light); font-weight: 600; font-size: 1.1rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; min-height: 480px; border: 1px solid var(--color-border); }
.map-embed iframe { width: 100%; height: 100%; min-height: 480px; border: 0; filter: invert(0.92) hue-rotate(180deg) saturate(0.4); }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245,166,35,0.3), transparent 60%);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 1rem; color: white; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.2rem; margin-bottom: 2rem; max-width: 580px; margin-left: auto; margin-right: auto; }

/* === TESTIMONIALS === */
.testimonial {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
}
.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: white;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: white;
  font-family: var(--font-heading);
}
.testimonial-name { font-weight: 600; font-size: 1rem; }
.testimonial-meta { font-size: 0.9rem; color: var(--color-text-dim); }
.stars { color: var(--color-gold); font-size: 1rem; margin-bottom: 0.75rem; }

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

.hero-content > * {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-content > *:nth-child(5) { animation-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* === SEO CONTENT === */
.seo-content {
  max-width: 820px;
  margin: 0 auto;
  column-count: 1;
}
.seo-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .seo-content {
    column-count: 2;
    column-gap: 3rem;
  }
}
