/* ==============================================
   AIRLORAS — Design System v2
   Brand Red:   #D7192D / #a81223
   Dark:        #111827 / #1f2937
   Mid-gray:    #6b7280
   Surface:     #f8fafc / #f1f5f9
   Border:      #e2e8f0
   Green:       #16a34a
   Blue:        #2563eb
=============================================== */

/* ─── CSS Custom Properties ─── */
:root {
  --red:        #D7192D;
  --red-dark:   #a81223;
  --red-light:  #fef2f2;
  --red-border: #fecaca;

  --dark:       #111827;
  --dark-2:     #1f2937;
  --dark-3:     #374151;
  --mid:        #6b7280;
  --light:      #9ca3af;

  --surface:    #f8fafc;
  --surface-2:  #f1f5f9;
  --border:     #e2e8f0;
  --border-2:   #f1f5f9;

  --green:      #16a34a;
  --blue:       #2563eb;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 8px 24px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-xl:  0 20px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-red: 0 4px 16px rgba(215,25,45,0.3);
  --shadow-red-lg: 0 8px 28px rgba(215,25,45,0.4);

  /* Radii */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   18px;
  --r-2xl:  22px;
  --r-full: 999px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: var(--dark-2);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; outline: none; }

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }

/* ─── Scroll Reveal ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Section Headers ─── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.125rem);
  font-weight: 800; color: var(--dark);
  letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 12px;
}
.section-header p { font-size: 1.0625rem; color: var(--mid); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-header.light h2 { color: #fff; }
.section-header.light p  { color: rgba(255,255,255,0.7); }

.section-tag {
  display: inline-flex; align-items: center;
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--red); background: var(--red-light);
  border: 1px solid var(--red-border);
  border-radius: var(--r-full); padding: 5px 14px; margin-bottom: 14px;
}
.section-tag.light { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.section-tag.blue  { color: var(--blue); background: #eff6ff; border-color: #bfdbfe; }
.section-tag.green { color: var(--green); background: #f0fdf4; border-color: #bbf7d0; }
.center-btn { text-align: center; margin-top: 44px; }

/* ─── Buttons ─── */
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; font-size: 0.9375rem; font-weight: 600;
  padding: 11px 26px; border-radius: var(--r-md); border: none; cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  white-space: nowrap; text-decoration: none;
  box-shadow: var(--shadow-red);
}
.btn-red:hover  { transform: translateY(-2px); box-shadow: var(--shadow-red-lg); }
.btn-red:active { transform: translateY(0); }
.btn-red.btn-lg { padding: 13px 34px; font-size: 1.0625rem; border-radius: var(--r-lg); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 500;
  padding: 9px 20px; border-radius: var(--r-md);
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent; cursor: pointer; transition: all 0.18s; text-decoration: none;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.1); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--dark-3); font-size: 0.875rem; font-weight: 500;
  padding: 9px 20px; border-radius: var(--r-md);
  border: 1.5px solid var(--border); background: #fff;
  cursor: pointer; transition: all 0.18s; text-decoration: none;
}
.btn-ghost-dark:hover { border-color: var(--red); color: var(--red); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: 1.0625rem; font-weight: 600;
  padding: 13px 34px; border-radius: var(--r-lg);
  border: 2px solid rgba(255,255,255,0.55);
  background: transparent; cursor: pointer; transition: all 0.18s; text-decoration: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-outline-red {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-size: 0.9375rem; font-weight: 600;
  padding: 11px 26px; border-radius: var(--r-md);
  border: 2px solid var(--red); background: transparent;
  cursor: pointer; transition: all 0.18s; text-decoration: none;
}
.btn-outline-red:hover { background: var(--red); color: #fff; }

.btn-white-red {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-size: 0.9375rem; font-weight: 700;
  padding: 11px 26px; border-radius: var(--r-md);
  border: 2px solid var(--red); background: #fff;
  cursor: pointer; transition: all 0.18s; text-decoration: none;
}
.btn-white-red:hover { background: var(--red); color: #fff; transform: translateY(-1px); }

.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--dark); color: #fff;
  padding: 12px 22px; border-radius: var(--r-lg);
  border: 1.5px solid var(--dark-3); cursor: pointer;
  transition: all 0.18s; text-decoration: none; min-width: 170px;
}
.btn-store:hover { background: var(--dark-2); border-color: var(--mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-store .store-icon { font-size: 1.5rem; flex-shrink: 0; }
.btn-store .store-text small { display: block; font-size: 0.6875rem; color: var(--light); line-height: 1; margin-bottom: 2px; }
.btn-store .store-text strong { font-size: 1rem; font-weight: 700; }

.w-full { width: 100%; justify-content: center; }

/* ─── Announcement Bar ─── */
.announcement-bar {
  background: linear-gradient(90deg, #7f0d1a 0%, var(--red) 50%, var(--red-dark) 100%);
  padding: 10px 24px; text-align: center;
  font-size: 0.8125rem; font-weight: 500; color: #fff;
  position: relative; z-index: 101; overflow: hidden;
}
.announcement-bar::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px);
}
.announcement-bar-inner {
  position: relative; display: flex; align-items: center;
  justify-content: center; gap: 12px; flex-wrap: wrap;
}
.announcement-code {
  background: rgba(255,255,255,0.2); border: 1px dashed rgba(255,255,255,0.5);
  color: #fff; font-weight: 800; font-family: 'Courier New', monospace;
  letter-spacing: 0.08em; padding: 2px 10px; border-radius: 4px;
  cursor: pointer; transition: background 0.2s;
}
.announcement-code:hover { background: rgba(255,255,255,0.3); }
.announcement-close {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.7); font-size: 1.25rem; cursor: pointer; padding: 0 4px; transition: color 0.2s;
}
.announcement-close:hover { color: #fff; }

/* ─── Navbar ─── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { background: #0a0f1a; box-shadow: 0 2px 20px rgba(0,0,0,0.4); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-text { font-size: 1.3125rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.logo-red  { color: #ef4444; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 8px 13px; border-radius: var(--r-sm);
  transition: all 0.18s; text-decoration: none; white-space: nowrap;
}
.nav-link:hover  { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.active { color: #fff; background: rgba(215,25,45,0.2); }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Language Selector */
.lang-selector {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm); padding: 3px;
}
.lang-btn {
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.5);
  padding: 4px 9px; border-radius: 4px;
  border: none; background: transparent; cursor: pointer; transition: all 0.15s;
}
.lang-btn:hover  { color: #fff; }
.lang-btn.active { background: var(--red); color: #fff; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  padding: 10px 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #0a0f1a; gap: 2px;
}
.mobile-nav a {
  color: rgba(255,255,255,0.7); font-size: 0.9375rem; font-weight: 500;
  padding: 11px 12px; border-radius: var(--r-md); display: block; transition: all 0.15s;
}
.mobile-nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.mobile-lang { display: flex; gap: 6px; padding: 10px 0; }
.mobile-auth {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 8px;
}
.mobile-nav.open { display: flex; }

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  transform: scale(1.04);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.52) 0%, rgba(5,10,20,0.7) 50%, rgba(8,5,12,0.88) 100%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.hero-orb-1 { width: 500px; height: 500px; background: rgba(215,25,45,0.18); top: -120px; right: -100px; animation: orb-drift 12s ease-in-out infinite alternate; }
.hero-orb-2 { width: 350px; height: 350px; background: rgba(37,99,235,0.12); bottom: 80px; left: -80px; animation: orb-drift 16s ease-in-out infinite alternate-reverse; }
@keyframes orb-drift {
  from { transform: translate(0,0); }
  to   { transform: translate(30px, 20px); }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 90px 24px 40px;
  width: 100%; flex: 1; display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(215,25,45,0.18); border: 1px solid rgba(215,25,45,0.35);
  backdrop-filter: blur(8px); color: #fca5a5;
  font-size: 0.8125rem; font-weight: 600;
  padding: 6px 16px; border-radius: var(--r-full);
  margin-bottom: 22px; width: fit-content;
  animation: fade-in-down 0.6s ease 0.2s both;
}
.eyebrow-dot {
  width: 7px; height: 7px; background: #ef4444; border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.25rem); font-weight: 900;
  color: #fff; line-height: 1.07; letter-spacing: -0.04em;
  margin-bottom: 20px; max-width: 720px;
  animation: fade-in-up 0.7s ease 0.3s both;
}
.hero-title-accent { color: #ef4444; position: relative; }
.hero-title-accent::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), #ef4444);
  border-radius: 2px; opacity: 0.7;
}
.hero-sub {
  font-size: 1.125rem; color: rgba(255,255,255,0.75);
  max-width: 520px; margin-bottom: 36px; line-height: 1.7;
  animation: fade-in-up 0.7s ease 0.45s both;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; animation: fade-in-up 0.7s ease 0.6s both; }

