/* ════════════ SCROLLBAR ════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a1628; }
::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 99px; }

/* ════════════ ANIMATED TOP BAR ════════════ */
#top-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 50%, var(--navy) 100%);
  background-size: 200% 100%;
  animation: barShift 6s linear infinite;
  color: var(--white);
  font-size: .82rem;
  font-family: var(--ff-head);
  font-weight: 500;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 40px;
  gap: 1rem;
  position: relative;
  z-index: 1001;
}
@keyframes barShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.top-bar-ticker {
  display: flex;
  align-items: center;
  gap: .5rem;
  overflow: hidden;
  flex: 1;
}
.top-bar-ticker span {
  animation: tickerScroll 18s linear infinite;
  white-space: nowrap;
}
@keyframes tickerScroll {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}
.top-bar-right { display: flex; align-items: center; gap: 1.2rem; }
.pulse-dot {
  width: 8px; height: 8px;
  background: #22d3ee;
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.6); opacity: .5; }
}

/* ════════ NEED HELP BUTTON (floating pill) ════════ */
#need-help-btn {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .55rem;
  background: linear-gradient(135deg, #f59e0b, #ef4444, #f97316);
  background-size: 200% 200%;
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: .92rem;
  padding: .78rem 1.6rem;
  border-radius: 99px;
  box-shadow: 0 0 0 0 rgba(245,158,11,.6), 0 6px 28px rgba(239,68,68,.5);
  cursor: pointer;
  transition: var(--trans);
  animation: needHelpPulse 2.2s ease-in-out infinite, gradShift 3s ease infinite;
  text-decoration: none;
  overflow: hidden;
  letter-spacing: .02em;
  text-shadow: 0 1px 3px rgba(0,0,0,.2);
}
#need-help-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  animation: shimmerSweep 2.4s ease-in-out infinite;
  border-radius: 99px;
}
#need-help-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 0 10px rgba(245,158,11,.15), 0 12px 36px rgba(239,68,68,.6);
}
#need-help-btn .help-icon {
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.help-phone-svg {
  animation: helpPhoneRing 2s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 0 3px rgba(255,255,255,.6));
}
@keyframes helpPhoneRing {
  0%,45%,100% { transform: rotate(0deg) scale(1); }
  50%          { transform: rotate(-25deg) scale(1.2); }
  55%          { transform: rotate(25deg) scale(1.2); }
  60%          { transform: rotate(-18deg) scale(1.12); }
  65%          { transform: rotate(18deg) scale(1.12); }
  70%          { transform: rotate(-8deg) scale(1.06); }
  75%          { transform: rotate(0deg) scale(1); }
}
@keyframes needHelpPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,.55), 0 6px 28px rgba(239,68,68,.45); }
  50%      { box-shadow: 0 0 0 12px rgba(245,158,11,.0), 0 6px 28px rgba(239,68,68,.45); }
}
@keyframes gradShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes shimmerSweep {
  0%   { left: -75%; }
  60%,100% { left: 130%; }
}

/* ════════ NEED HELP MODAL ════════ */
#help-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.55);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
#help-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.help-modal {
  background: linear-gradient(160deg, #0d2045 0%, #1a4fce 100%);
  border-radius: 24px;
  padding: 2.2rem 2rem 1.8rem;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 32px 80px rgba(10,22,40,.45), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .35s ease;
  overflow: hidden;
}
.help-modal::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(245,158,11,.25), transparent 70%);
  pointer-events: none;
}
#help-modal-overlay.open .help-modal {
  transform: translateY(0) scale(1);
}
.help-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 30px; height: 30px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  border: none;
}
.help-modal-close:hover { background: rgba(255,255,255,.22); color: #fff; }
.help-modal-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 20px rgba(245,158,11,.4);
  animation: helpPhoneRing 2s ease-in-out infinite;
}
.help-modal h3 {
  font-family: var(--ff-head);
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .6rem;
}
.help-modal p {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}
.help-modal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem;
  border-radius: 14px;
  text-decoration: none;
  transition: var(--trans);
  box-shadow: 0 6px 24px rgba(245,158,11,.45);
  margin-bottom: .9rem;
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2.2s ease-in-out infinite;
}
.help-modal-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.3), transparent);
  animation: ctaShimmer 2.6s ease-in-out infinite;
}
.help-modal-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,158,11,.6); }
.help-modal-cta svg { animation: ctaPhoneRing 2.2s ease-in-out infinite; transform-origin: center; flex-shrink:0; }
.help-modal-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.help-modal-disclaimer {
  font-size: .71rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: .9rem;
}

