/* ============================================================
   AEROVISTA.ONLINE — Main Stylesheet
   TFN: (844) 205-4177
   ============================================================ */

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

/* ── DESIGN TOKENS ── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0f2347;
  --blue:        #1456cc;
  --blue-mid:    #1a6ef5;
  --blue-light:  #4f8ef7;
  --sky:         #e8f0fe;
  --sky2:        #dbeafe;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1e293b;
  --gold:        #f59e0b;
  --gold-dark:   #d97706;
  --green:       #10b981;
  --red:         #ef4444;
  --font:        'Inter', sans-serif;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 2px 12px rgba(20,86,204,0.10);
  --shadow-md:   0 8px 30px rgba(20,86,204,0.14);
  --shadow-lg:   0 20px 50px rgba(20,86,204,0.13);
  --trans:       0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ── */
.container    { max-width: 1200px; margin: 0 auto; }
.text-center  { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: var(--sky);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 13px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--gray-800);
}
.section-title span { color: var(--blue); }
.section-sub {
  font-size: 0.97rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 620px;
}

section { padding: 80px 24px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}
.topbar a { color: var(--gold); text-decoration: none; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
}
.logo-text { line-height: 1.2; }
.logo-text .name {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-text .name span { color: var(--blue); }
.logo-text .tagline {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.6px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--navy) !important; color: var(--white) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(140deg, var(--navy) 0%, #0e1f4a 45%, #163680 100%);
  padding: 90px 24px 110px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23f8fafc' d='M0,80L1440,0L1440,80Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 26px;
  letter-spacing: 0.4px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 3px 24px rgba(0,0,0,0.25);
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.phone-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 30px 56px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  margin-bottom: 44px;
}
.phone-card .pc-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.phone-card a {
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
  font-weight: 900;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color var(--trans);
}
.phone-card a:hover { color: var(--navy); }
.phone-card .pc-status {
  font-size: 0.76rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 5px;
  display: flex; align-items: center; gap: 5px;
}
.hero-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.20);
  padding: 8px 17px;
  border-radius: 50px;
  font-size: 0.81rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 24px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gray-700);
}
.trust-item .t-icon {
  width: 34px; height: 34px;
  background: var(--sky);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--trans);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.svc-icon {
  width: 58px; height: 58px;
  background: var(--sky);
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.svc-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.svc-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.72; margin-bottom: 18px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--blue); font-size: 0.86rem; font-weight: 600;
  text-decoration: none;
}
.svc-link:hover { text-decoration: underline; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how {
  background: linear-gradient(140deg, var(--navy), #163680);
  color: var(--white);
}
#how .section-title { color: var(--white); }
#how .section-sub   { color: rgba(255,255,255,0.72); }
#how .section-tag   { background: rgba(255,255,255,0.13); color: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.step-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform var(--trans), background var(--trans);
}
.step-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.11); }
.step-num {
  width: 50px; height: 50px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step-emoji { font-size: 1.9rem; margin-bottom: 10px; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 9px; }
.step-card p { font-size: 0.83rem; opacity: 0.78; line-height: 1.65; }

/* ============================================================
   WHY US
   ============================================================ */
#why { background: var(--gray-50); }
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-points { list-style: none; display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.wp-icon {
  width: 46px; height: 46px;
  background: var(--sky);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.wp-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.wp-text p  { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; }

/* Stats panel */
.stats-panel {
  background: linear-gradient(135deg, var(--sky), var(--sky2));
  border-radius: var(--radius-xl);
  padding: 38px;
  display: flex; flex-direction: column; gap: 18px;
}
.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(20,86,204,0.08);
}
.stat-box .snum { display: block; font-size: 1.9rem; font-weight: 900; color: var(--blue); }
.stat-box .sdesc { font-size: 0.76rem; color: var(--gray-500); font-weight: 500; margin-top: 3px; }
.stat-wide {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 16px;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--white);
}
.stat-wide .sw-num { font-size: 1.7rem; font-weight: 900; }
.stat-wide .sw-lbl { font-size: 0.78rem; opacity: 0.82; }
.stat-wide .sw-ico { font-size: 2.2rem; }

/* ============================================================
   AIRLINES
   ============================================================ */
#airlines { background: var(--white); }
.airlines-wrap {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 48px;
}
.airline-tag {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 0.86rem; font-weight: 600; color: var(--gray-700);
  display: flex; align-items: center; gap: 7px;
  transition: all var(--trans); cursor: default;
}
.airline-tag:hover {
  background: var(--sky);
  border-color: var(--blue-light);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(20,86,204,0.10);
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
#destinations { background: var(--gray-50); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.dest-tile {
  background: linear-gradient(145deg, var(--navy-mid), var(--blue));
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  text-align: center;
  color: var(--white);
  transition: transform var(--trans), box-shadow var(--trans);
  cursor: default;
}
.dest-tile:hover { transform: translateY(-6px); box-shadow: 0 18px 42px rgba(20,86,204,0.25); }
.dest-tile .d-ico  { font-size: 2rem; margin-bottom: 9px; }
.dest-tile .d-city { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.dest-tile .d-code { font-size: 0.72rem; opacity: 0.72; font-weight: 500; letter-spacing: 0.8px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--sky); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 4px 18px rgba(20,86,204,0.07);
  transition: transform var(--trans), box-shadow var(--trans);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-stars  { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testi-card blockquote {
  font-size: 0.9rem; color: var(--gray-700);
  line-height: 1.72; font-style: italic; margin-bottom: 18px;
}
.t-author  { display: flex; align-items: center; gap: 11px; }
.t-avatar  {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.86rem; flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 0.9rem; display: block; }
.t-loc  { font-size: 0.76rem; color: var(--gray-500); }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--white); }
.faq-wrap {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 13px;
}
.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-btn {
  width: 100%; background: none; border: none;
  padding: 19px 22px;
  text-align: left;
  font-family: var(--font);
  font-size: 0.93rem; font-weight: 600; color: var(--gray-800);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  transition: background var(--trans), color var(--trans);
}
.faq-btn:hover { background: var(--sky); }
.faq-chevron { font-size: 0.68rem; color: var(--blue); transition: transform 0.3s; flex-shrink: 0; }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.88rem; color: var(--gray-600); line-height: 1.72;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open { border-color: var(--blue-light); }
.faq-item.open .faq-btn { background: var(--sky); color: var(--blue); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(140deg, var(--navy), #163680);
  padding: 90px 24px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 16px;
}
.cta-banner h2 span { color: var(--gold); }
.cta-banner p {
  font-size: 1rem; opacity: 0.83; line-height: 1.7;
  max-width: 500px; margin: 0 auto 38px;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--gold);
  color: var(--navy);
  padding: 18px 44px;
  border-radius: var(--radius-md);
  font-size: 1.35rem; font-weight: 900;
  text-decoration: none; letter-spacing: 0.3px;
  box-shadow: 0 8px 32px rgba(245,158,11,0.40);
  transition: all var(--trans);
}
.cta-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(245,158,11,0.50);
}
.cta-note { margin-top: 18px; font-size: 0.8rem; opacity: 0.65; }

