/* ==========================================================
   Gateway to Breathtaking Splendors OPC — Official Stylesheet
   Palette: Navy (#0f1e3d) + Gold (#c8a65a) + Ivory (#faf6ec)
   Style: Premium, elegant, trustworthy — matches company profile
   ========================================================== */

:root {
  --navy: #0f1e3d;
  --navy-deep: #0a1530;
  --navy-soft: #1a2c54;
  --gold: #c8a65a;
  --gold-soft: #d7bb7a;
  --gold-deep: #a88540;
  --ivory: #faf6ec;
  --ivory-soft: #fdfaf2;
  --cream: #f2ecdb;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --ink-muted: #6b6b6b;
  --line: #e8dfc5;
  --line-soft: #f0e9d2;
  --success: #1f7a4d;
  --danger: #b91c1c;
  --shadow-sm: 0 1px 2px rgba(15,30,61,0.06);
  --shadow-md: 0 14px 40px rgba(15,30,61,0.10);
  --shadow-lg: 0 30px 70px rgba(15,30,61,0.18);
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-script: 'Cormorant Garamond', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 100px 0; }
.section-tight { padding: 64px 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.005em;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.55rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  font-weight: 600;
  position: relative;
}

.eyebrow::before, .eyebrow::after {
  content: "◆";
  color: var(--gold);
  margin: 0 10px;
  font-size: 0.6rem;
  vertical-align: middle;
}

.eyebrow.no-ornament::before, .eyebrow.no-ornament::after { content: none; }

.divider-ornament {
  display: flex; align-items: center; justify-content: center;
  margin: 18px 0;
  color: var(--gold);
  font-size: 0.9rem;
}
.divider-ornament::before, .divider-ornament::after {
  content: "";
  display: inline-block;
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 14px;
  opacity: 0.6;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.75;
}

em.accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-deep);
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 30, 61, 0.96);
  color: #fff;
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(200, 166, 90, 0.22);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}

.logo-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  background: transparent;
  flex-shrink: 0;
}

.logo-mark-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.18));
}

.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text-top { font-size: 0.72rem; letter-spacing: 0.3em; color: var(--gold); font-family: var(--font-sans); font-weight: 500; }
.logo-text-main { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.08em; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav .btn-ghost { color: rgba(255,255,255,0.85); }
.nav .btn-ghost:hover { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-deep); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-ghost { color: var(--ink-soft); padding: 10px 16px; border: none; }
.btn-ghost:hover { color: var(--navy); }

.btn-sm { padding: 9px 16px; font-size: 0.74rem; }
.btn-lg { padding: 16px 34px; font-size: 0.9rem; }

.btn-block { display: flex; width: 100%; }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.input, .select, .textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 0.95rem;
}

.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 166, 90, 0.18);
}

.textarea { resize: vertical; min-height: 110px; }

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.card-flat { background: var(--cream); border: 1px solid transparent; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 90px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15,30,61,0.92) 0%, rgba(15,30,61,0.88) 100%),
    url('https://images.unsplash.com/photo-1540541338287-41700207dee6?w=1600&q=80') center/cover;
  color: #fff;
}

.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero .lead { color: rgba(255,255,255,0.88); }
.hero .eyebrow { color: var(--gold); }

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-title { margin: 26px 0 28px; }

.hero-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200,166,90,0.3);
  box-shadow: var(--shadow-lg);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(200, 166, 90, 0.3);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  font-weight: 500;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---------- Section headings ---------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 { margin: 14px 0 10px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 36px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold-deep);
  display: grid; place-items: center;
  margin-bottom: 22px;
  font-size: 1.3rem;
}

.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-muted); font-size: 0.95rem; }

/* ---------- Destination grid ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.dest-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-bg { transform: scale(1.08); }

.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,21,48,0.92) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}

.dest-country {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.dest-city {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1.1;
  margin: 6px 0 8px;
  color: #fff;
}
.dest-price { font-size: 0.9rem; opacity: 0.92; }

/* ---------- Clientele ---------- */
.clientele-bar {
  padding: 70px 0;
  background: var(--ivory-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clientele-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.client-logo {
  display: flex; align-items: center; justify-content: center;
  height: 80px;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: all 0.3s;
  font-weight: 500;
  line-height: 1.2;
}
.client-logo:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-2px);
}

