/*
 * ╔══════════════════════════════════════════════════════════════╗
 * ║              FAREFLYERS — COMPLETE CSS                         ║
 * ║              Cleaned - No Duplicates                         ║
 * ╚══════════════════════════════════════════════════════════════╝
 */

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #070d1a;
  --navy-mid: #0d1628;
  --navy-light: #13203a;
  --navy-card: #111c30;
  --gold: #c8a84b;
  --gold-light: #e2c97e;
  --gold-dim: rgba(200,168,75,0.15);
  --white: #f5f0e8;
  --white-dim: rgba(245,240,232,0.7);
  --white-faint: rgba(245,240,232,0.12);
  --silver: #a8b5c8;
  --silver-dim: rgba(168,181,200,0.2);
  --green: #3ecf8e;
  --green-dim: rgba(62,207,142,0.12);
  --border: rgba(200,168,75,0.18);
  --border-subtle: rgba(168,181,200,0.1);
  --border-gold: rgba(200,168,75,0.25);
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 30px rgba(200,168,75,0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, select { font-family: inherit; outline: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.announcement-bar {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    overflow: hidden;
    position: relative;
}

.announcement-bar .scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 30s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* ===== NOISE TEXTURE ===== */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ===== UTILITY CLASSES ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; }
.section { padding: 38px 0; }
.gold { color: var(--gold); }
.tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 5px 20px;
  border-radius: 40px;
  margin-bottom: 10px;
}
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ===== HEADER ===== */
.gold-link {
    color: var(--gold) !important;
    background: var(--gold-dim);
    border-radius: 30px;
}

.gold-link:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
}
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,13,26,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
}
header .container { padding-left: 10px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-zone {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--white);
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 20px; color: var(--navy);
}
.logo-img-header {
  height: 60px; width: auto;
  filter: drop-shadow(0 0 6px rgba(200,168,75,0.25));
  transition: filter 0.3s, transform 0.2s;
}
.logo-img-footer {
  height: 42px; width: auto;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.header-nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 15px; font-weight: 500;
  color: var(--white);
  padding: 8px 16px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--white); background: var(--white-faint); }
.btn-header {
  font-size: 13px; font-weight: 600;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 20px; border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-header:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }
@media(max-width:768px){
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}
/* ============================================================ */
/* SOCIAL MEDIA ICONS - COMPLETE WITH BETTER SPACING
/* ============================================================ */

.social-row {
    display: flex;
    align-items: center;
    gap: 14px;  /* Increased gap between icons */
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
}

/* Fix for Instagram icon (mixed fill/stroke) */
.social-btn svg[fill="none"] {
    fill: none;
    stroke: currentColor;
}

.social-btn svg circle[fill="currentColor"] {
    fill: currentColor;
    stroke: none;
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social .social-btn {
    width: 36px;
    height: 36px;
}

.footer-social .social-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .social-row {
        gap: 10px;
    }
    
    .social-btn {
        width: 34px;
        height: 34px;
    }
    
    .social-btn svg {
        width: 16px;
        height: 16px;
    }
}
/* ============================================================ */

/* ===== HERO SECTION ===== */
.hero { padding: 40px 0 40px; position: relative; overflow: hidden; }
@media (max-width: 768px) { .hero { padding: 60px 0 60px; } }
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 17px; font-weight: 300; color: var(--white-dim);
  line-height: 1.75; margin-bottom: 16px; max-width: 480px;
}
.hero-trust {
  font-family: 'DM Mono', monospace; font-size: 12px;
  letter-spacing: 0.1em; color: var(--silver);
  margin-bottom: 36px;
}
.hero-trust span { color: var(--gold); margin-right: 8px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  font-size: 15px; font-weight: 600;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 14px 30px; border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,168,75,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,168,75,0.35); }
.btn-secondary {
  font-size: 15px; font-weight: 500; color: var(--white);
  border: 1px solid var(--border); padding: 14px 30px; border-radius: 10px;
  background: var(--white-faint);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); background: var(--gold-dim); }
@media(max-width:900px){ .hero-grid{grid-template-columns:1fr;} .hero-visual{display:none;} }

