/*
 * CheapFareKart – Vanilla CSS
 * Migrated from React + Tailwind CSS
 * SEO-friendly, responsive, mobile-first
 */

/* ===========================
   1. CSS CUSTOM PROPERTIES
   =========================== */
:root {
  --navy:          #1B2A4A;
  --blue-primary:  #1285EF;
  --blue-sky:      #D6EDFF;
  --orange:        #E8770C;
  --orange-hover:  #D66A0A;
  --teal:          #1A9C8D;
  --teal-light:    #E0F7F4;
  --text-gray:     #5A6677;
  --star-yellow:   #FFC107;
  --white:         #ffffff;
  --gray-50:       #f9fafb;
  --gray-100:      #f3f4f6;
  --gray-200:      #e5e7eb;
  --blue-200:      #bfdbfe;

  --shadow-card:       0 4px 24px rgba(27,42,74,0.08);
  --shadow-card-hover: 0 8px 32px rgba(27,42,74,0.12);
  --shadow-button:     0 4px 16px rgba(232,119,12,0.3);
  --shadow-nav:        0 2px 12px rgba(27,42,74,0.06);

  --header-h: 82px;
  --max-w:    1200px;
}

/* ===========================
   2. RESET + BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  line-height: 1.15;
}

/* ===========================
   3. LAYOUT UTILITIES
   =========================== */
.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section-py   { padding-top: 5rem;  padding-bottom: 5rem;  }
.section-py-lg{ padding-top: 6rem;  padding-bottom: 6rem;  }

/* ===========================
   4. TYPOGRAPHY HELPERS
   =========================== */
.overline-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

.accent { color: var(--blue-primary); }

/* ===========================
   5. BUTTONS
   =========================== */
.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-button);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-orange:hover  { background: var(--orange-hover); transform: scale(1.02); }
.btn-orange:active { transform: scale(0.98); }

.btn-orange-sm { padding: 0.75rem 1.5rem; font-size: 0.75rem; }

/* ===========================
   6. LIVE BADGE + PING
   =========================== */
.live-badge {
  position: absolute;
  top: -0.75rem;
  right: -0.25rem;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #22c55e;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  box-shadow: 0 0 8px 2px rgba(34,197,94,0.6);
  z-index: 1;
}

.live-dot {
  position: relative;
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
}
.live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: 50%;
  animation: ping 1s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping {
  75%,100% { transform: scale(2); opacity: 0; }
}

/* ===========================
   7. HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--blue-sky);
  box-shadow: var(--shadow-nav);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  overflow: visible;
}

.site-logo          { display: flex; align-items: center; margin-left: -0.75rem; }
.site-logo img      { height: 80px; width: auto; object-fit: contain; }

/* Desktop nav (hidden on mobile) */
.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
.desktop-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 0.5rem;
  transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--blue-primary); }

/* Header phone CTA (hidden on mobile) */
.header-cta {
  display: none;
  position: relative;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.5rem 1rem 0.5rem 0.625rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-button);
  transition: background-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.header-cta:hover          { background: var(--orange-hover); transform: scale(1.02); }