/* ─── Search Widget ─── */
.hero-search {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  width: 100%; animation: fade-in-up 0.7s ease 0.5s both;
}
.search-card {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--r-2xl);
  padding: 28px 28px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.2);
}
.trip-tabs {
  display: flex; gap: 4px; margin-bottom: 20px;
  background: var(--surface); padding: 4px; border-radius: var(--r-md);
  width: fit-content; border: 1px solid var(--border);
}
.trip-tab {
  font-size: 0.875rem; font-weight: 500; color: var(--mid);
  padding: 8px 20px; border-radius: var(--r-sm); border: none;
  background: transparent; cursor: pointer; transition: all 0.18s; white-space: nowrap;
}
.trip-tab.active {
  background: #fff; color: var(--dark); font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.search-row {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 1fr 1fr 160px;
  gap: 10px; align-items: end;
}
.search-field { position: relative; }
.search-field label {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.6875rem; font-weight: 700;
  color: var(--light); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 7px;
}
.search-field label svg { width: 13px; height: 13px; }
.search-field input, .search-field select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-size: 0.9375rem; color: var(--dark); background: #fff;
  transition: all 0.18s; font-weight: 500;
}
.search-field input:focus, .search-field select:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(215,25,45,0.1);
}
.search-field input::placeholder { color: var(--light); font-weight: 400; }
.swap-btn {
  width: 44px; height: 44px; margin-bottom: 1px;
  border: 1.5px solid var(--border); border-radius: 50%;
  background: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-3); font-size: 1.1rem;
  transition: all 0.25s; flex-shrink: 0;
}
.swap-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-light); transform: rotate(180deg); }
.search-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 0.9375rem; font-weight: 700;
  padding: 13px 20px; border: none; border-radius: var(--r-md);
  cursor: pointer; transition: all 0.18s;
  box-shadow: var(--shadow-red); font-family: inherit; white-space: nowrap;
}
.search-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-red-lg); }
.search-footer {
  display: flex; align-items: center; gap: 10px;
  padding-top: 16px; margin-top: 16px;
  border-top: 1px solid var(--border-2); flex-wrap: wrap;
}
.popular-route {
  font-size: 0.8125rem; color: var(--mid); cursor: pointer;
  padding: 5px 13px; border: 1px solid var(--border); border-radius: var(--r-full);
  background: var(--surface); transition: all 0.18s; font-weight: 500; white-space: nowrap;
}
.popular-route:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }
.popular-label { font-size: 0.75rem; color: var(--light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }

/* ─── Hero Stats Bar ─── */
.hero-stats-bar {
  background: rgba(10,12,18,0.88);
  border-top: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px); position: relative; z-index: 2; padding: 20px 0;
}
.hero-stats {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.hero-stat { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 120px; }
.stat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(215,25,45,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; flex-shrink: 0;
}
.stat-text { display: flex; flex-direction: column; }
.stat-val { font-size: 1.25rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px; font-weight: 500; }
.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ─── Trust Bar ─── */
.trust-bar {
  background: #fff; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8125rem; font-weight: 600; color: var(--mid);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }
.trust-sep { width: 1px; height: 18px; background: var(--border); }

/* ─── Partner Airlines ─── */
.partners { background: var(--surface); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.airline-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 22px 16px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all 0.22s; cursor: pointer;
  box-shadow: var(--shadow-xs); text-decoration: none; color: inherit;
}
.airline-card:hover {
  border-color: var(--red-border);
  box-shadow: 0 6px 20px rgba(215,25,45,0.1);
  transform: translateY(-4px);
}
.airline-logo-img {
  width: 100%; height: 56px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.airline-logo-img img {
  max-width: 88%; max-height: 48px; width: auto; height: auto;
  object-fit: contain; transition: transform 0.2s;
}
.airline-card:hover .airline-logo-img img { transform: scale(1.06); }
.airline-logo-fallback {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9375rem; font-weight: 800; color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.airline-name {
  font-size: 0.875rem; font-weight: 700; color: var(--dark);
  text-align: center; line-height: 1.3;
}
.airline-badge {
  font-size: 0.625rem; font-weight: 700; padding: 3px 9px;
  border-radius: var(--r-full); text-transform: uppercase; letter-spacing: 0.04em;
}
.badge-red    { color: var(--red);   background: var(--red-light);  border: 1px solid var(--red-border); }
.badge-blue   { color: var(--blue);  background: #eff6ff;            border: 1px solid #bfdbfe; }
.badge-green  { color: var(--green); background: #f0fdf4;            border: 1px solid #bbf7d0; }
.badge-orange { color: #d97706;      background: #fffbeb;            border: 1px solid #fde68a; }
.badge-gray   { color: var(--mid);   background: var(--surface);     border: 1px solid var(--border); }

/* ─── Promo Banner ─── */
.promo-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  padding: 52px 0; position: relative; overflow: hidden;
}
.promo-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(215,25,45,0.15) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(37,99,235,0.1) 0%, transparent 60%);
}
.promo-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.promo-text h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 8px; }
.promo-text p  { color: rgba(255,255,255,0.6); font-size: 0.9375rem; }
.promo-code-block { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.promo-code {
  background: rgba(255,255,255,0.1); border: 2px dashed rgba(255,255,255,0.3);
  color: #fff; font-size: 1.5rem; font-weight: 900;
  font-family: 'Courier New', monospace; letter-spacing: 0.1em;
  padding: 12px 24px; border-radius: var(--r-lg);
  cursor: pointer; transition: all 0.2s;
}
.promo-code:hover { background: rgba(255,255,255,0.17); border-color: rgba(255,255,255,0.5); }
.promo-code-hint { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 4px; text-align: center; }

/* ─── How It Works Steps ─── */
.steps-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::after {
  content: ''; position: absolute;
  top: 27px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--red-border), var(--red), var(--red-border)); z-index: 0;
}
.step-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 20px; position: relative; z-index: 1;
}
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 1.375rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(215,25,45,0.35), 0 0 0 4px #fff;
}
.step-icon { font-size: 1.375rem; }
.step-item h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-item p  { font-size: 0.875rem; color: var(--mid); line-height: 1.65; }