/* ===== HERO SLIDESHOW ===== */
.slide-wrapper { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 340px; }
.slide {
  position: absolute; inset: 0;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.preview-header { font-size: 12px; font-family: 'DM Mono', monospace; color: var(--silver); margin-bottom: 20px; }
.preview-row {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}
.preview-label { color: var(--silver); }
.preview-value { font-weight: 600; }
.preview-value.green { color: var(--green); }
.preview-badge {
  background: var(--green-dim); color: var(--green);
  padding: 2px 10px; border-radius: 20px; font-size: 10px; margin-left: 8px;
}
.winner-chip {
  background: linear-gradient(135deg, rgba(200,168,75,0.1), rgba(200,168,75,0.05));
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 18px; margin-top: 25px; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.winner-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.slide-dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.slide-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border-subtle); cursor: pointer; }
.slide-dot.active { background: var(--gold); transform: scale(1.3); }
.slide-progress { height: 2px; background: var(--border-subtle); border-radius: 2px; margin-bottom: 18px; }
.slide-progress-bar {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; width: 0%;
  animation: progressFill 8s linear infinite;
}
.slide-progress-bar::after {
  content: '✈';
  position: absolute; left: 0; top: 6.4%; transform: translateY(-50%);
  font-size: 24px;
  filter: drop-shadow(0 0 6px rgba(200,168,75,1));
  animation: flightMove 8s linear infinite;
  color: var(--gold);
}
.slide-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.slide-counter { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--silver); }
.slide-arrows { display: flex; gap: 8px; }
.slide-arrow {
  width: 26px; height: 26px; border-radius: 6px;
  border: 1px solid var(--border-subtle); background: transparent; color: var(--silver);
  cursor: pointer;
}
.slide-arrow:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
@keyframes progressFill { 0%{width:0%} 100%{width:100%} }
@keyframes flightMove { 0%{left:0} 100%{left:calc(100% - 24px)} }

/* ===== SECTION HEADINGS ===== */
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 16px;
}
.section-head p { font-size: 16px; color: var(--white-dim); max-width: 560px; margin: 0 auto; font-weight: 300; }
.divider { width: 48px; height: 2px; background: var(--gold); margin: 0 auto 24px; border-radius: 2px; }

/* ===== SEARCH SECTION ===== */
.search-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 30px 0;
}
.search-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 32px;
  max-width: 860px;
  margin: 0 auto;
}
.search-title {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.search-sub {
  font-size: 15px;
  color: var(--silver);
  text-align: center;
  margin-bottom: 28px;
}
.search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search-field label {
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  color: var(--silver);
  text-transform: uppercase;
}
.search-field input,
.search-field select {
  background: var(--navy-light);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--white);
  padding: 10px 12px;
  font-size: 12px;
}
.search-field input:focus,
.search-field select:focus {
  border-color: var(--gold);
  outline: none;
}
.search-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,168,75,0.25);
}
.search-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,168,75,0.4); }

/* Popular Routes */
.popular-section { margin-top: 24px; }
.dest-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.dest-card {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--navy-light);
  border: 1px solid var(--border-subtle);
  border-radius: 40px;
  padding: 5px 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.dest-card:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-1px);
}
.dest-from, .dest-to { font-size: 11px; font-weight: 500; color: var(--white); }
.dest-arrow { font-size: 10px; color: var(--gold); margin: 0 2px; }

/* Section Dividers */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 20px;
}
.divider-line { height: 1px; background: var(--border-subtle); flex: 1; }
.divider-text {
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Compare Section */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.group-header {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 16px;
}
.group-icon { font-size: 12px; }
.group-title {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 10px;
  padding: 4px 10px;
  background: var(--navy-light);
  border: 1px solid var(--border-subtle);
  border-radius: 30px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-1px);
}
.more-chip { border-color: var(--border); color: var(--silver); font-style: italic; }

/* Responsive Search */
@media (max-width: 750px) {
  .search-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 550px) {
  .search-box { padding: 20px; }
  .search-grid { grid-template-columns: 1fr; }
  .dest-card { padding: 3px 8px; }
  .dest-from, .dest-to { font-size: 10px; }
}

