/* ============================================================
   ARC LIMO — PAGE STYLES
   Homepage, service pages, book a ride, get a quote, contact
   ============================================================ */

/* ============================================================
   CINEMATIC HERO (homepage + service pages)
   ============================================================ */
.hero-cinema {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Warm cinematic gradient — replace with actual photo when ready */
  background:
    linear-gradient(180deg,
      rgba(11, 9, 8, 0.45) 0%,
      rgba(11, 9, 8, 0.65) 50%,
      rgba(11, 9, 8, 0.92) 100%),
    url('../assets/Home\ Image.png') center / cover no-repeat;
    background-position: center top;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(200, 168, 75, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 65%, rgba(200, 168, 75, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle film grain overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-cinema-inner {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow-c {
  font-size: var(--text-xs);
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease-out) 200ms forwards;
}

.hero-h1-c {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  font-weight: 500;
  line-height: 1.04;
  color: var(--chalk);
  letter-spacing: -0.015em;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease-out) 320ms forwards;
}

.hero-h1-c em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub-c {
  font-size: var(--text-md);
  color: var(--chalk-2);
  font-weight: 300;
  line-height: 1.65;
  max-width: 60ch;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease-out) 440ms forwards;
}

.hero-btns-c {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease-out) 560ms forwards;
}

.btn-gold-lg {
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1.1rem 2.6rem;
  border-radius: var(--r);
  min-height: 52px;
  transition: opacity 200ms var(--ease-out), transform 120ms var(--ease-out), box-shadow 240ms var(--ease-out);
  box-shadow: 0 6px 28px rgba(200, 168, 75, 0.25);
  display: inline-block;
  text-align: center;
}

.btn-gold-lg:hover {
  opacity: 0.94;
  box-shadow: 0 10px 36px rgba(200, 168, 75, 0.38);
  transform: translateY(-2px);
}

.btn-gold-lg:active {
  transform: scale(0.97);
}

.btn-outline-lg {
  background: rgba(11, 9, 8, 0.4);
  color: var(--chalk);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.1rem 2.6rem;
  border-radius: var(--r);
  min-height: 52px;
  border: 1px solid rgba(242, 237, 227, 0.28);
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out), transform 120ms var(--ease-out);
  backdrop-filter: blur(8px);
  display: inline-block;
  text-align: center;
}

.btn-outline-lg:hover {
  border-color: var(--gold-2);
  background: rgba(11, 9, 8, 0.6);
}

.btn-outline-lg:active {
  transform: scale(0.97);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--chalk-2);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease-out) 680ms forwards;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stars {
  color: var(--gold);
  letter-spacing: 0.04em;
}

.hero-stat-divider {
  width: 1px;
  height: 14px;
  background: var(--line);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--chalk-3);
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease-out) 900ms forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.4s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.65); opacity: 1; }
}

/* ============================================================
   CLIENT LOGOS STRIP (homepage)
   ============================================================ */
.clients-strip {
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 3rem;
}

.clients-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.6;
}

.client-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--chalk);
  letter-spacing: 0.08em;
  transition: opacity 200ms var(--ease-out), color 200ms var(--ease-out);
}

.client-name:hover {
  color: var(--gold);
}

/* ============================================================
   TICKER MARQUEE
   ============================================================ */
.ticker {
  overflow: hidden;
  background: var(--ink-3);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tick 32s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.t-chip {
  font-size: var(--text-xs);
  letter-spacing: 0.26em;
  color: var(--chalk-3);
  text-transform: uppercase;
  flex-shrink: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.t-chip::after {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
  opacity: 0.6;
}

/* ============================================================
   SERVICES LAYOUT (homepage)
   ============================================================ */
.sec {
  padding: 6rem 3rem;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 2rem;
  transition: gap 200ms var(--ease-out);
  padding: 0.2rem 0.3rem;
  border-radius: var(--r-sm);
}

.view-all:hover {
  gap: 0.85rem;
}

.svc-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
}

.svc-intro {
  padding: 6rem 3rem;
  border-right: 1px solid var(--line);
}

.svc-list {
  display: flex;
  flex-direction: column;
}

.svc-row {
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.9rem 2.5rem;
  border-bottom: 1px solid var(--line);
  transition: background 200ms var(--ease-out);
  cursor: pointer;
}

.svc-row:last-child {
  border-bottom: none;
}

.svc-row:hover {
  background: var(--ink-2);
}

.svc-row:hover .svc-n {
  color: var(--gold);
}

.svc-row:hover .svc-arr {
  transform: translate(4px, -4px);
  color: var(--gold);
}

.svc-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--mist-2);
  transition: color 200ms var(--ease-out);
  text-align: right;
  line-height: 1;
}