.header-cta .icon-circle   { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.header-cta .icon-circle svg { width: 14px; height: 14px; }
.header-cta .cta-sub       { display: block; font-size: 10px; color: rgba(255,255,255,.8); font-weight: 500; line-height: 1; margin-bottom: 2px; }
.header-cta .cta-num       { display: block; font-size: 13px; font-weight: 700; line-height: 1; letter-spacing: .05em; }

/* Hamburger */
.hamburger-btn {
  display: flex;
  padding: 0.5rem;
  margin-right: -0.5rem;
  transition: transform 0.1s;
}
.hamburger-btn:active { transform: scale(0.9); }
.hamburger-btn svg    { width: 24px; height: 24px; color: var(--navy); }

/* ===========================
   8. MOBILE MENU OVERLAY
   =========================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-1rem);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: var(--header-h);
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.mobile-menu-top .site-logo { margin-left: -0.75rem; }
.mobile-menu-top .site-logo img { height: 80px; }

.close-btn { padding: 0.5rem; margin-right: -0.5rem; border-radius: 50%; transition: background 0.15s, transform 0.1s; }
.close-btn:hover  { background: var(--gray-100); }
.close-btn:active { transform: scale(0.9); }
.close-btn svg    { width: 24px; height: 24px; color: var(--navy); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 0;
  gap: 0.25rem;
  overflow-y: auto;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  border-left: 4px solid transparent;
  padding: 1rem 0 1rem 0.75rem;
  border-radius: 0 0.5rem 0.5rem 0;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.mobile-nav-link:hover {
  color: var(--blue-primary);
  border-left-color: var(--blue-primary);
  background: rgba(214,237,255,.4);
}

.mobile-menu-footer { padding: 1rem 1.5rem 2.5rem; flex-shrink: 0; }
.mobile-call-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.25rem 1rem 0.75rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-button);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
}
.mobile-call-cta:hover  { background: var(--orange-hover); }
.mobile-call-cta:active { transform: scale(0.98); }
.mobile-call-cta .icon-circle { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mobile-call-cta .icon-circle svg { width: 20px; height: 20px; }
.mobile-call-cta .cta-sub { display: block; font-size: 0.75rem; color: rgba(255,255,255,.8); font-weight: 500; line-height: 1; margin-bottom: 4px; }
.mobile-call-cta .cta-num { display: block; font-size: 1.125rem; font-weight: 700; line-height: 1; letter-spacing: .05em; }

/* ===========================
   9. HERO SECTION
   =========================== */
.hero-section {
  position: relative;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--blue-sky);
}

.hero-bg {
  display: none;
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(214,237,255,.6), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-overline { display: none; text-align: center; margin-bottom: 1.5rem; color: var(--navy); }

.hero-headline { text-align: left; margin-bottom: 0.75rem; }
.hero-h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}
.hero-sub {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.75rem;
  max-width: 36rem;
  line-height: 1.6;
}

/* Hero mobile call CTA (between hero and deals) */
.hero-post-cta {
  display: flex;
  justify-content: center;
  padding: 2rem 0 6rem;
}
.hero-desktop-spacer { display: none; }

/* ===========================
   10. SEARCH FORM
   =========================== */
.search-wrap {
  max-width: 64rem;
  margin: 0 auto 2rem;
  margin-top: 0.75rem;
}

/* Trip type tabs */
.trip-tabs { display: flex; gap: 0.25rem; margin-bottom: 0.75rem; }
.trip-tab {
  padding: 6px 20px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: none;
  cursor: pointer;
  background: none;
  color: var(--text-gray);
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.trip-tab:hover    { color: var(--navy); }
.trip-tab.active   { background: var(--navy); color: var(--white); }

/* Search fields row */
.search-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Individual field wrapper (mobile = card) */
.field-wrap {
  background: var(--white);
  border-radius: 1rem;
  padding: 6px;
  box-shadow: 0 4px 16px rgba(18,133,239,.1);
  flex: 1;
  min-width: 0;
  position: relative;
}

.field-inner {
  border: 2px solid var(--blue-200);
  border-radius: 0.75rem;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.field-text { flex: 1; min-width: 0; }
.field-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--blue-primary);
  margin-bottom: 4px;
}

.field-row { display: flex; align-items: center; gap: 0.5rem; }

.field-input {
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 600;
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-family: inherit;
}
.field-input::placeholder { color: var(--text-gray); font-weight: 400; }
input[type="date"].field-input { color-scheme: light; }

.field-icon-desk { display: none; width: 16px; height: 16px; color: var(--blue-primary); flex-shrink: 0; }
.field-icon-desk svg { width: 100%; height: 100%; }

.field-icon-mob {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}
.field-icon-mob svg { width: 16px; height: 16px; color: var(--blue-primary); }

