/* =========================================================
   Ranchi Taxi And Cab Service - Style System
   Domain: ranchitaxiandcabservice.com
   Author: Senior Web Developer
   ========================================================= */

/* ── Google Fonts ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ── CSS Custom Properties ────────────────────────────── */
:root {
  /* Colors */
  --navy: #0A1628;
  --navy-mid: #0F1F3D;
  --navy-light: #152847;
  --navy-card: rgba(15,31,61,0.85);
  --gold: #F59E0B;
  --gold-light: #FBD06B;
  --gold-dark: #D97706;
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-10: rgba(255,255,255,0.08);
  --green: #22C55E;
  --red: #EF4444;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #0A1628 0%, #0F2554 50%, #1A3A6C 100%);
  --grad-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --grad-card: linear-gradient(145deg, rgba(21,40,71,0.9) 0%, rgba(10,22,40,0.95) 100%);
  --grad-text: linear-gradient(135deg, #F59E0B 0%, #FBD06B 50%, #F59E0B 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 32px rgba(245,158,11,0.3);
  --shadow-gold-lg: 0 16px 48px rgba(245,158,11,0.4);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Border */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --border-gold: 1px solid rgba(245,158,11,0.3);
  --border-white: 1px solid rgba(255,255,255,0.1);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.5s 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;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Utility Classes ──────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--white-70); }
.text-center { text-align: center; }
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section { padding: var(--space-3xl) 0; }
.section-sm { padding: var(--space-2xl) 0; }
.sr-only { position: absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ── Section Header ───────────────────────────────────── */
.section-header { margin-bottom: var(--space-xl); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,158,11,0.12);
  border: var(--border-gold);
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--white-70);
  max-width: 640px;
  line-height: 1.8;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--grad-gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-lg); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-ghost {
  background: var(--white-10);
  border: var(--border-white);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(37,211,102,0.45); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: var(--text-lg); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: var(--text-sm); }

/* ── Header / Navbar ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom: var(--border-gold);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-icon {
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
  overflow: hidden;
  padding: 2px;
}
.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.nav-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text .brand-sub {
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white-90);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(245,158,11,0.1);
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(20px);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white-90);
  transition: var(--transition);
}
.nav-dropdown-item:hover { background: rgba(245,158,11,0.1); color: var(--gold); }
.nav-dropdown-item .icon { font-size: 1.1rem; }
.nav-cta { display: flex; align-items: center; gap: 0.5rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 700;
  font-size: var(--text-sm);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.99);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  width: 100%;
  text-align: center;
}
.mobile-nav-link:hover { color: var(--gold); background: rgba(245,158,11,0.1); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  color: var(--white-70);
  cursor: pointer;
  padding: 0.5rem;
}

/* ── Hero Section ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  z-index: 0;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}
@keyframes pulse-glow {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.2); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,158,11,0.15);
  border: var(--border-gold);
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-desc {
  font-size: var(--text-lg);
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: var(--space-lg);
  animation: fadeInUp 0.6s 0.4s ease both;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--white-70);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── Booking Card ─────────────────────────────────────── */
.booking-card {
  background: var(--grad-card);
  backdrop-filter: blur(20px);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  animation: fadeInRight 0.7s 0.2s ease both;
}
.booking-card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.booking-tabs {
  display: flex;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: var(--space-md);
  gap: 4px;
}
.booking-tab {
  flex: 1;
  padding: 0.55rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-align: center;
  color: var(--white-70);
  transition: var(--transition);
  cursor: pointer;
}
.booking-tab.active { background: var(--gold); color: var(--navy); }
.form-group { margin-bottom: var(--space-sm); }
.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--white-70);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: var(--border-white);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-size: var(--text-sm);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245,158,11,0.05);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}
.form-input::placeholder { color: var(--white-40); }
.form-input option { background: var(--navy-mid); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

/* ── Trust Bar ────────────────────────────────────────── */
.trust-bar {
  background: rgba(245,158,11,0.08);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  padding: 1.2rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white-90);
}
.trust-icon { color: var(--gold); font-size: 1.2rem; }