/* ===== ANALYZING OVERLAY ===== */
.analyzing-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(7,13,26,0.97);
  backdrop-filter: blur(12px);
  align-items: center; justify-content: center; flex-direction: column;
  text-align: center;
}
.analyzing-overlay.active { display: flex; }
.analyze-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; margin-bottom: 40px; color: var(--gold);
}
.analyze-steps { display: flex; flex-direction: column; gap: 14px; width: 340px; }
.analyze-step {
  display: flex; align-items: center; gap: 14px;
  background: var(--navy-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 14px 20px;
  font-size: 14px; color: var(--silver);
  opacity: 0.3; transition: opacity 0.5s, border-color 0.5s, color 0.5s;
}
.analyze-step.active { opacity: 1; border-color: var(--gold); color: var(--white); }
.analyze-step.done { opacity: 1; border-color: rgba(62,207,142,0.4); color: var(--green); }
.analyze-spinner {
  width: 48px; height: 48px;
  border: 2px solid var(--border-subtle);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 1s linear infinite; margin: 0 auto 32px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESULT SECTION ===== */
.result-section {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0;
}
.result-section.active { display: block; }
.result-header { text-align: center; margin-bottom: 48px; }
.result-header h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.result-route-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-dim); border: 1px solid var(--border);
  border-radius: 40px; padding: 8px 20px; font-size: 13px; font-weight: 600; color: var(--gold);
}
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.result-card {
  background: var(--navy-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 28px; position: relative;
}
.result-card.winner { border-color: var(--gold); }
.winner-ribbon {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; padding: 4px 12px; border-radius: 20px; text-transform: uppercase;
}
.rc-label { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--silver); text-transform: uppercase; margin-bottom: 18px; }
.rc-value { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--white); }
.rc-value.green { color: var(--green); }
.breakdown-card {
  background: var(--navy-card); border-radius: var(--radius); padding: 28px;
}
.breakdown-title { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--silver); text-transform: uppercase; margin-bottom: 20px; }
.breakdown-row {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}
.breakdown-row .neg { color: var(--green); }
.platform-rows { display: flex; flex-direction: column; gap: 10px; }
.platform-row {
  display: flex; justify-content: space-between;
  background: var(--navy-light); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 14px 18px;
}
.platform-row.best { border-color: var(--gold); }
.plat-price { font-weight: 700; font-family: 'DM Mono', monospace; }
@media(max-width:700px){ .result-grid{grid-template-columns:1fr;} }

/* ===== HOW IT WORKS / MISSION ===== */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mission-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 42px); margin-bottom: 20px; }
.mission-text p { font-size: 16px; color: var(--white-dim); margin-bottom: 16px; }
.mission-highlight {
  background: var(--gold-dim); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 20px; font-size: 14px; font-style: italic; color: var(--gold-light);
  margin-top: 15px;
}
.mission-stats { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
}

.stat-card { 
    background: var(--navy-card); 
    border-radius: var(--radius); 
    padding: 28px; 
    text-align: center; 
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.stat-number { 
    font-family: 'Playfair Display', serif; 
    font-size: 42px; 
    color: var(--gold); 
    line-height: 1; 
    margin-bottom: 8px; 
}

.stat-label { 
    font-size: 13px; 
    color: var(--silver); 
}

@media(max-width:800px){ 
    .mission-grid{grid-template-columns:1fr;} 
}

/* ===== TRUST SECTION ===== */
/* ===== TRUST SECTION ===== */
.trust-section { 
    background: var(--navy-mid); 
}

.trust-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; 
}

.trust-card {
    background: var(--navy-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.trust-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.trust-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 13px;
    color: var(--white-dim);
    line-height: 1.5;
}

@media(max-width:700px){ 
    .trust-grid{grid-template-columns:1fr;} 
}

/* ===== WHAT WE PROVIDE ===== */
.provide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.provide-card {
  background: var(--navy-card); border-radius: var(--radius); padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.provide-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.provide-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gold); margin-bottom: 14px; }
.provide-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.provide-card p { font-size: 14px; color: var(--white-dim); }
@media(max-width:700px){ .provide-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:480px){ .provide-grid{grid-template-columns:1fr;} }

/* ===== LOUNGE ACCESS SECTION ===== */
.lounge-section { background: #080e1b; }
.lounge-search-box {
  max-width: 650px;
  margin: 0 auto 20px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 23px 32px;
}
.lounge-search-wrapper { position: relative; margin-bottom: 20px; }
.search-input-container { position: relative; display: flex; align-items: center; }
.search-icon {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  font-size: 18px; color: var(--silver);
}
.lounge-search-input {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid var(--border-subtle);
  border-radius: 60px;
  padding: 14px 50px 14px 50px;
  color: var(--white);
  font-size: 14px;
}
.lounge-search-input:focus { outline: none; border-color: var(--gold); }
.clear-search {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--silver); cursor: pointer;
}
.search-suggestions {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 12px; max-height: 300px; overflow-y: auto;
  display: none; margin-top: 4px; z-index: 100;
}
.search-suggestions.show { display: block; }
.suggestion-item {
  padding: 12px 16px; cursor: pointer;
  border-bottom: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between;
}
.suggestion-item:hover { background: var(--gold-dim); }
.suggestion-name { font-weight: 500; color: var(--white); }
.suggestion-bank { font-size: 11px; color: var(--silver); margin-left: 8px; }
.suggestion-badge { font-size: 10px; background: var(--green-dim); color: var(--green); padding: 2px 8px; border-radius: 20px; }
.lounge-check-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-size: 15px; font-weight: 700;
  padding: 14px 28px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.lounge-check-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,168,75,0.35); }

