/* ================================================================
   CONDOR TRANSPORTATION 233 LLC — PHASE 2
   Palette: White + Deep Navy + Red (US Logistics industry standard)
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --white:    #ffffff;
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --navy:     #0B1527;
  --navy-2:   #132040;
  --navy-3:   #1E3058;
  --red:      #CC2200;
  --red-h:    #E02500;
  --text:     #111827;
  --text-mid: #374151;
  --text-soft:#6B7280;
  --border:   #E5E7EB;

  --sans:   -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --display:'Arial Black', 'Helvetica Neue', Impact, Gadget, sans-serif;
  --mono:   'Courier New', Courier, monospace;

  --max-w:  1160px;
  --nav-h:  68px;
  --sec-v:  clamp(72px, 9vw, 108px);
  --r:      4px;
  --r-lg:   10px;
  --tr:     .2s ease;
  --sh:     0 4px 20px rgba(0,0,0,.08);
  --sh-lg:  0 12px 40px rgba(0,0,0,.14);
}

body { background: var(--white); color: var(--text); font-family: var(--sans); line-height: 1.6; }

/* ─── UTILITIES ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px,4vw,40px); }

.btn-red {
  display: inline-flex; align-items: center;
  background: var(--red); color: var(--white);
  font-family: var(--display); font-size: 12px; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 32px; border: 2px solid var(--red); border-radius: var(--r);
  transition: all var(--tr);
}
.btn-red:hover { background: var(--red-h); border-color: var(--red-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(204,34,0,.3); }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--white);
  font-family: var(--display); font-size: 12px; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 28px; border: 2px solid rgba(255,255,255,.35); border-radius: var(--r);
  transition: all var(--tr);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }

.sec-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--red);
  display: inline-block; margin-bottom: 12px;
}
.section-intro { text-align: center; max-width: 600px; margin: 0 auto clamp(40px,5vw,60px); }
.sec-h2 {
  font-family: var(--display);
  font-size: clamp(26px,3.8vw,42px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.02em; color: var(--text); margin-bottom: 14px;
}
.sec-p { font-size: 15px; color: var(--text-soft); line-height: 1.8; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ─── NAV ────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97); border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
#navbar.scrolled { box-shadow: var(--sh); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(16px,3vw,40px);
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-link { display: block; }
.nav-logo-img { height: 44px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > a {
  color: var(--text-mid); font-size: 13px; font-weight: 500;
  padding: 7px 12px; border-radius: var(--r); transition: all var(--tr);
}
.nav-links > a:hover, .nav-links > a.active { color: var(--text); background: var(--gray-100); }
a.nav-cta {
  background: var(--red); color: var(--white) !important;
  font-family: var(--display); font-size: 11px; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 22px; border-radius: var(--r); margin-left: 8px; transition: all var(--tr);
}
a.nav-cta:hover { background: var(--red-h); }

/* Lang switcher */
.lang-sw { position: relative; margin: 0 4px; }
.lang-sw-btn {
  display: flex; align-items: center; gap: 5px;
  background: var(--gray-100); border: 1px solid var(--border);
  color: var(--text-mid); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 7px 11px; border-radius: var(--r); transition: all var(--tr);
}
.lang-sw-btn:hover { border-color: var(--red); color: var(--text); }
.lang-sw-btn svg { transition: transform var(--tr); }
.lang-sw-btn.open svg { transform: rotate(180deg); }
.lang-sw-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 155px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 6px; box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all var(--tr); z-index: 300;
}
.lang-sw-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-sw-menu button {
  display: flex; align-items: center; gap: 8px; width: 100%;
  padding: 9px 12px; background: none; border: none; color: var(--text-mid);
  font-size: 13px; border-radius: var(--r); transition: all var(--tr); text-align: left;
}
.lang-sw-menu button:hover { background: var(--gray-100); color: var(--text); }
.lang-sw-menu button.active { color: var(--red); background: #FEF2F2; font-weight: 700; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--tr); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; border-top: 1px solid var(--border); background: var(--white);
  padding: 16px clamp(20px,4vw,40px) 28px; flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav > a {
  color: var(--text-mid); font-size: 15px;
  padding: 12px 0; border-bottom: 1px solid var(--border); transition: color var(--tr);
}
.mobile-nav > a:hover { color: var(--red); }
.mobile-lang { padding: 16px 0; border-bottom: 1px solid var(--border); }
.mobile-lang > span { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); display: block; margin-bottom: 10px; }
.mobile-lang-grid { display: flex; gap: 6px; flex-wrap: wrap; }
.mlang { background: var(--gray-100); border: 1px solid var(--border); color: var(--text-mid); font-size: 11px; font-weight: 700; padding: 6px 11px; border-radius: var(--r); transition: all var(--tr); }
.mlang:hover, .mlang.active { border-color: var(--red); color: var(--red); background: #FEF2F2; }
a.mobile-cta {
  display: block; margin-top: 14px; background: var(--red); color: var(--white) !important;
  text-align: center; padding: 14px 20px !important; border-radius: var(--r);
  font-family: var(--display); font-size: 13px; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase; border-bottom: none !important;
}
a.mobile-cta:hover { background: var(--red-h) !important; }

/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--navy) url('../assets/images/hero-aerial-logistics.jpg') center 40% / cover no-repeat;
  position: relative; overflow: hidden; padding-top: var(--nav-h);
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid-lines {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(11,21,39,.97) 0%,
    rgba(11,21,39,.93) 50%,
    rgba(11,21,39,.55) 75%,
    rgba(11,21,39,.3) 100%
  );
}
.hero-shape-1 {
  position: absolute; top: -120px; right: -80px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,34,0,.08) 0%, transparent 70%);
}
.hero-shape-2 { display: none; }
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  padding-top: clamp(48px,7vw,80px); padding-bottom: clamp(48px,7vw,80px);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.hero-tag {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 24px;
}
.tag-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }
.hero-h1 {
  font-family: var(--display);
  font-size: clamp(40px,5.5vw,72px); font-weight: 900;
  text-transform: uppercase; line-height: 1.0; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 22px; display: flex; flex-direction: column;
}
.hero-red { color: var(--red); }
.hero-p { font-size: clamp(14px,1.4vw,16px); color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 32px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-services-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
}
.strip-dot { color: rgba(255,255,255,.25); font-size: 14px; }

