/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0B1F3A;
  --primary-dark: #071326;
  --primary-light: #122A4D;
  --primary-vivid: #1A3A5C;
  --gold: #D4AF37;
  --gold-light: #E0C04F;
  --gold-bright: #E8C84A;
  --gold-dark: #B8942E;
  --white: #FFFFFF;
  --surface: #e5f1fd;
  --off-white: #e5f1fd;
  --light: #e5f1fd;
  --grey-100: #F0F2F5;
  --grey-200: #E2E5EA;
  --grey-300: #C4C9D4;
  --grey-400: #9EA5B3;
  --grey-500: #6B7280;
  --grey-600: #4B5563;
  --grey-700: #374151;
  --grey-800: #1F2937;
  --dark: #071326;
  --text: #1F2937;
  --text-light: #6B7280;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 25px rgba(212,175,55,0.35);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(229,241,253,0.92);
  --glass-border: rgba(255,255,255,0.3);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.08);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --header-height: 96px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

a, button, input, select, textarea { -webkit-tap-highlight-color: rgba(0,0,0,0.08); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--dark);
  position: relative;
}

.text-center .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== GLASS EFFECT ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-vivid) 100%);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,31,63,0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--surface);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

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

.btn-whatsapp svg, .btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
  background: linear-gradient(90deg, #0F3D3E 0%, #0A2A2B 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.35);
}

.header.scrolled {
  background: linear-gradient(90deg, rgba(15,61,62,0.98) 0%, rgba(10,42,43,0.98) 100%);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(212,175,55,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
}

.logo-img {
  height: 84px;
  width: auto;
  display: block;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 800;
}

.logo span { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 32px; }

.nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--gold); }
.nav a.active::after { width: 100%; }

.nav .btn { margin-left: 8px; }

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

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

body.menu-open { overflow: hidden; }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  z-index: 999;
  padding: 40px 20px calc(40px + env(safe-area-inset-bottom, 0px));
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--grey-700);
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-100);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #071326 0%, #0B1F3A 40%, #122A4D 70%, #0B1F3A 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  animation: heroFade 8s ease-in-out infinite alternate;
}

@keyframes heroFade {
  0% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.05); }
  100% { opacity: 0.85; transform: scale(1.02); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(7,19,38,0.3) 100%);
  pointer-events: none;
}

.hero-bg-scene {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(212,175,55,0.06) 0%, transparent 60%);
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.1); }
}

.hero-car-img {
  will-change: transform, opacity;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,19,38,0.9) 0%, rgba(11,31,58,0.6) 45%, rgba(11,31,58,0.2) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212,175,55,0.3);
  border-radius: 50%;
  animation: float 6s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(7,19,38,0.6);
}

.hero-text h1 span { color: var(--gold-light); text-shadow: 0 0 30px rgba(212,175,55,0.3); }

.hero-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
  text-shadow: 0 1px 12px rgba(7,19,38,0.7);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-buttons .btn { padding: 16px 36px; font-size: 1rem; }

/* Booking Form */
.booking-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 40px rgba(212,175,55,0.05);
}

.booking-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.booking-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--surface);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-card .btn { width: 100%; padding: 16px; font-size: 1rem; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--surface);
  padding: 40px 0;
  border-bottom: 1px solid var(--grey-100);
  position: relative;
}

.trust-bar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,175,55,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.trust-icon svg { width: 22px; height: 22px; }

.trust-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== SERVICES ===== */
.services { background: var(--off-white); }

.services .service-card { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--grey-100);
}

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

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(212,175,55,0.06) 100%);
}

.service-image {
  margin: -36px -28px 24px;
  height: auto;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.service-card:hover .service-image img { transform: scale(1.08); }

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.05) 0%, rgba(11,31,58,0.35) 100%);
  pointer-events: none;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-vivid) 100%);
  color: var(--white);
  margin-top: -38px;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  color: var(--primary-vivid);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover { color: var(--gold-light); gap: 10px; }