/* Swap button (desktop only) */
.swap-btn {
  display: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
  transition: border-color 0.2s, color 0.2s;
}
.swap-btn:hover { border-color: var(--blue-primary); color: var(--blue-primary); }
.swap-btn svg   { width: 16px; height: 16px; }

/* ===========================
   11. AIRPORT AUTOCOMPLETE
   =========================== */
.airport-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 300px;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.12);
  border: 1px solid var(--gray-100);
  z-index: 200;
  overflow: hidden;
  display: none;
}
.airport-dropdown.open { display: block; }

.airport-opt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.airport-opt:hover { background: #eff6ff; }
.airport-code { font-size: 0.75rem; font-weight: 700; color: var(--blue-primary); width: 40px; flex-shrink: 0; }
.airport-city { font-size: 0.875rem; color: var(--navy); flex: 1; }
.airport-country { font-size: 0.75rem; color: var(--text-gray); flex-shrink: 0; }

/* ===========================
   12. TRAVELERS DROPDOWN
   =========================== */
.travelers-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 260px;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--gray-100);
  padding: 1rem;
  z-index: 200;
  display: none;
}
.travelers-dropdown.open { display: block; }

.travelers-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.travelers-lbl { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.travelers-ctrl { display: flex; align-items: center; gap: 0.75rem; }
.traveler-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-300, #d1d5db);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  transition: border-color 0.2s, color 0.2s;
}
.traveler-btn:hover { border-color: var(--blue-primary); color: var(--blue-primary); }
.traveler-count { font-size: 0.875rem; font-weight: 600; color: var(--navy); width: 1rem; text-align: center; }

.cabin-lbl { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.cabin-opts { display: flex; flex-direction: column; gap: 0.25rem; }
.cabin-btn {
  font-size: 0.875rem;
  padding: 8px 12px;
  border-radius: 0.5rem;
  text-align: left;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--text-gray);
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}
.cabin-btn:hover  { background: var(--gray-50); color: var(--navy); }
.cabin-btn.active { background: var(--navy); color: var(--white); }

/* ===========================
   13. SECTION TITLE (shared)
   =========================== */
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title .overline-text { margin-bottom: 0.75rem; color: var(--navy); }
.section-title h2 {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  color: var(--navy);
  line-height: 1.2;
}
.section-title .desc {
  color: var(--text-gray);
  font-size: 1rem;
  margin-top: 1rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===========================
   14. BEST DEALS SECTION
   =========================== */
.deals-section { background: var(--white); overflow: hidden; }

.deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.deals-img-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.deals-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
}
.deals-play-inner {
  width: 64px; height: 64px;
  background: var(--blue-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(18,133,239,.4);
  transition: transform 0.3s;
}
.deals-play-btn:hover .deals-play-inner { transform: scale(1.1); }
.deals-play-inner svg { width: 28px; height: 28px; color: var(--white); margin-left: 3px; }

.deals-img-caption {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
}
.deals-img-caption .dot { width: 8px; height: 8px; background: var(--blue-primary); border-radius: 50%; flex-shrink: 0; }

.deals-content .overline-text { color: var(--navy); margin-bottom: 0.75rem; }
.deals-content h2 { font-size: clamp(1.875rem,4vw,2.625rem); color: var(--navy); line-height: 1.2; margin-bottom: 1.5rem; }
.deals-content p  { color: var(--text-gray); font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; }

/* ===========================
   15. CARDS (shared)
   =========================== */
.card {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-card-hover); }