/* Hero card */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 28px; width: 100%; max-width: 340px;
  backdrop-filter: blur(10px);
}
.hero-card-badge {
  font-family: var(--mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 12px;
}
.hero-partners-list {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-partners-list span {
  font-family: var(--display); font-size: 14px; font-weight: 900;
  color: rgba(255,255,255,.85); letter-spacing: .04em;
}
.hero-logo-wrap {
  background: var(--white); border-radius: 8px; padding: 16px 20px;
  margin-bottom: 20px; border: 2px solid var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.hero-logo-wrap img { width: 100%; height: auto; }
.hero-card-stats { display: flex; align-items: center; justify-content: space-around; }
.hero-card-stats > div { text-align: center; }
.hero-card-stats strong { font-family: var(--display); font-size: 22px; font-weight: 900; color: var(--white); display: block; line-height: 1; }
.hero-card-stats span { font-size: 10px; color: rgba(255,255,255,.45); font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.vline { width: 1px; height: 32px; background: rgba(255,255,255,.15); }

/* ─── CLIENTS SECTION ────────────────────────────────────────── */
.clients-section { padding: var(--sec-v) 0; background: var(--white); }
.clients-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.client-card {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(24px,2.5vw,32px); transition: all var(--tr); background: var(--white);
}
.client-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.client-icon {
  width: 48px; height: 48px; background: #FEF2F2; border: 1px solid rgba(204,34,0,.2);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 16px;
}
.client-icon svg { width: 26px; height: 26px; }
.client-card h3 { font-family: var(--display); font-size: 15px; font-weight: 900; text-transform: uppercase; letter-spacing: .01em; color: var(--text); margin-bottom: 10px; }
.client-card p { font-size: 13px; color: var(--text-soft); line-height: 1.75; }

/* ─── STATS ──────────────────────────────────────────────────── */
.stats-section { background: var(--red); padding: 0; }
.stats-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px,4vw,40px);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(28px,4vw,44px) 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-n { font-family: var(--display); font-size: clamp(36px,5vw,56px); font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -.02em; display: block; }
.stat-l { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: 6px; display: block; }

/* ─── SERVICES ───────────────────────────────────────────────── */
.services-section { padding: var(--sec-v) 0; background: var(--gray-50); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--tr);
}
.svc-card:hover { border-color: var(--red); box-shadow: var(--sh-lg); transform: translateY(-3px); }
.svc-photo {
  width: 100%; height: 180px;
  object-fit: cover; object-position: center;
  display: block; flex-shrink: 0;
  filter: brightness(.88) saturate(.9);
  transition: filter var(--tr), transform .5s ease;
}
.svc-card:hover .svc-photo { filter: brightness(1) saturate(1.05); transform: scale(1.03); }
/* Inner grid — num + icon + text in a row, separate from the photo */
.svc-inner {
  display: grid;
  grid-template-columns: 56px 52px 1fr; gap: 0 20px;
  padding: clamp(24px,3vw,36px);
  align-items: start; flex: 1;
}
.svc-num {
  font-family: var(--display); font-size: clamp(32px,4vw,44px); font-weight: 900;
  color: var(--red); line-height: 1; letter-spacing: -.02em; padding-top: 4px;
  opacity: .25;
}
.svc-icon {
  width: 48px; height: 48px; background: #FEF2F2; border: 1px solid rgba(204,34,0,.2);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-top: 6px;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-text h3 {
  font-family: var(--display); font-size: clamp(15px,1.7vw,18px); font-weight: 900;
  text-transform: uppercase; letter-spacing: .01em; color: var(--text); margin-bottom: 10px; padding-top: 8px;
}
.svc-text p { font-size: 13px; color: var(--text-soft); line-height: 1.75; margin-bottom: 14px; }
.svc-text ul { display: flex; flex-direction: column; gap: 5px; }
.svc-text li { font-size: 12px; color: var(--text-mid); padding-left: 16px; position: relative; }
.svc-text li::before { content: '→'; position: absolute; left: 0; color: var(--red); font-size: 11px; }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about-section { padding: var(--sec-v) 0; background: var(--navy); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px,7vw,80px); align-items: center; }
.about-photo-wrap {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 20px; box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.about-photo-wrap > img { width: 100%; height: 280px; object-fit: cover; display: block; filter: brightness(.75); }
.about-photo-overlay {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--white); border: 2px solid var(--red); border-radius: var(--r);
  padding: 10px 14px;
}
.about-photo-overlay img { height: 40px; width: auto; }
.about-logo-box {
  background: var(--white); border: 3px solid var(--red); border-radius: var(--r-lg);
  padding: clamp(20px,3vw,32px); margin-bottom: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.about-logo-box img { width: 100%; height: auto; }
.about-metrics { display: flex; align-items: center; gap: 18px; }
.metric { text-align: center; }
.metric strong { font-family: var(--display); font-size: 18px; font-weight: 900; color: var(--white); display: block; margin-bottom: 3px; }
.metric span { font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.metric-sep { width: 1px; height: 32px; background: rgba(255,255,255,.12); }
.about-text .sec-tag { color: var(--red); }
.about-text h2 {
  font-family: var(--display); font-size: clamp(26px,3.5vw,42px); font-weight: 900;
  text-transform: uppercase; line-height: 1.1; color: var(--white); margin-bottom: 20px;
}
.about-lead { font-size: clamp(15px,1.4vw,17px); color: rgba(255,255,255,.88); font-weight: 500; line-height: 1.75; margin-bottom: 14px; }
.about-text p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 14px; }
.about-text .btn-red { margin-top: 10px; }

/* ─── PARTNERS ───────────────────────────────────────────────── */
.partners-section { background: var(--white); padding: clamp(48px,6vw,72px) 0; border-top: 1px solid var(--border); }
.partners-label {
  text-align: center; font-family: var(--mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-soft); margin-bottom: 32px;
}
.partners-row {
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
  padding: clamp(24px,4vw,40px) 0; margin-bottom: 28px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.p-badge { display: flex; flex-direction: column; align-items: center; padding: 0 24px; }
.p-badge span { font-family: var(--display); font-size: clamp(22px,3.5vw,36px); font-weight: 900; color: var(--text); letter-spacing: -.02em; }
.p-badge small { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-top: 2px; }
.p-sep { font-size: 28px; color: var(--gray-200); }
.partners-note { max-width: 640px; margin: 0 auto; text-align: center; font-size: 14px; color: var(--text-soft); line-height: 1.85; }

/* ─── COVERAGE ───────────────────────────────────────────────── */
.area-section { padding: var(--sec-v) 0; background: var(--gray-50); }
.states-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(145px,1fr)); gap: 12px; }
.state {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  padding: 22px 14px; text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 5px; transition: all var(--tr);
}
.state:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--sh); }
.state.hq { border-color: var(--red); background: #FEF2F2; }
.state.expand { border: 2px dashed var(--gray-200); background: transparent; }
.state.otr { border-color: var(--navy); background: var(--navy); }
.state.otr .s-abbr { font-size: 22px; color: var(--white); }
.state.otr .s-name { color: rgba(255,255,255,.7); }
.state.otr .s-tag { background: rgba(255,255,255,.15); color: var(--white); }
.s-abbr { font-family: var(--display); font-size: 28px; font-weight: 900; color: var(--text); }
.state.hq .s-abbr { color: var(--red); }
.state.expand .s-abbr { color: var(--gray-400); }
.s-name { font-size: 11px; color: var(--gray-500); }
.s-tag { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--red); background: #FEF2F2; padding: 2px 8px; border-radius: 100px; font-weight: 700; }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-wrap { display: grid; grid-template-columns: 42% 58%; }
.contact-left {
  background: var(--navy); color: var(--white);
  padding: clamp(56px,8vw,96px) clamp(32px,5vw,72px);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-left .sec-tag { color: var(--red); }
.contact-left h2 {
  font-family: var(--display); font-size: clamp(24px,3vw,38px); font-weight: 900;
  text-transform: uppercase; color: var(--white); margin-bottom: 14px;
}
.contact-left > p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 32px; }
.cinfo-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 14px; }
.cinfo-item svg { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.ci-label { font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); display: block; margin-bottom: 3px; }
.cinfo-item a, .cinfo-item span { font-size: 14px; color: rgba(255,255,255,.82); font-weight: 500; }
.cinfo-item a:hover { color: var(--red); }
.response-note { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.45); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }
.response-note svg { color: var(--red); flex-shrink: 0; }
.response-note strong { color: rgba(255,255,255,.75); }
.contact-right { background: var(--white); padding: clamp(56px,8vw,96px) clamp(32px,5vw,72px); }
#contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-g { display: flex; flex-direction: column; gap: 7px; }
.form-g label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); }
.form-g input, .form-g select, .form-g textarea {
  background: var(--gray-50); border: 1px solid var(--border); border-radius: var(--r);
  color: var(--text); font-family: var(--sans); font-size: 14px;
  padding: 11px 14px; outline: none; width: 100%; transition: border-color var(--tr); -webkit-appearance: none;
}
.form-g input::placeholder, .form-g textarea::placeholder { color: var(--gray-400); }
.form-g input:focus, .form-g select:focus, .form-g textarea:focus { border-color: var(--red); background: var(--white); }
.form-g textarea { height: 115px; resize: vertical; }
#contact-form button[type=submit] {
  background: var(--red); color: var(--white); border: 2px solid var(--red);
  font-family: var(--display); font-size: 12px; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--r); width: 100%; transition: all var(--tr);
}
#contact-form button[type=submit]:hover { background: var(--red-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,34,0,.3); }
.form-ok { display: none; align-items: center; gap: 12px; background: #F0FDF4; border: 1px solid #86EFAC; border-radius: var(--r); padding: 14px 16px; color: #166534; font-size: 14px; }
.form-ok.visible { display: flex; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
#footer { background: var(--navy); color: var(--white); }
.footer-top { padding: clamp(48px,7vw,72px) 0 40px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; }
.footer-logo { height: 58px; width: auto; background: var(--white); border-radius: 8px; padding: 6px 12px; object-fit: contain; display: block; margin-bottom: 14px; }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 5px; font-style: italic; }
.footer-loc { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.3); font-style: normal; }
.footer-col h4 { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.5); transition: color var(--tr); }
.footer-col a:hover { color: var(--red); }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.28); }

