:root {
  --primary: #1a56db;
  --primary-dark: #1e429f;
  --primary-light: #ebf5ff;
  --accent: #f59e0b;
  --success: #10b981;
  --text: #111827;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --border: #e5e7eb;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.16);
  --nav-height: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 800; color: var(--text); }
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.2rem); }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: #0f172a; color: #fff; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }

.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,.25); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1fba59; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,.4); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s;
  display: block;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}
.site-logo img { height: 42px; width: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: background .15s, color .15s;
}
.nav-list a:hover { background: var(--primary-light); color: var(--primary); }
.nav-cta { background: var(--primary) !important; color: #fff !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: #fff;
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav .m-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border-bottom: none;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.88) 0%, rgba(26,86,219,.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
}
.hero-text { color: #fff; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.hero-text h1 { color: #fff; margin-bottom: 18px; }
.hero-text > p { color: rgba(255,255,255,.85); font-size: 1.08rem; margin-bottom: 28px; max-width: 540px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  color: #fff;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.quote-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
}
.quote-form-box h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-light);
}
.quote-form-box form { display: grid; gap: 10px; }
.quote-form-box input,
.quote-form-box select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.quote-form-box input:focus,
.quote-form-box select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.quote-form-box button[type="submit"] {
  background: var(--primary);
  color: #fff;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .2s;
  width: 100%;
  cursor: pointer;
}
.quote-form-box button[type="submit"]:hover { background: var(--primary-dark); transform: translateY(-1px); }

