/* ============================================================
   LUXE LIMOUSINE SERVICES — Main Stylesheet
   ============================================================ */

:root {
  --ink:      #080909;
  --ink-2:    #0f1011;
  --ink-3:    #141518;
  --panel:    #161719;
  --panel-2:  #1c1d21;
  --line:     rgba(184,151,62,.20);
  --hairline: rgba(255,252,244,.07);
  --ivory:    #f5f0e8;
  --slate:    #9a9590;
  --gold:     #b8973e;
  --gold-2:   #d4b86a;
  --gold-3:   #e8d08e;
  --green:    #3ddc97;
  --radius:   16px;
  --nav-h:    76px;
  --ease:     cubic-bezier(.22,.68,0,1.2);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--ivory);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.1;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
}
.gold-bar {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 18px 0 24px;
}
.gold-italic { font-style: italic; color: var(--gold-2); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #100d04;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
  padding: 15px 30px;
  border-radius: 999px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 24px rgba(184,151,62,.25);
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,151,62,.35);
}
.btn-primary.large { font-size: 16px; padding: 17px 36px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245,240,232,.22);
  color: var(--ivory);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  transition: border-color .25s, color .25s, transform .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn-ghost.large { font-size: 16px; padding: 16px 34px; }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ─── WhatsApp Float ─── */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.55); }
