/* ===== LUSSLIMO — Luxury Limo Booking ===== */
:root {
  --black: #0b0b0d;
  --ink: #141418;
  --ink-2: #1c1c22;
  --gold: #198754;
  --gold-bright: #3fb583;
  --cream: #f6f3ec;
  --muted: #9a9aa2;
  --line: rgba(25, 135, 84, 0.22);
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--black);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1180px, 92%); margin-inline: auto; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(25, 135, 84, 0.32);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(25, 135, 84, 0.45); }
.btn--ghost { border-color: var(--line); color: var(--cream); background: transparent; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }
.btn--sm { padding: 0.6rem 1.3rem; font-size: 0.72rem; background: transparent; border-color: var(--line); color: var(--gold-bright); }
.btn--sm:hover { background: var(--gold); color: #ffffff; }
.btn--block { width: 100%; }

/* ===== Topbar ===== */
.topbar {
  background: #000;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  color: var(--muted);
}
.topbar__contact a { margin-right: 1.4rem; transition: color 0.2s; }
.topbar__contact a:hover { color: var(--gold-bright); }
.topbar__note { color: var(--gold); }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-head);
  font-size: 1.5rem;
  border-radius: 50%;
}
.brand__name {
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  font-weight: 300;
  font-size: 1.05rem;
}
.brand__name strong { color: var(--gold-bright); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold-bright); }
.nav__cta {
  border: 1px solid var(--gold);
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  color: var(--gold-bright) !important;
}
.nav__cta:hover { background: var(--gold); color: #ffffff !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__toggle span { width: 26px; height: 2px; background: var(--gold-bright); transition: 0.3s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(25, 135, 84,0.12), transparent 55%),
    linear-gradient(180deg, #0b0b0d 0%, #131318 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  /* Black Cadillac SUV. Overlay tuned 2026-06-16 — lighter on the right
     so the car reads clearly; only the left ~25% stays heavily darkened
     to keep the headline readable. */
  background-image:
    linear-gradient(105deg, rgba(11,11,13,0.65) 0%, rgba(11,11,13,0.35) 28%, rgba(11,11,13,0.05) 65%, rgba(11,11,13,0) 100%),
    url("https://images.unsplash.com/photo-1767749995450-7b63ab7cd4fd?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.hero__inner { position: relative; z-index: 2; padding: 5rem 0; max-width: 640px; }
.hero__eyebrow {
  color: var(--gold-bright);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}
.hero__title span {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.hero__sub { color: #d6d3cb; font-size: 1.08rem; max-width: 520px; margin-bottom: 2.2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__stats { display: flex; gap: 2.6rem; flex-wrap: wrap; }
.hero__stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold-bright);
}
.hero__stats span { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* ===== Trust strip ===== */
.trust { background: var(--ink); border-block: 1px solid var(--line); }
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
}
.trust__item { font-size: 0.9rem; letter-spacing: 0.05em; color: #cfcdc6; }
.trust__icon { color: var(--gold); margin-right: 0.5rem; }

/* ===== Sections ===== */
.section { padding: 6rem 0; }
.section--dark { background: var(--ink); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section__eyebrow {
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 0.8rem;
}
.section__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
}
.section__lead { color: var(--muted); margin-top: 1rem; }

/* ===== Fleet ===== */
.fleet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.6rem;
}
.card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow); }
.card--featured { border-color: var(--gold); }
.card__badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #ffffff;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-weight: 600;
}
.card__media {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(28,28,34,0.9)); }
/* Fleet — black 2022-2026 luxury lineup. Unsplash CDN photos sourced
   2026-06-15 to match LussLimo inventory: Mercedes S-Class sedan,
   Cadillac Escalade, GMC Denali, Mercedes Sprinter. */
.card__media--sedan { background-image: url("https://images.unsplash.com/photo-1525499114766-eeaf451f8a5e?auto=format&fit=crop&w=1200&q=80"); }
.card__media--suv { background-image: url("https://images.unsplash.com/photo-1683778547049-8d969766b441?auto=format&fit=crop&w=1200&q=80"); }
.card__media--denali { background-image: url("https://images.unsplash.com/photo-1554231316-a53dbe28b257?auto=format&fit=crop&w=1200&q=80"); }
.card__media--sprinter { background-image: url("https://images.unsplash.com/photo-1578557904035-f68542b3770e?auto=format&fit=crop&w=1200&q=80"); }
.card__body { padding: 1.5rem; }
.card__body h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; }
.card__meta { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.05em; margin-bottom: 0.7rem; }
.card__body p { color: var(--muted); font-size: 0.92rem; }
.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.3rem;
}
.price { font-family: var(--font-head); font-size: 1.4rem; color: var(--cream); }