/* ============================================================
   DISCLAIMER STRIP
   ============================================================ */
.disclaimer-strip {
  background: #1e293b;
  color: #94a3b8;
  padding: 28px 24px;
  font-size: 0.78rem;
  line-height: 1.8;
  text-align: center;
}
.disclaimer-strip p { max-width: 1100px; margin: 0 auto; }
.disclaimer-strip strong { color: #cbd5e1; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 24px 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.855rem; color: #94a3b8; line-height: 1.75;
  margin: 14px 0 20px;
}
.footer-phone-wrap .fp-label { font-size: 0.74rem; color: #64748b; margin-bottom: 4px; }
.footer-phone-wrap a {
  color: var(--gold); font-size: 1.2rem; font-weight: 800;
  text-decoration: none; display: block;
  transition: color var(--trans);
}
.footer-phone-wrap a:hover { color: var(--gold-dark); }
.footer-col h5 {
  font-size: 0.88rem; font-weight: 700; color: var(--white);
  margin-bottom: 16px; letter-spacing: 0.3px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  text-decoration: none; color: #94a3b8;
  font-size: 0.85rem; transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.85rem; color: #94a3b8;
  margin-bottom: 8px; display: flex; gap: 8px; align-items: flex-start;
}
.footer-contact p strong { color: #cbd5e1; }
.footer-bottom {
  border-top: 1px solid #1e3a5f;
  padding-top: 26px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: #475569; }
.footer-bottom a { color: #64748b; text-decoration: none; transition: color var(--trans); }
.footer-bottom a:hover { color: var(--white); }
.f-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.f-badge {
  background: #0f2347;
  border: 1px solid #1e3a5f;
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.73rem; color: #64748b;
  display: flex; align-items: center; gap: 5px;
}

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-hero {
  background: linear-gradient(140deg, var(--navy), #163680);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
}
.policy-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900; margin-bottom: 10px;
}
.policy-hero p { font-size: 0.9rem; opacity: 0.78; }
.policy-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
}
.policy-body h2 {
  font-size: 1.2rem; font-weight: 800;
  color: var(--navy); margin: 36px 0 12px;
}
.policy-body h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--blue); margin: 24px 0 8px;
}
.policy-body p {
  font-size: 0.9rem; color: var(--gray-600);
  line-height: 1.8; margin-bottom: 14px;
}
.policy-body ul {
  padding-left: 22px;
  margin-bottom: 14px;
}
.policy-body ul li {
  font-size: 0.9rem; color: var(--gray-600);
  line-height: 1.8; margin-bottom: 6px;
}
.policy-body .highlight-box {
  background: var(--sky);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.88rem; color: var(--gray-700); line-height: 1.75;
}
.policy-body .effective {
  font-size: 0.8rem; color: var(--gray-500);
  margin-bottom: 32px; font-style: italic;
}
.back-home {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); text-decoration: none;
  font-size: 0.88rem; font-weight: 600;
  margin-bottom: 24px;
}
.back-home:hover { text-decoration: underline; }

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.fab {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 1000;
}
.fab a {
  display: flex; align-items: center; gap: 9px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.93rem; font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: all var(--trans);
}
.fab a:hover {
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(20,86,204,0.45);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-layout  { gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  section    { padding: 60px 18px; }
  .hero      { padding: 64px 18px 100px; }
  .phone-card { padding: 22px 30px; width: 100%; max-width: 340px; }
  .why-layout { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .fab { bottom: 16px; right: 16px; }
  .fab a { padding: 12px 18px; font-size: 0.86rem; }
  .cta-btn { font-size: 1.1rem; padding: 16px 30px; }
}
@media (max-width: 520px) {
  .footer-cols { grid-template-columns: 1fr; }
  .steps-grid  { grid-template-columns: 1fr; }
  .dest-grid   { grid-template-columns: 1fr 1fr; }
  .stats-row   { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid  { grid-template-columns: 1fr; }
}
