/* Sky Fare — shared styles */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Figtree:wght@400;500;600;700&display=swap');

:root {
  --navy: #083d7a;
  --navy-deep: #042652;
  --sky: #0096ff;
  --sky-bright: #3db4ff;
  --teal: #00c9a7;
  --teal-light: #2ee6c5;
  --coral: #ff4d2e;
  --coral-hot: #ff6a3d;
  --sun: #ffb020;
  --cloud: #eaf5ff;
  --mist: #d0ebff;
  --white: #ffffff;
  --ink: #0c2a4a;
  --muted: #4a6a88;
  --border: rgba(8, 61, 122, 0.12);
  --shadow: 0 14px 44px rgba(0, 100, 200, 0.14);
  --radius: 12px;
  --phone: '+1 888 887 4484';
  --phone-tel: 'tel:+18888874484';
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --header-h: 72px;
  --banner-h: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --grad-brand: linear-gradient(135deg, #0096ff 0%, #00c9a7 55%, #2ee6c5 100%);
  --grad-cta: linear-gradient(135deg, #ff4d2e 0%, #ff7a1a 100%);
  --grad-banner: linear-gradient(90deg, #042652 0%, #0096ff 45%, #00c9a7 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* ——— Top banner ——— */
.top-banner {
  background: var(--grad-banner);
  color: var(--white);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  position: relative;
  z-index: 100;
  animation: bannerPulse 4s ease-in-out infinite;
}

.top-banner strong {
  color: #ffe566;
  text-shadow: 0 0 18px rgba(255, 229, 102, 0.45);
}

@keyframes bannerPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(234, 245, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 28px rgba(0, 120, 255, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 150, 255, 0.35);
}

.logo-mark svg {
  width: 20px;
  height: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  padding: 0.75rem 1.35rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--grad-cta);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 77, 46, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(255, 106, 61, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
}

.btn-phone {
  background: var(--grad-cta);
  color: white;
  font-size: 1.15rem;
  padding: 1.05rem 1.85rem;
  box-shadow: 0 10px 32px rgba(255, 77, 46, 0.45);
}

.nav-cta {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--mist);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--banner-h) - var(--header-h));
  min-height: calc(100dvh - var(--banner-h) - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(4, 38, 82, 0.9) 0%, rgba(0, 120, 220, 0.72) 48%, rgba(0, 201, 167, 0.45) 100%),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  animation: heroZoom 28s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 4.5rem;
  max-width: 720px;
}

.hero-with-search .hero-content {
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffe566;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.1s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ee6c5;
  box-shadow: 0 0 0 4px rgba(46, 230, 197, 0.35);
  animation: liveDot 1.6s ease infinite;
}

@keyframes liveDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.15rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.32s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.42s forwards;
}

.agents-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #7dffd4;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.55s forwards;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.hero-stats span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-trust {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.65s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Brand signal in hero */
.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.85rem;
  background: linear-gradient(90deg, #ffffff 0%, #7ddfff 45%, #ffe566 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.05s forwards;
}

/* ——— Sections ——— */
.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sky);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head .section-sub {
  margin-inline: auto;
  margin-bottom: 0;
}

/* Features */
.features {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.75rem;
}

.feature {
  padding: 0.25rem 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.16), rgba(0, 201, 167, 0.2));
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--sky);
  box-shadow: inset 0 0 0 1px rgba(0, 150, 255, 0.12);
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Steps */
.steps-section {
  background:
    linear-gradient(180deg, #eaf5ff 0%, #d0ebff 50%, #c8fff3 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.step {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  background: var(--grad-brand);
  color: white;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 150, 255, 0.4);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Destinations / deals */
.deals-section {
  background: var(--white);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.deal {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  isolation: isolate;
  transition: transform 0.35s var(--ease);
}

.deal:hover {
  transform: translateY(-6px);
}

.deal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}

.deal:hover .deal-bg {
  transform: scale(1.06);
}

.deal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 26, 46, 0.92) 0%, rgba(6, 26, 46, 0.2) 55%, transparent 100%);
  z-index: -1;
}

.deal-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--grad-cta);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(255, 77, 46, 0.4);
}

.deal-body {
  padding: 1.35rem;
}

.deal h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.deal p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.deal .btn {
  width: 100%;
}

/* Reviews */
.reviews-section {
  background: var(--cloud);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.stars {
  color: #ffb020;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  text-shadow: 0 0 12px rgba(255, 176, 32, 0.35);
}

.review-text {
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.review-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

.verified {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 5rem 0;
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(4, 38, 82, 0.92) 0%, rgba(0, 120, 220, 0.78) 50%, rgba(255, 77, 46, 0.65) 100%),
    url('https://images.unsplash.com/photo-1464037866556-6812c9d1c72b?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
  max-width: 640px;
  margin-inline: auto;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-inline: auto;
}

.cta-meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--navy);
}

.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--sky);
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 280px;
  padding-bottom: 1.25rem;
}

.faq-a p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Airlines strip */
.airlines {
  background: linear-gradient(90deg, #042652, #083d7a 40%, #0066cc);
  padding: 1.75rem 0;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.airlines p {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: #ffe566;
}

.airline-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}

/* Expert callout (PPC) */
.expert-panel {
  background: var(--white);
  padding: 3.5rem 0;
}

.expert-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.expert-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.expert-copy p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.why-call {
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 201, 167, 0.12));
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(0, 150, 255, 0.18);
}