/* ── Animated Call Icon ── */
.modal-call-icon-wrap {
  position: relative;
  width: 68px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .8rem;
}
.modal-call-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(245,158,11,.5);
  animation: modalCallRipple 2s ease-out infinite;
}
.modal-call-ring1 { width: 68px; height: 68px; animation-delay: 0s; }
.modal-call-ring2 { width: 68px; height: 68px; animation-delay: .6s; }
@keyframes modalCallRipple {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(2.1); opacity: 0; }
}
.modal-call-orb {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(245,158,11,.5);
  position: relative; z-index: 1;
}
.modal-call-phone-svg {
  animation: modalPhoneRing 1.8s ease-in-out infinite;
  transform-origin: center;
}
@keyframes modalPhoneRing {
  0%,40%,100% { transform: rotate(0deg) scale(1); }
  45% { transform: rotate(-22deg) scale(1.15); }
  50% { transform: rotate(22deg) scale(1.15); }
  55% { transform: rotate(-14deg) scale(1.08); }
  60% { transform: rotate(14deg) scale(1.08); }
  65% { transform: rotate(0deg) scale(1); }
}

/* ════════════ HEADER ════════════ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(10,22,40,.07);
  transition: var(--trans);
}
#header.scrolled {
  box-shadow: 0 4px 28px rgba(10,22,40,.13);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(26,79,206,.35);
}
.logo span { color: var(--blue); }

/* NAV */
nav { display: flex; align-items: center; gap: .15rem; }
nav a {
  font-family: var(--ff-head);
  font-size: .87rem;
  font-weight: 500;
  color: var(--text2);
  padding: .45rem .9rem;
  border-radius: 8px;
  transition: var(--trans);
  white-space: nowrap;
}
nav a:hover, nav a.active {
  color: var(--blue);
  background: var(--light);
}

/* NAV DROPDOWN */
.nav-item { position: relative; }
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow2);
  border: 1px solid var(--border);
  min-width: 210px;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 9999;
}
/* Arrow pointer on top of dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.dropdown a {
  display: block;
  padding: .5rem .85rem;
  font-size: .85rem;
  border-radius: 8px;
  color: var(--text);
  white-space: nowrap;
}
.dropdown a:hover { background: var(--light); color: var(--blue); }

.header-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.btn-call {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: .88rem;
  padding: .6rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(245,158,11,.4);
  transition: var(--trans);
  white-space: nowrap;
}
.btn-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,.55);
}
.btn-call .ring {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ringAnim 1.8s ease infinite;
  flex-shrink: 0;
}
@keyframes ringAnim {
  0%,100% { transform: rotate(0deg); }
  20%      { transform: rotate(-18deg); }
  40%      { transform: rotate(18deg); }
  60%      { transform: rotate(-12deg); }
  80%      { transform: rotate(12deg); }
}
.phone-svg {
  animation: phoneRing 2.2s ease infinite;
  transform-origin: center;
}
@keyframes phoneRing {
  0%,50%,100% { transform: rotate(0deg) scale(1); }
  55%         { transform: rotate(-22deg) scale(1.2); }
  60%         { transform: rotate(22deg) scale(1.2); }
  65%         { transform: rotate(-16deg) scale(1.1); }
  70%         { transform: rotate(16deg) scale(1.1); }
  75%         { transform: rotate(-8deg) scale(1.05); }
  80%         { transform: rotate(0deg) scale(1); }
}

/* Chevron rotation when dropdown opens */
.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron {
  transform: rotate(180deg);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  border-radius: 8px;
  transition: var(--trans);
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 99px;
  transition: var(--trans);
  display: block;
}
.hamburger:hover { background: var(--light); }

