/* ============================================================
   HAMPTON TRAVEL — Global Stylesheet
   ============================================================ */

/* Fonts loaded via <link rel="preconnect"> + stylesheet in each page <head>
   (moved out of CSS @import to remove render-blocking request chain). */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a2540;
  --navy-light: #0f172a;
  --navy-card:  #1f2d4a;
  --navy-mid:   #253354;
  --gold:       #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark:  #d97706;
  --gold-dim:   rgba(245,158,11,0.12);
  --white:      #ffffff;
  --grey:       #94a3b8;
  --grey-dark:  #4a5568;
  --border:     #28395e;
  --shadow:     0 8px 40px rgba(0,0,0,0.5);
  --radius:     12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

.gold { color: var(--gold); }
.italic { font-style: italic; }
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
section { padding: 100px 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #d97706, #f59e0b, #fbbf24, #f59e0b, #d97706);
  background-size: 200% auto;
  color: #1a1a1a;
  animation: shimmer-move 3s linear infinite;
}
.btn-primary:hover { background-size: 200% auto; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,0.45); }
.shimmer-btn {
  background: linear-gradient(135deg, #d97706, #f59e0b, #fbbf24, #f59e0b, #d97706);
  background-size: 200% auto;
  color: #1a1a1a;
  animation: shimmer-move 3s linear infinite;
}
.shimmer-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,0.45); }
@keyframes shimmer-move {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.5), transparent);
  border: none;
  margin: 1.5rem 0;
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative; /* anchor for mobile dropdown */
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-phone {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone svg { width: 14px; height: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade 30s linear infinite;
}
.hero-slide:nth-child(1) { opacity: 1; animation: none; } /* LCP: first slide paints instantly, no fade-in */
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 24s; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 40%, rgba(15,23,42,0.6) 100%);
  pointer-events: none;
}
@keyframes heroFade {
  0%     { opacity: 0; }
  5%     { opacity: 1; }
  18%    { opacity: 1; }
  23%    { opacity: 0; }
  100%   { opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 160px 0 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero h1 { max-width: 650px; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 2rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.trust-item svg { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Quick Book ───────────────────────────────────────────── */
/* ── Services ─────────────────────────────────────────────── */
.services {
  background: var(--navy);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(245,158,11,0.06), transparent 65%);
  pointer-events: none;
}
.services .container { position: relative; z-index: 1; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(245,158,11,0.3); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h4 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.service-card p { font-size: 0.88rem; color: var(--grey); line-height: 1.7; }

/* ── Fleet ────────────────────────────────────────────────── */
.fleet { background: var(--navy-light); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.fleet-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(245,158,11,0.3); }
.fleet-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.fleet-card:hover .fleet-img img { transform: scale(1.05); }
.fleet-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.fleet-body { padding: 2rem; display: flex; flex-direction: column; flex: 1; }
.fleet-body > .btn { margin-top: auto; }
.fleet-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.fleet-body h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.fleet-body p { color: var(--grey); font-size: 0.9rem; margin-bottom: 1.25rem; }
.fleet-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--grey);
}
.spec svg { color: var(--gold); width: 16px; height: 16px; }
.fleet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.fleet-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--grey);
}
.fleet-feature svg { color: var(--gold); width: 14px; height: 14px; flex-shrink: 0; }

/* ── Airports ─────────────────────────────────────────────── */
.airports { background: var(--navy); }
.airports-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.airport-tile {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--tile-color, var(--gold));
  border-radius: var(--radius);
  padding: 1.4rem 0.5rem 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.airport-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 0%, var(--tile-color, rgba(245,158,11,0.3)), transparent 65%);
  opacity: 0.18;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.airport-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.4); }
.airport-tile:hover::before { opacity: 0.42; }
.airport-code {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  position: relative;
  z-index: 1;
}
.airport-name {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 5px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

/* ── About ────────────────────────────────────────────────── */
.about { background: var(--navy-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--grey); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }

/* ── Reviews ──────────────────────────────────────────────── */
.reviews { background: var(--navy); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; color: var(--gold); font-size: 1.05rem; letter-spacing: 1px; }
.review-text { font-size: 0.875rem; color: var(--grey); line-height: 1.85; margin-bottom: 1.5rem; font-style: italic; flex: 1; }
.review-divider { height: 1px; background: var(--border); margin-bottom: 1rem; }
.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.reviewer-loc { font-size: 0.78rem; color: var(--grey); margin-top: 2px; }

/* ── Business ─────────────────────────────────────────────── */
.business { background: var(--navy-light); }
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 0;
}
.business-features { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.biz-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.biz-feature:hover { border-color: rgba(245,158,11,0.3); }
.biz-feature-icon {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.biz-feature-icon svg { width: 18px; height: 18px; }
.biz-feature h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.biz-feature p { font-size: 0.83rem; color: var(--grey); }
.business-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
.biz-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.biz-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-3px); }
.biz-card-icon { color: var(--gold); margin-bottom: 0.75rem; }
.biz-card-icon svg { width: 24px; height: 24px; }
.biz-card h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.biz-card p { font-size: 0.82rem; color: var(--grey); line-height: 1.6; }
.business-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #060d1a;
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.875rem; color: var(--grey); margin-bottom: 1.5rem; line-height: 1.7; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--grey);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--grey); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-cta-text { font-size: 0.875rem; color: var(--grey); margin-bottom: 1rem; line-height: 1.7; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--grey-dark);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--grey-dark); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--grey); }