.svc-body h3 {
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.svc-body p {
  font-size: var(--text-sm);
  color: var(--chalk-3);
  font-weight: 300;
  line-height: 1.7;
  max-width: 60ch;
}

.svc-arr {
  font-size: 18px;
  color: var(--mist-2);
  transition: transform 200ms var(--ease-out), color 200ms var(--ease-out);
}

/* ============================================================
   FLEET (homepage + service pages)
   ============================================================ */
.fleet-sec {
  background: var(--ink-2);
  padding: 6rem 3rem;
}

.fleet-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.fcard {
  background: var(--ink-3);
  padding: 2rem 1.8rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition:
    background 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    transform 220ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
}

.fcard:hover {
  background: var(--ink-4);
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.fcard-badge {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-xl);
  display: inline-block;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.fcard h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.fcard-sub {
  font-size: var(--text-sm);
  color: var(--chalk-3);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.fcard-specs {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.spec-tag {
  font-size: var(--text-xs);
  color: var(--chalk-3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.spec-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.fcard-cta {
  display: block;
  margin-top: 1.6rem;
  width: 100%;
  text-align: center;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: var(--r);
  border: 1px solid var(--gold-border);
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out), transform 120ms var(--ease-out);
  min-height: 44px;
}

.fcard:hover .fcard-cta {
  background: var(--gold);
  color: var(--ink);
}

.fcard-cta:active {
  transform: scale(0.97);
}

/* ============================================================
   STATS / TRUST BAND
   ============================================================ */
.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tb-block {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background 200ms var(--ease-out);
}

.tb-block:last-child {
  border-right: none;
}

.tb-block:hover {
  background: var(--ink-2);
}

.tb-ico {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.tb-big {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.tb-title {
  font-size: var(--text-sm);
  color: var(--chalk);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.tb-note {
  font-size: var(--text-xs);
  color: var(--chalk-3);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================================
   WHY ARC SECTION
   ============================================================ */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-l {
  padding: 6rem 3rem;
  border-right: 1px solid var(--line);
}

.why-list {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  gap: 1.4rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.why-item:first-child {
  border-top: 1px solid var(--line);
}

.why-ico {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: var(--text-sm);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-body h4 {
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.why-body p {
  font-size: var(--text-sm);
  color: var(--chalk-3);
  font-weight: 300;
  line-height: 1.75;
  max-width: 60ch;
}

.why-r {
  padding: 6rem 3rem;
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.rev-card {
  padding: 1.8rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink);
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.rev-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.rev-stars {
  color: var(--gold);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.rev-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--chalk-2);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.rev-auth {
  font-size: var(--text-xs);
  color: var(--chalk-3);
  letter-spacing: 0.05em;
}

.rev-auth strong {
  color: var(--gold-2);
}

/* ============================================================
   HOW IT WORKS — 4-STEP PROCESS (Service pages)
   ============================================================ */
.process-sec {
  padding: 6rem 3rem;
  background: var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-border) 15%,
    var(--gold-border) 85%,
    transparent 100%);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  transition: background 220ms var(--ease-out), transform 220ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.process-step:hover .process-num {
  background: var(--gold-dim);
  transform: scale(1.05);
  box-shadow: 0 0 0 6px var(--gold-dim);
}

.process-step h4 {
  font-size: var(--text-md);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  color: var(--chalk);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--chalk-3);
  font-weight: 300;
  line-height: 1.7;
  max-width: 22ch;
}

/* ============================================================
   FAQ ACCORDION (homepage + service pages)
   ============================================================ */
.faq-sec {
  padding: 6rem 3rem;
  background: var(--ink-2);
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header .sec-lbl {
  justify-content: center;
}

.faq-header .sec-lbl::before {
  display: none;
}

.faq-header .sec-h2 {
  max-width: 22ch;
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.8rem 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font-size: var(--text-base);
  color: var(--chalk);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-family: inherit;
  transition: color 200ms var(--ease-out);
  min-height: 44px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 280ms var(--ease-out), opacity 200ms var(--ease-out);
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: var(--ink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms var(--ease-out), padding 360ms var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.8rem;
}

.faq-answer p {
  font-size: var(--text-sm);
  color: var(--chalk-3);
  line-height: 1.85;
  max-width: 70ch;
  font-weight: 300;
}

/* ============================================================
   CORPORATE CTA BANNER (NEW — for large company quotes)
   ============================================================ */
.corp-cta {
  padding: 5rem 3rem;
  background:
    linear-gradient(135deg, rgba(200, 168, 75, 0.06) 0%, transparent 50%),
    var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.corp-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(200, 168, 75, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.corp-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.corp-l h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--chalk);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.corp-l h2 em {
  color: var(--gold);
  font-style: italic;
}

.corp-l p {
  font-size: var(--text-md);
  color: var(--chalk-3);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 55ch;
}

.corp-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.corp-bullet {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: var(--text-sm);
  color: var(--chalk-2);
}

.corp-bullet::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  font-size: var(--text-base);
}

.corp-r {
  background: var(--ink-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
}

.corp-r .corp-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.corp-r h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--chalk);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.corp-r p {
  font-size: var(--text-sm);
  color: var(--chalk-3);
  margin-bottom: 1.8rem;
  line-height: 1.7;
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.corp-r .btn-gold {
  width: 100%;
}

/* ============================================================
   PAGE HEADER (forms + contact + services)
   ============================================================ */
.page-wrap {
  padding-top: 70px;
  min-height: 100vh;
  background: var(--ink);
}

.page-header {
  padding: 5rem 3rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 20%, rgba(200, 168, 75, 0.05) 0%, transparent 60%),
    var(--ink-2);
}

.page-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

.page-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--chalk);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.page-h1 em {
  color: var(--gold);
  font-style: italic;
}

.page-sub {
  font-size: var(--text-md);
  color: var(--chalk-3);
  font-weight: 300;
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto;
}

/* ============================================================
   FORM STYLES (book a ride + get a quote + contact)
   ============================================================ */
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--chalk-3);
  font-weight: 500;
  transition: background 280ms var(--ease-out), color 280ms var(--ease-out), border-color 280ms var(--ease-out);
}

.step-num.active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 600;
}

.step-num.done {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: var(--gold-border);
}

.step-line {
  width: 80px;
  height: 1px;
  background: var(--line);
  margin: 0 0.6rem;
  transition: background 280ms var(--ease-out);
}

.step-line.done {
  background: var(--gold);
}

.form-section {
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.form-section-title::before {
  content: '';
  display: block;
  width: 18px;
  height: 0.5px;
  background: var(--gold);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--chalk-2);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  font-weight: 400;
  text-transform: uppercase;
}

.form-label .req {
  color: var(--gold);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: var(--chalk);
  font-family: inherit;
  font-size: var(--text-sm);
  padding: 0.9rem 1rem;
  border-radius: var(--r);
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out);
  min-height: 48px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ink-3);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--mist);
}

.form-input.error {
  border-color: var(--danger);
}

.form-input[type="date"],
.form-input[type="time"] {
  color-scheme: dark;
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.6;
}

.form-helper {
  font-size: var(--text-xs);
  color: var(--chalk-3);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

.form-error {
  font-size: var(--text-xs);
  color: var(--danger);
  margin-top: 0.4rem;
  display: none;
}

.form-error.show {
  display: block;
}

/* Trip type selector */
.trip-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trip-type-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out), transform 120ms var(--ease-out);
  position: relative;
  font-family: inherit;
}

.trip-type-card:hover {
  border-color: var(--gold-border);
  background: var(--ink-3);
}

.trip-type-card:active {
  transform: scale(0.98);
}

.trip-type-card.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.trip-type-card.selected::after {
  content: '✓';
  position: absolute;
  top: 0.6rem;
  right: 0.85rem;
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: 700;
}

.trip-type-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

.trip-type-name {
  font-size: var(--text-sm);
  color: var(--chalk);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Toggle switch */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 1.5rem;
}

.toggle-label {
  font-size: var(--text-sm);
  color: var(--chalk);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--ink-4);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: background 240ms var(--ease-out), border-color 240ms var(--ease-out);
  flex-shrink: 0;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--mist);
  border-radius: 50%;
  transition: left 240ms var(--ease-out), background 240ms var(--ease-out);
}

.toggle-switch.on {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.toggle-switch.on::after {
  left: 22px;
  background: var(--gold);
}

.toggle-switch.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.toggle-helper {
  font-size: var(--text-xs);
  color: var(--chalk-3);
  margin-top: -0.8rem;
  margin-bottom: 1.5rem;
  padding-left: 1.3rem;
  display: none;
}

.toggle-helper.show {
  display: block;
}

/* Form actions */
.form-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 2.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn-back {
  background: transparent;
  color: var(--chalk-3);
  border: 1px solid var(--line);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--r);
  min-height: 48px;
  transition: border-color 200ms var(--ease-out), color 200ms var(--ease-out), transform 120ms var(--ease-out);
  font-family: inherit;
  font-weight: 500;
}

.btn-back:hover {
  border-color: var(--gold-2);
  color: var(--chalk);
}

.btn-back:active {
  transform: scale(0.97);
}

/* Vehicle selection */
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.vehicle-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.2rem;
  cursor: pointer;
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out), transform 120ms var(--ease-out);
  text-align: left;
  position: relative;
  font-family: inherit;
}

.vehicle-card:hover {
  border-color: var(--gold-border);
  background: var(--ink-3);
}

.vehicle-card:active {
  transform: scale(0.98);
}

.vehicle-card.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.vehicle-card.selected::after {
  content: '✓';
  position: absolute;
  top: 0.6rem;
  right: 0.85rem;
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: 700;
}

.vehicle-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--chalk);
  margin-bottom: 0.3rem;
}

