/* ============================================
   BLACKLANE NG — Luxury Mobility · Abuja
   Executive · Black & White · Premium
   v3 — Fixed nav, logo, hero padding, standards
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap");

:root {
  --black:        #080808;
  --black-soft:   #0f0f0f;
  --black-mid:    #1a1a1a;
  --black-card:   #141414;
  --gray-dark:    #2c2c2c;
  --gray-mid:     #555;
  --gray-light:   #888;
  --gray-pale:    #bbb;
  --white:        #ffffff;
  --white-off:    #f4f3f1;
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.22);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "DM Sans", "Helvetica Neue", sans-serif;
  --max-w:   1240px;
  --nav-h:   72px;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; line-height: 1.7; }
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
ul { list-style: none; }

/* ─── LAYOUT ─── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.5rem; }
.section__pad { padding-block: 7rem; }

/* ─── TYPE ─── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gray-light); margin-bottom: 1.25rem; display: block;
}
.eyebrow.center { text-align: center; }

.headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.025em; color: var(--white); margin-bottom: 1.75rem;
}
.headline em { font-style: italic; }
.headline.center { text-align: center; }
.headline.xl { font-size: clamp(2.8rem, 7vw, 5.5rem); }

.lead {
  font-size: 1rem; line-height: 1.85;
  color: var(--gray-pale); font-weight: 300;
}
.lead.center { text-align: center; max-width: 540px; margin-inline: auto; margin-bottom: 4rem; }
.body__text { font-size: 1rem; line-height: 1.9; color: var(--gray-pale); }
/* .body__text { font-size: 0.92rem; line-height: 1.9; color: var(--gray-light); } */

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.88rem 2rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; border: none; outline: none;
  transition: all 0.35s var(--ease); white-space: nowrap;
}
.btn--white  { background: var(--white); color: var(--black); }
.btn--white:hover  { background: var(--white-off); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,0.1); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid var(--border-hover); }
.btn--outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
nav#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  transition: background 0.5s var(--ease), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
nav#navbar.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--max-w); margin-inline: auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  /* CRITICAL: prevent overflow from pushing children */
  min-width: 0;
}

/* ── Logo: max 100px icon, tight layout ── */
.nav__logo {
  display: flex; align-items: center; gap: 0.65rem;
  flex-shrink: 0; min-width: 0;
  text-decoration: none;
}
.nav__logo__icon {
  max-width: 130px;            /* tight — icon only */
  object-fit: contain; flex-shrink: 0;
  padding-top: .5rem;
}
/* .nav__logo__icon {
  width: 40px; height: 40px;
  max-width: 40px;            
  object-fit: contain; flex-shrink: 0;
} */
.nav__logo__text {
  display: flex; flex-direction: column; line-height: 1;
  /* Hide tagline on small screens to save space */
}
.nav__logo__text .brand {
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--white);
  white-space: nowrap;
}
.nav__logo__text .tagline {
  font-size: 0.48rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gray-light);
  margin-top: 3px; white-space: nowrap;
}

/* ── Nav links: hidden on mobile, row on desktop ── */
.nav__links {
  display: none;          /* hidden until 768px */
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
  /* Prevent wrapping on any viewport */
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}
.nav__links li { flex-shrink: 0; }
.nav__links a {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); position: relative;
  white-space: nowrap;
}
.nav__links a::after {
  content: ""; position: absolute;
  bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--white); transition: width 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { flex-shrink: 0; }
.nav__cta .btn { padding: 0.68rem 1.35rem; font-size: 0.68rem; }
.nav__links a.btn{color: black}
/* ── Hamburger ── */
.nav__menu__btn {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; flex-shrink: 0; background: transparent;
}
.nav__menu__btn span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: all 0.3s var(--ease);
}
.nav__menu__btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__menu__btn.open span:nth-child(2) { opacity: 0; }
.nav__menu__btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile menu overlay ── */
.mobile__nav {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,8,8,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.5rem 2.25rem;
  display: flex; flex-direction: column; gap: 0;
  transform: translateY(-110%); opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s; z-index: 99;
}
.mobile__nav.open { transform: translateY(0); opacity: 1; }
.mobile__nav a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.82);
  border-bottom: 1px solid var(--border); padding: 1.2rem 0;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile__nav .nav__m__cta { border-bottom: none; padding-bottom: 0; padding-top: 1.5rem; }
.mobile__nav .btn { width: 100%; justify-content: center;  color: black; }