/* ── Services Grid ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}
.service-card {
  background: var(--grad-card);
  border: var(--border-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::before { opacity: 0.05; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 64px; height: 64px;
  background: rgba(245,158,11,0.12);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  filter: none;
}
.service-card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.service-card-desc {
  font-size: var(--text-sm);
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  font-weight: 600;
}
.service-price { color: var(--gold); }
.service-link {
  color: var(--white-70);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}
.service-card:hover .service-link { color: var(--gold); }

/* ── Fleet Section ────────────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}
.fleet-card {
  background: var(--grad-card);
  border: var(--border-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.fleet-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.fleet-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #0f1e3a 0%, #1a2f5a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.fleet-card:hover .fleet-img img {
  transform: scale(1.06);
}
.fleet-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: var(--text-xs);
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}
.fleet-info { padding: var(--space-md); }
.fleet-name { font-size: var(--text-lg); font-weight: 700; margin-bottom: 0.4rem; }
.fleet-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--text-xs);
  color: var(--white-70);
  font-weight: 500;
}
.fleet-price {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gold);
}
.fleet-price span { font-size: var(--text-sm); color: var(--white-70); font-weight: 400; }

/* ── Routes Table ─────────────────────────────────────── */
.routes-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--grad-card);
  border: var(--border-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.routes-table th {
  background: rgba(245,158,11,0.12);
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: var(--border-gold);
}
.routes-table td {
  padding: 1rem 1.5rem;
  font-size: var(--text-sm);
  color: var(--white-90);
  border-bottom: var(--border-white);
  vertical-align: middle;
}
.routes-table tr:last-child td { border-bottom: none; }
.routes-table tr:hover td { background: rgba(245,158,11,0.04); }
.route-name { font-weight: 600; }
.route-price { color: var(--gold); font-weight: 700; font-size: var(--text-base); }

/* ── Why Choose Us ────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.feature-item {
  background: var(--grad-card);
  border: var(--border-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: block;
}
.feature-title { font-size: var(--text-lg); font-weight: 700; margin-bottom: 0.5rem; }
.feature-desc { font-size: var(--text-sm); color: var(--white-70); line-height: 1.7; }

/* ── Testimonials ─────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}
.testimonial-card {
  background: var(--grad-card);
  border: var(--border-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.testimonial-quote { font-size: 3rem; color: var(--gold); opacity: 0.4; line-height: 1; margin-bottom: 0.5rem; }
.testimonial-text {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--white-90);
  margin-bottom: var(--space-md);
  font-style: italic;
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}
.testimonial-name { font-size: var(--text-sm); font-weight: 700; }
.testimonial-location { font-size: var(--text-xs); color: var(--white-70); }

/* ── FAQ Section ──────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--grad-card);
  border: var(--border-white);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-base);
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  width: 28px; height: 28px;
  background: rgba(245,158,11,0.1);
  border: var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--gold); color: var(--navy); }
.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.2rem;
  font-size: var(--text-sm);
  color: var(--white-70);
  line-height: 1.8;
  border-top: var(--border-white);
}

/* ── CTA Banner ───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0F2554 0%, #1A3A6C 50%, #0F2554 100%);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.12) 0%, transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: var(--space-sm);
}
.cta-desc { font-size: var(--text-lg); color: var(--white-70); margin-bottom: var(--space-lg); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (Inner Pages) ──────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: #0A1628;
}
/* Slideshow inside page-hero */
.page-hero .hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
  animation: kenburns 10s ease-in-out infinite alternate;
}
.page-hero .hero-slide.active { opacity: 1; }
.page-hero .hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.65) 50%,
    rgba(10,22,40,0.80) 100%
  );
}
/* Gold accent glow - replaces the old ::after */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245,158,11,0.12) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--white-70);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { color: var(--white-40); }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.page-hero-desc {
  font-size: var(--text-lg);
  color: var(--white-70);
  max-width: 600px;
  line-height: 1.8;
}

