/* =========================================================
   TaxiTour Malaysia — Premium Design System
   ========================================================= */

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

/* === TOKENS === */
:root {
  --bg:           #F8FAFC;
  --bg-2:         #EFF3F9;
  --bg-3:         #E2E9F3;
  --bg-card:      rgba(255,255,255,0.9);
  --bg-card-hover:rgba(255,255,255,1);
  --border:       rgba(15,23,42,0.1);
  --border-gold:  rgba(245,158,11,0.45);

  --gold:         #F59E0B;
  --gold-light:   #FCD34D;
  --gold-dark:    #D97706;
  --gold-glow:    rgba(245,158,11,0.12);

  --text:         #0F172A;
  --text-sub:     #475569;
  --text-muted:   #94A3B8;

  --green:        #10B981;
  --red:          #EF4444;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full:9999px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-gold: 0 4px 24px rgba(245,158,11,0.25);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  0.3s;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.nav.scrolled {
  background: rgba(248,250,252,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-sub);
  padding: 8px 14px;
  border-radius: var(--r-full);
  transition: color var(--dur), background var(--dur);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(15,23,42,0.06);
}
.nav-link.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--bg) !important;
  padding: 10px 20px !important;
  border-radius: var(--r-full) !important;
  font-weight: 700 !important;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--bg) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(248,250,252,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 100px 32px 48px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-size: 1.25rem;
  padding: 14px 20px;
  border-radius: var(--r-md);
}
.mobile-menu .nav-cta {
  text-align: center;
  padding: 16px 20px !important;
  margin-top: 16px;
  font-size: 1.1rem;
  border-radius: var(--r-md) !important;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(245,158,11,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(245,158,11,0.07) 0%, transparent 60%),
    linear-gradient(160deg, #F8FAFC 0%, #EBF1FD 50%, #F8FAFC 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-top: 4px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.hero-taxi-wrap {
  position: relative;
  animation: floatTaxi 4s ease-in-out infinite;
}
.hero-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 24px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.4) 0%, transparent 70%);
  filter: blur(8px);
  animation: glowPulse 4s ease-in-out infinite;
}
.hero-rings {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: transparent;
}
.hero-rings::before, .hero-rings::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.22);
  animation: ringExpand 4s ease-out infinite;
}
.hero-rings::before {
  inset: 20px;
  animation-delay: 0s;
}
.hero-rings::after {
  inset: 0;
  animation-delay: 2s;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: transform var(--dur), box-shadow var(--dur), background var(--dur), color var(--dur);
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 8px 32px rgba(245,158,11,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text-sub);
  padding: 12px 20px;
}
.btn-ghost:hover { color: var(--gold); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-green {
  background: var(--green);
  color: white;
}
.btn-green:hover { background: #059669; box-shadow: 0 4px 16px rgba(16,185,129,0.35); }

/* =========================================================
   SECTION LAYOUT
   ========================================================= */
.section {
  padding: 96px 0;
  position: relative;
}
.section-alt { background: var(--bg-2); }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-title .accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-sub);
  max-width: 560px;
  line-height: 1.7;
}
.section-header {
  margin-bottom: 56px;
}
.section-header-center {
  text-align: center;
}
.section-header-center .section-desc {
  margin: 0 auto;
}

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: background var(--dur), border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.65;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--dur), box-shadow var(--dur), border-color var(--dur);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.13);
  border-color: var(--border-gold);
}
.service-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,23,42,0.75) 100%);
}
.service-card-body {
  padding: 24px;
}
.service-card-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap var(--dur);
}
.service-card:hover .service-card-link { gap: 10px; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: border-color var(--dur), background var(--dur), transform var(--dur), box-shadow var(--dur);
}
.feature-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--gold-glow);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* =========================================================
   STATS BANNER
   ========================================================= */
.stats-section {
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(245,158,11,0.03) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-sub);
  font-weight: 500;
}

/* =========================================================
   FARE TABLE
   ========================================================= */
.fare-search-wrap {
  position: relative;
  margin-bottom: 24px;
}
.fare-search {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 14px 20px 14px 48px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--dur);
}
.fare-search:focus { border-color: var(--gold); }
.fare-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.fare-search::placeholder { color: var(--text-muted); }
.fare-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.fare-table {
  width: 100%;
  border-collapse: collapse;
}
.fare-table thead tr {
  background: rgba(245,158,11,0.08);
  border-bottom: 1px solid var(--border-gold);
}
.fare-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.fare-table tbody tr {
  border-bottom: 1px solid rgba(15,23,42,0.07);
  transition: background var(--dur);
}
.fare-table tbody tr:last-child { border-bottom: none; }
.fare-table tbody tr:hover { background: rgba(245,158,11,0.05); }
.fare-table tbody td {
  padding: 13px 20px;
  font-size: 0.875rem;
}
.fare-table .td-location { font-weight: 500; }
.fare-table .td-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
}
.fare-table .td-midnight {
  font-family: var(--font-display);
  font-weight: 700;
  color: #94A3B8;
}
.fare-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(16,185,129,0.1);
  color: var(--green);
  border-radius: var(--r-full);
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
}
.fare-note {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 24px;
}
.fare-note strong { color: var(--gold); }