/* ─── PAGE HERO (inner pages) ─── */
.page__hero {
  min-height: 42vh; display: flex;
  flex-direction: column; justify-content: flex-end;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page__hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18; transform: scale(1.05);
}
.page__hero__content { position: relative; z-index: 2; padding: 4rem 0; }
.breadcrumb { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1.5rem; }
.breadcrumb a, .breadcrumb span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }

/* ─── HERO CAROUSEL ─── */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }
.hero__swiper { height: 100%; }
.swiper-slide { position: relative; overflow: hidden; }
.slide__bg {
  position: absolute; inset: 0;
  background-position: center 40%; background-size: cover;
  transform: scale(1.06); transition: transform 8s ease;
}
.swiper-slide-active .slide__bg { transform: scale(1); }
.slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.62) 52%,
    rgba(8,8,8,0.2) 100%
  );
}

/* ── FIXED: slide content uses same container logic as .container ── */
.slide__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  /* Match .container exactly */
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 1.5rem;
  padding-top: calc(var(--nav-h) + 3rem);
}

.slide__content .btn{
  width:fit-content;
}

.slide__counter {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.55em; color: rgba(255,255,255,0.3); margin-bottom: 1.5rem;
  opacity: 0; transform: translateX(-15px);
  transition: opacity 0.7s 0.2s var(--ease), transform 0.7s 0.2s var(--ease);
}
.swiper-slide-active .slide__counter { opacity: 1; transform: translateX(0); }

.slide__eyebrow {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.42em;
  text-transform: uppercase; color: rgba(255,255,255,0.48); margin-bottom: 1.25rem;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.8s 0.38s var(--ease), transform 0.8s 0.38s var(--ease);
}
.swiper-slide-active .slide__eyebrow { opacity: 1; transform: translateY(0); }

.slide__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8.5vw, 8rem);
  font-weight: 300; line-height: 0.9; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.9s 0.55s var(--ease), transform 0.9s 0.55s var(--ease);
}
.slide__title em { display: block; font-style: italic; }
.swiper-slide-active .slide__title { opacity: 1; transform: translateY(0); }

.slide__sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.52); margin-bottom: 2.5rem;
  max-width: 380px; line-height: 1.7;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.8s 0.82s var(--ease), transform 0.8s 0.82s var(--ease);
}
.swiper-slide-active .slide__sub { opacity: 1; transform: translateY(0); }

.slide__actions {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s 1s var(--ease), transform 0.8s 1s var(--ease);
} 
.swiper-slide-active .slide__actions { opacity: 1; transform: translateY(0); }

/* Swiper UI */
.swiper-pagination { bottom: 2.5rem !important; left: 1.5rem !important; width: auto !important; display: flex !important; gap: 0.5rem; align-items: center; justify-content: center; left:50% !important; transform: translateX(-50%) !important }
.swiper-pagination-bullet { width: 26px !important; height: 2px !important; border-radius: 0 !important; background: rgba(255,255,255,0.28) !important; opacity: 1 !important; transition: all 0.4s !important; }
.swiper-pagination-bullet-active { width: 52px !important; background: var(--white) !important; }
.hero__prev, .hero__next { width: 50px !important; height: 50px !important; border: 1px solid rgba(255,255,255,0.2) !important; color: var(--white) !important; font-size: 1.1rem !important; transition: all 0.3s !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.hero__prev:hover, .hero__next:hover { background: var(--white) !important; color: var(--black) !important; border-color: var(--white) !important; }
.hero__prev::after, .hero__next::after { display: none !important; }
.hero__prev { left: 1.5rem !important; }
.hero__next { right: 1.5rem !important; }

.hero__scroll { position: absolute; bottom: 2.5rem; right: 2rem; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.hero__scroll span { font-size: 0.55rem; letter-spacing: 0.35em; color: rgba(255,255,255,0.3); writing-mode: vertical-rl; text-transform: uppercase; }
.hero__scroll__line { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: 0.4; } 50% { transform: scaleY(0.5); opacity: 1; } }

/* ─── MARQUEE ─── */
.marquee__strip { background: var(--white); padding: 0.88rem 0; overflow: hidden; }
.marquee__inner { display: flex; width: max-content; animation: marqueeScroll 38s linear infinite; }
.marquee__track { display: flex; align-items: center; gap: 2.5rem; padding-right: 2.5rem; }
.marquee__track span { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--black); white-space: nowrap; }
.marquee__track .dot { color: #aaa; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── ABOUT (home) ─── */
.about__pillars{margin: .75rem 0;}
.about__body{margin: .75rem 0;}
.about__grid { display: grid; gap: 4.5rem; align-items: center; }
.about__visual { position: relative; padding-bottom: 3rem; padding-right: 1.5rem; }
.about__img__main { aspect-ratio: 3/2; overflow: hidden; }
.about__img__main img { height: 100%; object-fit: contain; transition: transform 0.7s var(--ease); }
.about__img__main:hover img { transform: scale(1.04); }
.about__img__accent { position: absolute; bottom: 0; right: 0; width: 52%; aspect-ratio: 4/3; overflow: hidden; border: 3px solid var(--black); box-shadow: 0 24px 60px rgba(0,0,0,0.65); }
.about__img__accent img { height: 100%; object-fit: cover; }
.about__badge { position: absolute; top: -2rem; left: -1.25rem; background: var(--white); color: var(--black); padding: 1.35rem 1.65rem; min-width: 130px; }
.about__badge .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; line-height: 1; display: block; }
.about__badge .lbl { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-mid); margin-top: 4px; display: block; }
.about__text .lead { margin-bottom: 1.5rem; }
.about__text .body__text { margin-bottom: 2.75rem; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2.75rem; }
.pillar { padding: 1rem 1.25rem; border: 1px solid var(--border); display: flex; align-items: center; gap: 0.85rem; transition: border-color 0.3s; }
.pillar:hover { border-color: var(--border-hover); }
.pillar i { font-size: 1.15rem; color: var(--white); flex-shrink: 0; }
.pillar span { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.8); }