/* ════════════ HERO ════════════ */
#hero {
  background: linear-gradient(135deg, #000000 0%, #0c1627 50%, #000000 100%);
  min-height: 86vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45,125,210,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,125,210,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridFloat 20s linear infinite;
}
@keyframes gridFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(48px); }
}
.hero-glow { display: none; }
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.15); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-left { animation: fadeUp .8s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.35);
  color: var(--accent);
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .35rem .9rem;
  border-radius: 99px;
  margin-bottom: 1.2rem;
}
.hero-badge::before { content: '✈'; font-size: .9em; }
.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: 99px;
  box-shadow: 0 6px 24px rgba(245,158,11,.4);
  transition: var(--trans);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,158,11,.5); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.28);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: 99px;
  transition: var(--trans);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }
.hero-stats {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.stat-item { text-align: left; flex: 1 1 auto; min-width: 80px; }
.stat-num {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .2rem;
}

/* ══════════════════════════════════════
   PREMIUM CTA CARD — REDESIGN
══════════════════════════════════════ */
.hero-right { animation: fadeUp .8s .2s ease both; }

.hero-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: none;
  border: none;
  position: relative;
}

.hero-cta-card {
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Decorative glow blobs */
.hero-cta-card::before { display: none; }
.hero-cta-card::after  { display: none; }

/* ── Scene strip (animated SVG area) ── */
.cta-scene-strip {
  width: 100%;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.cta-phone-corner {
  position: absolute;
  top: 12px; right: 14px;
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-decoration: none;
}
.cta-phone-orb {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cta-phone-label {
  font-family: var(--ff-head); font-size:.58rem; font-weight:700;
  color:rgba(255,255,255,.9); letter-spacing:.04em; text-transform:uppercase;
  white-space:nowrap; background:rgba(0,0,0,.4); padding:2px 7px;
  border-radius:99px;
}

/* ── Content area ── */
.cta-content-area {
  padding: 1.6rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* Urgency badge */
.cta-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, rgba(239,68,68,.25), rgba(249,115,22,.2));
  border: 1px solid rgba(239,68,68,.4);
  border-radius: 99px;
  padding: .28rem .9rem;
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  color: #fca5a5;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.cta-urgency-dot {
  width: 6px; height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: liveDot 1.4s ease-in-out infinite;
}
@keyframes liveDot {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.4;transform:scale(1.5)}
}

.hero-cta-card h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -.01em;
}
.hero-cta-card h3 em {
  font-style: normal;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-cta-card p {
  color: rgba(255,255,255,.65);
  font-size: .84rem;
  line-height: 1.65;
  margin: 0;
  max-width: 290px;
}

/* ── Big call button ── */
.btn-cta-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ef4444 100%);
  background-size: 200% 200%;
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 14px;
  width: 100%;
  box-shadow: 0 8px 28px rgba(249,115,22,.5), 0 2px 8px rgba(0,0,0,.2);
  transition: var(--trans);
  text-decoration: none;
  animation: ctaGradShift 3s ease infinite, ctaPulse 2.2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  letter-spacing: .01em;
}
.btn-cta-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  animation: ctaShimmer 2.6s ease-in-out infinite;
}
.btn-cta-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(249,115,22,.6), 0 4px 12px rgba(0,0,0,.25);
}
.btn-cta-label { display: flex; flex-direction: column; align-items: flex-start; }
.btn-cta-label span:first-child { font-size: .72rem; font-weight: 500; opacity: .8; line-height:1; }
.btn-cta-label span:last-child  { font-size: 1rem; font-weight: 800; line-height:1.2; }

.cta-phone-svg {
  animation: ctaPhoneRing 2.2s ease-in-out infinite;
  transform-origin: center;
  flex-shrink: 0;
}
@keyframes ctaPhoneRing {
  0%,45%,100% { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(-22deg) scale(1.2); }
  55%  { transform: rotate(22deg) scale(1.2); }
  60%  { transform: rotate(-14deg) scale(1.1); }
  65%  { transform: rotate(14deg) scale(1.1); }
  70%  { transform: rotate(0deg) scale(1); }
}
@keyframes ctaGradShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(249,115,22,.5), 0 2px 8px rgba(0,0,0,.2); }
  50%      { box-shadow: 0 8px 38px rgba(249,115,22,.75), 0 2px 8px rgba(0,0,0,.2); }
}
@keyframes ctaShimmer {
  0%     { left: -70%; }
  60%,100% { left: 120%; }
}