/* Icon containers */
.card-img-icon {
  height: 96px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.card-img-icon img { height: 80px; width: auto; object-fit: contain; }

.card-svg-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.card-svg-icon svg { width: 24px; height: 24px; color: var(--teal); }

.card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.25rem; }
.card-sub-blue { font-size: 0.875rem; font-weight: 600; color: var(--blue-primary); margin-bottom: 0.25rem; }
.card-sub-teal {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.card-desc { font-size: 0.875rem; color: var(--text-gray); line-height: 1.6; margin-top: 0.75rem; }

/* Service card image slot */
.svc-img {
  height: 176px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.svc-img img { height: 100%; width: auto; object-fit: contain; }
.svc-card-subtitle {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

/* Covered checklist */
.covered-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0; padding: 0; }
.covered-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.covered-list li svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.covered-list li span { font-size: 0.75rem; color: var(--text-gray); line-height: 1.4; }

/* ===========================
   16. WHY CHOOSE US (carousel bg)
   =========================== */
.why-section  { background: linear-gradient(135deg,#eff6ff,#f0f9ff,#f0fdfa); }
.cvrd-section { background: linear-gradient(135deg,#fffbeb,#fff7ed,#fefce8); }
.testi-section{ background: linear-gradient(135deg,#f0fdfa,#ecfeff,#f0f9ff); }

/* ===========================
   17. CAROUSEL
   =========================== */
.carousel-wrap  { position: relative; }
.carousel-overflow { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 0.75rem;
  box-sizing: border-box;
}

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 20;
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  transition: transform 0.2s;
}
.carousel-btn:hover { transform: translateY(-50%) scale(1.1); }
.carousel-btn svg   { width: 20px; height: 20px; color: var(--navy); }
.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }

/* ===========================
   18. GRIDS (service + covered + resources)
   =========================== */
.svc-grid      { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.cvrd-grid     { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 4rem; }
.resources-grid{ display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.cvrd-disclaimer { text-align: center; font-size: 11px; color: var(--text-gray); padding-bottom: 1rem; }

/* Resource cards (blog-style) */
.resource-card {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.resource-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.resource-img-wrap { overflow: hidden; }
.resource-img-wrap img { width: 100%; height: 192px; object-fit: cover; transition: transform 0.5s; }
.resource-card:hover .resource-img-wrap img { transform: scale(1.05); }
.resource-body  { padding: 1.5rem; }
.resource-tag   { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 0.5rem; }
.resource-body h3 { font-size: 1.125rem; color: var(--navy); margin-bottom: 0.5rem; font-family: 'Poppins',sans-serif; }
.resource-body p  { font-size: 0.875rem; color: var(--text-gray); margin-bottom: 1rem; line-height: 1.6; }
.resource-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--blue-primary); font-size: .875rem; font-weight: 500; }
.resource-link:hover { text-decoration: underline; }
.resource-link svg { width: 16px; height: 16px; }

/* ===========================
   19. TESTIMONIALS
   =========================== */
.testi-card {
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }

.stars { display: flex; gap: 2px; }
.star  { width: 16px; height: 16px; }
.star-full  { color: var(--star-yellow); fill: var(--star-yellow); }
.star-half  { position: relative; width: 16px; height: 16px; }
.star-half .star-bg  { color: var(--gray-200); }
.star-half .star-fg  { position: absolute; inset: 0; overflow: hidden; width: 50%; }
.star-half .star-fg svg { color: var(--star-yellow); fill: var(--star-yellow); }
.star-empty { color: var(--gray-200); }

.testi-text   { margin-top: 1rem; font-size: .875rem; color: var(--text-gray); line-height: 1.7; font-style: italic; }
.testi-author { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.author-avatar{ width: 40px; height: 40px; background: var(--teal-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.author-avatar span { font-size: 0.875rem; font-weight: 600; color: var(--teal); }
.author-name  { font-size: 0.875rem; font-weight: 600; color: var(--navy); }

/* ===========================
   20. FAQ
   =========================== */
.faq-section { background: var(--white); }
.faq-list    { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item { background: var(--white); border-radius: 1rem; box-shadow: var(--shadow-card); overflow: hidden; }

.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-size: 0.9375rem; font-weight: 600;
  color: var(--navy);
  font-family: inherit;
  gap: 1rem;
}

.faq-chevron { width: 20px; height: 20px; color: var(--text-gray); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--text-gray); line-height: 1.7; }

/* ===========================
   21. CTA BANNER
   =========================== */
.cta-section { background: var(--white); overflow: hidden; }
.cta-section img { width: 100%; max-height: 420px; object-fit: cover; object-position: center; display: block; }

/* ===========================
   22. FOOTER
   =========================== */
.site-footer { background: var(--navy); color: var(--white); }
.footer-inner { padding-top: 4rem; padding-bottom: 4rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-logo { height: 84px; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-top: 0.75rem; margin-bottom: 1.5rem; margin-left: -0.75rem; }
.footer-brand-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: .875rem; color: rgba(255,255,255,.7);
  text-decoration: none; transition: color 0.2s;
}
.footer-brand-link:hover { color: var(--white); }
.footer-brand-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-col h4 {
  font-size: .875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 1rem;
  font-family: 'Inter',sans-serif;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.7); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-social {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-social a { color: rgba(255,255,255,.6); text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: var(--white); }
.footer-social svg { width: 20px; height: 20px; display: block; }

.footer-bottom {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-copy { font-size: .875rem; color: rgba(255,255,255,.6); }
.footer-legal { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.footer-legal a { font-size: .875rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }
.footer-legal .sep { color: rgba(255,255,255,.3); }

/* ===========================
   23. MOBILE CALL BANNER (sticky)
   =========================== */
.sticky-call-banner {
  position: fixed;
  bottom: 1rem; left: 0.75rem; right: 0.75rem;
  z-index: 100;
}
.sticky-call-banner.hidden { display: none; }

.sticky-call-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0 0.75rem;
  padding-left: 0.625rem;
  background: linear-gradient(135deg,#7A3800 0%,#D66A0A 50%,#E8770C 100%);
  height: clamp(60px,10vh,80px);
}

.banner-avatar {
  position: relative;
  flex-shrink: 0;
  margin-left: 0.25rem;
}
.banner-avatar img {
  width: clamp(44px,7vh,60px);
  height: clamp(44px,7vh,60px);
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
  object-position: center;
}
.banner-online {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 10px; height: 10px;
  background: #4ade80;
  border-radius: 50%;
  border: 1px solid var(--white);
}

.banner-text { flex: 1; min-width: 0; }
.banner-text-sub  { font-size: clamp(9px,1.5vh,11px); color: rgba(255,255,255,.8); font-weight: 500; line-height: 1; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.banner-text-num  { font-size: clamp(12px,2vh,15px); color: var(--white); font-weight: 700; line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.banner-call-btn {
  flex-shrink: 0;
  width: clamp(36px,6vh,48px);
  height: clamp(36px,6vh,48px);
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.banner-call-btn:hover  { background: rgba(255,255,255,.35); }
.banner-call-btn:active { transform: scale(0.95); }
.banner-call-btn svg    { width: clamp(16px,2.8vh,22px); height: clamp(16px,2.8vh,22px); color: var(--white); }

.banner-dismiss {
  position: absolute;
  top: -8px; right: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: background 0.15s, transform 0.1s;
}
.banner-dismiss:hover  { background: var(--gray-200); }
.banner-dismiss:active { transform: scale(0.9); }
.banner-dismiss svg    { width: 12px; height: 12px; color: #6b7280; }

/* ===========================
   24. SCROLL ANIMATIONS
   =========================== */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim.from-left  { transform: translateX(-40px); }
.anim.from-right { transform: translateX(40px); }
.anim.visible    { opacity: 1; transform: translate(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===========================
   25. LEGAL PAGE
   =========================== */
.legal-main {
  padding-top: calc(var(--header-h) + 1rem);
  min-height: 100vh;
  background: var(--white);
}
.legal-content {
  max-width: 52rem;
  margin: 0 auto;
  padding: 4rem 0;
}
.legal-page-hdr { margin-bottom: 3rem; }
.legal-page-hdr h1 { font-size: clamp(1.875rem,4vw,2.5rem); color: var(--navy); margin-bottom: 1rem; }
.legal-bar { height: 4px; width: 5rem; background: var(--teal); border-radius: 9999px; }

.legal-sections { display: flex; flex-direction: column; gap: 2.5rem; }
.legal-section h2 { font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; font-family: inherit; }
.legal-section p  { font-size: 0.9375rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 0.75rem; }

.legal-contact { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--gray-100); }
.legal-contact h3 { font-size: 1.125rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; font-family: inherit; }
.legal-contact p  { font-size: .875rem; color: var(--text-gray); margin-bottom: 0.5rem; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.875rem; }
.breadcrumb a { color: var(--blue-primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--text-gray); }
.breadcrumb .current { color: var(--text-gray); }

/* ===========================
   26. RESPONSIVE – sm (640px)
   =========================== */
@media (min-width: 640px) {
  .container { padding-left: 2rem; padding-right: 2rem; }

  .carousel-slide  { width: 50%; }

  .svc-grid        { grid-template-columns: repeat(2,1fr); }
  .cvrd-grid       { grid-template-columns: repeat(2,1fr); }
  .resources-grid  { grid-template-columns: repeat(2,1fr); }

  .footer-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-bottom   { flex-direction: row; justify-content: space-between; }
  .footer-legal    { justify-content: flex-end; }
}

/* ===========================
   27. RESPONSIVE – md (768px)
   =========================== */
@media (min-width: 768px) {
  .svc-grid       { grid-template-columns: repeat(3,1fr); }
  .resources-grid { grid-template-columns: repeat(3,1fr); }
}

/* ===========================
   28. RESPONSIVE – lg (1024px)
   =========================== */
@media (min-width: 1024px) {
  .container { padding-left: 2.5rem; padding-right: 2.5rem; }

  /* Show desktop header elements */
  .desktop-nav   { display: flex; }
  .header-cta    { display: flex; }
  .hamburger-btn { display: none; }
  .site-logo img { height: 109px; }

  /* Hero desktop */
  .hero-section { background: transparent; min-height: 90vh; }
  .hero-bg      { display: block; }
  .hero-content { padding-top: 5rem; padding-bottom: 5rem; }
  .hero-overline  { display: block; }
  .hero-headline  { text-align: center; }
  .hero-sub       { margin-left: auto; margin-right: auto; text-align: center; font-size: 1rem; }
  .hero-post-cta    { display: none; }
  .hero-desktop-spacer { display: block; padding: 6rem 0; }

  /* Search form – desktop card */
  .search-wrap .search-card {
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(27,42,74,.12);
    overflow: visible;
  }
  .trip-tabs { padding: 1rem 1rem 0; margin-bottom: 0; }
  .search-fields { flex-direction: row; gap: 0.5rem; padding: 1rem; align-items: center; }

  /* Fields – desktop style */
  .field-wrap { background: transparent; border-radius: 0; padding: 0; box-shadow: none; }
  .field-inner { border: none; background: var(--gray-50); }
  .field-label { color: var(--navy); }
  .field-icon-mob  { display: none; }
  .field-icon-desk { display: block; }
  .swap-btn        { display: flex; }

  /* Carousel widths */
  .why-carousel  .carousel-slide { width: 25%; }
  .testi-carousel .carousel-slide { width: 33.333%; }
  .carousel-prev { left: -1rem; }
  .carousel-next { right: -1rem; }

  /* Grids */
  .svc-grid   { grid-template-columns: repeat(3,1fr); }
  .cvrd-grid  { grid-template-columns: repeat(5,1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }

  /* Best deals 2-col */
  .deals-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }

  /* Hide mobile sticky banner */
  .sticky-call-banner { display: none !important; }
}

/* ===========================
   29. RESPONSIVE – xl (1280px)
   =========================== */
@media (min-width: 1280px) {
  .container { padding-left: 3.5rem; padding-right: 3.5rem; }
}

/* Hide date picker icon on mobile */
@media (max-width: 1023px) {
  input[type="date"]::-webkit-calendar-picker-indicator { display: none; }
}