/* Lounge Result */
.lounge-result-area { max-width: 700px; margin: 0 auto; }
.access-result-card {
  background: var(--navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 24px;
  margin-top: 20px;
}
.access-result-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 12px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border-subtle);
}
.card-title-section .card-bank { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--gold); text-transform: uppercase; }
.card-title-section h3 { font-size: 20px; margin-top: 6px; font-family: 'Playfair Display', serif; }
.access-status-badge {
  background: var(--green-dim); color: var(--green);
  padding: 6px 14px; border-radius: 40px; font-size: 12px; font-weight: 600;
}
.access-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.access-detail-item {
  background: var(--navy-light); border-radius: 12px; padding: 16px;
}
.access-detail-item .detail-label { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--silver); text-transform: uppercase; display: block; margin-bottom: 10px; }
.access-detail-item .detail-value { font-size: 24px; font-weight: 700; color: var(--gold); display: block; margin-bottom: 6px; }
.access-detail-item .spend-note { color: var(--green); font-size: 11px; margin-top: 8px; }

/* No Access Result */
.no-access-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  margin-top: 20px;
}
.sad-emoji { font-size: 48px; margin-bottom: 16px; }
.no-access-card h4 { font-size: 18px; margin-bottom: 8px; }
.how-about-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-size: 14px; font-weight: 600;
  padding: 12px 28px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.how-about-btn:hover { transform: translateY(-2px); }

/* Quick Examples */
.quick-examples {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px; margin-top: 24px;
}
.quick-label { font-size: 12px; color: var(--silver); font-family: 'DM Mono', monospace; }
.quick-chip {
  background: transparent; border: 1px solid var(--border-subtle);
  border-radius: 60px; padding: 6px 16px; font-size: 12px;
  color: var(--silver); cursor: pointer; transition: all 0.2s;
}
.quick-chip:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.view-all-link {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 60px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}
.view-all-link:hover {
  background: rgba(200,168,75,0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .lounge-search-box { padding: 20px; }
  .access-details-grid { grid-template-columns: 1fr; gap: 12px; }
  .card-title-section h3 { font-size: 18px; }
}

/* ===== SIGNUP SECTION ===== */
.signup-section {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.signup-box { max-width: 580px; margin: 0 auto; text-align: center; }
.signup-box h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 16px; }
.signup-box p { font-size: 16px; color: var(--white-dim); margin-bottom: 36px; }
.signup-form { display: flex; gap: 12px; }
.signup-input {
  flex: 1; background: var(--navy-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 14px 18px;
  color: var(--white); font-size: 15px;
}
.signup-input:focus { border-color: var(--gold); outline: none; }
.signup-submit {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy); font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s;
}
.signup-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(200,168,75,0.35); }
.signup-note { font-size: 12px; color: var(--silver); margin-top: 14px; }
.signup-success {
  display: none; background: var(--green-dim); border-radius: var(--radius-sm);
  padding: 16px 24px; color: var(--green); margin-top: 20px;
}
@media(max-width:560px){ .signup-form{flex-direction:column;} }