/* ── Trust badges row ── */
.cta-card-badges {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.cta-card-badges span {
  flex: 1;
  min-width: 80px;
  font-size: .71rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  padding: .4rem .5rem;
  border-radius: 10px;
  text-align: center;
}

/* ── Divider ── */
.cta-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}

.cta-card-note {
  font-size: .73rem;
  color: rgba(255,255,255,.38);
  margin: 0;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.airline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1.4rem;
}
.airline-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: .55rem .8rem;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--trans);
  cursor: pointer;
}
.airline-chip:hover { background: rgba(45,125,210,.35); border-color: rgba(45,125,210,.5); color: #fff; }
.airline-chip .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.search-input-wrap {
  position: relative;
  margin-bottom: 1rem;
}
.search-input-wrap input {
  width: 100%;
  padding: .85rem 1rem .85rem 2.8rem;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-family: var(--ff-body);
  font-size: .9rem;
  outline: none;
  transition: var(--trans);
}
.search-input-wrap input::placeholder { color: rgba(255,255,255,.45); }
.search-input-wrap input:focus { border-color: var(--sky); background: rgba(255,255,255,.15); }
.search-input-wrap .s-icon {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.5);
  font-size: .95rem;
}
.btn-search {
  width: 100%;
  padding: .85rem;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .9rem;
  border-radius: 12px;
  transition: var(--trans);
  box-shadow: 0 4px 18px rgba(26,79,206,.4);
}
.btn-search:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,79,206,.5); }

/* ════════════ TRUST BAR ════════════ */
#trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .9rem 2rem;
  overflow: hidden;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text2);
  white-space: nowrap;
}
.trust-item .icon { font-size: 1.1rem; }
.trust-item strong { color: var(--navy); }

/* ════════════ SECTION WRAPPER ════════════ */
section { padding: 5rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--blue);
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .7rem;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ════════════ WHAT TO DO - STEPS ════════════ */
#steps { background: var(--light); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--trans);
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0);
  transition: var(--trans);
  transform-origin: left;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.step-card:hover::before { transform: scaleX(1); }
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: #fff;
  border-radius: 12px;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(26,79,206,.3);
}
.step-card h4 {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.step-card p { font-size: .86rem; color: var(--text2); line-height: 1.6; }

/* ════════════ AIRLINES GRID ════════════ */
#airlines { background: var(--white); }
.airlines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.airline-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  transition: var(--trans);
  cursor: pointer;
}
.airline-card:hover {
  border-color: var(--blue);
  background: var(--light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.airline-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}
.airline-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
}
.airline-info h4 {
  font-family: var(--ff-head);
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.airline-info span {
  font-size: .75rem;
  color: var(--gray);
}
.view-all-wrap { text-align: center; margin-top: 2.5rem; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1.8rem;
  border-radius: 99px;
  transition: var(--trans);
}
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ════════════ LATEST GUIDES ════════════ */
#guides { background: var(--light); }
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.guide-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.guide-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.guide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.3));
}
.guide-cat {
  position: absolute;
  bottom: .7rem; left: .8rem;
  background: var(--accent);
  color: var(--navy);
  font-family: var(--ff-head);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .7rem;
  border-radius: 99px;
  z-index: 2;
}
.guide-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.guide-body h3 {
  font-family: var(--ff-head);
  font-size: .96rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: .6rem;
  flex: 1;
}
.guide-body h3 a:hover { color: var(--blue); }
.guide-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  color: var(--gray);
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
}
.guide-meta .dot { width: 3px; height: 3px; background: var(--gray2); border-radius: 50%; }

/* ════════════ WHY TRUST US ════════════ */
#trust { background: var(--white); }
.trust-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.trust-feature {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--trans);
}
.trust-feature:hover { background: var(--light); border-color: var(--blue); }
.feature-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--light), #dbeafe);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--trans);
}
.trust-feature:hover .feature-icon {
  background: linear-gradient(135deg, var(--blue), var(--sky));
  filter: drop-shadow(0 6px 14px rgba(26,79,206,.3));
}
.trust-feature h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.trust-feature p { font-size: .86rem; color: var(--text2); line-height: 1.65; }