/* ---------- Flight results ---------- */
.flight-row {
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.flight-row:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.flight-row.cheapest { border-color: var(--gold); background: var(--ivory-soft); border-width: 2px; }

.airline-name { font-weight: 600; font-size: 1.05rem; color: var(--navy); }
.airline-code { font-size: 0.76rem; color: var(--ink-muted); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }

.route { display: flex; align-items: center; gap: 14px; }
.route-point { font-weight: 600; font-size: 1.15rem; color: var(--navy); }
.route-line { flex: 1; height: 1px; background: var(--gold); position: relative; opacity: 0.5; }
.route-line::after {
  content: "✈";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff; padding: 0 8px;
  color: var(--gold-deep);
}
.flight-meta { font-size: 0.8rem; color: var(--ink-muted); margin-top: 4px; }

.price-big {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--navy);
  font-weight: 500;
}
.price-label { font-size: 0.7rem; color: var(--ink-muted); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 6px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--navy);
}
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-dark { background: var(--navy); color: var(--gold); }
.badge-success { background: #d7eedd; color: var(--success); }

/* ---------- Package builder ---------- */
.builder-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.summary-card {
  position: sticky;
  top: 100px;
  background: var(--navy);
  color: #fff;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
}
.summary-card h3 { color: var(--gold); margin-bottom: 8px; font-size: 1.4rem; }
.summary-line {
  display: flex; justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(200,166,90,0.18);
  font-size: 0.92rem;
}
.summary-line:last-child { border-bottom: none; }
.summary-total {
  margin-top: 16px; padding-top: 18px;
  border-top: 2px solid var(--gold);
  display: flex; justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
}

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px 6px 6px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 14px;
  color: var(--navy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.step-pill .num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center;
  font-size: 0.78rem; font-weight: 700;
  font-family: var(--font-display);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.option {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  position: relative;
}
.option:hover { border-color: var(--gold); }
.option.selected {
  border-color: var(--gold);
  background: var(--navy);
  color: #fff;
}
.option.selected .opt-price { color: var(--gold); }
.option .opt-title { font-weight: 600; margin-bottom: 4px; }
.option .opt-sub { font-size: 0.85rem; opacity: 0.7; }
.option .opt-price { margin-top: 12px; font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); font-weight: 500; }

/* ---------- Activity list ---------- */
.day-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 18px;
  background: #fff;
}

.day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.day-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}

.activity-item {
  display: grid;
  grid-template-columns: 110px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.activity-item:last-child { border-bottom: none; }

.activity-time {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
}
.activity-name { font-weight: 500; color: var(--navy); }
.activity-desc { font-size: 0.86rem; color: var(--ink-muted); }

.icon-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  transition: background 0.2s;
  font-size: 0.88rem;
  color: var(--navy);
  border: 1px solid var(--line);
}
.icon-btn:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ---------- Auth page ---------- */
.auth-wrap {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-art {
  background:
    linear-gradient(180deg, rgba(10,21,48,0.85), rgba(15,30,61,0.95)),
    url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1400&q=80') center/cover;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 70px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}

.auth-art::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 70%, rgba(200,166,90,0.16), transparent 55%);
}

.auth-art > * { position: relative; z-index: 1; }

.auth-quote {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1.3;
  max-width: 480px;
  color: #fff;
  font-style: italic;
  font-weight: 400;
}

.auth-art .eyebrow { color: var(--gold); }

.auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: var(--ivory);
}

.auth-form {
  width: 100%;
  max-width: 420px;
}

.auth-toggle {
  display: flex;
  background: var(--cream);
  border-radius: 3px;
  padding: 4px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
}
.auth-toggle button {
  flex: 1;
  padding: 11px;
  border-radius: 3px;
  font-size: 0.78rem;
  color: var(--ink-muted);
  transition: all 0.2s;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.auth-toggle button.active {
  background: var(--navy);
  color: var(--gold);
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.divider::before, .divider::after {
  content: ""; flex: 1;
  height: 1px; background: var(--line);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 32px;
  margin-top: 80px;
  border-top: 3px solid var(--gold);
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 600;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.68); font-size: 0.9rem; transition: color 0.2s; }
.footer a:hover { color: var(--gold); }

.footer .logo { color: #fff; }
.footer .logo-text-top { color: var(--gold); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(200,166,90,0.2);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Compliance badges ---------- */
.compliance-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.compliance-badge {
  padding: 22px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory-soft);
}
.compliance-badge .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
  font-weight: 700;
}
.compliance-badge .title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.compliance-badge .detail {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ---------- Admin / table styles ---------- */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.admin-table th {
  background: var(--navy);
  color: var(--gold);
  padding: 14px 16px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  font-weight: 600;
}
.admin-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.admin-table tr:hover td { background: var(--ivory-soft); }

.stat-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}
.stat-card .big {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
  font-weight: 500;
}
.stat-card .lbl {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
  font-weight: 600;
}

/* ---------- Toast ---------- */
.toast-wrap {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 100;
  display: flex; flex-direction: column;
  gap: 10px;
}

.toast {
  padding: 14px 22px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  animation: toast-in 0.3s ease;
  border-left: 3px solid var(--gold);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,21,48,0.82);
  z-index: 200;
  display: grid; place-items: center;
  padding: 20px;
  animation: fade-in 0.2s;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 540px;
  width: 100%;
  padding: 42px 40px;
  border-top: 4px solid var(--gold);
  text-align: center;
}
.modal h2 { font-size: 2rem; margin-bottom: 10px; }
.modal .ref {
  display: inline-block;
  padding: 8px 18px;
  background: var(--cream);
  border: 1px dashed var(--gold);
  color: var(--navy);
  font-family: monospace;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  margin: 14px 0;
  border-radius: 3px;
}

/* ---------- Empty state ---------- */
.empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-muted);
}
.empty h3 { font-family: var(--font-display); color: var(--navy); margin-bottom: 10px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold-deep); }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-2 { gap: 12px; }
.gap-3 { gap: 20px; }

/* ---------- Partner logos (actual images) ---------- */
.partner-logo-img {
  max-height: 56px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: all 0.3s;
}
.client-logo:hover .partner-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 0; }
  .builder-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-art { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .flight-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .route { grid-column: span 2; }
  .nav-links { display: none; }
  .logo-text-wrap { display: none; }
}

@media (max-width: 500px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
}