.vehicle-cap {
  font-size: var(--text-xs);
  color: var(--chalk-3);
  letter-spacing: 0.04em;
}

.vehicle-price {
  font-size: var(--text-xs);
  color: var(--gold);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Success message */
.success-msg {
  background: var(--ink-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 3rem 2rem;
  text-align: center;
  display: none;
}

.success-msg.show {
  display: block;
  animation: successFade 480ms var(--ease-out);
}

@keyframes successFade {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.success-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  font-size: 1.8rem;
}

.success-msg h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--chalk);
  margin-bottom: 0.8rem;
}

.success-msg p {
  font-size: var(--text-sm);
  color: var(--chalk-3);
  line-height: 1.75;
  max-width: 42ch;
  margin: 0 auto 2rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
  gap: 4rem;
}

.contact-info-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.contact-info-col p {
  font-size: var(--text-md);
  color: var(--chalk-3);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 55ch;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.4rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-2);
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out), transform 200ms var(--ease-out);
  min-height: 64px;
}

.contact-method:hover {
  border-color: var(--gold-border);
  background: var(--ink-3);
  transform: translateX(4px);
}

.cm-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cm-info {
  flex: 1;
}

.cm-lbl {
  font-size: var(--text-xs);
  color: var(--chalk-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.cm-val {
  font-size: var(--text-base);
  color: var(--chalk);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cm-sub {
  font-size: var(--text-xs);
  color: var(--chalk-3);
  margin-top: 0.2rem;
  font-weight: 300;
}

.contact-hours {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.contact-hours .sec-lbl {
  margin-bottom: 0.8rem;
}

.contact-hours .sec-lbl::before {
  display: none;
}

.contact-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--chalk-2);
}

.contact-hours-row strong {
  color: var(--chalk);
  font-weight: 500;
}

.contact-hours-note {
  font-size: var(--text-xs);
  color: var(--gold);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

/* Contact form */
.contact-form-col {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  align-self: start;
}

.contact-form-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}

.contact-form-col p {
  font-size: var(--text-sm);
  color: var(--chalk-3);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   SERVICE PAGES (specific hero)
   ============================================================ */
.service-hero {
  min-height: 80vh;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg,
      rgba(11, 9, 8, 0.95) 0%,
      rgba(11, 9, 8, 0.7) 35%,
      rgba(11, 9, 8, 0.4) 65%,
      rgba(11, 9, 8, 0.85) 100%),
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(80, 50, 30, 0.4) 0%, transparent 70%),
    linear-gradient(135deg, #1F1714 0%, #100A07 70%);
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem;
  max-width: 1100px;
}

.service-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  font-weight: 500;
  line-height: 1.04;
  color: var(--chalk);
  margin: 1.8rem 0;
  letter-spacing: -0.015em;
  max-width: 14ch;
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease-out) 200ms forwards;
}