/* ════════════ FAQ ════════════ */
#faq { background: var(--light); }
.faq-list { max-width: 780px; margin: 3rem auto 0; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  margin-bottom: .7rem;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-family: var(--ff-head);
  font-size: .94rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: var(--trans);
}
.faq-q:hover { background: var(--light); }
.faq-q .chevron {
  font-size: .8rem;
  color: var(--blue);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.7;
  padding: 0 1.4rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.4rem 1.2rem; }

/* ════════════ URGENCY CTA SECTION ════════════ */
#newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3460 50%, var(--navy2) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
#newsletter::before { display: revert; }
#newsletter::after  { display: revert; }
#newsletter .section-label {
  color: #f59e0b;
  text-shadow: 0 0 12px rgba(245,158,11,.4);
}
#newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,125,210,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,125,210,.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
#newsletter::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,79,206,.25) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.urgency-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.urgency-left h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.urgency-left h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.urgency-left p {
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.urgency-steps {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.urgency-step {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  color: rgba(255,255,255,.75);
}
.urgency-step-num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 8px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .78rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.urgency-right {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.expert-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.expert-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.expert-avatar {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(26,79,206,.4);
}
.expert-status-dot {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 14px; height: 14px;
  background: #22c55e;
  border-radius: 50%;
  border: 2.5px solid rgba(10,22,40,.9);
  animation: pulse 1.8s ease-in-out infinite;
}
.expert-meta { flex: 1; }
.expert-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: .2rem;
}
.expert-online {
  font-size: .78rem;
  color: #4ade80;
  font-weight: 600;
}
.expert-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 1.2rem 0;
}
.expert-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.expert-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.expert-stat-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1;
}
.expert-stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .25rem;
  text-align: center;
}
.expert-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
.expert-msg {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  font-style: italic;
  text-align: center;
  margin-bottom: 1.4rem;
}
.urgency-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .95rem;
  padding: .65rem .9rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(245,158,11,.45);
  transition: var(--trans);
  margin-bottom: 1rem;
  animation: phonePulseBtn 2.8s ease-in-out infinite;
}
.urgency-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245,158,11,.6);
  animation-play-state: paused;
}
.urgency-call-btn .call-icon {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ringAnim 1.8s ease infinite;
}
.urgency-badges {
  display: flex;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: .8rem;
}
.urgency-badge {
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: .28rem .7rem;
  border-radius: 99px;
}
.urgency-note {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
}
@media (max-width: 768px) {
  .urgency-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ════════════ FOOTER ════════════ */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
}

/* Footer About Row */
.footer-about {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem 0;
}
.footer-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.footer-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.footer-logo-text {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-logo-text span { color: var(--sky); }
.footer-about-desc {
  flex: 1;
  font-size: .95rem;
  line-height: 1.72;
  color: rgba(255,255,255,.65);
  min-width: 260px;
}
.footer-social {
  display: flex;
  gap: .6rem;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--trans);
  color: rgba(255,255,255,.7);
}
.social-btn:hover { background: var(--blue); color: #fff; }

/* Footer 3-col Links Row */
.footer-links {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 3rem 0;
}
.footer-links-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.footer-col h5 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.footer-col ul li { margin-bottom: .8rem; }
.footer-col ul li a {
  font-size: 1rem;
  color: rgba(255,255,255,.62);
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--sky); padding-left: 4px; }

/* Footer Disclaimer Row */
.footer-disclaimer {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 1.8rem 0;
}
.footer-disclaimer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.disclaimer-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
}
.disclaimer-box h6 {
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .5rem;
}
.disclaimer-box p {
  font-size: .86rem;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
}

