/* ═══════════════════════════════════════════════════════════
   CHAMAKKALA TRAVELS — STYLES
   Palette: Sahara Dusk + Midnight Navy
   Fonts: Cormorant Garamond (display) + Plus Jakarta Sans (body)
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --gold:        #E6C07B;
  --gold-light:  #F0D49A;
  --gold-dark:   #C9956B;
  --brown:       #5B3A29;
  --cream:       #F9F3EB;
  --cream-dark:  #EDE4D6;
  --navy:        #0D1B2A;
  --navy-mid:    #152336;
  --navy-light:  #1E3450;
  --text-dark:   #1A1008;
  --text-mid:    #4A3728;
  --text-light:  #8A7060;
  --white:       #FFFFFF;
  --green-wa:    #25D366;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(91,58,41,0.08);
  --shadow-md:   0 8px 32px rgba(91,58,41,0.12);
  --shadow-lg:   0 20px 60px rgba(13,27,42,0.25);
  --shadow-gold: 0 8px 32px rgba(230,192,123,0.25);

  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Selection ── */
::selection { background: var(--gold); color: var(--brown); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(230,192,123,0.15);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px rgba(230,192,123,0.5));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-primary {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.logo-secondary {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(230,192,123,0.6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(249,243,235,0.8);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { left: 0.85rem; right: 0.85rem; }

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(
    160deg,
    #0A1520 0%,
    #0D1B2A 30%,
    #152336 60%,
    #1a2d42 80%,
    #0D1B2A 100%
  );
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(230,192,123,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201,149,107,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-landscape {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 320px;
  pointer-events: none;
}

.hero-landscape svg {
  width: 100%;
  height: 100%;
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230,192,123,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,149,107,0.1) 0%, transparent 70%);
  top: 20%; right: -80px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(230,192,123,0.08) 0%, transparent 70%);
  bottom: 20%; left: 30%;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 72px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(230,192,123,0.12);
  border: 1px solid rgba(230,192,123,0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.title-line {
  display: block;
}

.italic-line {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(249,243,235,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(249,243,235,0.25);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(249,243,235,0.08);
  border-color: rgba(249,243,235,0.5);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.875rem 1.75rem;
  background: var(--green-wa);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-top: 1.5rem;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(249,243,235,0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(230,192,123,0.2);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(249,243,235,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(230,192,123,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════
   FARES TICKER BAR
═══════════════════════════════════════════ */
.fares-ticker-bar {
  background: var(--navy);
  border-top: 1px solid rgba(230,192,123,0.2);
  border-bottom: 1px solid rgba(230,192,123,0.2);
  height: 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-right: 1px solid rgba(230,192,123,0.2);
  height: 100%;
  background: var(--navy-mid);
}

.ticker-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  padding-left: 2rem;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(249,243,235,0.75);
  font-weight: 500;
}

.ticker-item .ticker-price {
  color: var(--gold);
  font-weight: 700;
}

.ticker-item .ticker-route {
  color: rgba(249,243,235,0.5);
}

/* ═══════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════ */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,149,107,0.1);
  border: 1px solid rgba(201,149,107,0.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   LIVE FARES SECTION
═══════════════════════════════════════════ */
.fares-section {
  background: var(--cream);
}

.fare-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  background: white;
  border: 1.5px solid var(--cream-dark);
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.fares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.fare-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.fare-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.fare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230,192,123,0.3);
}

.fare-card:hover::before { transform: scaleX(1); }

.fare-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.fare-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fare-type-badge.flight { background: rgba(59,130,246,0.1); color: #3b82f6; }
.fare-type-badge.train  { background: rgba(34,197,94,0.1);  color: #16a34a; }
.fare-type-badge.bus    { background: rgba(249,115,22,0.1); color: #ea580c; }

.fare-new-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  background: #ef4444;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  animation: newBadgePulse 2s ease-in-out infinite;
}

@keyframes newBadgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.fare-route {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fare-city {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.fare-city small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 400;
}

.fare-arrow {
  color: var(--gold-dark);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.fare-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.fare-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.fare-price small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 400;
  display: block;
}

.fare-date {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: right;
}

.fares-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  color: rgba(249,243,235,0.7);
  font-size: 0.95rem;
}

.fares-cta p { margin-bottom: 1rem; }

/* ═══════════════════════════════════════════
   DESTINATIONS SECTION
═══════════════════════════════════════════ */
.destinations-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.destinations-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(230,192,123,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.destinations-section .section-title { color: var(--cream); }
.destinations-section .section-desc  { color: rgba(249,243,235,0.55); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.dest-card:first-child {
  grid-column: span 2;
  grid-row: span 1;
}

.dest-card-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.dest-card:hover .dest-card-img { transform: scale(1.06); }

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.4) 60%, transparent 100%);
}

.dest-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.dest-card:first-child .dest-name { font-size: 1.8rem; }

.dest-country {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.dest-price {
  font-size: 0.85rem;
  color: rgba(249,243,235,0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.dest-card:hover .dest-price {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   INQUIRY SECTION
═══════════════════════════════════════════ */
.inquiry-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.inquiry-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,149,107,0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.inquiry-info .section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.inquiry-info p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.inquiry-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.inquiry-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.inquiry-features strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.inquiry-features span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Form */
.inquiry-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
  position: relative;
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(201,149,107,0.12);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  background: white;
  box-shadow: 0 0 0 3px rgba(201,149,107,0.12);
}

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

.form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.form-back {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: white;
}

.form-back:hover { border-color: var(--text-light); color: var(--text-dark); }

.form-next { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.active { display: block; }

.success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1.25rem;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 1.5rem;
}

.step-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition: var(--transition);
}

.step-dot.active { background: var(--gold-dark); transform: scale(1.3); }

.step-line {
  width: 40px; height: 1px;
  background: var(--cream-dark);
}

/* ═══════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════ */
.why-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,192,123,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-section .section-title { color: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(230,192,123,0.12);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,192,123,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(230,192,123,0.3);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

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

.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(230,192,123,0.15) 0%, rgba(201,149,107,0.1) 100%);
  border: 1px solid rgba(230,192,123,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.85rem;
  color: rgba(249,243,235,0.55);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-section {
  background: var(--cream);
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  transition: var(--transition-slow);
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

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

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════
   CONTACT / MAP SECTION
═══════════════════════════════════════════ */
.contact-section {
  background: var(--cream-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.contact-info > p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px; height: 44px;
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

.contact-item span {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
}

.map-frame {
  position: relative;
  height: 420px;
  cursor: pointer;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  transition: filter 0.6s ease;
}

.map-frame:hover iframe {
  filter: grayscale(0%) contrast(1) !important;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(13,27,42,0.6) 0%, transparent 50%);
  pointer-events: none;
  transition: var(--transition);
}

.map-frame:hover .map-overlay {
  background: linear-gradient(to top, rgba(13,27,42,0.3) 0%, transparent 40%);
}

.map-pin-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(230,192,123,0.2);
  font-size: 1.2rem;
}

.map-pin-label strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cream);
}

.map-pin-label small {
  font-size: 0.72rem;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(230,192,123,0.1);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(230,192,123,0.1);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(249,243,235,0.45);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}

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

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(230,192,123,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(249,243,235,0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--green-wa);
  border-color: var(--green-wa);
  color: white;
}

.footer-links-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-group li a,
.footer-links-group li span {
  font-size: 0.85rem;
  color: rgba(249,243,235,0.5);
  transition: var(--transition);
}

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

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

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(249,243,235,0.3);
}

.footer-credit { color: rgba(249,243,235,0.2) !important; }

/* ═══════════════════════════════════════════
   WHATSAPP WIDGET
═══════════════════════════════════════════ */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.wa-tooltip {
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
  max-width: 260px;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: var(--transition);
  pointer-events: none;
}

.wa-tooltip.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-tooltip-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.wa-avatar {
  width: 36px; height: 36px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.wa-message strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.wa-message span {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.wa-button {
  width: 58px; height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  position: relative;
}

.wa-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-wa);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

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

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:first-child { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(13,27,42,0.98); backdrop-filter: blur(20px); padding: 1.5rem; gap: 0.25rem; border-bottom: 1px solid rgba(230,192,123,0.15); }
  .nav-links.open { display: flex; }
  .nav-link { color: var(--cream); padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
  .nav-cta { margin: 0.5rem 0 0; text-align: center; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 1.25rem; padding-top: 72px; }
  .hero-stats { gap: 1.25rem; }
  .stat-number { font-size: 1.5rem; }

  .inquiry-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section-container { padding: 3.5rem 1.25rem; }
  .fares-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }
  .whatsapp-widget { bottom: 1.25rem; right: 1.25rem; }
}