/* ===== Services ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.service {
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 11, 13, 0.4);
  transition: transform 0.3s, background 0.3s;
}
.service:hover { transform: translateY(-6px); background: rgba(25, 135, 84, 0.06); }
.service__icon { font-size: 1.8rem; margin-bottom: 1rem; }
.service h3 { font-family: var(--font-head); font-size: 1.45rem; font-weight: 600; margin-bottom: 0.5rem; }
.service p { color: var(--muted); font-size: 0.92rem; }

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.step { text-align: center; padding: 1rem; }
.step__num {
  display: grid;
  place-items: center;
  width: 70px; height: 70px;
  margin: 0 auto 1.3rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--gold-bright);
}
.step h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p { color: var(--muted); max-width: 280px; margin: 0 auto; }

/* ===== Booking ===== */
.section--booking {
  background:
    radial-gradient(circle at 15% 20%, rgba(25, 135, 84,0.1), transparent 50%),
    var(--black);
}
.booking { display: grid; grid-template-columns: 1fr 1.25fr; gap: 3.5rem; align-items: start; }
.booking__intro { position: sticky; top: 110px; }
.booking__intro .section__title { text-align: left; }
.booking__perks { list-style: none; margin-top: 1.8rem; }
.booking__perks li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.9rem;
  color: #d6d3cb;
}
.booking__perks li::before { content: "\2714"; position: absolute; left: 0; color: var(--gold); }

.bform {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.bform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.bform label, .bform__full {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.bform input, .bform select, .bform textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.8rem 0.9rem;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bform input:focus, .bform select:focus, .bform textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.15);
}
.bform textarea { resize: vertical; }
.bform__full { grid-column: 1 / -1; }

.estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: rgba(25, 135, 84, 0.08);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.5rem;
}
.estimate__label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.estimate__value { font-family: var(--font-head); font-size: 2rem; color: var(--gold-bright); }
.estimate small { color: var(--muted); font-size: 0.72rem; flex-basis: 100%; }

.bform__success {
  margin-top: 1.2rem;
  text-align: center;
  color: var(--gold-bright);
  font-size: 0.95rem;
}

/* ===== Testimonials ===== */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.quote {
  background: rgba(11, 11, 13, 0.5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.quote__stars { color: var(--gold-bright); letter-spacing: 0.15em; margin-bottom: 1rem; }
.quote blockquote { font-family: var(--font-head); font-size: 1.3rem; font-style: italic; line-height: 1.5; margin-bottom: 1.2rem; }
.quote figcaption { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.05em; }

/* ===== CTA ===== */
.cta {
  background:
    linear-gradient(rgba(11,11,13,0.82), rgba(11,11,13,0.82)),
    url("https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta__inner { text-align: center; padding: 5.5rem 0; }
.cta h2 { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; }
.cta p { color: #d6d3cb; margin: 1rem 0 2rem; }

/* ===== Footer ===== */
.footer { background: #050506; padding-top: 4rem; border-top: 1px solid var(--line); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}
.footer__brand p { color: var(--muted); margin-top: 1.2rem; max-width: 280px; font-size: 0.92rem; }
.footer__col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__col a { display: block; color: #cfcdc6; margin-bottom: 0.7rem; font-size: 0.92rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--gold-bright); }
.footer__col p { color: var(--muted); font-size: 0.9rem; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 1.5rem 0; }
.footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; color: var(--muted); font-size: 0.82rem; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(280px, 80%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem;
    background: var(--ink);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav__toggle { display: flex; z-index: 60; }
  .booking { grid-template-columns: 1fr; }
  .booking__intro { position: static; }
  .cta { background-attachment: scroll; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .bform__row { grid-template-columns: 1fr; }
  .topbar__note { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.6rem; }
}