.stats-section { padding: 56px 0; background: var(--primary); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item h3 { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-item p { color: rgba(255,255,255,.8); font-size: 0.875rem; margin: 0; }

.why-section { padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: var(--primary);
}
.why-card h3 { margin-bottom: 10px; }
.why-card p { font-size: 0.875rem; margin: 0; }

.services-section { padding: 80px 0; background: var(--bg-alt); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.service-card-body p { font-size: 0.85rem; flex: 1; }
.service-card-body .price { font-size: 0.875rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }

.routes-section { padding: 80px 0; }
.routes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.route-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.route-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.route-cities { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.95rem; }
.route-cities i { color: var(--primary); }
.route-price { font-size: 1.6rem; font-weight: 900; color: var(--primary); line-height: 1; }
.route-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); display: block; margin-top: 2px; }
.route-class { font-size: 0.78rem; background: var(--primary-light); color: var(--primary); padding: 3px 10px; border-radius: 100px; display: inline-block; font-weight: 600; }

.cta-section { padding: 80px 0; background: #0f172a; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start; }
.cta-text h2 { color: #fff; margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 0; }
.cta-form { display: flex; gap: 10px; margin-top: 24px; }
.cta-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 0.9rem;
}
.cta-form input::placeholder { color: rgba(255,255,255,.45); }
.cta-form input:focus { outline: none; border-color: var(--primary); }
.cta-cards { display: flex; flex-direction: column; gap: 14px; }
.cta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  min-width: 260px;
  transition: background .2s;
}
.cta-card:hover { background: rgba(255,255,255,.1); }
.cta-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.cta-card-icon.wa { background: #25d366; }
.cta-card-info span { display: block; font-size: 0.72rem; color: rgba(255,255,255,.55); margin-bottom: 3px; }
.cta-card-info strong { font-size: 0.9rem; color: #fff; }

.testimonials-section { padding: 80px 0; background: var(--bg-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.testimonial-stars { color: var(--accent); margin-bottom: 14px; font-size: 0.9rem; }
.testimonial-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.875rem; color: var(--text); }
.testimonial-location { color: var(--text-muted); font-size: 0.78rem; }

.faq-section { padding: 80px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  gap: 16px;
  transition: background .15s;
}
.faq-question:hover { background: var(--primary-light); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s;
  font-size: 0.75rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 0.875rem; line-height: 1.75; color: var(--text-muted); background: #fff; }
.faq-item.open .faq-answer { display: block; }

.site-footer { background: #0f172a; color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
  transition: background .2s, color .2s;
}
.social-links a:hover { background: var(--primary); color: #fff; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 0.84rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col li a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; margin-bottom: 12px; color: rgba(255,255,255,.65); }
.footer-contact-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }

.flight-hero {
  position: relative;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.flight-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.88) 0%, rgba(26,86,219,.55) 100%);
}
.flight-hero-content { position: relative; z-index: 1; padding: 60px 0; width: 100%; }
.flight-hero-inner { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center; }
.flight-hero-text { color: #fff; }
.flight-hero-text h1 { color: #fff; margin-bottom: 16px; }
.flight-hero-text p { color: rgba(255,255,255,.85); margin-bottom: 24px; }

.breadcrumb-list { display: flex; align-items: center; gap: 6px; list-style: none; margin-bottom: 16px; font-size: 0.82rem; flex-wrap: wrap; }
.breadcrumb-light .breadcrumb-item a { color: rgba(255,255,255,.72); transition: color .15s; }
.breadcrumb-light .breadcrumb-item a:hover { color: #fff; }
.breadcrumb-light .breadcrumb-item.active { color: rgba(255,255,255,.45); }
.breadcrumb-sep { color: rgba(255,255,255,.35); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.about-grid h2 { margin-bottom: 16px; }
.about-grid p { font-size: 0.92rem; }
.about-grid ul { margin-top: 16px; }
.about-grid li { padding: 7px 0 7px 26px; position: relative; font-size: 0.875rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.about-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 800; }

.route-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.route-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: all .15s;
}
.route-link i { color: var(--primary); font-size: 0.78rem; }
.route-link:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }

.inner-page { padding: 64px 0; }
.inner-page h2 { margin: 36px 0 14px; font-size: 1.4rem; }
.inner-page h3 { margin: 24px 0 10px; font-size: 1.1rem; }
.inner-page p { margin-bottom: 14px; font-size: 0.93rem; line-height: 1.8; }
.inner-page ul, .inner-page ol { padding-left: 20px; margin-bottom: 16px; list-style: disc; }
.inner-page li { margin-bottom: 8px; font-size: 0.93rem; color: var(--text-muted); }

.from-hero {
  position: relative;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.from-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,.9) 0%, rgba(26,86,219,.58) 100%); }
.from-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  width: 100%;
}
.from-hero-text { color: #fff; }
.from-hero-text h1 { color: #fff; margin-bottom: 14px; font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
.from-hero-text p { color: rgba(255,255,255,.85); margin-bottom: 20px; }
.from-hero-text .hero-ctas { margin-top: 20px; }
.from-content { padding: 64px 0; }
.from-content .two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.from-why { padding: 64px 0; background: var(--bg-alt); }
.from-services { padding: 64px 0; }
.from-links { padding: 48px 0; background: var(--bg-alt); }

.service-link-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.service-link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-link-card img { width: 100%; height: 175px; object-fit: cover; }
.service-link-card a { display: block; padding: 14px 16px; font-size: 0.84rem; font-weight: 600; color: var(--primary); background: #fff; }
.service-link-card a:hover { color: var(--primary-dark); }

.links-three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 32px; }
.links-three-col li { border-bottom: 1px solid var(--border); }
.links-three-col a { display: block; padding: 10px 0; font-size: 0.84rem; color: var(--primary); transition: color .15s; }
.links-three-col a:hover { color: var(--primary-dark); }

.to-pair { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 8px; }
.to-pair i { color: var(--accent); }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 380px; gap: 32px; }
  .flight-hero-inner { grid-template-columns: 1fr 360px; gap: 32px; }
  .from-hero-inner { grid-template-columns: 1fr 360px; gap: 32px; }
  .footer-grid { grid-template-columns: 1.5fr 1.5fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .route-links-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { gap: 32px; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .section { padding: 56px 0; }
  .hero-inner,
  .flight-hero-inner,
  .from-hero-inner { grid-template-columns: 1fr; }
  .flight-hero { min-height: auto; }
  .from-hero { min-height: auto; }
  .hero-section { min-height: auto; }
  .nav-list { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .routes-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-cards { flex-direction: row; flex-wrap: wrap; }
  .cta-card { min-width: unset; flex: 1; min-width: 200px; }
  .about-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .route-links-grid { grid-template-columns: repeat(2, 1fr); }
  .three-col.service-cards-grid { grid-template-columns: 1fr 1fr; }
  .links-three-col { grid-template-columns: 1fr; }
  .cta-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .three-col.service-cards-grid { grid-template-columns: 1fr; }
  .cta-cards { flex-direction: column; }
  .cta-card { min-width: unset; }
}

.from-links { padding: 56px 0; background: var(--bg-alt); }
.from-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.from-links-col h3 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.from-links-list { display: flex; flex-direction: column; gap: 2px; }
.from-links-list a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.875rem; color: var(--text); transition: background .15s, color .15s; }
.from-links-list a i { color: var(--primary); font-size: 0.75rem; flex-shrink: 0; width: 12px; }
.from-links-list a:hover { background: var(--primary-light); color: var(--primary); }
@media (max-width: 640px) { .from-links-grid { grid-template-columns: 1fr; } }