/* =========================================================
   STATE TABS
   ========================================================= */
.state-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.state-tab {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 9px 18px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-sub);
  cursor: pointer;
  transition: all var(--dur);
}
.state-tab:hover {
  border-color: var(--border-gold);
  color: var(--text);
}
.state-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.state-panel { display: none; }
.state-panel.active { display: block; }

/* =========================================================
   DESTINATION CARDS
   ========================================================= */
.dest-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.dest-filter-btn {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-sub);
  cursor: pointer;
  transition: all var(--dur);
}
.dest-filter-btn:hover {
  border-color: var(--border-gold);
  color: var(--text);
}
.dest-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--dur), box-shadow var(--dur), border-color var(--dur);
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-gold);
}
.dest-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.dest-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.dest-card:hover .dest-card-img img { transform: scale(1.08); }
.dest-state-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(245,158,11,0.9);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r-full);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
}
.dest-card-body { padding: 20px; }
.dest-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.dest-card-desc {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dest-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.dest-card-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--dur);
}
.dest-card:hover .dest-card-cta { gap: 8px; }

/* =========================================================
   CONTACT / BOOKING FORM
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.contact-info-value a { transition: color var(--dur); }
.contact-info-value a:hover { color: var(--gold); }
.wa-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  border-radius: var(--r-full);
  padding: 14px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  margin-top: 8px;
}
.wa-button:hover {
  background: #1fbe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.booking-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.booking-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.8);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--dur), background var(--dur);
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-select option { background: var(--bg-2); color: var(--text); }
.form-textarea { min-height: 120px; resize: vertical; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(245,158,11,0.10) 0%, transparent 70%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-sub); transition: color var(--dur); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--text-muted); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-sub);
  max-width: 600px;
  line-height: 1.7;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), var(--border-gold), transparent);
}
.step-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--gold-glow);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  background: var(--bg-2);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.12) 0%, rgba(245,158,11,0.04) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-desc {
  color: var(--text-sub);
  margin-bottom: 36px;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 998;
  transition: transform var(--dur), box-shadow var(--dur);
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.float-wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse 2s infinite;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 300px;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.875rem;
  color: var(--text-sub);
  transition: color var(--dur);
}
.footer-link:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-text {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.5;
}
.footer-contact-text a { transition: color var(--dur); }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-copy a { color: var(--gold); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  transition: background var(--dur), border-color var(--dur), color var(--dur);
}
.social-link:hover {
  background: var(--gold-glow);
  border-color: var(--border-gold);
  color: var(--gold);
}

/* =========================================================
   AIRPORT SELECTOR TABS
   ========================================================= */
.airport-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 6px;
  width: fit-content;
}
.airport-tab {
  background: transparent;
  border: none;
  border-radius: var(--r-full);
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-sub);
  cursor: pointer;
  transition: all var(--dur);
}
.airport-tab.active {
  background: var(--gold);
  color: #000;
}
.airport-panel { display: none; }
.airport-panel.active { display: block; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes floatTaxi {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scaleX(1.2); }
}
@keyframes ringExpand {
  0%   { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.5; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.88) translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.animate-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.animate-fade {
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.animate-fade.visible {
  opacity: 1;
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* =========================================================
   UTILITIES
   ========================================================= */
.text-gold { color: var(--gold); }
.text-sub  { color: var(--text-sub); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.hidden { display: none !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* =========================================================
   FAQ / TERMS & CONDITIONS
   ========================================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq-item[open] {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}
.faq-q {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}
.faq-item[open] .faq-q {
  color: var(--gold);
}
.faq-a {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.75;
  padding: 0 24px 20px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .features-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid     { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2)::after { display: none; }
  .hero-inner     { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle  { max-width: 100%; }
  .hero-actions   { justify-content: center; }
  .hero-stats     { justify-content: center; }
  .hero-visual    { order: -1; }
  .contact-grid   { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; gap: 12px; }
  .nav-logo { min-width: 0; gap: 10px; }
  .logo-icon { width: 38px; height: 38px; }
  .logo-text { min-width: 0; }
  .logo-name { font-size: 1.05rem; white-space: nowrap; }
  .logo-tagline { font-size: 0.62rem; letter-spacing: 0.1em; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid  { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none !important; }
  .section   { padding: 64px 0; }
  .container { padding: 0 20px; }
  .page-hero { padding: 120px 0 60px; }
  .booking-form { padding: 24px; }
  .hero-inner { gap: 40px; }
  .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); line-height: 1.15; }
  .hero-subtitle { font-size: 1rem; line-height: 1.65; }
  .hero-actions { width: 100%; }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.98rem;
    white-space: normal;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 16px 10px;
    justify-content: stretch;
  }
  .hero-stats > div { text-align: center; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .logo-icon { width: 34px; height: 34px; }
  .logo-name { font-size: 0.96rem; }
  .logo-tagline { font-size: 0.55rem; letter-spacing: 0.08em; }
  .hero { padding: 108px 0 64px; }
  .hero-title { font-size: clamp(1.85rem, 11vw, 2.4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stat-num { font-size: 1.65rem; }
  .hero-stat-label { font-size: 0.78rem; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .airport-tabs { flex-direction: column; border-radius: var(--r-lg); width: 100%; }
}