/* ─── DRIVE WITH US ──────────────────────────────────────────── */
.drivers-section { padding: var(--sec-v) 0; background: var(--navy); }
.drivers-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px,6vw,72px); align-items: start; margin-bottom: 56px; }
.drivers-text .sec-tag { color: var(--red); }
.drivers-text h2 { font-family: var(--display); font-size: clamp(26px,3.5vw,42px); font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.drivers-lead { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 24px; }
.drv-perks { display: flex; flex-direction: column; gap: 12px; }
.drv-perk { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,.8); }
.drv-perk svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

.vehicles-title { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.vehicles-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 24px; }
.vehicle-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 16px 10px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: all var(--tr); position: relative;
}
.vehicle-card:hover { border-color: var(--red); background: rgba(204,34,0,.1); }
.vehicle-card.featured { border-color: var(--red); background: rgba(204,34,0,.08); }
.vehicle-icon { color: rgba(255,255,255,.8); }
.vehicle-icon svg { width: 56px; height: 35px; }
.vehicle-card span { font-size: 11px; font-family: var(--display); font-weight: 900; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.vehicle-best { font-size: 9px !important; color: var(--red) !important; background: rgba(204,34,0,.15); padding: 2px 8px; border-radius: 100px; font-family: var(--mono) !important; letter-spacing: .1em !important; }

.drv-req { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r); padding: 18px 20px; }
.drv-req-title { font-family: var(--mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 12px; }
.drv-req ul { display: flex; flex-direction: column; gap: 6px; }
.drv-req li { font-size: 13px; color: rgba(255,255,255,.75); padding-left: 16px; position: relative; }
.drv-req li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-size: 11px; font-weight: 900; }