/* ===== ROADMAP SECTION ===== */
.roadmap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.roadmap-card {
  background: var(--navy-card); border-radius: var(--radius); padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.roadmap-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.roadmap-phase {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.roadmap-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.roadmap-card p { font-size: 14px; color: var(--white-dim); }
@media(max-width:700px){ .roadmap-grid{grid-template-columns:1fr;} }

/* ===== FOOTER ===== */
footer {
  background: var(--navy); border-top: 1px solid var(--border-subtle);
  padding: 54px 0 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 13px; color: var(--silver); max-width: 240px; margin-top: 14px; }
.footer-col h4 {
  font-size: 12px; font-family: 'DM Mono', monospace;
  color: var(--silver); text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--white-dim);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  font-size: 12px; color: var(--silver);
}
@media(max-width:700px){ .footer-top{grid-template-columns:1fr 1fr;} .footer-bottom{flex-direction:column; text-align:center;} }
@media(max-width:480px){ .footer-top{grid-template-columns:1fr;} }

/* ===== BANNER & TOAST ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  padding: 9px 0; text-align: center;
  font-size: 14px; color: var(--navy);
  font-weight: 550;
}
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 300;
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 24px;
  font-size: 14px; color: var(--white);
  transform: translateY(80px); opacity: 0; transition: all 0.4s;
}
.toast.show { transform: none; opacity: 1; }
/* Fix scroll position for fixed header */
#search { scroll-margin-top: 100px; }
#how-it-works { scroll-margin-top: 90px; }
#lounge { scroll-margin-top: 90px; }
#roadmap { scroll-margin-top: 90px; }
#signup { scroll-margin-top: 90px; }
/* Fix scroll position for fixed header */
#search { scroll-margin-top: 100px; }
#how-it-works { scroll-margin-top: 90px; }
#lounge { scroll-margin-top: 90px; }
#roadmap { scroll-margin-top: 90px; }
#signup { scroll-margin-top: 90px; }
#trust { scroll-margin-top: 90px; }
#provide { scroll-margin-top: 90px; }
/* Fix scroll position for fixed header - prevents header from covering section tops */
/* Fix scroll position - adjusted values */
#lounge {
    scroll-margin-top: 80px;
}

#how-it-works {
    scroll-margin-top: 80px;
}

#roadmap {
    scroll-margin-top: 80px;
}

#signup {
    scroll-margin-top: 80px;
}

#trust {
    scroll-margin-top: 80px;
}

#provide {
    scroll-margin-top: 80px;
}

#search {
    scroll-margin-top: 90px;
}
/* Reduce footer size */
footer {
    background: var(--navy);
    border-top: 1px solid var(--border-subtle);
    padding: 35px 0 24px;  /* Reduced from 64px 0 40px */
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;  /* Reduced from 48px */
    margin-bottom: 25px;  /* Reduced from 48px */
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 10px;  /* Reduced from 24px */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 11px;  /* Reduced from 12px */
    color: var(--silver);
}

.footer-brand p {
    font-size: 12px;  /* Reduced from 13px */
    color: var(--silver);
    max-width: 240px;
    margin-top: 12px;  /* Reduced from 14px */
}

.footer-col h4 {
    font-size: 11px;  /* Reduced from 12px */
    margin-bottom: 14px;  /* Reduced from 16px */
}

.footer-col a {
    font-size: 12px;  /* Reduced from 14px */
    margin-bottom: 8px;  /* Reduced from 10px */
}

.footer-social {
    gap: 8px;
    margin-top: 14px;
}

.footer-social .social-btn {
    width: 32px;
    height: 32px;
}
/* ============================================================ */
/* MOBILE RESPONSIVE - WITH BIGGER FONTS
/* ============================================================ */