/* ── Scroll Animations ────────────────────────────────────── */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-animate="left"] { transform: translateX(-30px); }
[data-animate="left"].visible { transform: translateX(0); }
[data-animate="right"] { transform: translateX(30px); }
[data-animate="right"].visible { transform: translateX(0); }

/* ── Booking Page ─────────────────────────────────────────── */
.booking-page {
  min-height: 100vh;
  padding-top: 100px;
  background: var(--navy);
}
.booking-header {
  text-align: center;
  padding: 60px 0 40px;
}
.booking-header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.booking-header p { color: var(--grey); }
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 2rem auto 3rem;
  max-width: 640px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  top: 16px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step-item.active::after,
.step-item.done::after { background: var(--gold); }
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  background: var(--navy);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: var(--transition);
}
.step-item.active .step-num { border-color: var(--gold); color: var(--gold); }
.step-item.done .step-num { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.step-label {
  font-size: 0.75rem;
  color: var(--grey);
  white-space: nowrap;
}
.step-item.active .step-label { color: var(--white); }
.booking-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.booking-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.booking-card h3 { margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  padding: 12px 14px;
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,147,26,0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-dark); }
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Return journey section ── */
.return-section {
  background: rgba(245,158,11,0.04);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem 0.5rem;
  margin-bottom: 1.25rem;
}
.return-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── ASAP button ── */
.btn-asap {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--grey);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  line-height: 1;
}
.btn-asap:hover { border-color: var(--gold); color: var(--gold); }
.btn-asap.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
/* Full-width ASAP variant */
.btn-asap-full {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  text-align: center;
  border-style: dashed;
}
.btn-asap-full.active {
  border-style: solid;
}

.vehicle-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.vehicle-option { position: relative; }
.vehicle-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.vehicle-label {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.vehicle-option input:checked + .vehicle-label {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.vehicle-label:hover { border-color: rgba(245,158,11,0.4); }
.vehicle-label img { width: 100%; height: 130px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }
.vehicle-label h4 { margin-bottom: 0.25rem; }
.vehicle-price { color: var(--gold); font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; transition: color 0.3s ease; }
.vehicle-specs-mini {
  display: flex;
  gap: 12px;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--grey);
}
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.booking-summary {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.88rem;
}
.summary-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.summary-label { color: var(--grey); }
.summary-val { color: var(--white); font-weight: 500; }
.summary-total .summary-label { color: var(--white); font-weight: 600; }
.summary-total .summary-val { color: var(--gold); font-weight: 700; font-size: 1rem; }
.confirmation-box {
  text-align: center;
  padding: 3rem 2rem;
}
.confirm-icon {
  width: 72px; height: 72px;
  background: rgba(34,197,94,0.15);
  border: 2px solid rgba(34,197,94,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #22c55e;
}
.confirm-icon svg { width: 36px; height: 36px; }
.confirmation-box h2 { margin-bottom: 0.75rem; }
.confirmation-box p { color: var(--grey); margin-bottom: 0.5rem; }
.booking-ref {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 6px;
  padding: 8px 20px;
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 1rem 0 1.5rem;
  letter-spacing: 0.1em;
}
.sms-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0 auto 1.5rem;
  max-width: 420px;
}
.sms-notice svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }

/* ── Login Page ───────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--navy);
  position: relative;
}
.login-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,37,64,0.6), rgba(15,23,42,0.9));
}
.login-card {
  position: relative;
  z-index: 1;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow);
}
.login-logo {
  text-align: center;
  margin-bottom: 2rem;
}
.login-logo .nav-logo { font-size: 1.6rem; justify-content: center; display: block; }
.login-logo p { font-size: 0.85rem; color: var(--grey); margin-top: 0.5rem; }
.login-card h2 { text-align: center; margin-bottom: 2rem; font-size: 1.5rem; }
.login-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--grey);
}
.login-footer a { color: var(--gold); }
.login-footer a:hover { text-decoration: underline; }
.form-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #f87171;
  margin-bottom: 1rem;
  display: none;
}
.form-error.show { display: block; }

/* ── Dashboard ────────────────────────────────────────────── */
.dashboard-layout { display: flex; min-height: 100vh; }
.sidebar {
  width: 260px;
  background: var(--navy-card);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: var(--transition);
}
.sidebar-logo {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo .nav-logo { font-size: 1.2rem; }
.sidebar-logo p { font-size: 0.75rem; color: var(--grey); margin-top: 2px; }
.sidebar-nav { padding: 1.25rem 0.75rem; flex: 1; overflow-y: auto; }
.sidebar-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dark);
  padding: 0.75rem 0.75rem 0.35rem;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--grey);
  transition: var(--transition);
  margin-bottom: 2px;
}
.sidebar-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar-link:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.sidebar-link.active { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(245,158,11,0.2); }
.sidebar-footer {
  padding: 1rem 0.75rem;
  border-top: 1px solid var(--border);
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.user-avatar {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.user-info .user-name { font-size: 0.85rem; font-weight: 600; display: block; }
.user-info .user-role { font-size: 0.72rem; color: var(--grey); }
.dashboard-main {
  margin-left: 260px;
  flex: 1;
  padding: 2rem;
  min-height: 100vh;
  background: var(--navy);
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.dash-header h1 { font-size: 1.8rem; }
.dash-header p { color: var(--grey); font-size: 0.875rem; margin-top: 2px; }
.dash-date { font-size: 0.82rem; color: var(--grey); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 0.75rem; }
.stat-card-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.stat-card-sub { font-size: 0.78rem; color: var(--grey); }
.stat-card-icon {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  color: var(--gold);
  opacity: 0.4;
}
.stat-card-icon svg { width: 28px; height: 28px; }
.dash-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.dash-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.dash-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.dash-card-header h3 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.dash-card-header a { font-size: 0.8rem; color: var(--gold); }
.bookings-table { width: 100%; border-collapse: collapse; }
.bookings-table th {
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-dark);
  padding: 0 0 10px;
  border-bottom: 1px solid var(--border);
}
.bookings-table td {
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.bookings-table tr:last-child td { border-bottom: none; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}
.status-confirmed { background: rgba(34,197,94,0.1); color: #4ade80; }
.status-pending { background: rgba(234,179,8,0.1); color: #fbbf24; }
.status-completed { background: rgba(99,102,241,0.1); color: #818cf8; }
.status-cancelled { background: rgba(239,68,68,0.1); color: #f87171; }
.invoice-list { display: flex; flex-direction: column; gap: 10px; }
.invoice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  font-size: 0.85rem;
}
.invoice-item-left { display: flex; flex-direction: column; gap: 2px; }
.invoice-ref { font-weight: 600; }
.invoice-date { font-size: 0.75rem; color: var(--grey); }
.invoice-item-right { text-align: right; }
.invoice-amount { font-weight: 700; color: var(--gold); }
.invoice-status { font-size: 0.72rem; }
.chart-wrap { position: relative; height: 200px; margin-top: 0.5rem; }

/* ── Page not found / misc ────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none !important; }

/* ── Responsive ───────────────────────────────────────────── */
/* ── Tablet landscape (900–1100px) ───────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .airports-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .dash-grid     { grid-template-columns: 1fr; }
  .about-stats   { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet portrait (768–900px) ─────────────────────────── */
@media (max-width: 900px) {
  /* Nav */
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(15,23,42,0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 0;
    z-index: 998;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    animation: nav-slide-down 0.22s ease;
  }
  @keyframes nav-slide-down {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links.mobile-open li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.mobile-open li:last-child { border-bottom: none; }
  .nav-links.mobile-open a {
    font-size: 0.9rem;
    padding: 1rem 0;
    display: block;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.15em;
  }
  .nav-links.mobile-open a:hover { color: var(--gold); }
  /* Must make navbar position relative so dropdown anchors to it */
  .navbar { position: fixed; }
  .nav-inner { position: relative; }
  /* Content */
  .hero-content { padding: 130px 0 50px; }
  .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img     { height: 300px; }
  .business-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fleet-grid    { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row      { grid-template-columns: 1fr; }
  .vehicle-options { grid-template-columns: 1fr; }
  .sidebar       { transform: translateX(-100%); }
  .sidebar.open  { transform: translateX(0); }
  .dashboard-main { margin-left: 0; }
  .business-cards { grid-template-columns: 1fr 1fr; }
  .reviews-grid   { grid-template-columns: 1fr; }
}

/* ── Large phone (640–767px) ─────────────────────────────── */
@media (max-width: 768px) {
  .business-cards { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .airports-grid  { grid-template-columns: repeat(3, 1fr); }
  .services-grid  { grid-template-columns: 1fr; }
  .hero-content   { padding: 120px 0 40px; }
}

/* ── Mobile (≤640px) ─────────────────────────────────────── */
@media (max-width: 640px) {
  section         { padding: 64px 0; }
  .container      { padding: 0 1rem; }
  .services-grid  { grid-template-columns: 1fr; }
  .airports-grid  { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid   { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-bottom-links { flex-wrap: wrap; gap: 1rem; }
  .booking-card   { padding: 1.25rem; }
  .hero-content   { padding: 110px 0 40px; }
  .hero-actions   { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .nav-logo { font-size: 1.15rem; }
  .modal-box { padding: 1.75rem 1.25rem; }
  .modal-box h3 { font-size: 1.3rem; }
}

/* ── Small phone (≤480px) ────────────────────────────────── */
@media (max-width: 480px) {
  .airports-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-stats    { grid-template-columns: 1fr 1fr; }
  .hero-trust     { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .nav-right      { gap: 0.75rem; }
  .chat-panel     { width: calc(100vw - 32px); right: 16px; }
  .chat-bubble    { right: 16px; bottom: 20px; }
}

/* ── Contact Modal ────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 540px;
  position: relative;
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--grey);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
  line-height: 1;
}
.modal-close:hover { border-color: var(--white); color: var(--white); }
.modal-box h3 { margin-bottom: 0.5rem; }
.modal-box .modal-sub { color: var(--grey); font-size: 0.88rem; margin-bottom: 1.75rem; }
.modal-success {
  text-align: center;
  padding: 2rem 1rem;
  display: none;
}
.modal-success svg { color: #4ade80; width: 48px; height: 48px; margin: 0 auto 1rem; }
.modal-success h4 { margin-bottom: 0.5rem; }
.modal-success p { color: var(--grey); font-size: 0.9rem; }

/* ── Chatbot Widget ───────────────────────────────────────── */
.chat-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #d97706, #f59e0b, #fbbf24, #f59e0b, #d97706);
  background-size: 200% auto;
  animation: shimmer-move 3s linear infinite;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(245,158,11,0.45);
  z-index: 1500;
  transition: transform 0.3s ease;
}
.chat-bubble:hover { transform: scale(1.08); }
.chat-bubble svg { width: 26px; height: 26px; color: #1a1a1a; }
.chat-bubble .chat-notif {
  position: absolute;
  top: 2px; right: 2px;
  width: 14px; height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--navy);
  font-size: 0;
}
.chat-panel {
  position: fixed;
  bottom: 98px; right: 28px;
  width: 370px;
  max-height: 560px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex; flex-direction: column;
  box-shadow: 0 16px 60px rgba(0,0,0,0.5);
  z-index: 1500;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}
.chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  background: var(--navy-light);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
}
.chat-avatar {
  width: 38px; height: 38px;
  background: var(--gold-dim);
  border: 2px solid rgba(245,158,11,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-header-info strong { font-size: 0.9rem; display: block; }
.chat-header-info span { font-size: 0.75rem; color: #4ade80; }
.chat-close-btn { color: var(--grey); transition: var(--transition); }
.chat-close-btn:hover { color: var(--white); }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.chat-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.chat-msg.user { flex-direction: row-reverse; }
.chat-msg-avatar {
  width: 28px; height: 28px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
}
.chat-bubble-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.855rem;
  line-height: 1.55;
}
.chat-msg.bot .chat-bubble-msg {
  background: var(--navy-mid);
  border-bottom-left-radius: 4px;
  color: var(--white);
}
.chat-msg.user .chat-bubble-msg {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-bottom-right-radius: 4px;
  color: #1a1a1a;
  font-weight: 500;
}
.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0.5rem 1.25rem 1rem;
}
.chat-option-btn {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.8rem;
  padding: 6px 14px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.chat-option-btn:hover { background: rgba(245,158,11,0.2); border-color: var(--gold); }
.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--navy-light);
}
.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--white);
  padding: 10px 16px;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.chat-input:focus { border-color: var(--gold); }
.chat-input::placeholder { color: var(--grey-dark); }
.chat-send {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #1a1a1a;
  flex-shrink: 0;
  transition: var(--transition);
}
.chat-send:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(245,158,11,0.4); }
.chat-send svg { width: 16px; height: 16px; }
.chat-typing {
  display: flex; gap: 5px; align-items: center; padding: 10px 14px;
  background: var(--navy-mid); border-radius: 14px; border-bottom-left-radius: 4px;
  width: fit-content;
}
.chat-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--grey);
  animation: typing-dot 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}