/* ─── STATS BAR ─── */
.stats__bar { background: var(--black-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding-block: 3.5rem; }
.stats__grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around; gap: 2rem; }
.stat__item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 120px; }
.stat__number { font-family: var(--font-display); font-size: 3.2rem; font-weight: 400; color: var(--white); line-height: 1; }
.stat__number sup { font-size: 1.4rem; vertical-align: super; }
.stat__label { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-light); margin-top: 0.6rem; }
.stat__divider { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* ─── SERVICES GRID ─── */
.services__grid { display: grid; gap: 1px; background: var(--border); }
.service__card { background: var(--black-card); overflow: hidden; transition: background 0.3s; }
.service__card:hover { background: var(--black-mid); }
.service__card__img { height: 230px; overflow: hidden; }
.service__card__img img { height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.service__card:hover .service__card__img img { transform: scale(1.06); }
.service__card__body { padding: 2rem 1.75rem 2.25rem; }
.service__icon { width: 44px; height: 44px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white); margin-bottom: 1.25rem; transition: all 0.3s; }
.service__card:hover .service__icon { background: var(--white); color: var(--black); border-color: var(--white); }
.service__card__body h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--white); margin-bottom: 0.85rem; }
.service__card__body p { font-size: 0.88rem; line-height: 1.8; color: var(--gray-light); }
.badge--exclusive { display: inline-block; margin-top: 1.25rem; padding: 0.3rem 0.9rem; background: var(--white); color: var(--black); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; }
.service__card--accent { border-top: 2px solid var(--white); }

/* ─── HOW IT WORKS ─── */
.how { background: var(--black-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how__steps { margin-top: 4rem; }
.how__step { display: grid; grid-template-columns: 72px 1fr; gap: 1.75rem; padding: 2.25rem 0; border-bottom: 1px solid var(--border); }
.how__step:last-child { border-bottom: none; }
.step__num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: rgba(255,255,255,0.1); line-height: 1; padding-top: 0.2rem; }
.step__content h4 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--white); margin-bottom: 0.65rem; }
.step__content p { font-size: 0.9rem; line-height: 1.8; color: var(--gray-light); max-width: 520px; }

/* ─── FLEET ─── */
.fleet__grid { display: grid; gap: 1.5rem; }
.fleet__card { position: relative; overflow: hidden; background: var(--black-mid); }
.fleet__card__img { aspect-ratio: 16/9; overflow: hidden; }
.fleet__card__img img { height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.fleet__card:hover .fleet__card__img img { transform: scale(1.04); }
.fleet__card__info { padding: 1.5rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--border); }
.fleet__card__info h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--white); margin-bottom: 0.35rem; }
.fleet__card__info p { font-size: 0.82rem; color: var(--gray-light); line-height: 1.6; }
.fleet__tags { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; flex-shrink: 0; }
.fleet__tag { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-light); background: var(--border); padding: 0.25rem 0.65rem; white-space: nowrap; }