/* ── Info Grid ────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.info-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}
.info-text p {
  font-size: var(--text-base);
  color: var(--white-70);
  line-height: 1.9;
  margin-bottom: var(--space-sm);
}
.info-list { list-style: none; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: var(--text-sm);
  color: var(--white-90);
  border-bottom: var(--border-white);
}
.info-list li:last-child { border-bottom: none; }
.info-list-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ── Stats Row ────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.stat-card {
  background: var(--grad-card);
  border: var(--border-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: var(--text-sm); color: var(--white-70); font-weight: 500; }

/* ── Contact Section ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-info-card {
  background: var(--grad-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: var(--space-sm) 0;
  border-bottom: var(--border-white);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(245,158,11,0.1);
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: var(--text-xs); font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info-value { font-size: var(--text-sm); color: var(--white-90); font-weight: 500; line-height: 1.6; }
.contact-form-card {
  background: var(--grad-card);
  border: var(--border-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.contact-form-card h3 { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-md); }

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: #060E1E;
  border-top: var(--border-gold);
  padding: var(--space-3xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.footer-brand .nav-logo { margin-bottom: var(--space-md); }
.footer-desc {
  font-size: var(--text-sm);
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.footer-social {
  display: flex;
  gap: 0.5rem;
}
.social-btn {
  width: 38px; height: 38px;
  background: var(--white-10);
  border: var(--border-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--white-70);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footer-col-title {
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  font-size: var(--text-sm);
  color: var(--white-70);
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-link:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: var(--text-sm);
  color: var(--white-70);
}
.footer-contact-icon { color: var(--gold); font-size: 0.95rem; flex-shrink: 0; margin-top: 0.1rem; }
.footer-bottom {
  border-top: var(--border-white);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: var(--text-xs); color: var(--white-40); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-link { font-size: var(--text-xs); color: var(--white-40); transition: var(--transition); }
.footer-bottom-link:hover { color: var(--gold); }

/* ── Hero Slideshow ───────────────────────────────────── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
  transform: scale(1.05);
  animation: kenburns 8s ease-in-out infinite alternate;
}
.hero-slide.active {
  opacity: 1;
}
@keyframes kenburns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.85) 0%,
    rgba(10,22,40,0.6) 50%,
    rgba(10,22,40,0.75) 100%
  );
}
/* Slideshow dot indicators */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* ── Floating Buttons (Premium SVG Icons) ─────────────── */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
}
.floating-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.floating-btn:hover { transform: scale(1.12) translateY(-2px); }
.floating-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,22,40,0.95);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.floating-btn:hover::after { opacity: 1; }

.floating-whatsapp {
  background: linear-gradient(145deg, #25D366, #128C7E);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.08); }
}
.floating-call {
  background: linear-gradient(145deg, #F59E0B, #D97706);
  box-shadow: 0 4px 20px rgba(245,158,11,0.45);
  animation: pulse-call 2.8s ease-in-out infinite;
  animation-delay: 0.5s;
}
@keyframes pulse-call {
  0%,100% { box-shadow: 0 4px 20px rgba(245,158,11,0.45); }
  50%      { box-shadow: 0 4px 30px rgba(245,158,11,0.75), 0 0 0 10px rgba(245,158,11,0.08); }
}
.floating-btn svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
}

/* ── Scroll to Top ────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 900;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  text-decoration: none;
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}
.scroll-top-btn svg { width: 22px; height: 22px; }


/* ── How It Works ─────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  position: relative;
}
.step-item {
  text-align: center;
  padding: var(--space-lg);
  position: relative;
}
.step-num {
  width: 60px; height: 60px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--navy);
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-gold);
}
.step-title { font-size: var(--text-lg); font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { font-size: var(--text-sm); color: var(--white-70); line-height: 1.7; }

/* ── Areas Served ─────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}
.area-tag {
  background: var(--white-10);
  border: var(--border-white);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.2rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white-90);
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.area-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,158,11,0.05); }

/* ── Badge Strip ──────────────────────────────────────── */
.badges-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-lg);
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,158,11,0.08);
  border: var(--border-gold);
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
}

/* ── Map Placeholder ──────────────────────────────────── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-gold);
  box-shadow: var(--shadow-md);
  height: 350px;
  background: var(--navy-light);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
html.js .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.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; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .booking-card { display: block; width: 100%; margin-top: 1.5rem; }
  .hero, .page-hero { min-height: auto; padding: 120px 0 60px; }
  .hero-stats { gap: var(--space-md); }
  .trust-bar-inner { gap: var(--space-md); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: var(--space-2xl) 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── Route Cards (Homepage) ───────────────────────────── */
.route-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.route-card {
  background: var(--grad-card);
  border: var(--border-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.route-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.route-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.route-card:hover::before { opacity: 0.05; }
.route-card > * { position: relative; z-index: 1; }
.route-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.route-card-cities {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.3;
}
.route-card-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.route-card:hover .route-card-arrow { transform: translateX(4px); }
.route-card-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: var(--white-60);
}
.route-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.route-card-price {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--gold);
  margin-top: 0.25rem;
}
.route-card-price small {
  font-size: var(--text-xs);
  color: var(--white-50);
  font-weight: 400;
  font-family: var(--font-body);
}
.route-card-book {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.6rem;
}
