/* ==============================
   EazyRideCab — style.css
   Theme: Blue + White | Font: Poppins
   ============================== */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2563EB;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --radius: 1rem;
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--slate-900);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== UTILITIES ===== */
.text-primary { color: var(--primary); }
.bg-primary   { background: var(--primary); }
.section-py   { padding: 6rem 0; }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 24px rgba(37,99,235,0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,99,235,0.4); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-ghost-white {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.2); }
.btn-dark { background: var(--slate-950); color: white; }
.btn-dark:hover { background: var(--slate-800); transform: scale(1.03); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.85rem; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--slate-100);
  padding: 0.75rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.nav-logo-icon {
  background: var(--primary);
  color: white;
  width: 40px; height: 40px;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.nav-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  transition: color 0.3s;
}
#navbar.scrolled .nav-logo-text { color: var(--slate-900); }
.nav-logo-text span { color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.nav-link:hover { color: white; }
#navbar.scrolled .nav-link { color: var(--slate-600); }
#navbar.scrolled .nav-link:hover { color: var(--primary); }
.nav-hamburger {
  display: none;
  color: white;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s;
}
#navbar.scrolled .nav-hamburger { color: var(--slate-900); }

/* Mobile menu */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: white;
  flex-direction: column;
}
#mobile-menu.open { display: flex; }
.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--slate-100);
}
.mob-close { font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--slate-600); }
.mob-links { display: flex; flex-direction: column; padding: 1.5rem; gap: 0; }
.mob-link {
  text-align: left;
  padding: 1rem 0;
  border-bottom: 1px solid var(--slate-100);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--slate-800);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.mob-cta { padding: 1.5rem; margin-top: auto; }
.mob-cta .btn { width: 100%; font-size: 1.1rem; padding: 1.1rem; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2,6,23,0.7) 35%,
    rgba(2,6,23,0.3) 60%,
    rgba(2,6,23,0.1) 100%
  );
}


.hero-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,0.4), transparent 60%);
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge svg { color: var(--primary); }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(226,232,240,0.9);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-checks {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(203,213,225,0.9);
  font-size: 0.9rem;
}
.hero-check svg { color: var(--primary); flex-shrink: 0; }

/* ===== TRUST BAR ===== */
#trust-bar {
  position: relative;
  z-index: 20;
  margin: -2.5rem 1rem 0;
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 12px 50px rgba(0,0,0,0.1);
  padding: 2rem 1rem;
}
@media (min-width: 768px) { #trust-bar { margin: -2.5rem auto 0; width: 88%; } }
@media (min-width: 1024px) { #trust-bar { width: 78%; } }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background 0.2s;
}
.trust-item:hover { background: var(--slate-50); }
.trust-item + .trust-item { border-left: none; }
@media (min-width: 768px) {
  .trust-item + .trust-item { border-left: 1px solid var(--slate-100); }
}
.trust-icon {
  background: var(--primary-light);
  width: 52px; height: 52px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
.trust-item:hover .trust-icon { background: var(--primary); }
.trust-item:hover .trust-icon svg { color: white; }
.trust-icon svg { color: var(--primary); width: 24px; height: 24px; }
.trust-title { font-size: 1.35rem; font-weight: 800; color: var(--slate-900); }
.trust-sub   { font-size: 0.78rem; color: var(--slate-500); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc { font-size: 1.05rem; color: var(--slate-600); line-height: 1.7; }

/* ===== ABOUT ===== */
#about { background: var(--slate-50); }
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img-wrap { position: relative; }
.about-img-bg {
  position: absolute;
  inset: -1rem;
  background: rgba(37,99,235,0.08);
  border-radius: 2rem;
  transform: rotate(-3deg);
}
.about-img {
  position: relative;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-xl);
  z-index: 1;
}
.about-card {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 240px;
}
.about-card-icon {
  background: var(--primary-light);
  width: 48px; height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-card-icon svg { color: var(--primary); }
.about-card-label { font-size: 0.7rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.about-card-name { font-weight: 700; font-size: 0.95rem; color: var(--slate-900); }
.about-copy .eyebrow { color: var(--primary); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.about-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--slate-900); line-height: 1.2; margin-bottom: 1.25rem; }
.about-copy p { color: var(--slate-600); line-height: 1.8; margin-bottom: 1rem; font-size: 1rem; }
.check-list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-item svg { color: var(--primary); flex-shrink: 0; margin-top: 0.15rem; }
.check-item span { color: var(--slate-700); font-weight: 500; font-size: 0.95rem; }

/* ===== WHY CHOOSE US ===== */
#why-us { background: white; }
.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.why-card {
  background: linear-gradient(135deg, white, #eff6ff 100%);
  border: 1px solid var(--slate-100);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 16px 48px rgba(37,99,235,0.1);
  transform: translateY(-4px);
}
.why-icon {
  background: var(--primary-light);
  width: 56px; height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--primary); }
.why-icon svg { color: var(--primary); width: 24px; height: 24px; transition: color 0.3s; }
.why-card:hover .why-icon svg { color: white; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.88rem; color: var(--slate-600); line-height: 1.7; }

/* ===== FLEET ===== */
#fleet { background: var(--slate-50); }
.fleet-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.fleet-card {
  background: white;
  border-radius: 1.25rem;
  border: 1px solid var(--slate-100);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.fleet-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.12); transform: translateY(-4px); }
.fleet-img-wrap { position: relative; height: 180px; background: var(--slate-100); overflow: hidden; }
.fleet-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.08); }
.fleet-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
}
.fleet-tag {
  position: absolute;
  bottom: 0.75rem; left: 0.75rem;
  background: rgba(255,255,255,0.95);
  color: var(--slate-900);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
}
.fleet-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.fleet-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.5rem; }
.fleet-body p { font-size: 0.85rem; color: var(--slate-600); line-height: 1.6; margin-bottom: 1rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 0.75rem; margin-bottom: 1.25rem; }
.spec { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--slate-700); font-weight: 500; }
.spec svg { color: var(--primary); flex-shrink: 0; }
.fleet-footer-note { margin-top: 2rem; text-align: center; }
.fleet-footer-note p { color: var(--slate-600); margin-bottom: 1rem; }