/* Footer Contact Block */
.footer-contact-label {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-phone-animated {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  padding: 1rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a4fce 0%, #2d7dd2 100%);
  border: 1.5px solid rgba(255,255,255,.15);
  box-shadow: 0 4px 20px rgba(26,79,206,.45), inset 0 1px 0 rgba(255,255,255,.12);
  transition: box-shadow .32s ease, background .32s ease;
  animation: phonePulseBtn 2.8s ease-in-out infinite;
  will-change: box-shadow;
  position: relative;
  overflow: hidden;
}
.footer-phone-animated::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: skewX(-20deg);
  animation: phoneShine 3.5s ease-in-out infinite;
}
.footer-phone-animated:hover {
  background: linear-gradient(135deg, #1e5ae0 0%, #3589e0 100%);
  box-shadow: 0 6px 30px rgba(26,79,206,.65), inset 0 1px 0 rgba(255,255,255,.18);
  animation-play-state: paused;
}
.footer-phone-svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  flex-shrink: 0;
  animation: ringAnim 1.8s ease infinite;
}
@keyframes phonePulseBtn {
  0%, 100% { box-shadow: 0 4px 20px rgba(26,79,206,.45), inset 0 1px 0 rgba(255,255,255,.12); }
  50%       { box-shadow: 0 4px 30px rgba(26,79,206,.7), 0 0 0 5px rgba(45,125,210,.15), inset 0 1px 0 rgba(255,255,255,.12); }
}
@keyframes phoneShine {
  0%        { left: -75%; }
  50%, 100% { left: 125%; }
}
.footer-contact-hours {
  font-size: .73rem;
  color: rgba(255,255,255,.38);
  margin-top: .65rem;
  text-align: center;
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.6rem 0;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  transition: var(--trans);
  white-space: nowrap;
}
.footer-bottom-links a:hover { color: var(--sky); }

/* ════════════ BACK TO TOP ════════════ */
#btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(26,79,206,.4);
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: var(--trans);
}
#btt.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#btt:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(26,79,206,.55); }

/* ════════════ ANIMATIONS (scroll reveal) ════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════ MOBILE ════════════ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links-inner { grid-template-columns: repeat(3, 1fr); }
  .airlines-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  #top-bar { padding: 0 1rem; }
  .top-bar-ticker span { font-size: .75rem; }
  .header-inner { padding: 0 1rem; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.5rem; }
  .hero-right { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .guides-grid { grid-template-columns: 1fr; }
  .trust-features { grid-template-columns: 1fr; }
  .airline-grid { grid-template-columns: 1fr 1fr; }
  .airlines-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-about-inner { flex-direction: column; }
  section { padding: 3.5rem 0; }
  #need-help-btn { bottom: 5rem; right: 1rem; font-size: .8rem; padding: .6rem 1.1rem; }
  .trust-inner { justify-content: flex-start; gap: .8rem 1.5rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .footer-bottom-links { gap: .8rem; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .airlines-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: .8rem 1.2rem; }
  .stat-num { font-size: 1.25rem; }
  .stat-label { font-size: .7rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { justify-content: center; }
  #top-bar { font-size: .72rem; }
  .help-modal { padding: 1.8rem 1.4rem 1.4rem; }
}

/* Mobile nav overlay */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(14px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  overflow-y: auto;
  padding: 4rem 1rem 2rem;
}
#mobile-nav.open { display: flex; }
#mobile-nav > a {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: .7rem 2rem;
  border-radius: 10px;
  transition: var(--trans);
  width: 100%;
  max-width: 300px;
  text-align: center;
}
#mobile-nav > a:hover { color: var(--sky); background: rgba(45,125,210,.15); }
#mobile-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  color: rgba(255,255,255,.6);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile nav dropdown accordion */
#mobile-nav .nav-item {
  width: 100%;
  max-width: 300px;
  position: static;
}
#mobile-nav .nav-item .nav-dropdown-trigger {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: .7rem 2rem;
  border-radius: 10px;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  cursor: pointer;
}
#mobile-nav .nav-item .nav-dropdown-trigger:hover { color: var(--sky); background: rgba(45,125,210,.15); }
#mobile-nav .nav-item { border: none; border-bottom: none; }
#mobile-nav > a { border: none; border-bottom: none; }
#mobile-nav .nav-item .nav-chevron { transition: transform .25s ease; }
#mobile-nav .nav-item.mob-open .nav-chevron { transform: rotate(180deg); }
#mobile-nav .nav-item .dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: none;
  background: rgba(255,255,255,.06);
  border: none;
  border-radius: 10px;
  box-shadow: none;
  min-width: unset;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height .3s ease, padding .3s ease;
}
#mobile-nav .nav-item.mob-open .dropdown {
  max-height: 500px;
  padding: .4rem;
}
#mobile-nav .dropdown::before { display: none; }
#mobile-nav .dropdown a {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: .55rem 1rem;
  border-radius: 8px;
  display: block;
  text-align: center;
  white-space: normal;
}
#mobile-nav .dropdown a:hover { background: rgba(45,125,210,.2); color: var(--sky); }