/* ===== FLEET ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.fleet-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--grey-100);
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.fleet-image {
  height: auto;
  background: var(--grey-100);
  position: relative;
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.fleet-card:hover .fleet-image img { transform: scale(1.05); }

.fleet-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  box-shadow: 0 2px 10px rgba(212,175,55,0.3);
}

.fleet-body {
  padding: 28px;
}

.fleet-body h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.fleet-body .fleet-type {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--grey-600);
}

.fleet-spec svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

.fleet-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.fleet-body .btn { width: 100%; }

/* ===== WHY CHOOSE ===== */
.why-choose { background: var(--primary); position: relative; overflow: hidden; }

.why-choose::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-choose .section-title { color: var(--white); }
.why-choose .section-subtitle { color: rgba(255,255,255,0.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
}

.why-card-icon svg { width: 28px; height: 28px; }

.why-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.why-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== SERVICE AREAS ===== */
.areas-group { margin-top: 32px; }

.areas-group + .areas-group { margin-top: 24px; }

.areas-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}

.areas-group-title h3 {
  font-size: 1.4rem;
  color: var(--primary);
}

.areas-group-title p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}

.areas-more {
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(212,175,55,0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.8;
}

.areas-more strong { color: var(--primary); }

#areas { background: var(--off-white); }

.area-card {
  background: var(--surface);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
}

.area-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.area-icon svg { width: 20px; height: 20px; }

.area-card h4 { font-size: 0.95rem; margin-bottom: 2px; }
.area-card p { font-size: 0.8rem; color: var(--text-light); }

/* ===== POPULAR ROUTES ===== */
.routes { background: var(--off-white); }

.routes .route-card { background: var(--surface); }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.route-card {
  background: var(--surface);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
}

.route-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.route-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-vivid) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.route-icon svg { width: 22px; height: 22px; }

.route-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.route-card p { font-size: 0.82rem; color: var(--text-light); }

.route-more {
  border: 2px dashed var(--gold);
  background: rgba(212,175,55,0.05);
  cursor: pointer;
}
.route-more:hover {
  border-style: solid;
  background: rgba(212,175,55,0.12);
}
.route-more .route-icon {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

#reviews .review-card { background: var(--surface); border: 1px solid var(--grey-100); }

#reviews { background: var(--off-white); }

.review-card {
  background: var(--surface);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

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

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold-light);
  filter: drop-shadow(0 0 4px rgba(212,175,55,0.3));
}

.review-stars svg { width: 18px; height: 18px; }

.review-text {
  font-size: 0.95rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1rem;
  flex-shrink: 0;
}

.review-name { font-weight: 600; font-size: 0.9rem; }
.review-name span { display: block; font-weight: 400; font-size: 0.8rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq { background: var(--off-white); }

.faq .faq-item { background: var(--surface); }

.faq-list {
  max-width: 800px;
  margin: 32px auto 0;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--grey-200); }

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  transform: rotate(45deg);
}

.faq-icon svg { width: 14px; height: 14px; transition: var(--transition); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 22px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-vivid) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-item p { font-size: 0.9rem; color: var(--text-light); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  border: 1px solid var(--grey-100);
}

.home-map { margin-top: 32px; }

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-vivid) 100%);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(212,175,55,0.06);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(212,175,55,0.04);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo-img {
  height: 100px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.footer-social a.social-wa { background: #25D366; color: #fff; }
.footer-social a.social-call { background: #0F3D3E; color: #fff; }
.footer-social a.social-fb { background: #1877F2; color: #fff; }
.footer-social a.social-ig { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }

.footer-social a.social-wa:hover,
.footer-social a.social-call:hover,
.footer-social a.social-fb:hover,
.footer-social a.social-ig:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

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

/* ===== STICKY WIDGETS ===== */
.sticky-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  position: relative;
}

.widget-btn:hover { transform: scale(1.1); }

.widget-btn svg { width: 26px; height: 26px; }

.widget-whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: var(--white); }
.widget-call { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-vivid) 100%); color: var(--white); }
.widget-enquiry { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--dark); }