/* ─── APP DOWNLOAD ─── */
.app__section { background: var(--black-soft); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.app__section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.025) 0%, transparent 65%); pointer-events: none; }
.app__intro { text-align: center; margin-bottom: 5rem; position: relative; z-index: 1; }
.app__intro .headline { margin-bottom: 1.25rem; }
.app__cards { display: grid; gap: 1.5px; background: var(--border); position: relative; z-index: 1; }
.app__card { background: var(--black-card); overflow: hidden; }
.app__card__inner { display: grid; }
.app__card__content { padding: 3rem 2.5rem; }
.app__type__label { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.25rem; }
.app__icon__img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.app__type__info { display: flex; flex-direction: column; }
.app__type__info .app__tag { font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gray-light); }
.app__type__info .app__name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; color: var(--white); margin-top: 0.2rem; }
.app__card__content .lead { font-size: 0.93rem; margin-bottom: 2rem; max-width: 420px; color: var(--gray-light); }
.app__features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-bottom: 2.5rem; }
.app__feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: rgba(255,255,255,0.72); }
.app__feature i { font-size: 0.82rem; color: var(--white); flex-shrink: 0; }
.store__btns { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.store__btn { display: flex; align-items: center; gap: 0.75rem; padding: 0.88rem 1.45rem; border: 1px solid rgba(255,255,255,0.18); background: transparent; color: var(--white); transition: all 0.3s var(--ease); cursor: pointer; text-decoration: none; }
.store__btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.store__btn i { font-size: 1.5rem; flex-shrink: 0; }
.store__btn__text { display: flex; flex-direction: column; }
.store__btn__text small { font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.65; line-height: 1; }
.store__btn__text span { font-size: 0.87rem; font-weight: 500; margin-top: 2px; line-height: 1; }
.app__card__screen { background: var(--black-mid); display: flex; align-items: flex-end; justify-content: center; padding: 3rem 2rem 0; overflow: hidden; min-height: 360px; }
.app__card__screen img { max-width: 230px; object-fit: contain; transform: translateY(8px); transition: transform 0.5s var(--ease); filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8)); }
.app__card:hover .app__card__screen img { transform: translateY(-8px); }
.app__card--driver { border-top: 2px solid var(--white); }

/* ─── CTA BANNER ─── */
.cta__banner { background: var(--white); padding-block: 6rem; text-align: center; }
.cta__banner .eyebrow { color: var(--gray-mid); }
.cta__banner .headline { color: var(--black); }
.cta__banner .lead { color: #666; }
.cta__banner .btn--outline { border-color: rgba(0,0,0,0.2); color: var(--black); }
.cta__banner .btn--outline:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.cta__banner .btn--black { background: var(--black); color: var(--white); }
.cta__banner .btn--black:hover { background: var(--black-mid); }
.cta__btns { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact__grid { display: grid; gap: 4rem; }
.contact__info .lead { margin-bottom: 2.5rem; }
.contact__details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact__details li { display: flex; align-items: flex-start; gap: 1rem; font-size: 0.92rem; color: rgba(255,255,255,0.8); }
.contact__details i { font-size: 1.2rem; color: var(--gray-light); flex-shrink: 0; margin-top: 1px; }
.contact__details a:hover { color: var(--white); }
.contact__socials { display: flex; gap: 0.85rem; }
.contact__socials a { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: rgba(255,255,255,0.55); transition: all 0.3s; }
.contact__socials a:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.form__group { display: flex; flex-direction: column; gap: 0.5rem; }
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__row { display: grid; gap: 1.25rem; }
.form__group label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-light); }
.form__group input, .form__group select, .form__group textarea { background: transparent; border: 1px solid var(--border); border-radius: 0; padding: 0.95rem 1.15rem; font-family: var(--font-body); font-size: 0.93rem; color: var(--white); outline: none; width: 100%; transition: border-color 0.3s; -webkit-appearance: none; }
.form__group input::placeholder, .form__group textarea::placeholder { color: var(--gray-mid); }
.form__group select { background: var(--black-soft); cursor: pointer; }
.form__group select option { background: var(--black-mid); }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { border-color: rgba(255,255,255,0.35); }
.form__group textarea { resize: vertical; }