/* ─── Features ─── */
.features { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  position: relative; background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 30px 26px;
  transition: all 0.25s; overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  opacity: 0; transition: opacity 0.25s;
}
.feature-card:hover {
  border-color: var(--red-border); background: #fff;
  box-shadow: 0 10px 32px rgba(215,25,45,0.1);
  transform: translateY(-4px);
}
.feature-card:hover::after { opacity: 1; }
.feature-num {
  font-size: 0.6875rem; font-weight: 800; color: var(--red);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px;
}
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--red-light), #fff1f2);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(215,25,45,0.12);
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-card p  { font-size: 0.875rem; color: var(--mid); line-height: 1.7; }

/* ─── Check-In Bonus ─── */
.checkin-section { background: #fff; }
.checkin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.checkin-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--dark);
  margin-bottom: 14px; line-height: 1.2; letter-spacing: -0.03em;
}
.checkin-text p { color: var(--mid); font-size: 0.9375rem; margin-bottom: 24px; line-height: 1.75; }
.checkin-perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.checkin-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9375rem; color: var(--dark-3); font-weight: 500;
}
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--red-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.checkin-ui {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 28px;
  box-shadow: var(--shadow-xl);
}
.checkin-ui-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.checkin-ui-title  { font-size: 1rem; font-weight: 700; color: var(--dark); }
.cycle-chip {
  font-size: 0.6875rem; font-weight: 700;
  color: var(--red); background: var(--red-light); border: 1px solid var(--red-border);
  padding: 3px 10px; border-radius: var(--r-full);
}
.checkin-ui-sub { font-size: 0.8125rem; color: var(--light); margin-bottom: 24px; }