.drv-apply-wrap { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-top: 3px solid var(--red); border-radius: var(--r); padding: clamp(28px,3.5vw,44px); }
.drv-apply-header { margin-bottom: 28px; }
.drv-apply-header h3 { font-family: var(--display); font-size: clamp(18px,2.2vw,24px); font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.drv-apply-header p { font-size: 14px; color: rgba(255,255,255,.6); }
.drv-form { display: flex; flex-direction: column; gap: 16px; }
.drv-form .form-g input, .drv-form .form-g select { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: var(--white); }
.drv-form .form-g input::placeholder { color: rgba(255,255,255,.35); }
.drv-form .form-g input:focus, .drv-form .form-g select:focus { border-color: var(--red); background: rgba(255,255,255,.12); }
.drv-form .form-g label { color: rgba(255,255,255,.55); }
.drv-form .form-g select option { background: var(--navy); color: var(--white); }
.drv-submit { background: var(--red); color: var(--white); border: 2px solid var(--red); font-family: var(--display); font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; padding: 14px 28px; border-radius: var(--r); cursor: pointer; transition: all var(--tr); }
.drv-submit:hover { background: var(--red-h); transform: translateY(-1px); }

/* ─── QUICK QUOTE BAR ────────────────────────────────────────── */
.quick-quote-section { background: var(--navy-2); padding: 28px 0; border-bottom: 3px solid var(--red); }
.qq-wrap { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.qq-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 4px; }
.qq-text p { font-size: 13px; color: rgba(255,255,255,.65); white-space: nowrap; }
.qq-form { display: flex; gap: 10px; flex: 1; flex-wrap: wrap; min-width: 0; }
.qq-form input, .qq-form select {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); font-family: var(--sans); font-size: 13px;
  padding: 10px 14px; border-radius: var(--r); flex: 1; min-width: 140px; outline: none;
  transition: border-color var(--tr); -webkit-appearance: none;
}
.qq-form input::placeholder { color: rgba(255,255,255,.4); }
.qq-form input:focus, .qq-form select:focus { border-color: var(--red); }
.qq-form select option { background: var(--navy); color: var(--white); }
.qq-form button {
  background: var(--red); color: var(--white); border: none;
  font-family: var(--display); font-size: 12px; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 24px; border-radius: var(--r); cursor: pointer;
  white-space: nowrap; transition: all var(--tr); flex-shrink: 0;
}
.qq-form button:hover { background: var(--red-h); transform: translateY(-1px); }
.qq-success { display: none; align-items: center; gap: 8px; color: #4ade80; font-size: 14px; font-weight: 600; }
.qq-success.visible { display: flex; }

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.how-section { padding: var(--sec-v) 0; background: var(--white); }
.how-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0; margin-bottom: 40px; }
.how-step { text-align: center; padding: 0 16px; }
.how-num { font-family: var(--display); font-size: 48px; font-weight: 900; color: var(--red); opacity: .15; line-height: 1; margin-bottom: 12px; }
.how-icon { width: 64px; height: 64px; background: #FEF2F2; border: 1px solid rgba(204,34,0,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red); margin: 0 auto 16px; }
.how-icon svg { width: 30px; height: 30px; }
.how-step h3 { font-family: var(--display); font-size: 16px; font-weight: 900; text-transform: uppercase; color: var(--text); margin-bottom: 10px; }
.how-step p { font-size: 13px; color: var(--text-soft); line-height: 1.75; }
.how-connector { display: flex; align-items: center; justify-content: center; padding-top: 88px; color: var(--gray-200); }
.how-connector::before { content: '→'; font-size: 28px; font-weight: 300; }
.how-cta { text-align: center; }

/* ─── WHY CONDOR ─────────────────────────────────────────────── */
.why-section { padding: var(--sec-v) 0; background: var(--gray-50); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(24px,2.5vw,32px); transition: all var(--tr); text-align: center;
}
.why-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.why-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.why-card h3 { font-family: var(--display); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .01em; color: var(--text); margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--text-soft); line-height: 1.75; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section { padding: var(--sec-v) 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(24px,2.5vw,32px); background: var(--white); transition: all var(--tr);
}
.tcard:hover { border-color: var(--red); box-shadow: var(--sh); }
.tcard-stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.tcard > p { font-size: 14px; color: var(--text-mid); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar { width: 40px; height: 40px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 13px; font-weight: 900; flex-shrink: 0; }
.tcard-author strong { display: block; font-size: 13px; color: var(--text); font-weight: 700; margin-bottom: 2px; }
.tcard-author span { font-size: 11px; color: var(--text-soft); }

/* ─── CTA STRIP ──────────────────────────────────────────────── */
.cta-strip { background: var(--red); padding: clamp(40px,5vw,64px) 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip h2 { font-family: var(--display); font-size: clamp(22px,3vw,32px); font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.cta-strip p { font-size: 15px; color: rgba(255,255,255,.8); max-width: 560px; line-height: 1.7; }
.cta-strip-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.btn-white { display: inline-flex; align-items: center; background: var(--white); color: var(--red); font-family: var(--display); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; padding: 14px 28px; border: 2px solid var(--white); border-radius: var(--r); transition: all var(--tr); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-family: var(--display); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; padding: 14px 24px; border: 2px solid rgba(255,255,255,.5); border-radius: var(--r); transition: all var(--tr); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section { padding: var(--sec-v) 0; background: var(--gray-50); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 16px; text-align: left;
  font-family: var(--display); font-size: 15px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .01em; color: var(--text);
  transition: color var(--tr);
}
.faq-q:hover { color: var(--red); }
.faq-arrow { flex-shrink: 0; transition: transform var(--tr); color: var(--gray-400); }
.faq-q[aria-expanded="true"] { color: var(--red); }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--red); }
.faq-a { display: none; padding: 0 0 20px; }
.faq-a.open { display: block; }
.faq-a p { font-size: 14px; color: var(--text-mid); line-height: 1.85; }

/* ─── FLOATING BUTTONS ───────────────────────────────────────── */
.float-actions { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 100px;
  font-family: var(--display); font-size: 12px; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: all var(--tr);
  white-space: nowrap;
}
.float-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.float-wa { background: #25D366; color: var(--white); }
.float-call { background: var(--red); color: var(--white); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .clients-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .how-grid { grid-template-columns: 1fr; }
  .how-connector { padding-top: 0; transform: rotate(90deg); margin: 8px 0; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .drivers-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .qq-wrap { flex-direction: column; align-items: stretch; }
  .qq-text p { white-space: normal; }
  .qq-form { flex-direction: column; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-btns { justify-content: center; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .float-btn svg { width: 22px; height: 22px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-h1 { font-size: clamp(36px,10vw,52px); }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { grid-template-columns: 48px 1fr; }
  .svc-icon { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.2); }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; }
  .clients-grid { grid-template-columns: 1fr; }
  .states-grid { grid-template-columns: repeat(2,1fr); }
  .partners-row { gap: 12px; }
  .p-badge { padding: 0 12px; }
}