/* ─── FOOTER ─── */
footer { background: var(--black-mid); border-top: 1px solid var(--border); }
.footer__grid { display: grid; gap: 3.5rem; padding-block: 5rem; }
.footer__brand { display: flex; flex-direction: column; }
.footer__logo { display: inline-flex; margin-bottom: 1.75rem; }
.footer__brand p { font-size: 0.86rem; line-height: 1.85; color: var(--gray-light); max-width: 268px; margin-bottom: 2rem; }
.footer__socials { display: flex; gap: 0.8rem; }
.footer__socials a { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: all 0.3s; }
.footer__socials a:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.footer__col h5 { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 1.5rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.95rem; }
.footer__col ul li a, .footer__col ul li span { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer__col ul li a:hover { color: var(--white); }
.newsletter { margin-top: 2rem; }
.newsletter p { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 0.85rem; }
.newsletter__form { display: flex; border: 1px solid var(--border); }
.newsletter__form input { flex: 1; background: transparent; border: none; padding: 0.8rem 1rem; font-family: var(--font-body); font-size: 0.85rem; color: var(--white); outline: none; }
.newsletter__form input::placeholder { color: var(--gray-mid); }
.newsletter__form button { background: transparent; border: none; border-left: 1px solid var(--border); padding: 0 1rem; color: var(--white); font-size: 1rem; cursor: pointer; transition: background 0.3s, color 0.3s; }
.newsletter__form button:hover { background: var(--white); color: var(--black); }
.footer__bar { border-top: 1px solid var(--border); padding: 1.75rem 1.5rem; max-width: var(--max-w); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer__bar span { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gray-mid); }

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.mission__grid { display: grid; gap: 4.5rem; align-items: start; }
.mission__img { overflow: hidden; }
.mission__img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.mission__text .lead { margin-bottom: 1.5rem; }

/* Values */
.values__grid { display: grid; gap: 1px; background: var(--border); margin-top: 3.5rem; }
.value__card { background: var(--black-card); padding: 2.5rem 2rem; transition: background 0.3s; }
.value__card:hover { background: var(--black-mid); }
.value__card i { font-size: 1.75rem; color: var(--white); margin-bottom: 1.25rem; display: block; }
.value__card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--white); margin-bottom: 0.75rem; }
.value__card p { font-size: 0.88rem; line-height: 1.8; color: var(--gray-light); }

/* ── REDESIGNED: Professional Standards ── */
/* Large horizontal cards with image accent and number */
.standards__section { padding-block: 0; }
.standards__header { display: grid; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.standards__header .headline { margin-bottom: 1rem; }

.standard__card {
  display: grid;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.4s var(--ease);
  background: var(--black-card);
  margin-bottom: 1px;
}
.standard__card:hover { border-color: rgba(255,255,255,0.22); }
.standard__card:last-child { margin-bottom: 0; }

.standard__card__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}
.standard__card__num {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  padding: 2rem 0;
  flex-shrink: 0;
}
.standard__card__num span {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}
.standard__card__body {
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.standard__card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.standard__card__icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--white); flex-shrink: 0;
  transition: all 0.3s;
}
.standard__card:hover .standard__card__icon {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.standard__card__title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--white); line-height: 1.1;
}
.standard__card__desc {
  font-size: 0.89rem; line-height: 1.85;
  color: var(--gray-light); max-width: 600px;
}
.standard__card__tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gray-mid);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border);
  align-self: flex-start;
}

.fleet__strip{padding: 2rem 0;}
.fleet__cars{display: flex; flex-wrap: wrap; gap: 2rem; margin: 2rem 0;} 
.fleet__car__label{
  padding: .75rem; margin-top: .6rem; background: rgba(0, 0, 0, .1);
  color: var(--gray-pale);
}
.page__hero p, .contact__desc, .about__body,.about__lead, .pillar, .step__body p{
  color: var(--gray-pale);
}
.fleet__cars img{
  height: 100%; border-radius: 1rem; object-fit: cover;
}
.fleet__text p{ 
max-width: 700px;
color: var(--gray-pale);
}

/* .app__phone img{
  max-height: 300px;
  object-fit: contain;
} */
.fleet__cars .fleet__car{flex: 1;}

.app__section{
  padding-top: 1rem;
}
.download__buttons{display: flex; gap: 2rem; align-items: center; margin: 2rem 0;}
.app__phone__wrap{
  display: grid;  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;
}

.app__panel{
  margin: 1rem 0;
}
/* ═══════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════ */
.services__hero__grid {
    display: grid
;
    gap: 1px;
    background: var(--border);
    margin-bottom: 2rem;
}
   .service__hero__card {
    background: var(--black-card);
    color: var(--gray-pale);
    padding: 1.5rem 1.75rem;
    display: flex
;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s;
    cursor: pointer;
}

