/* ============================================================
   NordicWings — Complete Professional Design
   ============================================================ */

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

:root {
  --navy:       #1a2b4a;
  --blue:       #2563eb;
  --blue-dark:  #1d4ed8;
  --blue-light: #eff6ff;
  --blue-mid:   #3b82f6;
  --text:       #1f2937;
  --text-muted: #6b7280;
  --border:     #e5e7eb;
  --white:      #ffffff;
  --bg:         #f8fafc;
  --success:    #16a34a;
  --danger:     #dc2626;
  --gold:       #f59e0b;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.15);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Page visibility ──────────────────────────────────────── */
.page        { display: none; }
.page.active { display: block; }

/* ── Header ─────────────────────────────────────────────────── */
#site-header {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.02em;
}
.logo:hover { text-decoration: none; }
.logo-icon { color: var(--blue); }

.header-nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all .15s;
}
.nav-link:hover { color: var(--blue); background: var(--blue-light); text-decoration: none; }

.user-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--blue-light);
  border-radius: 24px; padding: 6px 14px;
}
#nav-username { font-size: .9rem; font-weight: 600; color: var(--navy); }

.mobile-menu-btn {
  display: none;
  background: none; border: none;
  font-size: 1.4rem; cursor: pointer; color: var(--navy);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: white;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button {
  padding: 10px 0;
  color: var(--text);
  font-size: 1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary, .btn-ghost, .btn-danger, .btn-book, .btn-search {
  border: none; border-radius: var(--radius-sm);
  font-family: inherit; font-weight: 600;
  cursor: pointer; transition: all .18s ease;
  display: inline-flex; align-items: center; gap: 6px;
}

.btn-primary {
  background: var(--blue); color: white;
  padding: 11px 22px; font-size: .92rem;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent; color: var(--navy);
  padding: 9px 16px; font-size: .9rem;
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--bg); }
.btn-ghost.small { padding: 5px 10px; font-size: .8rem; border: none; color: var(--blue); }

.btn-danger { background: var(--danger); color: white; padding: 10px 20px; font-size: .9rem; }
.btn-danger:hover { background: #b91c1c; }

.btn-search {
  background: var(--blue); color: white;
  padding: 15px 32px; font-size: 1rem;
  border-radius: var(--radius-sm); align-self: flex-end;
  min-width: 180px; justify-content: center;
}
.btn-search:hover { background: var(--blue-dark); }

.btn-book {
  width: 100%; background: var(--blue); color: white;
  padding: 16px; font-size: 1.05rem;
  border-radius: var(--radius-sm); justify-content: center; margin-top: 16px;
}
.btn-book:hover { background: var(--blue-dark); }
.btn-book:disabled { background: #93c5fd; cursor: not-allowed; }

.full-width { width: 100%; justify-content: center; }

.back-btn {
  background: none; border: none; color: var(--blue);
  font-size: .9rem; font-weight: 500; cursor: pointer;
  padding: 4px 0; font-family: inherit;
}
.back-btn:hover { text-decoration: underline; }

/* CTA buttons */
.btn-cta-primary {
  background: white; color: var(--navy);
  padding: 15px 32px; font-size: 1.05rem; font-weight: 700;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  font-family: inherit; transition: all .18s;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-cta-ghost {
  background: transparent; color: white;
  padding: 15px 32px; font-size: 1.05rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,.6); border-radius: var(--radius-sm);
  cursor: pointer; font-family: inherit; transition: all .18s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.1); border-color: white; }

/* ── Spinner ──────────────────────────────────────────────── */
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: white; border-radius: 50%;
  animation: spin .7s linear infinite; display: inline-block;
}
.spinner.large {
  width: 40px; height: 40px; border-width: 3px;
  border-color: var(--border); border-top-color: var(--blue);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero {
  position: relative; min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 80px 24px 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,43,74,.85) 0%, rgba(37,99,235,.7) 100%);
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center; color: white; margin-bottom: 40px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  color: white; font-size: .85rem; font-weight: 600;
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 20px; border: 1px solid rgba(255,255,255,.3);
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; margin-bottom: 16px;
  line-height: 1.1; letter-spacing: -.03em;
}
.hero-highlight { color: #60a5fa; }
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: .9; max-width: 500px; margin: 0 auto;
}

/* ── Search Card ──────────────────────────────────────────── */
.search-card {
  position: relative; z-index: 2;
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); padding: 28px 32px 24px;
  width: 100%; max-width: 1000px;
}

.trip-type-tabs { display: flex; gap: 4px; margin-bottom: 20px; }

.tab-btn {
  background: none; border: none; font-family: inherit;
  font-size: .9rem; font-weight: 500; color: var(--text-muted);
  padding: 8px 18px; border-radius: 20px; cursor: pointer; transition: all .15s;
}
.tab-btn.active { background: var(--blue-light); color: var(--blue); font-weight: 700; }
.tab-btn:hover:not(.active) { background: var(--bg); }