/* ===== DESTINATIONS ===== */
#destinations { background: white; }
.dest-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.dest-card {
  background: white;
  border-radius: 1.25rem;
  border: 1px solid var(--slate-100);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.dest-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.12); transform: translateY(-4px); }
.dest-img-wrap { position: relative; height: 200px; overflow: hidden; background: var(--slate-100); }
.dest-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover .dest-img-wrap img { transform: scale(1.1); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55), transparent); }
.dest-tag {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: rgba(255,255,255,0.95);
  color: var(--slate-900);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}
.dest-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.dest-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.4rem; }
.dest-body p { font-size: 0.85rem; color: var(--slate-600); line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }

/* ===== AIRPORT ===== */
#airport { background: linear-gradient(135deg, var(--slate-50), #eff6ff 50%, var(--slate-50)); }
.airport-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .airport-grid { grid-template-columns: 1fr 1fr; } }
.airport-imgs { position: relative; }
.airport-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.airport-col { display: flex; flex-direction: column; gap: 1rem; }
.airport-col:last-child { padding-top: 2.5rem; }
.airport-img-tall { border-radius: 1.25rem; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.airport-img-sq   { border-radius: 1.25rem; overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-lg); }
.airport-img-tall img,
.airport-img-sq   img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.airport-img-tall:hover img,
.airport-img-sq:hover img { transform: scale(1.05); }
.airport-floating {
  position: absolute;
  bottom: -1rem; left: -1rem;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--slate-100);
}
.airport-floating-icon {
  background: var(--primary-light);
  width: 44px; height: 44px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.airport-floating-icon svg { color: var(--primary); }
.airport-floating-label { font-size: 0.72rem; color: var(--slate-500); font-weight: 600; }
.airport-floating-name { font-weight: 700; color: var(--slate-900); font-size: 0.95rem; }
.airport-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--slate-900); line-height: 1.2; margin-bottom: 1.25rem; }
.airport-copy p { color: var(--slate-600); line-height: 1.8; margin-bottom: 2rem; font-size: 1rem; }
.airport-checklist { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.airport-check { display: flex; align-items: flex-start; gap: 0.75rem; }
.airport-check svg { color: var(--primary); flex-shrink: 0; margin-top: 0.2rem; }
.airport-check span { color: var(--slate-700); font-size: 0.95rem; }
.airport-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== AREAS ===== */
#areas { background: white; }
.areas-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .areas-grid { grid-template-columns: 2fr 3fr; } }
.areas-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--slate-900); line-height: 1.2; margin-bottom: 1.25rem; }
.areas-copy p { color: var(--slate-600); line-height: 1.8; margin-bottom: 1.75rem; }
.areas-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.area-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.area-card:hover { background: white; border-color: rgba(37,99,235,0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-4px); }
.area-city {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.area-city-icon {
  background: var(--primary-light);
  width: 32px; height: 32px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-city-icon svg { color: var(--primary); width: 14px; height: 14px; }
.area-city span { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); }
.area-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.5rem; }
.area-card p { font-size: 0.83rem; color: var(--slate-600); line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--slate-950); color: white; position: relative; overflow: hidden; }
.test-glow1 { position: absolute; top: 0; right: 0; width: 500px; height: 500px; background: radial-gradient(circle, rgba(37,99,235,0.15), transparent); pointer-events: none; }
.test-glow2 { position: absolute; bottom: 0; left: 0; width: 500px; height: 500px; background: radial-gradient(circle, rgba(59,130,246,0.1), transparent); pointer-events: none; }
.test-header .badge { background: rgba(37,99,235,0.2); color: var(--primary); }
.test-header .section-title { color: white; }
.test-header .section-desc { color: var(--slate-400); }
.test-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.test-card {
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.25rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.test-card:hover { background: rgba(15,23,42,0.9); border-color: rgba(37,99,235,0.3); transform: translateY(-4px); }
.test-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.stars { display: flex; gap: 0.2rem; }
.star svg { color: var(--primary); width: 16px; height: 16px; fill: var(--primary); }
.quote-icon { color: rgba(37,99,235,0.3); }
.test-text { color: var(--slate-300); font-size: 0.93rem; line-height: 1.75; flex: 1; margin-bottom: 1.5rem; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.07); }
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}
.test-name { font-weight: 700; color: white; font-size: 0.95rem; }
.test-role { font-size: 0.78rem; color: var(--slate-500); }