.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
#nav.scrolled {
  background: rgba(8,9,9,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--hairline);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 2%;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.1;
}
.brand-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 32px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(245,240,232,.75);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s;
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: border-color .2s, color .2s, transform .2s;
}
.nav-icon .fa-whatsapp { color: var(--green); }
.nav-icon:hover { border-color: var(--gold); transform: translateY(-1px); color: var(--gold-2); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory);
  transition: border-color .2s, color .2s;
}
.nav-phone i { color: var(--gold); }
.nav-phone:hover { border-color: var(--gold-2); color: var(--gold-2); }
.nav-book {
  background: var(--gold);
  color: #100d04;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  padding: 9px 20px;
  border-radius: 999px;
  transition: background .2s, transform .2s;
}
.nav-book:hover { background: var(--gold-2); transform: translateY(-1px); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: .3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(8,9,9,.97);
  border-top: 1px solid var(--hairline);
  padding: 16px 24px 24px;
}
.mobile-menu a {
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--hairline);
  color: rgba(245,240,232,.8);
}
.mobile-menu a:hover { color: var(--gold-2); }
.mob-book {
  margin-top: 16px;
  background: var(--gold) !important;
  color: #100d04 !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 999px;
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/logo-promo.png') center 85% / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
  z-index: -3;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(8,9,9,.97) 0%, rgba(8,9,9,.88) 42%, rgba(8,9,9,.55) 75%, rgba(8,9,9,.80) 100%),
    linear-gradient(0deg, rgba(8,9,9,1) 0%, rgba(8,9,9,0) 25%);
  z-index: -2;
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding-top: var(--nav-h);
  padding-bottom: 60px;
  min-height: 100vh;
}
.hero-left { max-width: 600px; }
.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .2s ease forwards;
}
.label-line { flex: 1; max-width: 40px; height: 1px; background: var(--gold); opacity: .5; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
}
.hero-title .line:nth-child(1) { animation: fadeUp .9s .35s ease forwards; }
.hero-title .line:nth-child(2) { animation: fadeUp .9s .50s ease forwards; }
.hero-title .line:nth-child(3) { animation: fadeUp .9s .65s ease forwards; }
.hero-title .line:nth-child(4) { animation: fadeUp .9s .80s ease forwards; }
.hero-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .9s .95s ease forwards;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s 1.1s ease forwards;
}
.hero-widget {
  background: rgba(22,23,25,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 28px;
  opacity: 0;
  animation: fadeUp .9s 1.2s ease forwards;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--gold-2);
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
.widget-header i { font-size: 16px; }
.widget-form { display: flex; flex-direction: column; gap: 0; }
.widget-field { display: flex; flex-direction: column; gap: 6px; padding: 12px 0; }
.widget-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}
.widget-field label i { font-size: 10px; }
.widget-field input {
  background: rgba(255,252,244,.05);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--ivory);
  font-size: 14.5px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .2s, background .2s;
}
.widget-field input::placeholder { color: rgba(154,149,144,.6); }
.widget-field input:focus { border-color: var(--gold); background: rgba(184,151,62,.06); }
.widget-divider {
  display: flex;
  align-items: center;
  padding: 0 14px;
}
.widget-divider span {
  flex: 1;
  height: 1px;
  background: var(--hairline);
}
.widget-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.widget-field.half { padding: 12px 0 0; }
.widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: #100d04;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 12px;
  margin-top: 18px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(184,151,62,.3);
}
.widget-btn:hover { background: var(--gold-2); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(184,151,62,.4); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(154,149,144,.25);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: -8px;
  left: 0;
  width: 1px;
  height: 8px;
  background: var(--gold);
  animation: scrollDot 1.8s infinite ease;
}
@keyframes scrollDot {
  0%   { top: -8px; }
  100% { top: 44px; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--ink-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 22px;
  border-left: 1px solid var(--hairline);
}
.trust-item:first-child { border-left: 0; }
.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(184,151,62,.1);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.trust-item span { display: block; font-size: 12.5px; color: var(--slate); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--hairline);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat {
  padding: 0 24px;
  border-left: 1px solid var(--hairline);
}
.stat:first-child { border-left: 0; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.5vw, 76px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}
.stat-plus, .stat-unit {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold);
  font-weight: 300;
}
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 8px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin: 14px 0 12px;
}
.section-head p { color: var(--slate); max-width: 50ch; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.svc-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-card:hover {
  border-color: var(--line);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.svc-icon {
  width: 52px;
  height: 52px;
  background: rgba(184,151,62,.08);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 6px;
  transition: background .3s, transform .3s;
}
.svc-card:hover .svc-icon { background: rgba(184,151,62,.15); transform: scale(1.05); }
.svc-card h3 {
  font-size: 22px;
  font-weight: 500;
}
.svc-card p { font-size: 14.5px; color: var(--slate); line-height: 1.65; flex: 1; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--gold);
  margin-top: 8px;
  transition: gap .2s, color .2s;
}
.svc-link:hover { gap: 12px; color: var(--gold-2); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  padding: 100px 0;
}
.steps-wrap { position: relative; }
.steps-line {
  position: absolute;
  top: 64px;
  left: calc(16.66% - 12px);
  right: calc(16.66% - 12px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.step { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .35em;
  color: var(--gold);
  margin-bottom: -4px;
}
.step-icon {
  width: 72px;
  height: 72px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: background .3s, transform .3s;
}
.step:hover .step-icon { background: rgba(184,151,62,.12); transform: scale(1.08); }
.step h3 { font-size: 22px; font-weight: 500; }
.step p { font-size: 14.5px; color: var(--slate); max-width: 26ch; margin: 0 auto; }

/* ============================================================
   FLEET
   ============================================================ */
.fleet-section {
  padding: 100px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.fleet-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  transition: border-color .3s;
}
.fleet-card:hover { border-color: var(--line); }
.fleet-photo {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.fleet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transition: transform 1s ease;
}
.fleet-car-img {
  object-position: center 68% !important;
}
.fleet-card:hover .fleet-photo img { transform: scale(1.04); }
.fleet-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--gold);
  color: #100d04;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.fleet-info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fleet-name {
  font-size: 40px;
  font-weight: 300;
  margin: 12px 0 0;
}
.fleet-desc { color: var(--slate); margin-bottom: 26px; font-size: 15px; }
.fleet-specs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 32px;
}
.fleet-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.fleet-specs i { color: var(--gold); font-size: 13px; width: 16px; text-align: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-section {
  padding: 100px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .3s, transform .3s;
}
.review-card:hover { border-color: var(--line); transform: translateY(-4px); }
.review-stars { display: flex; gap: 4px; color: var(--gold); font-size: 14px; }
.review-text {
  font-size: 15px;
  color: rgba(245,240,232,.75);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.review-avatar {
  width: 42px;
  height: 42px;
  background: rgba(184,151,62,.12);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; font-weight: 600; }
.review-author span { display: block; font-size: 12px; color: var(--slate); }

/* ============================================================
   AIRPORTS
   ============================================================ */
.airports-section {
  padding: 100px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.airports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.airport-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .3s, transform .3s;
}
.airport-card:hover { border-color: var(--line); transform: translateY(-4px); }
.airport-code {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-2);
  line-height: 1;
}
.airport-name { font-size: 14px; font-weight: 600; color: var(--ivory); }
.airport-city { font-size: 12.5px; color: var(--slate); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img { position: relative; }
.about-frame {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.about-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  border: 1px solid var(--line);
  z-index: 1;
  pointer-events: none;
}
.about-frame img { width: 100%; height: 440px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.about-badge i { color: var(--gold); font-size: 22px; }
.about-badge strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.about-badge span { display: block; font-size: 12px; color: var(--slate); }
.about-copy h2 { font-size: clamp(30px, 3.5vw, 44px); margin: 14px 0 0; }
.about-copy p { color: var(--slate); margin-bottom: 14px; font-size: 15.5px; }
.about-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 30px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.perk i { color: var(--gold); font-size: 13px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,151,62,.06) 0%, transparent 70%),
    var(--ink-2);
  z-index: -1;
}
.cta-content h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin: 14px 0 14px;
}
.cta-content p { color: var(--slate); max-width: 44ch; margin: 0 auto 36px; font-size: 16px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060707;
  border-top: 1px solid var(--hairline);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 48px;
}
.foot-brand { margin-bottom: 16px; }
.foot-about { font-size: 14px; color: var(--slate); margin-bottom: 20px; max-width: 28ch; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--slate);
  transition: border-color .2s, color .2s;
}
.foot-social a:hover { border-color: var(--gold); color: var(--gold-2); }
.foot-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.foot-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 12px;
  transition: color .2s;
}
.foot-col a:hover { color: var(--gold-2); }
.foot-col a i { color: var(--gold); width: 14px; text-align: center; font-size: 12px; }
.foot-bottom {
  border-top: 1px solid var(--hairline);
}
.foot-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 13px;
  color: var(--slate);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: var(--panel-2);
  border: 1px solid rgba(61,220,151,.35);
  color: var(--ivory);
  padding: 16px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: .4s;
  z-index: 200;
  max-width: 92vw;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast i { color: var(--green); font-size: 20px; }
.toast strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.toast small { display: block; color: var(--slate); font-size: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr 380px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding-top: calc(var(--nav-h) + 48px); padding-bottom: 60px; }
  .hero-left { max-width: 100%; }
  .hero-widget { width: 100%; max-width: 500px; }
  .nav-links { display: none; }
  .nav-phone span { display: none; }
  .burger { display: flex; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-top: 0; }
  .trust-item { border-top: 1px solid var(--hairline); }
  .trust-item:first-child { border-top: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .stat:nth-child(3) { border-left: 0; }
  .stat { padding: 28px 24px; }
  .steps-line { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .fleet-card { grid-template-columns: 1fr; }
  .fleet-photo { min-height: 300px; }
  .fleet-info { padding: 36px 28px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .airports-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 44px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { justify-content: center; }
  .nav-phone { display: none; }
  .nav-actions { gap: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .airports-grid { grid-template-columns: 1fr 1fr; }
  .fleet-specs { grid-template-columns: 1fr; }
  .about-perks { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .airports-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

@media (hover: none) {
  .btn-primary:hover, .btn-ghost:hover, .svc-card:hover, .review-card:hover, .fleet-card:hover .fleet-photo img { transform: none; }
}