.service__list{
  line-height: 1.4;
  margin: 1rem 0;
}
.service__detail__body p{margin: .7rem 0; color: var(--gray-pale);}
.contact__desc{margin: 1rem 0;}
.contact__details{margin-top: 1rem;}
.service__list li{
  margin: .5rem;
  color: var(--gray-pale);
}
@media (min-width: 900px) {
    .services__hero__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.service__detail { padding-block: 5rem; border-bottom: 1px solid var(--border); }
.service__detail:last-child { border-bottom: none; }
.service__detail__inner { display: grid; gap: 4rem; align-items: center; }
.service__detail__img { overflow: hidden; }
.service__detail__img img { aspect-ratio: 4/3; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); width: 100%; display: block; }
.service__detail:hover .service__detail__img img { transform: scale(1.04); }
.service__detail__text .eyebrow { margin-bottom: 1rem; }
.service__detail__text .headline { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.25rem; }
.service__detail__text .lead { font-size: 0.97rem; margin-bottom: 1.75rem; color: var(--gray-light); }
.feature__list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.25rem; }
.feature__list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.87rem; color: rgba(255,255,255,0.75); line-height: 1.65; }
.feature__list li i { font-size: 0.85rem; color: var(--white); flex-shrink: 0; margin-top: 4px; }
.services__index { display: grid; gap: 1px; background: var(--border); margin-bottom: 2rem; }
.svc__index__item { background: var(--black-card); padding: 1.5rem 1.75rem; display: flex; align-items: center; gap: 1rem; transition: background 0.3s; cursor: pointer; }
.svc__index__item:hover { background: var(--black-mid); }
.svc__index__item i { font-size: 1.2rem; color: var(--white); flex-shrink: 0; }
.svc__index__item span { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; color: rgba(255,255,255,0.82); }

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact__info__cards { display: grid; gap: 1px; background: var(--border); margin-bottom: 4rem; }
.contact__info__card { background: var(--black-card); padding: 2rem; display: flex; align-items: flex-start; gap: 1.25rem; transition: background 0.3s; }
.contact__info__card:hover { background: var(--black-mid); }
.contact__info__card .c__icon { width: 44px; height: 44px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white); flex-shrink: 0; transition: all 0.3s; }
.contact__info__card:hover .c__icon { background: var(--white); color: var(--black); border-color: var(--white); }
.contact__info__card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--white); margin-bottom: 0.45rem; }
.contact__info__card p, .contact__info__card a { font-size: 0.87rem; color: var(--gray-light); line-height: 1.65; display: block; }
.contact__info__card a:hover { color: var(--white); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (min-width: 540px) {
  .app__card__inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 640px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr 1fr; }
  .fleet__grid { grid-template-columns: 1fr 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .contact__info__cards { grid-template-columns: 1fr 1fr; }
  .services__index { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 768px) {
  /* Show desktop nav */
  .nav__menu__btn { display: none; }
  .nav__links { display: flex; }

  .about__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer__grid { grid-template-columns: 1.8fr 1fr 1fr 1.5fr; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .app__cards { grid-template-columns: 1fr 1fr; }
  .mission__grid { grid-template-columns: 3fr 2fr; }
  .values__grid { grid-template-columns: repeat(3, 1fr); }
  .contact__info__cards { grid-template-columns: repeat(2, 1fr); }
  .standards__header { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .service__detail__inner { grid-template-columns: 1fr 1fr; }
  .service__detail--rev .service__detail__img { order: 2; }
  .service__detail--rev .service__detail__text { order: 1; }
  .how__steps { display: grid !important; grid-template-columns: repeat(3, 1fr); }
  .how__step { grid-template-columns: 1fr; padding: 2.5rem 2rem; border-bottom: none; border-right: 1px solid var(--border); }
  .how__step:last-child { border-right: none; }
}
@media (max-width: 600px) {
  .swiper-button-prev, .swiper-button-next{
    display: none !important;
  }

  .fleet__strip {
    padding: 3rem 0;
}

.about__badge {
    position: absolute;
    top: -2rem;
    padding: .5rem;
    min-width: auto;
}
}
@media (max-width: 370px) {
.headline.xl {
  font-size: clamp(1.8rem, 7vw, 5.5rem);
}

.container {
  width: 100%;
}
}