.service-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.service-hero-sub {
  font-size: var(--text-md);
  color: var(--chalk-2);
  font-weight: 300;
  line-height: 1.65;
  max-width: 55ch;
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease-out) 360ms forwards;
}

.service-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease-out) 80ms forwards;
}

.service-hero-eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 0.5px;
  background: var(--gold);
}

.service-hero-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease-out) 500ms forwards;
}

.service-hero-stats {
  margin-top: 2.5rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--chalk-2);
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease-out) 640ms forwards;
  flex-wrap: wrap;
}

.service-corporate .service-hero-bg {
  background:
    linear-gradient(105deg, rgba(11,9,8,0.88) 0%, rgba(11,9,8,0.5) 50%, rgba(11,9,8,0.85) 100%),
    url('../assets/hero-corporate.png') center / cover no-repeat;
}

.service-airport .service-hero-bg {
  background:
    linear-gradient(105deg, rgba(11,9,8,0.88) 0%, rgba(11,9,8,0.5) 50%, rgba(11,9,8,0.85) 100%),
    url('../assets/hero-airport.png') center / cover no-repeat;
}

.service-limousine .service-hero-bg {
  background:
    linear-gradient(105deg, rgba(11,9,8,0.88) 0%, rgba(11,9,8,0.5) 50%, rgba(11,9,8,0.85) 100%),
    url('../assets/hero-limousine.png') center / cover no-repeat;
}