/* Tablet & Mobile (up to 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
}

/* Mobile Devices (up to 768px) */
@media (max-width: 768px) {
    /* ===== BIGGER FONTS FOR MOBILE ===== */
    body {
        font-size: 16px !important;
    }
    
    h1 {
        font-size: 32px !important;
    }
    
    h2 {
        font-size: 24px !important;
    }
    
    .section-head h2 {
        font-size: 22px !important;
    }
    
    .search-title {
        font-size: 22px !important;
    }
    
    .search-sub {
        font-size: 14px !important;
    }
    
    .hero-sub {
        font-size: 15px !important;
    }
    
    .dest-from, .dest-to {
        font-size: 13px !important;
    }
    
    .chip {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
    
    .stat-number {
        font-size: 32px !important;
    }
    
    .stat-label {
        font-size: 14px !important;
    }
    
    .trust-card p {
        font-size: 14px !important;
    }
    
    .provide-card p {
        font-size: 14px !important;
    }
    
    .quick-chip {
        font-size: 13px !important;
        padding: 6px 14px !important;
    }
    
    .footer-col a {
        font-size: 14px !important;
    }
    
    /* ===== HEADER ===== */
    .header-inner {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .logo-img-header {
        height: 45px;
    }
    
    .hamburger {
        display: flex !important;
        order: 3;
    }
    
    .social-row {
        order: 2;
    }
    
    .btn-header {
        order: 1;
        padding: 6px 14px;
        font-size: 13px !important;
    }
    
    /* Mobile Navigation */
    .header-nav {
        display: none;
        width: 100%;
        order: 4;
    }
    
    .header-nav.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(7, 13, 26, 0.98);
        backdrop-filter: blur(18px);
        padding: 20px;
        gap: 12px;
        z-index: 999;
        border-bottom: 1px solid var(--border);
    }
    
    .header-nav.active a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0 !important;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .stats-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .btn-row {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px !important;
    }
    
    /* Slideshow */
    .slide-wrapper {
        min-height: 380px;
    }
    
    .slide {
        padding: 20px;
    }
    
    .preview-row {
        font-size: 12px;
        padding: 8px 0;
    }
    
    /* Search Section */
    .search-section {
        padding: 30px 0;
    }
    
    .search-box {
        padding: 20px;
    }
    
    .search-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .search-field input,
    .search-field select {
        font-size: 15px !important;
        padding: 12px !important;
    }
    
    .search-field label {
        font-size: 12px !important;
    }
    
    /* Popular Routes */
    .dest-grid {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .dest-card {
        padding: 5px 12px;
    }
    
    .dest-arrow {
        font-size: 12px !important;
    }
    
    /* Compare Section */
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .group-header {
        gap: 8px;
    }
    
    /* Mission Section */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .mission-text {
        text-align: center;
    }
    
    .mission-text h2 {
        text-align: center;
    }
    
    .mission-highlight {
        text-align: left;
    }
    
    .mission-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    /* Trust Section */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trust-card {
        padding: 24px 20px;
    }
    
    .trust-card h3 {
        font-size: 18px !important;
    }
    
    /* What We Provide */
    .provide-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .provide-card {
        padding: 20px;
    }
    
    .provide-card h3 {
        font-size: 16px !important;
    }
    
    /* Lounge Search */
    .lounge-search-box {
        padding: 20px;
    }
    
    .lounge-search-input {
        font-size: 15px !important;
        padding: 12px 40px 12px 45px;
    }
    
    .lounge-check-btn {
        padding: 12px 20px;
        font-size: 15px !important;
    }
    
    .access-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .access-detail-item .detail-value {
        font-size: 20px;
    }
    
    .quick-examples {
        gap: 8px;
    }
    
    /* Result Section */
    .result-section {
        padding: 40px 0;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .result-card {
        padding: 20px;
    }
    
    .rc-value {
        font-size: 28px;
    }
    
    .breakdown-card {
        padding: 20px;
    }
    
    /* Signup Section */
    .signup-box {
        padding: 28px 20px;
    }
    
    .signup-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .signup-submit {
        width: 100%;
    }
    
    /* Roadmap */
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .roadmap-card {
        padding: 20px;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
        font-size: 13px !important;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .view-all-link {
        padding: 8px 16px;
        font-size: 13px !important;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 28px !important;
    }
    
    .tag {
        font-size: 10px !important;
        padding: 4px 12px;
    }
    
    .hero {
        padding: 30px 0 !important;
    }
    
    .hero-sub {
        font-size: 14px;
    }
    
    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .search-box {
        padding: 16px;
    }
    
    .search-title {
        font-size: 20px !important;
    }
    
    .dest-card {
        padding: 4px 10px;
    }
    
    .dest-from, .dest-to {
        font-size: 12px !important;
    }
    
    .card-title-section h3 {
        font-size: 16px;
    }
    
    .winner-chip {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
        font-size: 12px;
    }
}

/* Fix scroll position for mobile */
@media (max-width: 768px) {
    #search { scroll-margin-top: 80px; }
    #how-it-works { scroll-margin-top: 70px; }
    #lounge { scroll-margin-top: 70px; }
    #roadmap { scroll-margin-top: 70px; }
    #signup { scroll-margin-top: 70px; }
}

/* Fix for Cards Grid on Mobile */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .card-offer {
        padding: 16px !important;
    }
    
    .card-footer {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .apply-btn {
        width: 100% !important;
        text-align: center !important;
    }
}

/* Disable fade-in animations on mobile for better performance */
@media (max-width: 768px) {
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================ */
/* AIRPORT SEARCH SUGGESTIONS (Single copy)
/* ============================================================ */
.airport-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.airport-suggestions.show {
    display: block;
}

.suggestion-item {
    padding: 10px 14px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid var(--border-subtle);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--gold-dim);
}

.suggestion-code {
    font-family: 'DM Mono', monospace;
    font-weight: 700;
    color: var(--gold);
    font-size: 12px;
    display: inline-block;
    width: 45px;
}

.suggestion-name {
    font-size: 13px;
    color: var(--white);
}

.suggestion-city {
    font-size: 11px;
    color: var(--silver);
    display: block;
    margin-top: 2px;
}

.search-field {
    position: relative;
}