.day-progress { display: flex; justify-content: space-between; margin-bottom: 20px; gap: 4px; }
.day-item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.day-circle {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700; transition: all 0.3s;
}
.day-circle.completed { background: var(--green); color: #fff; box-shadow: 0 2px 8px rgba(22,163,74,0.3); }
.day-circle.current {
  background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff;
  box-shadow: 0 0 0 5px rgba(215,25,45,0.15);
  animation: pulse-ring 2s ease-in-out infinite;
}
.day-circle.future { background: var(--surface); color: var(--light); border: 2px dashed var(--border); }
@keyframes pulse-ring {
  0%,100% { box-shadow: 0 0 0 5px rgba(215,25,45,0.15); }
  50%      { box-shadow: 0 0 0 9px rgba(215,25,45,0.06); }
}
.day-lbl           { font-size: 0.6875rem; font-weight: 500; color: var(--light); }
.day-lbl.completed { color: var(--green); font-weight: 600; }
.day-lbl.current   { color: var(--red); font-weight: 700; }

.progress-track, .checkin-progress-bar {
  height: 6px; background: var(--surface-2);
  border-radius: var(--r-full); overflow: hidden; margin-bottom: 18px;
}
.progress-fill, .checkin-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ef4444);
  border-radius: var(--r-full); transition: width 0.8s ease;
}
.checkin-footer {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8125rem; color: var(--light);
}
.btn-claim {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 0.8125rem; font-weight: 700;
  padding: 9px 22px; border-radius: var(--r-md); border: none;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(215,25,45,0.3);
}
.btn-claim:hover   { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(215,25,45,0.4); }
.btn-claim:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ─── Destinations ─── */
.explore { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px; gap: 14px;
}
.dest-large { grid-column: span 2; grid-row: span 2; }
.dest-card {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; cursor: pointer; display: block;
  text-decoration: none; box-shadow: var(--shadow-sm);
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.18) 50%, transparent 100%);
  padding: 18px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: background 0.3s;
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.28) 60%, rgba(215,25,45,0.08) 100%); }
.dest-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.6875rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: var(--r-full); color: #fff;
}
.dest-badge.deal  { background: var(--red); }
.dest-badge.excl  { background: linear-gradient(135deg, var(--red), #7c3aed); }
.dest-badge.new   { background: var(--green); }
.dest-city { font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.dest-large .dest-city { font-size: 1.625rem; }
.dest-code { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.dest-book {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.8125rem; font-weight: 600;
  padding: 7px 16px; border-radius: var(--r-sm);
  transition: all 0.2s; width: fit-content;
}
.dest-book:hover { background: var(--red); border-color: var(--red); }

/* ─── Proven ─── */
.proven {
  background: linear-gradient(135deg, var(--red) 0%, #9b1121 50%, #6b0d17 100%);
  position: relative; overflow: hidden;
}
.proven::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.proven-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.proven-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px); border-radius: var(--r-xl); padding: 30px 24px; text-align: center;
  transition: all 0.25s;
}
.proven-card:hover { background: rgba(255,255,255,0.17); transform: translateY(-4px); }
.proven-emoji { font-size: 2.5rem; margin-bottom: 14px; }
.proven-card h3 { font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.proven-card p  { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ─── Referral ─── */
.referral-section { background: #fff; }
.referral-card {
  background: linear-gradient(135deg, var(--dark) 0%, #1e1b4b 100%);
  border-radius: var(--r-2xl); padding: 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  box-shadow: var(--shadow-xl); position: relative; overflow: hidden;
}
.referral-card::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(215,25,45,0.15), transparent 70%);
  top: -100px; right: -80px; pointer-events: none;
}
.referral-text h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 800; color: #fff;
  margin-bottom: 14px; line-height: 1.2; letter-spacing: -0.03em;
}
.referral-text p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; margin-bottom: 28px; line-height: 1.75; }
.ref-code-box {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); padding: 18px 22px; margin-bottom: 24px;
}
.ref-code-label {
  font-size: 0.6875rem; font-weight: 700;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  letter-spacing: 0.1em; display: block; margin-bottom: 8px;
}
.ref-code-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ref-code-val {
  font-size: 1.5rem; font-weight: 900; color: #ef4444;
  font-family: 'Courier New', monospace; letter-spacing: 0.12em;
}
.btn-copy {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85); font-size: 0.8125rem; font-weight: 600;
  padding: 7px 14px; border-radius: var(--r-sm); cursor: pointer; transition: all 0.2s;
}
.btn-copy:hover { background: var(--red); border-color: var(--red); color: #fff; }
.ref-stats-col { display: flex; flex-direction: column; gap: 12px; }
.ref-stat-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px; transition: all 0.2s;
}
.ref-stat-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(215,25,45,0.3); }
.ref-stat-icon { font-size: 1.5rem; flex-shrink: 0; }
.ref-stat-info { display: flex; flex-direction: column; gap: 2px; }
.ref-stat-name { font-size: 0.8125rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.ref-stat-val  { font-size: 1.25rem; font-weight: 800; color: #fff; }
.ref-link { font-size: 0.8125rem !important; font-weight: 600 !important; color: #ef4444 !important; cursor: pointer; text-decoration: underline; }

/* ─── App Download ─── */
.app-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  overflow: hidden; position: relative;
}
.app-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(215,25,45,0.12), transparent 70%);
  top: -150px; left: -100px; pointer-events: none;
}
.app-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.app-text h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem); font-weight: 800; color: #fff;
  margin-bottom: 16px; line-height: 1.15; letter-spacing: -0.03em;
}
.app-text p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; margin-bottom: 28px; line-height: 1.75; }
.app-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.app-feature { display: flex; align-items: center; gap: 9px; font-size: 0.875rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.app-feature-icon {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  background: rgba(215,25,45,0.2); color: #ef4444;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; flex-shrink: 0;
}
.store-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Phone Mockup */
.phone-wrap { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-mockup {
  width: 260px; background: var(--dark-2);
  border-radius: 44px; border: 8px solid var(--dark-3);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden; position: relative;
}
.phone-notch { width: 110px; height: 28px; background: var(--dark-3); border-radius: 0 0 18px 18px; margin: 0 auto; }
.phone-screen { background: #fff; padding: 16px 14px 20px; min-height: 460px; }
.phone-screen-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.phone-logo-text { font-size: 0.875rem; font-weight: 800; color: var(--dark); }
.phone-logo-red  { color: var(--red); }
.phone-notif-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
.phone-hero-card {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--r-lg); padding: 16px; margin-bottom: 14px; color: #fff;
}
.phone-hero-label { font-size: 0.5625rem; opacity: 0.75; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.phone-hero-val   { font-size: 1.25rem; font-weight: 800; }
.phone-hero-sub   { font-size: 0.5625rem; opacity: 0.75; margin-top: 2px; }
.phone-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.phone-mini-card { background: var(--surface); border-radius: 10px; padding: 12px; border: 1px solid var(--border-2); }
.phone-mini-icon { font-size: 1rem; margin-bottom: 4px; }
.phone-mini-lbl  { font-size: 0.5rem; color: var(--light); font-weight: 600; }
.phone-mini-val  { font-size: 0.75rem; font-weight: 700; color: var(--dark); }
.phone-list { display: flex; flex-direction: column; gap: 8px; }
.phone-list-item { display: flex; align-items: center; gap: 8px; background: var(--surface); border-radius: 9px; padding: 10px; }
.phone-list-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.phone-list-dot.green { background: var(--green); }
.phone-list-dot.red   { background: var(--red); }
.phone-list-dot.blue  { background: var(--blue); }
.phone-list-text  { flex: 1; }
.phone-list-title { font-size: 0.5625rem; font-weight: 600; color: var(--dark-3); }
.phone-list-sub   { font-size: 0.5rem; color: var(--light); }
.phone-list-amt   { font-size: 0.625rem; font-weight: 700; color: var(--green); }

/* ─── Testimonials ─── */
.testimonials { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 26px;
  transition: all 0.25s; position: relative;
  box-shadow: var(--shadow-xs);
}
.review-card:hover { border-color: var(--red-border); box-shadow: 0 8px 28px rgba(215,25,45,0.08); transform: translateY(-3px); }
.review-card.featured { background: linear-gradient(135deg, var(--red), var(--red-dark)); border-color: transparent; box-shadow: 0 12px 36px rgba(215,25,45,0.3); }
.review-stars { font-size: 0.9375rem; color: #f59e0b; margin-bottom: 14px; }
.review-card.featured .review-stars { color: #fde68a; }
.review-text { font-size: 0.9375rem; color: var(--dark-3); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-card.featured .review-text { color: rgba(255,255,255,0.92); }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-card.featured .reviewer-avatar { background: rgba(255,255,255,0.2); }
.reviewer strong { font-size: 0.875rem; font-weight: 700; color: var(--dark); display: block; }
.review-card.featured .reviewer strong { color: #fff; }
.reviewer span { font-size: 0.75rem; color: var(--light); }
.review-card.featured .reviewer span { color: rgba(255,255,255,0.6); }
.quote-icon { position: absolute; top: 20px; right: 24px; font-size: 3rem; color: var(--border); line-height: 1; font-family: Georgia, serif; }
.review-card.featured .quote-icon { color: rgba(255,255,255,0.12); }

/* ─── Top-Up Banner ─── */
.topup-section { padding: 60px 0; background: #fff; }
.topup-card {
  background: linear-gradient(135deg, var(--red) 0%, #9b1121 55%, #6b0d17 100%);
  border-radius: var(--r-2xl); padding: 64px 52px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 64px rgba(215,25,45,0.35);
}
.topup-card::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.topup-badge-wrap { margin-bottom: 18px; }
.topup-super-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 16px; border-radius: var(--r-full);
}
.topup-content { position: relative; z-index: 2; }
.topup-emoji { font-size: 3.5rem; margin-bottom: 12px; animation: bounce-gift 2s ease-in-out infinite; }
@keyframes bounce-gift {
  0%,100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-8px) rotate(-5deg); }
  75%      { transform: translateY(-4px) rotate(5deg); }
}
.topup-card h2 { font-size: clamp(1.625rem, 4vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 12px; letter-spacing: -0.03em; }
.topup-card p  { color: rgba(255,255,255,0.82); font-size: 1.0625rem; max-width: 500px; margin: 0 auto 32px; line-height: 1.65; }
.sparkle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.7); animation: sparkle-anim 3s linear infinite; }
.s1 { width:10px; height:10px; top:18%; left:7%;  animation-delay:0s; }
.s2 { width:7px;  height:7px;  top:65%; left:88%; animation-delay:1s; }
.s3 { width:14px; height:14px; top:32%; left:72%; animation-delay:2s; }
.s4 { width:8px;  height:8px;  top:78%; left:22%; animation-delay:0.5s; }
.s5 { width:6px;  height:6px;  top:50%; left:45%; animation-delay:1.5s; }
@keyframes sparkle-anim {
  0%   { transform: scale(0); opacity: 0; }
  50%  { transform: scale(1); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}

/* ─── Join CTA ─── */
.join-cta { background: var(--dark); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cta-card { border-radius: var(--r-2xl); padding: 40px 36px; }
.cta-register { background: linear-gradient(135deg, var(--red), #9b1121); box-shadow: 0 16px 48px rgba(215,25,45,0.3); }
.cta-about { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.cta-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.cta-card h3 { font-size: 1.375rem; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.3; letter-spacing: -0.02em; }
.cta-card p   { color: rgba(255,255,255,0.6); font-size: 0.9375rem; margin-bottom: 28px; line-height: 1.7; }

/* ─── Payment Badges ─── */
.payments { background: var(--surface); padding: 40px 0; border-top: 1px solid var(--border); }
.payments-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.payment-label { font-size: 0.8125rem; font-weight: 600; color: var(--light); text-transform: uppercase; letter-spacing: 0.08em; }
.payment-logos  { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.payment-badge {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 7px 13px;
  font-size: 0.75rem; font-weight: 700; color: var(--dark-3);
  white-space: nowrap; box-shadow: var(--shadow-xs);
}
.security-badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.security-badge {
  display: flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 7px 12px;
  font-size: 0.6875rem; font-weight: 700; color: var(--dark-3);
  box-shadow: var(--shadow-xs);
}
.sec-icon { color: var(--green); font-size: 0.875rem; }

/* ─── Newsletter ─── */
.newsletter { background: #fff; padding: 72px 0; }
.newsletter-inner {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 56px 48px; text-align: center;
}
.newsletter-inner h2 { font-size: 1.875rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; letter-spacing: -0.03em; }
.newsletter-inner p  { color: var(--mid); font-size: 1rem; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 12px 18px;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-size: 0.9375rem; color: var(--dark); background: #fff; transition: border-color 0.18s;
}
.newsletter-form input:focus { border-color: var(--red); outline: none; box-shadow: 0 0 0 3px rgba(215,25,45,0.08); }
.newsletter-note { display: block; font-size: 0.75rem; color: var(--light); margin-top: 12px; }

/* ─── Footer ─── */
.footer { background: #0b0f18; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0 48px; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.38); margin-top: 16px; line-height: 1.75; max-width: 300px; }
.footer-logo-text { font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.footer-logo-red  { color: #ef4444; }
.social-links { display: flex; gap: 8px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.45); display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; cursor: pointer; transition: all 0.18s; text-decoration: none;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col h4 {
  font-size: 0.6875rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38); margin-bottom: 18px;
}
.footer-col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-col a   { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom  { border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom-inner {
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 0.8125rem; color: rgba(255,255,255,0.28);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.8125rem; transition: color 0.18s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-lang-btns { display: flex; align-items: center; gap: 14px; }
.footer-lang-btns a { color: rgba(255,255,255,0.3); font-size: 0.8125rem; transition: color 0.18s; }
.footer-lang-btns a:hover { color: #ef4444; }

/* ─── Auth Pages ─── */
.auth-page {
  min-height: 100vh; background: var(--surface);
  display: flex; align-items: center; justify-content: center; padding: 88px 24px 40px;
}
.auth-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 44px;
  width: 100%; max-width: 440px;
  box-shadow: var(--shadow-xl);
}
.auth-logo  { text-align: center; margin-bottom: 28px; }
.auth-title { font-size: 1.625rem; font-weight: 800; color: var(--dark); text-align: center; margin-bottom: 6px; letter-spacing: -0.02em; }
.auth-sub   { font-size: 0.9rem; color: var(--mid); text-align: center; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark-3); margin-bottom: 6px;
}
.form-input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-size: 0.9375rem; color: var(--dark); font-family: inherit;
  transition: border-color 0.18s; outline: none; background: #fff;
}
.form-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(215,25,45,0.09); }
.form-input::placeholder { color: var(--light); font-weight: 400; }
.form-submit {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 1rem; font-weight: 700;
  border: none; border-radius: var(--r-md); cursor: pointer;
  transition: all 0.18s; margin-top: 8px; font-family: inherit;
  box-shadow: var(--shadow-red);
}
.form-submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-red-lg); }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.875rem; color: var(--mid); }
.auth-footer a { color: var(--red); font-weight: 600; }
.referral-input-wrap { position: relative; }
.referral-tag {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: 0.6875rem; background: var(--red-light); color: var(--red);
  font-weight: 700; padding: 2px 8px; border-radius: 4px;
}

/* ─── Inner Pages ─── */
.inner-page { padding-top: 64px; min-height: 100vh; background: var(--surface); }
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2035 100%);
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-header h1 { font-size: 1.875rem; font-weight: 800; color: #fff; margin-bottom: 4px; letter-spacing: -0.02em; }
.page-header p  { color: rgba(255,255,255,0.45); font-size: 0.9rem; }
.inner-content  { padding: 40px 0 60px; }

.wallet-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.wallet-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.wallet-card-label { font-size: 0.8125rem; font-weight: 500; color: var(--mid); margin-bottom: 8px; }
.wallet-card-value { font-size: 1.875rem; font-weight: 800; color: var(--dark); }
.wallet-card-value.green { color: var(--green); }
.wallet-card-value.red   { color: var(--red); }

/* ─── About ─── */
.about-hero {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 100px 0 80px; text-align: center;
}
.about-hero h1 { font-size: 3rem; font-weight: 900; color: #fff; margin-bottom: 16px; letter-spacing: -0.04em; }
.about-hero p  { font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }
.about-content { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.about-section p  { font-size: 0.9375rem; color: var(--mid); line-height: 1.75; margin-bottom: 16px; }
.legal-box {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 4px solid var(--red); border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 20px 24px; margin-top: 20px;
}
.legal-box p { font-size: 0.875rem; color: var(--mid); margin: 0; line-height: 1.65; }

/* ─── Booking Page ─── */
.booking-page { padding-top: 64px; min-height: 100vh; background: var(--surface); }
.booking-hero { background: linear-gradient(135deg, var(--dark) 0%, #1a2035 100%); padding: 48px 0 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.booking-hero h1 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -0.02em; }
.booking-hero p  { color: rgba(255,255,255,0.45); font-size: 0.9375rem; }
.airline-chip {
  font-size: 0.8125rem; font-weight: 500; color: var(--mid);
  background: var(--surface); border: 1px solid var(--border);
  padding: 7px 16px; border-radius: var(--r-full); cursor: pointer; transition: all 0.18s;
}
.airline-chip:hover, .airline-chip.active { border-color: var(--red); color: var(--red); background: var(--red-light); }

/* ─── Shared Table Components ─── */
.table-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.table-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--border-2);
  background: var(--surface);
}
.table-card-title { font-size: 0.9375rem; font-weight: 700; color: var(--dark); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--mid);
  padding: 11px 20px; text-align: left;
  border-bottom: 1px solid var(--border); background: var(--surface);
}
.data-table td { padding: 13px 20px; font-size: 0.875rem; color: var(--dark-3); border-bottom: 1px solid var(--border-2); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--surface); }

/* ─── Referral inner page ─── */
.referral-code-box { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-lg); padding: 18px 22px; margin-bottom: 24px; }
.referral-code-label { font-size: 0.6875rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 8px; }
.referral-code-display { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.referral-code { font-size: 1.5rem; font-weight: 900; color: #ef4444; font-family: 'Courier New', monospace; letter-spacing: 0.12em; }
.copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85); font-size: 0.8125rem; font-weight: 600;
  padding: 7px 14px; border-radius: var(--r-sm); cursor: pointer; transition: all 0.2s;
}
.copy-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* Checkin inner page aliases */
.checkin-card-ui    { background: #fff; border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 28px; box-shadow: var(--shadow-xl); }
.checkin-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.checkin-title-ui   { font-size: 1rem; font-weight: 700; color: var(--dark); }
.checkin-cycle-badge { font-size: 0.6875rem; font-weight: 700; color: var(--red); background: var(--red-light); border: 1px solid var(--red-border); padding: 3px 10px; border-radius: var(--r-full); }
.checkin-card-sub   { font-size: 0.8125rem; color: var(--light); margin-bottom: 24px; }
.checkin-card-footer { display: flex; align-items: center; justify-content: space-between; font-size: 0.8125rem; color: var(--light); margin-top: 16px; }

/* ─── Animations ─── */
@keyframes fade-in-up   { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in-down { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .partners-grid  { grid-template-columns: repeat(3, 1fr); }
  .search-row     { grid-template-columns: 1fr 44px 1fr 1fr; gap: 10px; }
  .search-row .search-field:nth-last-child(2),
  .search-row .search-submit-wrap { display: none; }
  .checkin-grid   { grid-template-columns: 1fr; gap: 40px; }
  .app-inner      { grid-template-columns: 1fr; }
  .phone-wrap     { display: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-content  { padding: 80px 24px 32px; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .search-row    { grid-template-columns: 1fr; }
  .search-row .swap-btn { display: none; }
  .hero-stats    { flex-direction: column; gap: 8px; }
  .stat-sep      { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::after { display: none; }
  .dest-grid     { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-large    { grid-column: span 2; }
  .proven-grid   { grid-template-columns: 1fr; }
  .referral-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .cta-grid      { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 0; }
  .footer-brand  { grid-column: span 2; }
  .topup-card    { padding: 44px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-inner { padding: 40px 24px; }
  .promo-inner   { flex-direction: column; text-align: center; }
  .about-grid    { grid-template-columns: 1fr; }
  .wallet-cards  { grid-template-columns: 1fr 1fr; }
  .payments-inner { flex-direction: column; gap: 16px; }
  .trust-inner   { gap: 14px; }
  .trust-sep     { display: none; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid     { grid-template-columns: 1fr; }
  .dest-large    { grid-column: span 1; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-brand  { grid-column: span 1; }
  .hero-stats-bar { display: none; }
  .steps-grid    { grid-template-columns: 1fr; }
  .wallet-cards  { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}