.service-events .service-hero-bg {
  background:
    linear-gradient(105deg, rgba(11,9,8,0.88) 0%, rgba(11,9,8,0.5) 50%, rgba(11,9,8,0.85) 100%),
    url('../assets/hero-events.png') center / cover no-repeat;
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-cinema-inner {
    padding: 3rem 1.5rem;
  }

  .clients-strip {
    padding: 1.5rem 1rem;
  }

  .clients-track {
    gap: 2rem;
  }

  .sec {
    padding: 4rem 1.5rem;
  }

  .fleet-sec {
    padding: 4rem 1.5rem;
  }

  .svc-layout {
    grid-template-columns: 1fr;
  }

  .svc-intro {
    border-right: none;
    padding: 4rem 1.5rem;
  }

  .svc-row {
    padding: 1.5rem 1.2rem;
  }

  .trust-band {
    grid-template-columns: 1fr 1fr;
  }

  .tb-block:nth-child(2) {
    border-right: none;
  }

  .tb-block {
    padding: 2.2rem 1.2rem;
  }

  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-l {
    border-right: none;
    padding: 4rem 1.5rem;
  }

  .why-r {
    padding: 3.5rem 1.5rem;
  }

  .process-sec {
    padding: 4rem 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 1.2rem;
    padding: 0;
  }

  .process-num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .process-step p {
    max-width: 100%;
  }

  .faq-sec {
    padding: 4rem 1.5rem;
  }

  .corp-cta {
    padding: 4rem 1.5rem;
  }

  .corp-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-wrap {
    padding: 3rem 1.5rem 4rem;
  }

  .page-header {
    padding: 4rem 1.5rem 2.5rem;
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem;
    gap: 3rem;
  }

  .contact-form-col {
    padding: 2rem 1.5rem;
  }

  .service-hero {
    min-height: 70vh;
  }

  .service-hero-inner {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 500px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .trust-band {
    grid-template-columns: 1fr 1fr;
  }

  .trip-type-grid {
    grid-template-columns: 1fr;
  }

  .clients-track {
    gap: 1.5rem;
  }

  .client-name {
    font-size: 0.95rem;
  }
}

/* ============================================================
   ELEVATED SECTIONS + SEAMLESS BLENDING
   Applying: impeccable (tinted neutrals, rhythm),
   Emil's design eng (transitions under 300ms, ease-out),
   taste-skill (anti-default, intentional elevation)
   ============================================================ */

/* ── BOXED ELEVATED SECTIONS ── */
.fleet-sec,
.faq-sec,
.corp-cta,
.trust-band {
  margin: 2.5rem 3rem;
  border-radius: 20px;
  border: 1px solid rgba(200, 168, 75, 0.13);
  box-shadow:
    0 0 0 1px rgba(200, 168, 75, 0.04),
    0 4px 8px rgba(11, 9, 8, 0.35),
    0 16px 48px rgba(11, 9, 8, 0.45),
    inset 0 1px 0 rgba(200, 168, 75, 0.07);
  overflow: hidden;
  position: relative;
}

/* Subtle warm top-edge highlight on each box */
.fleet-sec::before,
.faq-sec::before,
.corp-cta::before,
.trust-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 168, 75, 0.22) 35%,
    rgba(200, 168, 75, 0.22) 65%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ── FLEET CARDS — deeper elevation ── */