.widget-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.widget-btn:hover .widget-tooltip { opacity: 1; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-vivid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: rgba(212,175,55,0.06);
  border-radius: 50%;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}

.breadcrumbs a { color: rgba(255,255,255,0.8); }
.breadcrumbs a:hover { color: var(--gold); }

/* ===== ABOUT PAGE ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-story.reversed .about-image { order: 2; }
.about-story.reversed .about-content { order: 1; }

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: auto;
  background: var(--grey-100);
}

.about-image img { width: 100%; height: auto; display: block; }

.about-content h2 { font-size: 2rem; margin-bottom: 20px; }
.about-content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-label { font-size: 0.9rem; color: var(--text-light); }

/* ===== CONTACT PAGE ===== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-form-card h2 { margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-light); margin-bottom: 28px; }

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-block {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-block h3 { font-size: 1.2rem; margin-bottom: 16px; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

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

.blog-image {
  height: auto;
  background: var(--grey-100);
  overflow: hidden;
}

.blog-image img { width: 100%; height: auto; display: block; transition: var(--transition); }
.blog-card:hover .blog-image img { transform: scale(1.05); }

.blog-body { padding: 28px; }

.blog-category {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--grey-400);
}

/* ===== BLOG ARTICLE ===== */
.article-wrap { max-width: 860px; margin: 0 auto; }
.article-head { text-align: center; margin-bottom: 34px; }
.article-head h1 { font-size: 2.3rem; color: var(--primary-dark); }
.article-meta { display: flex; justify-content: center; gap: 22px; color: var(--grey-400); font-size: 0.85rem; margin-top: 16px; flex-wrap: wrap; }
.article-hero { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 38px; box-shadow: var(--shadow-md); }
.article-hero img { width: 100%; display: block; }
.article-body { color: var(--text); line-height: 1.85; font-size: 1.02rem; }
.article-body h2 { font-family: var(--font-heading); color: var(--primary-dark); font-size: 1.5rem; margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--grey-200); }
.article-body h3 { font-family: var(--font-heading); color: var(--primary); font-size: 1.2rem; margin: 28px 0 10px; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body ul ul { list-style: circle; }
.article-body li { margin-bottom: 9px; }
.article-body strong { color: var(--primary-dark); }
.article-body a { color: var(--gold-dark); text-decoration: underline; }
.article-figure { margin: 28px 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.article-figure img { width: 100%; display: block; }
.article-figure figcaption { background: var(--surface); padding: 10px 16px; font-size: 0.82rem; color: var(--grey-400); border-top: 1px solid var(--grey-200); }
.article-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-vivid) 100%); border-radius: var(--radius-lg); padding: 36px; text-align: center; color: var(--white); margin: 44px 0 10px; }
.article-cta h3 { font-family: var(--font-heading); color: var(--white); font-size: 1.4rem; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.article-cta .btn { margin: 0 6px; }
.article-back { display: inline-block; margin: 30px 0 6px; font-size: 0.9rem; color: var(--grey-500); }
.article-back:hover { color: var(--gold-dark); }

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-vivid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: inherit;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-text h1 { font-size: 2.8rem; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-text p { max-width: 100%; }
  .booking-card { max-width: 500px; margin: 0 auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-story { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 50px 0; }

  .nav { display: none; }
  .hamburger { display: flex; }

  .page-header h1 { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
}

@media (max-width: 768px) {
  .hero-text h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .booking-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
  .section-subtitle { font-size: 1rem; }
  .section { padding: 40px 0; }

  .logo-img { height: 62px; }
  .footer-brand .logo-img { height: 84px; }

  .page-header { padding: 130px 0 60px; }
  .page-header h1 { font-size: 1.8rem; }

  .cta-banner h2 { font-size: 1.6rem; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .contact-form-card { padding: 28px; }
  .contact-info-card { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .sticky-widgets { bottom: 16px; right: 16px; }
  .widget-btn { width: 48px; height: 48px; }
  .widget-btn svg { width: 22px; height: 22px; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }
}

/* ===== SMALL PHONES (<=640px) ===== */
@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .hero { padding-top: var(--header-height); }
  .hero-text h1 { font-size: 1.75rem; }
  .hero-text p { font-size: 1rem; margin-bottom: 24px; }
  .hero-buttons .btn { width: 100%; padding: 15px 20px; }
  .booking-card { padding: 26px 18px; }
  .booking-card h3 { font-size: 1.3rem; }
  .booking-card p { font-size: 0.9rem; }

  .section { padding: 36px 0; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.95rem; }

  .trust-grid { gap: 10px; }
  .trust-item { padding: 10px 6px; gap: 10px; }
  .trust-text h4 { font-size: 0.8rem; }
  .trust-text p { font-size: 0.72rem; }

  .service-card { padding: 28px 20px; }
  .service-image { margin: -28px -20px 20px; height: auto; }
  .service-card h3 { font-size: 1.1rem; }

  .fleet-image { height: auto; }
  .fleet-body { padding: 22px 18px; }

  .why-card { padding: 28px 18px; }

  .area-card { padding: 20px 14px; }
  .areas-grid { gap: 12px; }
  .areas-group-title h3 { font-size: 1.2rem; }
  .route-card { padding: 18px 14px; gap: 12px; }

  .review-card { padding: 24px 20px; }

  .faq-question { padding: 16px 18px; font-size: 0.95rem; }
  .faq-answer p { padding: 0 18px 18px; }

  .map-container { height: 300px; }
  .contact-form-card { padding: 24px 18px; }
  .contact-info-block { padding: 24px 20px; }

  .about-image { height: auto; }

  .page-header { padding: 112px 0 48px; }
  .page-header h1 { font-size: 1.55rem; }
  .page-header p { font-size: 1rem; }

  .cta-banner { padding: 40px 0; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: 1rem; }
  .cta-buttons .btn { width: 100%; max-width: 340px; }

  .blog-image { height: auto; }
  .blog-body { padding: 22px 18px; }
  .blog-body h3 { font-size: 1.05rem; }

  .article-head h1 { font-size: 1.6rem; }
  .article-meta { gap: 10px 14px; font-size: 0.8rem; }
  .article-body { font-size: 1rem; }
  .article-body h2 { font-size: 1.28rem; margin: 30px 0 12px; }
  .article-body h3 { font-size: 1.1rem; }
  .article-cta { padding: 26px 20px; }
  .article-cta .btn { margin: 6px 4px; }

  .footer { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
  .footer-grid { gap: 32px; padding-bottom: 40px; }
  .footer-bottom-links { gap: 14px; flex-wrap: wrap; }

  /* Sticky widgets -> bottom action bar */
  .sticky-widgets {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--grey-200);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  }
  .widget-btn {
    flex: 1;
    width: auto;
    height: 50px;
    border-radius: 14px;
    gap: 8px;
  }
  .widget-btn svg { width: 22px; height: 22px; }
  .widget-tooltip {
    position: static;
    transform: none;
    background: none;
    color: inherit;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 1;
    pointer-events: auto;
  }
  .widget-btn:hover { transform: none; }
}

/* ===== VERY SMALL PHONES (<=400px) ===== */
@media (max-width: 400px) {
  .hero-text h1 { font-size: 1.6rem; }
  .stat-number { font-size: 1.8rem; }
  .stats-grid { gap: 12px; }
  .article-meta { flex-direction: column; gap: 6px; }
  .footer-contact-item { font-size: 0.85rem; }
  .widget-tooltip { font-size: 0.76rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