.why-call strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.why-call p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.expert-action {
  background: linear-gradient(160deg, #042652 0%, #0096ff 55%, #00c9a7 120%);
  border-radius: 16px;
  padding: 2rem;
  color: white;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 120, 255, 0.3);
}

.expert-action .agents-live {
  justify-content: center;
  margin-bottom: 1rem;
}

.expert-action .btn {
  width: 100%;
  margin-bottom: 1rem;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.checks li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.checks li::before {
  content: '✓';
  color: #ffe566;
  font-weight: 800;
}

/* Page hero (inner pages) */
.page-hero {
  background:
    linear-gradient(120deg, #042652 0%, #0096ff 55%, #00c9a7 100%);
  color: white;
  padding: 4rem 0 3.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  font-size: 1.05rem;
}

.content-page {
  padding: 3.5rem 0 5rem;
  background: var(--white);
}

.content-prose {
  max-width: 760px;
}

.content-prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.content-prose p,
.content-prose li {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.content-prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-block {
  background: var(--cloud);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.contact-block h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-block a {
  color: var(--sky);
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #042652 0%, #031a38 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 340px;
}

.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #ffe566;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.disclaimer {
  margin-top: 1rem;
  line-height: 1.55;
}

/* Sticky call bar */
.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--grad-cta);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 -8px 30px rgba(255, 77, 46, 0.35);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}

.sticky-call.visible {
  transform: translateY(0);
}

.sticky-call a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
}

.sticky-call span {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
}

body {
  padding-bottom: 0;
}

body.has-sticky {
  padding-bottom: 64px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* PPC urgency tweaks */
.ppc-hero .hero-bg {
  background:
    linear-gradient(115deg, rgba(4, 38, 82, 0.92) 0%, rgba(0, 120, 220, 0.75) 48%, rgba(255, 77, 46, 0.4) 100%),
    url('https://images.unsplash.com/photo-1556388158-158df10e32ba?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.urgency-banner {
  background: linear-gradient(90deg, #ff4d2e, #ff7a1a 50%, #ff4d2e);
  animation: bannerPulse 3s ease-in-out infinite;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-grid,
  .steps,
  .deals-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .expert-inner,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    inset: calc(var(--banner-h) + var(--header-h)) 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    display: none;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta.desktop {
    display: none !important;
  }

  .nav-cta.mobile {
    display: inline-flex;
    margin-top: 0.75rem;
    width: 100%;
  }
}

@media (min-width: 901px) {
  .nav-cta.desktop {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .brand-hero {
    font-size: 2.4rem;
  }
}

/* ——— Flight search form + airport autocomplete ——— */
.flight-search {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  border-radius: 16px;
  padding: 1.15rem 1.15rem 1.25rem;
  box-shadow: 0 22px 55px rgba(0, 80, 200, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.35);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.38s forwards;
}

.flight-search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin-bottom: 1rem;
}

.flight-search-tabs label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--muted);
  cursor: pointer;
}

.flight-search-tabs input {
  accent-color: var(--coral);
}

.flight-search-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.65rem;
  align-items: end;
}

.fs-field {
  position: relative;
  text-align: left;
}

.fs-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.fs-field input[type="text"],
.fs-field input[type="date"],
.fs-field select {
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--cloud);
  border-radius: 10px;
  padding: 0.78rem 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fs-field input:focus,
.fs-field select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.22);
  background: var(--white);
}

.fs-field input.has-selection {
  border-color: rgba(0, 201, 167, 0.55);
  background: rgba(0, 201, 167, 0.08);
}

.fs-swap {
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 150, 255, 0.25);
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.08), rgba(0, 201, 167, 0.1));
  color: var(--sky);
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.fs-swap:hover {
  background: var(--grad-brand);
  color: white;
  box-shadow: 0 6px 16px rgba(0, 150, 255, 0.35);
  transform: rotate(180deg);
}

.flight-search-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 0.65rem;
  margin-top: 0.75rem;
  align-items: end;
}

.fs-submit {
  white-space: nowrap;
  height: 48px;
  padding-inline: 1.35rem;
}

.ac-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 40;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(6, 26, 46, 0.18);
  max-height: 280px;
  overflow-y: auto;
  padding: 0.35rem;
}

.ac-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
  color: var(--ink);
  transition: background 0.15s;
}

.ac-item:hover,
.ac-item.active {
  background: linear-gradient(90deg, rgba(0, 150, 255, 0.12), rgba(0, 201, 167, 0.1));
}

.ac-code {
  flex-shrink: 0;
  min-width: 42px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--sky);
  padding-top: 0.1rem;
}

.ac-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.ac-city {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.ac-name {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ac-empty {
  padding: 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.fs-error {
  margin-top: 0.75rem;
  color: #b91c1c;
  font-size: 0.88rem;
  font-weight: 600;
}

.search-result {
  margin-top: 0.85rem;
}

.search-result-card {
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(255, 77, 46, 0.08));
  border: 1px solid rgba(0, 150, 255, 0.28);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  text-align: left;
}

.search-result-route {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.search-result-meta {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.search-result-msg {
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.search-result-card .btn-phone {
  font-size: 1rem;
  padding: 0.85rem 1.25rem;
}

@media (max-width: 800px) {
  .flight-search-grid {
    grid-template-columns: 1fr;
  }

  .fs-swap {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .fs-swap:hover {
    transform: rotate(270deg);
  }

  .flight-search-row {
    grid-template-columns: 1fr 1fr;
  }

  .fs-submit {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .flight-search-row {
    grid-template-columns: 1fr;
  }
}