.fcard {
  box-shadow:
    0 2px 4px rgba(11, 9, 8, 0.3),
    0 8px 20px rgba(11, 9, 8, 0.35),
    inset 0 1px 0 rgba(200, 168, 75, 0.05);
  transition:
    background 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    transform 220ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.fcard:hover {
  box-shadow:
    0 4px 8px rgba(11, 9, 8, 0.4),
    0 20px 56px rgba(11, 9, 8, 0.55),
    0 0 0 1px rgba(200, 168, 75, 0.18),
    inset 0 1px 0 rgba(200, 168, 75, 0.1);
}

/* ── SEAMLESS SECTION BLENDING ── */

/* Fade out of the hero into the clients strip */
.hero-cinema {
  border-bottom: none;
}

.clients-strip {
  position: relative;
  border-top: none;
}

.clients-strip::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--ink) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Services section blends into corp-cta */
.svc-layout {
  border-bottom: none;
  position: relative;
}

.svc-layout::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--ink) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Why Arc section fades into fleet */
.why-layout {
  border-bottom: none;
  position: relative;
}

.why-layout::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--ink) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Trust band blends up from why-arc */
.trust-band {
  position: relative;
}

/* FAQ section — warm ambient glow inside */
.faq-sec {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(200, 168, 75, 0.04) 0%, transparent 60%),
    var(--ink-2);
}

/* Corp CTA — stronger gold ambient */
.corp-cta {
  background:
    radial-gradient(ellipse 70% 50% at 30% 50%, rgba(200, 168, 75, 0.05) 0%, transparent 60%),
    var(--ink);
}

/* Review cards — lift on hover */
.rev-card {
  transition:
    border-color 220ms var(--ease-out),
    transform 220ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
  box-shadow:
    0 2px 8px rgba(11, 9, 8, 0.3),
    inset 0 1px 0 rgba(200, 168, 75, 0.04);
}

.rev-card:hover {
  box-shadow:
    0 8px 28px rgba(11, 9, 8, 0.45),
    0 0 0 1px rgba(200, 168, 75, 0.14),
    inset 0 1px 0 rgba(200, 168, 75, 0.08);
}

/* ── MOBILE — reduce margins on small screens ── */
@media (max-width: 900px) {
  .fleet-sec,
  .faq-sec,
  .corp-cta,
  .trust-band {
    margin: 1.5rem 1rem;
    border-radius: 14px;
  }
}

/* Box the Why Arc section too */
.why-layout {
  margin: 2.5rem 3rem;
  border-radius: 20px;
  border: 1px solid rgba(200, 168, 75, 0.13);
  box-shadow:
    0 0 0 1px rgba(200, 168, 75, 0.04),
    0 4px 8px rgba(11, 9, 8, 0.35),
    0 16px 48px rgba(11, 9, 8, 0.45),
    inset 0 1px 0 rgba(200, 168, 75, 0.07);
  overflow: hidden;
}

/* Box the Services section too */
.svc-layout {
  margin: 2.5rem 3rem;
  border-radius: 20px;
  border: 1px solid rgba(200, 168, 75, 0.13);
  box-shadow:
    0 0 0 1px rgba(200, 168, 75, 0.04),
    0 4px 8px rgba(11, 9, 8, 0.35),
    0 16px 48px rgba(11, 9, 8, 0.45),
    inset 0 1px 0 rgba(200, 168, 75, 0.07);
  overflow: hidden;
}

/* Mobile */
@media (max-width: 900px) {
  .why-layout,
  .svc-layout {
    margin: 1.5rem 1rem;
    border-radius: 14px;
  }
}
/* ── SCROLL OFFSET FIX — clears the fixed nav ── */
#services,
#fleet,
#why,
#faq,
#contact,
#coverage {
  scroll-margin-top: 90px;
}
/* Fix scroll offset for boxed sections */
.svc-layout,
.fleet-sec,
.why-layout,
.faq-sec,
.trust-band,
.corp-cta {
  scroll-margin-top: 90px;
}
/* ── FLEET CARD IMAGES ── */
.fcard-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r);
  margin-bottom: 1.2rem;
  display: block;
}
/* ── MOBILE HERO — fix scroll indicator overlapping stats ── */
@media (max-width: 900px) {
  .scroll-indicator {
    display: none;
  }

  .hero-stats {
    margin-bottom: 3rem;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-cinema-inner {
    padding-bottom: 4rem;
  }
}