/* ===== CTA ===== */
#cta {
  background: var(--primary);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before { content:''; position:absolute; inset:0; background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=30') center/cover; opacity:0.08; mix-blend-mode:overlay; }
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; color: var(--slate-950); margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.cta-content p { font-size: 1.1rem; color: rgba(15,23,42,0.75); margin-bottom: 2.5rem; font-weight: 500; }
.cta-btns { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.cta-phone { color: rgba(15,23,42,0.7); font-size: 0.9rem; }
.cta-phone strong { color: var(--slate-950); }

/* ===== FOOTER ===== */
footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer-accent { height: 3px; background: linear-gradient(to right, transparent, var(--primary), transparent); position: absolute; top: 0; inset-x: 0; }
.footer-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(37,99,235,0.06), transparent); pointer-events: none; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; }
.footer-logo-icon {
  background: var(--primary);
  width: 38px; height: 38px;
  border-radius: 0.6rem;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { color: white; }
.footer-logo-text { font-size: 1.25rem; font-weight: 800; color: white; }
.footer-logo-text span { color: var(--primary); }
.footer-desc { font-size: 0.85rem; line-height: 1.75; color: var(--slate-400); margin-bottom: 1rem; }
.footer-online { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: #34d399; font-weight: 500; }
.footer-pulse { width: 10px; height: 10px; background: #10b981; border-radius: 999px; position: relative; }
.footer-pulse::before { content:''; position: absolute; inset: 0; background: #10b981; border-radius: 999px; animation: ping 1.5s ease-out infinite; }
@keyframes ping { 0%{transform:scale(1);opacity:.8} 100%{transform:scale(2.2);opacity:0} }
.footer-col h4 { color: white; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-icon { background: rgba(37,99,235,0.15); width: 34px; height: 34px; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-contact-icon svg { color: var(--primary); width: 16px; height: 16px; }
.footer-contact-label { font-size: 0.8rem; font-weight: 600; color: white; }
.footer-contact-value { font-size: 0.8rem; color: var(--slate-400); }
.footer-contact-value a:hover { color: var(--primary); }
.footer-link-list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--slate-400); transition: color 0.2s; background: none; border: none; cursor: pointer; font-family: 'Poppins', sans-serif; text-align: left; }
.footer-link:hover { color: white; }
.footer-link svg { color: var(--primary); width: 14px; height: 14px; flex-shrink: 0; }
.footer-owner-card {
  background: linear-gradient(135deg, rgba(15,23,42,0.8), rgba(15,23,42,0.4));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: border-color 0.3s;
}
.footer-owner-card:hover { border-color: rgba(37,99,235,0.35); }
.footer-owner-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.footer-owner-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #f59e0b);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem;
  color: white; flex-shrink: 0;
}
.footer-owner-name { font-weight: 700; color: white; font-size: 0.88rem; }
.footer-owner-role { font-size: 0.72rem; color: var(--slate-500); }
.footer-owner-quote { font-size: 0.75rem; color: var(--slate-500); font-style: italic; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate-600);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero-btns { flex-direction: column; }
  .about-card { right: 0.5rem; bottom: -3rem; }
  .airport-floating { left: 0; }
}
/* ================= MOBILE FINAL FIX ================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  /* HERO */
  #hero {
    min-height: 80vh;
    padding-top: 6rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-checks {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* TRUST BAR */
  #trust-bar {
    margin-top: -1.5rem;
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img {
    height: 300px;
  }

  /* AIRPORT SECTION */
  .airport-grid {
    grid-template-columns: 1fr;
  }

  .airport-cols {
    grid-template-columns: 1fr;
  }

  /* AREAS */
  .areas-grid {
    grid-template-columns: 1fr;
  }

  /* SECTION SPACING */
  .section-py {
    padding: 3rem 0;
  }

}