.search-form {
  display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap;
}

.input-group {
  display: flex; flex-direction: column; gap: 6px;
  flex: 1; min-width: 140px; position: relative;
}
.input-group label {
  font-size: .75rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .06em;
}
.input-group input, .input-group select {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 14px; font-size: .97rem; font-family: inherit;
  color: var(--text); background: white; outline: none; transition: border-color .15s;
}
.input-group input:focus, .input-group select:focus { border-color: var(--blue); }

.swap-btn {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 50%;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; color: var(--blue); align-self: flex-end;
  flex-shrink: 0; transition: all .15s;
}
.swap-btn:hover { background: var(--blue-light); transform: rotate(180deg); }

.autocomplete-wrap { position: relative; }
.autocomplete-list {
  position: fixed;
  background: white; border: 1px solid #dde3f0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2); list-style: none; z-index: 9999;
  max-height: 320px; overflow-y: auto; padding: 6px 0;
  min-width: 280px;
}
.autocomplete-list li {
  padding: 10px 16px; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid #f0f2f8;
  transition: background .12s;
}
.autocomplete-list li:last-child { border-bottom: none; }
.autocomplete-list li:hover { background: #f0f5ff; }
.autocomplete-list .ac-icon {
  font-size: 1.1rem; color: #3b6fc9;
  width: 28px; height: 28px; background: #e8efff;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.autocomplete-list .ac-details { display: flex; flex-direction: column; gap: 2px; }
.autocomplete-list .ac-city { font-weight: 700; color: #1a2b4a; font-size: .95rem; display: flex; align-items: center; gap: 6px; }
.autocomplete-list .ac-badge {
  background: #3b6fc9; color: white; font-size: .72rem;
  font-weight: 800; padding: 1px 6px; border-radius: 4px; letter-spacing: .5px;
}
.autocomplete-list .ac-airport { font-size: .8rem; color: #7a8aaa; }
.autocomplete-list .ac-noresult { padding: 14px 16px; color: #aaa; font-size: .88rem; text-align: center; }

.search-error { color: var(--danger); font-size: .88rem; margin-top: 12px; }

/* ── Quick Route Buttons ──────────────────────────────────── */
.quick-routes {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.quick-label {
  font-size: .78rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .05em; white-space: nowrap;
}
.quick-btn {
  background: var(--blue-light); color: var(--blue);
  border: 1px solid #bfdbfe; border-radius: 20px;
  padding: 5px 14px; font-size: .82rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all .15s;
  white-space: nowrap;
}
.quick-btn:hover {
  background: var(--blue); color: white;
  border-color: var(--blue); transform: translateY(-1px);
}

/* ── Stats Section ────────────────────────────────────────── */
.stats-section {
  background: var(--navy); padding: 40px 24px;
}
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center;
}
.stat-number {
  font-size: 2rem; font-weight: 800; color: white; margin-bottom: 4px;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* ── Section Common ───────────────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: .82rem; font-weight: 700; padding: 5px 14px; border-radius: 20px;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .05em;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--navy); margin-bottom: 12px; letter-spacing: -.02em;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* ── Destinations ─────────────────────────────────────────── */
.destinations-section { padding: 80px 0; background: white; }
.route-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; justify-content: center;
}
.route-tab {
  background: #f1f5f9; border: 1.5px solid var(--border); border-radius: 20px;
  padding: 8px 18px; font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: all .15s; font-family: inherit; color: var(--text-muted);
}
.route-tab:hover { background: var(--blue-light); color: var(--blue); border-color: var(--blue); }
.route-tab.active { background: var(--blue); color: white; border-color: var(--blue); }
.destinations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.dest-card.hidden { display: none; }
.dest-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); cursor: pointer;
  transition: all .2s; position: relative;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.dest-card img { width: 100%; height: 180px; object-fit: cover; transition: transform .3s; }
.dest-card:hover img { transform: scale(1.05); }
.dest-info {
  padding: 16px; background: white;
}
.dest-info h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.dest-info p { font-size: .8rem; color: var(--text-muted); margin-bottom: 8px; }
.dest-price {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: .8rem; font-weight: 700; padding: 3px 10px; border-radius: 12px;
}

/* ── How It Works ─────────────────────────────────────────── */
.how-section { padding: 80px 0; background: var(--bg); }
.steps-grid {
  display: flex; align-items: center; gap: 16px; justify-content: center;
}
.step-card {
  background: white; border-radius: var(--radius);
  padding: 32px 28px; flex: 1; max-width: 280px;
  text-align: center; box-shadow: var(--shadow-md); border: 1px solid var(--border);
  position: relative; transition: all .2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-number {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white; font-size: .75rem; font-weight: 800;
  padding: 4px 12px; border-radius: 20px;
}
.step-icon { font-size: 2.5rem; margin: 16px 0 12px; }
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.step-arrow { font-size: 2rem; color: var(--blue); flex-shrink: 0; margin-top: 16px; }

/* ── Features Section ─────────────────────────────────────── */
.features-section { padding: 80px 0; background: white; }
.features-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.features-text .section-badge { margin-bottom: 14px; }
.features-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--navy); margin-bottom: 16px; letter-spacing: -.02em;
}
.features-text > p { color: var(--text-muted); margin-bottom: 28px; font-size: 1rem; line-height: 1.7; }
.features-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon-box {
  font-size: 1.4rem; background: var(--blue-light); border-radius: var(--radius-sm);
  padding: 10px; flex-shrink: 0; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.feature-item h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feature-item p { font-size: .85rem; color: var(--text-muted); }
.features-image img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  width: 100%; height: 420px; object-fit: cover;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { padding: 80px 0; background: var(--bg); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  transition: all .2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { font-size: 1rem; margin-bottom: 14px; color: var(--gold); }
.testimonial-card > p {
  font-size: .9rem; color: var(--text); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue); color: white; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; color: var(--navy); }
.testimonial-author span { font-size: .8rem; color: var(--text-muted); }

/* ── FAQ Section ──────────────────────────────────────────── */
.faq-section { padding: 80px 0; background: white; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; padding: 18px 20px;
  font-family: inherit; font-size: .95rem; font-weight: 600; color: var(--navy);
  cursor: pointer; text-align: left; display: flex; justify-content: space-between;
  align-items: center; transition: background .15s;
}
.faq-question:hover { background: var(--bg); }
.faq-icon { font-size: 1.2rem; color: var(--blue); font-weight: 400; }
.faq-answer {
  display: none;
  padding: 0 20px 18px; font-size: .9rem; color: var(--text-muted); line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a6e 100%);
  padding: 80px 24px; text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: white;
  margin-bottom: 14px; letter-spacing: -.02em;
}
.cta-inner p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: #0f1f3d; color: rgba(255,255,255,.7); padding: 60px 24px 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-logo { font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn {
  height: 36px; padding: 0 12px; background: rgba(255,255,255,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: .82rem; font-weight: 700; transition: background .15s;
  text-decoration: none; white-space: nowrap;
}
.social-btn:hover { background: var(--blue); text-decoration: none; }
.social-fb:hover { background: #1877f2; }
.social-ig:hover { background: #c13584; }
.footer-links h4 { color: white; font-size: .9rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6); font-size: .88rem; transition: color .15s;
}
.footer-links a:hover { color: white; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px; display: flex; justify-content: space-between;
  font-size: .82rem; flex-wrap: wrap; gap: 8px;
}

/* ── Page Inner (results, booking etc) ───────────────────── */
.page-inner { max-width: 1000px; margin: 0 auto; padding: 32px 24px 60px; }
.results-header { margin-bottom: 24px; display: flex; flex-direction: column; gap: 6px; }
.results-header h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
#results-subheading { font-size: .9rem; color: var(--text-muted); }

/* ── Loading / Empty States ───────────────────────────────── */
.loading-state, .empty-state { text-align: center; padding: 64px 24px; }
.loading-state .spinner { margin: 0 auto 16px; }
.loading-state p { color: var(--text-muted); }
.empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 20px; }

/* ── Flight Result Cards ──────────────────────────────────── */
.results-list { display: flex; flex-direction: column; gap: 14px; }
.flight-card {
  background: white; border-radius: var(--radius); border: 1.5px solid var(--border);
  padding: 20px 24px; display: flex; align-items: center; gap: 20px;
  cursor: pointer; transition: all .18s; box-shadow: var(--shadow-sm);
}
.flight-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.flight-airline { min-width: 90px; text-align: center; }
.airline-code { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.airline-number { font-size: .78rem; color: var(--text-muted); }
.flight-route { flex: 1; display: flex; align-items: center; gap: 14px; }
.route-point { text-align: center; min-width: 60px; }
.route-time { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.route-airport { font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.route-line { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.route-duration { font-size: .78rem; color: var(--text-muted); }
.route-bar { width: 100%; height: 1.5px; background: var(--border); position: relative; }
.route-bar::after { content: '✈'; position: absolute; right: -4px; top: -10px; font-size: .9rem; color: var(--blue-dark); }
.route-stops { font-size: .75rem; color: var(--text-muted); }
.flight-meta { text-align: right; min-width: 90px; }
.flight-cabin { font-size: .8rem; color: var(--text-muted); margin-bottom: 4px; }
.flight-seats { font-size: .75rem; color: var(--success); font-weight: 600; }
.flight-price { text-align: right; min-width: 110px; }
.price-amount { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.price-label { font-size: .75rem; color: var(--text-muted); }
.btn-select {
  background: var(--blue); color: white; border: none; border-radius: var(--radius-sm);
  padding: 10px 20px; font-weight: 600; font-size: .9rem; cursor: pointer;
  font-family: inherit; white-space: nowrap; transition: background .15s;
}
.btn-select:hover { background: var(--blue-dark); }

/* ── Booking ──────────────────────────────────────────────── */
.booking-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.booking-form-card, .booking-summary-card {
  background: white; border-radius: var(--radius); border: 1px solid var(--border);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.booking-form-card h3, .booking-summary-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.form-group input, .form-group select {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: .95rem; font-family: inherit; outline: none;
  color: var(--text); background: white; transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--blue); }
.divider { height: 1px; background: var(--border); margin: 22px 0; }
.payment-note { font-size: .82rem; color: var(--text-muted); margin-top: 12px; }
.form-error { color: var(--danger); font-size: .85rem; margin-top: 8px; min-height: 18px; }
.passenger-header {
  font-size: .82rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; margin-top: 4px;
}
.summary-flight-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.summary-route { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.summary-times { display: flex; align-items: center; gap: 8px; font-size: .9rem; margin-bottom: 4px; }
.summary-duration { font-size: .8rem; color: var(--text-muted); }
.price-breakdown { display: flex; flex-direction: column; gap: 8px; }
.price-row { display: flex; justify-content: space-between; font-size: .9rem; }
.price-row.total { font-weight: 700; font-size: 1.05rem; color: var(--navy); border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }

/* ── Confirmation ─────────────────────────────────────────── */
.confirmation-inner { display: flex; justify-content: center; padding-top: 60px; }
.confirmation-card {
  background: white; border-radius: var(--radius); padding: 48px 40px;
  text-align: center; max-width: 560px; width: 100%;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.confirmation-icon { font-size: 3.5rem; margin-bottom: 16px; }
.confirmation-card h2 { font-size: 1.7rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.confirmation-msg { color: var(--text-muted); margin-bottom: 28px; }
.confirmation-details {
  background: var(--blue-light); border-radius: var(--radius-sm);
  padding: 20px 24px; text-align: left; margin-bottom: 28px;
  font-size: .92rem; line-height: 1.7;
}
.confirmation-details strong { color: var(--navy); }
.confirmation-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Dashboard ────────────────────────────────────────────── */
.bookings-list { display: flex; flex-direction: column; gap: 16px; }
.booking-card {
  background: white; border-radius: var(--radius); border: 1px solid var(--border);
  padding: 22px 26px; box-shadow: var(--shadow-sm); display: flex;
  align-items: center; gap: 20px; flex-wrap: wrap;
}
.booking-status { padding: 4px 12px; border-radius: 20px; font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.status-confirmed { background: #dcfce7; color: #15803d; }
.status-cancelled { background: #fee2e2; color: #b91c1c; }
.booking-info { flex: 1; }
.booking-route { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.booking-date-time { font-size: .85rem; color: var(--text-muted); }
.booking-ref { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }
.booking-price { font-size: 1.1rem; font-weight: 700; color: var(--navy); text-align: right; }
.booking-price-label { font-size: .75rem; color: var(--text-muted); }
.btn-cancel {
  background: none; border: 1.5px solid var(--danger); color: var(--danger);
  border-radius: var(--radius-sm); padding: 8px 16px; font-size: .85rem;
  font-weight: 600; cursor: pointer; font-family: inherit; transition: all .15s;
}
.btn-cancel:hover { background: var(--danger); color: white; }

/* ── Auth Modal ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  display: none; align-items: center; justify-content: center; z-index: 500; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: white; border-radius: var(--radius-lg); width: 100%;
  max-width: 420px; overflow: hidden; box-shadow: var(--shadow-xl);
}
.modal-card.small { max-width: 360px; padding: 32px; text-align: center; }
.modal-card.small h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.modal-card.small p { font-size: .9rem; color: var(--text-muted); margin-bottom: 24px; }
.modal-actions { display: flex; gap: 10px; justify-content: center; }
.modal-tabs { display: flex; border-bottom: 1px solid var(--border); position: relative; }
.modal-tab {
  flex: 1; border: none; background: none; padding: 18px;
  font-size: .95rem; font-weight: 600; color: var(--text-muted); cursor: pointer;
  font-family: inherit; border-bottom: 2.5px solid transparent; transition: all .15s;
}
.modal-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.modal-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; font-size: 1.1rem; cursor: pointer;
  color: var(--text-muted); padding: 4px 8px; border-radius: 4px;
}
.modal-close:hover { background: var(--bg); }
.auth-form { padding: 28px 32px 32px; }
.auth-form h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; color: var(--navy); }
.auth-subtitle { color: var(--text-muted); font-size: .9rem; margin-bottom: 20px; }
.auth-switch { text-align: center; font-size: .88rem; color: var(--text-muted); margin-top: 16px; }

/* ── Stripe payment element ───────────────────────────────── */
#payment-element {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px; margin-top: 4px; min-height: 50px;
}

/* ── Admin Business Dashboard ────────────────────────────── */
.admin-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px;
}
.admin-stat-card {
  background: white; border-radius: var(--radius); border: 1.5px solid var(--border);
  padding: 20px 24px; text-align: center; box-shadow: var(--shadow-sm);
}
.admin-stat-icon { font-size: 1.8rem; margin-bottom: 8px; }
.admin-stat-value { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.admin-stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: .04em; }

.admin-toolbar {
  display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap;
}
.admin-search-input {
  flex: 1; min-width: 220px; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .95rem; font-family: inherit; outline: none;
}
.admin-search-input:focus { border-color: var(--blue); }
.admin-filter-select {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: .9rem;
  outline: none; background: white; cursor: pointer;
}

.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%; border-collapse: collapse; background: white;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.admin-table thead { background: var(--navy); color: white; }
.admin-table th { padding: 12px 16px; font-size: .8rem; font-weight: 700; text-align: left; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .88rem; vertical-align: middle; }
.admin-table tbody tr:hover { background: var(--blue-light); }
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-ref { font-weight: 700; color: var(--blue); font-size: .8rem; }
.admin-customer-name { font-weight: 600; color: var(--navy); }
.admin-customer-email { font-size: .75rem; color: var(--text-muted); }

.hotel-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 800px; margin: 0 auto; }
@media (max-width: 600px) {
  .hotel-cards-grid { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ── Ad Sections ─────────────────────────────────────────── */
.ad-banner-wrap {
  margin-top: 24px; padding: 12px; background: white;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  text-align: center;
}
.ad-label {
  font-size: .7rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 8px; font-weight: 600;
}

.hotel-ad-section { padding: 60px 0; background: var(--bg); }
.hotel-ad-widget { max-width: 800px; margin: 0 auto; }
.hotel-ad-fallback { margin-top: 12px; }
.hotel-ad-link { text-decoration: none; }
.hotel-ad-card {
  display: flex; align-items: center; gap: 16px;
  background: white; border-radius: var(--radius); padding: 24px 28px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-md);
  transition: all .2s; cursor: pointer;
}
.hotel-ad-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hotel-ad-icon { font-size: 2.5rem; }
.hotel-ad-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.hotel-ad-sub { font-size: .88rem; color: var(--text-muted); margin-top: 2px; }
.hotel-ad-btn {
  margin-left: auto; background: var(--blue); color: white;
  padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 700; font-size: .9rem;
  white-space: nowrap;
}

/* ── Agency Comparison Page ──────────────────────────────── */
.agencies-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start;
}
.agencies-header { margin-bottom: 16px; }
.agencies-header h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.agencies-header p  { font-size: .9rem; color: var(--text-muted); margin-top: 4px; }

.agency-row {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-sm); transition: all .18s; cursor: pointer;
}
.agency-row:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.agency-row.nordicwings-direct {
  border-color: var(--blue); background: var(--blue-light);
  box-shadow: 0 4px 16px rgba(37,99,235,.15);
}
.agency-name-wrap { flex: 1; }
.agency-name { font-size: 1rem; font-weight: 700; color: var(--navy); }
.agency-badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 10px; margin-left: 6px;
}
.badge-direct  { background: #dbeafe; color: var(--blue); }
.badge-partner { background: #f0fdf4; color: #15803d; }
.badge-top     { background: #fef3c7; color: #b45309; }
.agency-highlight { border-left: 3px solid var(--blue); }
.agency-disclaimer {
  font-size: .8rem; color: var(--text-muted); background: #f8fafc;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 14px; margin-bottom: 10px;
}
.agency-stars { display: flex; align-items: center; gap: 4px; margin-top: 3px; }
.agency-star { color: var(--gold); font-size: .85rem; }
.agency-rating { font-size: .8rem; color: var(--text-muted); font-weight: 600; }
.agency-perks { font-size: .78rem; color: var(--success); margin-top: 3px; font-weight: 500; }
.agency-price { font-size: 1.4rem; font-weight: 800; color: var(--navy); text-align: right; min-width: 90px; }
.agency-price-sub { font-size: .72rem; color: var(--text-muted); text-align: right; }
.agency-btn {
  background: var(--blue); color: white; border: none; border-radius: var(--radius-sm);
  padding: 10px 20px; font-size: .9rem; font-weight: 700; cursor: pointer;
  font-family: inherit; white-space: nowrap; transition: background .15s;
}
.agency-btn:hover { background: var(--blue-dark); }
.agency-btn.direct { background: var(--blue); }

/* Itinerary card */
.itinerary-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); position: sticky; top: 90px;
}
.itin-header {
  font-size: .85rem; font-weight: 800; color: var(--navy);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.itin-leg { margin-bottom: 16px; }
.itin-leg-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-muted); margin-bottom: 8px;
}
.itin-seg {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px dashed var(--border);
  font-size: .83rem;
}
.itin-seg:last-child { border-bottom: none; }
.itin-dot-col { display: flex; flex-direction: column; align-items: center; gap: 2px; padding-top: 4px; }
.itin-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.itin-line { width: 2px; height: 30px; background: var(--border); }
.itin-seg-info { flex: 1; }
.itin-seg-time { font-weight: 800; color: var(--navy); font-size: .95rem; }
.itin-seg-airport { color: var(--text-muted); font-size: .78rem; margin-top: 1px; }
.itin-seg-flight { color: var(--text-muted); font-size: .75rem; margin-top: 4px; }
.itin-seg-dur { font-size: .72rem; color: var(--blue); font-weight: 600; margin-top: 2px; }
.itin-layover {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; color: #d97706; font-weight: 600;
  padding: 6px 10px; background: #fef3c7; border-radius: 6px;
  margin: 4px 0;
}
.itin-arrival {
  font-size: .78rem; color: var(--text-muted); margin-top: 8px;
  padding-top: 8px; border-top: 1px solid var(--border);
}

@media (max-width: 800px) {
  .agencies-layout { grid-template-columns: 1fr; }
  .agencies-right { order: -1; }
}

/* ── Skyscanner-style Flight Cards ───────────────────────── */
.results-sort-bar {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 12px 16px; background: white; border-radius: var(--radius-sm);
  border: 1px solid var(--border); margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.sort-label { font-size: .8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-right: 4px; }
.sort-btn, .filter-btn {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 20px;
  padding: 6px 14px; font-size: .82rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; font-family: inherit; transition: all .15s;
}
.sort-btn:hover, .filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.sort-btn.active { background: var(--blue); color: white; border-color: var(--blue); }
.filter-btn.active { background: #dcfce7; color: #15803d; border-color: #86efac; }
.results-count { margin-left: auto; font-size: .82rem; color: var(--text-muted); font-weight: 500; }

/* New Flight Card */
.fc {
  background: white; border-radius: var(--radius); border: 1.5px solid var(--border);
  padding: 18px 22px; display: grid;
  grid-template-columns: 140px 1fr 80px 160px;
  align-items: center; gap: 16px;
  cursor: pointer; transition: all .18s; box-shadow: var(--shadow-sm);
  margin-bottom: 10px;
}
.fc:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(37,99,235,.15); transform: translateY(-2px); }

/* Airline column */
.fc-airline { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.fc-logo { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; background: #f8fafc; padding: 4px; border: 1px solid var(--border); }
.fc-logo-fallback {
  width: 40px; height: 40px; border-radius: 8px; background: var(--blue);
  color: white; font-weight: 800; font-size: .8rem;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.fc-airline-name { font-size: .78rem; font-weight: 700; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
.fc-flight-num { font-size: .72rem; color: var(--text-muted); }

/* Route column */
.fc-route { display: flex; align-items: center; gap: 12px; }
.fc-point { text-align: center; min-width: 52px; }
.fc-time { font-size: 1.25rem; font-weight: 800; color: var(--navy); line-height: 1; }
.fc-iata { font-size: .78rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }
.fc-mid { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.fc-dur { font-size: .78rem; font-weight: 600; color: var(--text-muted); }
.fc-line-wrap { display: flex; align-items: center; width: 100%; gap: 2px; }
.fc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-dark); flex-shrink: 0; }
.fc-bar { flex: 1; height: 2px; background: #d1d5db; }
.fc-plane { font-size: .85rem; color: var(--blue); flex-shrink: 0; }

/* Stop badges */
.badge-nonstop {
  display: inline-block; background: #dcfce7; color: #15803d;
  font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 10px;
}
.badge-stop {
  display: inline-block; background: #fef3c7; color: #92400e;
  font-size: .72rem; font-weight: 600; padding: 2px 8px; border-radius: 10px;
}

/* Cabin column */
.fc-cabin-col { text-align: left; min-width: 190px; }
.fc-cabin { font-size: .75rem; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.fc-baggage { font-size: .72rem; color: #555; margin-top: 4px; }
.fc-meal    { font-size: .72rem; color: #555; margin-top: 2px; }

/* Price column */
.fc-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.badge-best {
  background: #fef9c3; color: #854d0e; font-size: .7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 10px; margin-bottom: 2px;
}
.seats-urgent { font-size: .72rem; color: #dc2626; font-weight: 700; }
.seats-warning { font-size: .72rem; color: #d97706; font-weight: 600; }
.fc-price { font-size: 1.55rem; font-weight: 800; color: var(--navy); line-height: 1; }
.fc-per { font-size: .72rem; color: var(--text-muted); }
.fc-select-btn {
  background: var(--blue); color: white; border: none; border-radius: var(--radius-sm);
  padding: 9px 18px; font-size: .88rem; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: all .15s; margin-top: 4px; white-space: nowrap;
}
.fc-select-btn:hover { background: var(--blue-dark); transform: scale(1.03); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .features-layout { grid-template-columns: 1fr; }
  .features-image { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary-card { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 750px) {
  .fc { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .fc-cabin-col { display: none; }
  .fc-right { align-items: flex-start; }
}

@media (max-width: 600px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .search-form { flex-direction: column; }
  .btn-search { width: 100%; }
  .swap-btn { align-self: center; }
  .destinations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .flight-card { flex-wrap: wrap; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .search-card { padding: 20px 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  border-top: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
  padding: 18px 0;
}
.trust-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .88rem; font-weight: 700; color: #1e40af;
  padding: 6px 24px;
}
.trust-item + .trust-item { border-left: 1px solid #bfdbfe; }
.trust-icon { font-size: 1.2rem; }
.trust-item span:last-child { color: #1e3a8a; }
@media (max-width: 700px) {
  .trust-item { padding: 8px 12px; font-size: .8rem; }
  .trust-item + .trust-item { border-left: none; border-top: 1px solid #bfdbfe; }
  .trust-inner { flex-direction: column; gap: 0; }
}

/* ══════════════════════════════════════════════
   FOOTER TRUST ROW + PAYMENT LOGOS
══════════════════════════════════════════════ */
.footer-trust-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding: 18px 0 22px; border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
.footer-trust-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.ftb {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 6px 14px;
  font-size: .78rem; font-weight: 600; color: #93c5fd;
}
.payment-logos { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pay-logo {
  background: white; border-radius: 6px; padding: 5px 10px;
  font-size: .72rem; font-weight: 900; letter-spacing: .03em;
  color: #1a2b4a; border: none; min-width: 42px; text-align: center;
}
.pay-logo.visa { color: #1a1f71; }
.pay-logo.mc { background: linear-gradient(90deg,#eb001b 0%,#f79e1b 100%); color: white; }
.pay-logo.stripe { color: #6772e5; }
.pay-logo.amex { background: #016fcb; color: white; }
.footer-email {
  display: inline-flex; align-items: center; gap: 7px;
  color: #93c5fd; font-size: .88rem; font-weight: 600;
  text-decoration: none; margin-top: 12px;
  transition: color .15s;
}
.footer-email:hover { color: white; }
@media (max-width: 700px) {
  .footer-trust-row { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════
   POLICY MODALS
══════════════════════════════════════════════ */
.policy-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.policy-modal-card {
  background: white; border-radius: 16px; width: 100%;
  max-width: 700px; max-height: 88vh;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  animation: modalIn .22s ease;
}
.policy-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px 18px; border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.policy-modal-header h2 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin: 0; }
.policy-modal-body {
  overflow-y: auto; padding: 24px 28px 28px;
  font-size: .92rem; line-height: 1.75; color: #374151;
}
.policy-modal-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 20px 0 6px; }
.policy-modal-body h3:first-child { margin-top: 0; }
.policy-modal-body p { margin: 0 0 12px; }
.policy-modal-body ul { margin: 0 0 12px; padding-left: 20px; }
.policy-modal-body li { margin-bottom: 6px; }
.policy-modal-body a { color: var(--blue); }
.policy-modal-body .policy-contact-box {
  background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px;
  padding: 16px 20px; margin-top: 16px;
}
.policy-modal-body .policy-contact-box p { margin: 0; font-weight: 600; color: #1e40af; }

/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1900;
  background: #1a2b4a; border-top: 2px solid var(--blue);
  padding: 14px 24px; display: none;
  align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.cookie-banner p {
  margin: 0; font-size: .86rem; color: #cbd5e1; flex: 1; min-width: 200px;
}
.cookie-banner a { color: #93c5fd; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn-primary { padding: 8px 18px; font-size: .84rem; }
.cookie-actions .btn-ghost { padding: 8px 18px; font-size: .84rem; color: #94a3b8; border-color: #475569; }

/* ══════════════════════════════════════════════
   VERIFIED BUSINESS BADGE (hero area)
══════════════════════════════════════════════ */
.hero-trust-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 16px; margin-top: 14px;
}
.hts-item {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px; padding: 5px 14px;
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.92);
}

/* ══════════════════════════════════════════════
   SUPPORT / FAQ PAGE
══════════════════════════════════════════════ */
.support-page { max-width: 860px; margin: 0 auto; padding-bottom: 60px; }

.support-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a6e 100%);
  border-radius: 18px; padding: 48px 36px 36px;
  text-align: center; margin-bottom: 36px; color: #fff;
}
.support-hero h1 {
  font-size: 2rem; font-weight: 900; margin: 0 0 10px;
  background: linear-gradient(90deg,#fff,#93c5fd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.support-hero p { font-size: 1rem; color: #cbd5e1; margin: 0 0 20px; }
.support-contact-bar {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap; font-size: .88rem; color: #93c5fd;
}
.support-contact-bar a { color: #60a5fa; text-decoration: none; font-weight: 700; }
.support-contact-bar a:hover { text-decoration: underline; }

.faq-container { display: flex; flex-direction: column; gap: 32px; }

.faq-section { background: #fff; border-radius: 16px; box-shadow: 0 2px 16px rgba(0,0,0,.07); overflow: hidden; }

.faq-section-title {
  font-size: 1rem; font-weight: 800; color: var(--navy);
  background: #f0f4ff; padding: 16px 24px;
  margin: 0; border-bottom: 1px solid #e2e8f0; letter-spacing: .01em;
}

.faq-item { border-bottom: 1px solid #f1f5f9; }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 24px; font-size: .95rem; font-weight: 600; color: #1e293b;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background .15s;
}
.faq-q:hover { background: #f8faff; }
.faq-q.open { color: var(--blue); }

.faq-arrow {
  font-size: .7rem; color: #94a3b8; flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-q.open .faq-arrow { transform: rotate(180deg); color: var(--blue); }

.faq-a {
  display: none; padding: 0 24px 20px 24px;
  font-size: .9rem; line-height: 1.75; color: #475569;
}
.faq-a.open { display: block; }
.faq-a p { margin: 0 0 8px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--blue); font-weight: 600; }

.support-contact-card {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe; border-radius: 16px;
  padding: 36px 24px; text-align: center;
}
.support-contact-icon { font-size: 2.5rem; margin-bottom: 12px; }
.support-contact-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin: 0 0 8px; }
.support-contact-card p { font-size: .92rem; color: #475569; margin: 0 0 20px; }
.support-contact-card .btn-primary { display: inline-block; text-decoration: none; padding: 12px 28px; font-size: .95rem; }

@media(max-width:600px){
  .support-hero { padding: 32px 20px 24px; }
  .support-hero h1 { font-size: 1.5rem; }
  .faq-q { padding: 16px 18px; font-size: .9rem; }
  .faq-a { padding: 0 18px 16px; }
  .faq-section-title { padding: 14px 18px; }
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.contact-page { max-width: 720px; margin: 0 auto; padding-bottom: 60px; }
.contact-title { font-size: 1.8rem; font-weight: 900; color: var(--navy); margin: 0 0 8px; }
.contact-subtitle { font-size: 1rem; color: #64748b; margin: 0 0 32px; }
.contact-section-label { font-size: 1rem; font-weight: 700; color: #1e293b; margin: 0 0 16px; }

.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
  padding: 20px 24px; text-align: left; cursor: pointer;
  transition: box-shadow .15s, border-color .15s; width: 100%;
}
.contact-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: #93c5fd; }
.contact-card-text { display: flex; flex-direction: column; gap: 4px; }
.contact-card-text strong { font-size: .95rem; color: #1e293b; }
.contact-card-text span { font-size: .85rem; color: #64748b; }
.contact-card-arrow { font-size: 1.1rem; color: #94a3b8; flex-shrink: 0; }

.contact-info-box {
  background: #f8faff; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 28px 28px 24px;
}
.contact-info-note {
  font-size: .88rem; color: #475569; margin: 0 0 24px;
  padding-bottom: 20px; border-bottom: 1px solid #e2e8f0;
}
.contact-method { display: flex; align-items: flex-start; gap: 16px; }
.contact-method-icon { font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }
.contact-email-link { font-size: 1rem; font-weight: 700; color: var(--blue); text-decoration: none; }
.contact-email-link:hover { text-decoration: underline; }
.contact-method-detail { font-size: .84rem; color: #64748b; margin: 4px 0 0; }

@media(max-width:600px){
  .contact-title { font-size: 1.4rem; }
  .contact-card { padding: 16px 18px; }
  .contact-info-box { padding: 20px 18px; }
}

/* ══════════════════════════════════════════════
   FOOTER SOCIAL MEDIA BANNER
══════════════════════════════════════════════ */
.footer-social-banner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 20px 28px; margin-bottom: 32px;
}
.fsb-text { display: flex; flex-direction: column; gap: 4px; }
.fsb-text strong { color: #fff; font-size: 1rem; font-weight: 700; }
.fsb-text span { color: #94a3b8; font-size: .85rem; }
.fsb-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.fsb-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px;
  font-size: .88rem; font-weight: 700; text-decoration: none;
  transition: all .15s; border: none; cursor: pointer;
}
.fsb-fb { background: #1877f2; color: #fff; }
.fsb-fb:hover { background: #1558b0; text-decoration: none; transform: translateY(-1px); }
.fsb-ig { background: linear-gradient(45deg,#f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888); color: #fff; }
.fsb-ig:hover { opacity: .9; text-decoration: none; transform: translateY(-1px); }
@media(max-width:600px){
  .footer-social-banner { flex-direction: column; align-items: flex-start; }
}
