/* ============================================================
   Around Atlanta Limos — Luxury Limousine Website
   Elegant black & gold theme | Multi-page | Responsive
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --black: #0a0a0a;
  --black-2: #111113;
  --black-3: #17171a;
  --panel: #1c1c20;
  --line: #2a2a30;
  --gold: #c9a24b;
  --gold-2: #e6c778;
  --gold-soft: rgba(201, 162, 75, 0.14);
  --white: #f6f5f2;
  --muted: #a9a7a0;
  --muted-2: #78766f;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --maxw: 1200px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: 0.3px; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7; }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.02rem; }
.text-gold { color: var(--gold); }
.lead { font-size: 1.12rem; color: var(--muted); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  border: 1px solid transparent; border-radius: 50px; transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1408; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201, 162, 75, 0.35); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.28); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--block { width: 100%; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), height 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(8, 8, 9, 0.94);
  border-bottom-color: var(--line);
  height: 66px;
}
.nav {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; z-index: 1002; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; color: var(--gold); font-size: 1.1rem;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.18rem; color: var(--white); letter-spacing: 0.5px; }
.brand__sub { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.6px;
  color: var(--white); border-radius: 6px; transition: color 0.25s;
}
.nav__link:hover, .nav__item.active > .nav__link { color: var(--gold); }
.nav__link .caret {
  width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 0.3s var(--ease);
}
.nav__item--has-drop:hover .caret { transform: rotate(-135deg) translateY(-1px); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 480px;
  background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.dropdown::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav__item--has-drop:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.drop-link {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border-radius: var(--radius-sm);
  transition: background 0.25s;
}
.drop-link:hover { background: var(--gold-soft); }
.drop-link__ico {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 9px;
  background: var(--black-3); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 1.1rem;
}
.drop-link__t { font-size: 0.86rem; font-weight: 600; color: var(--white); }
.drop-link__d { font-size: 0.72rem; color: var(--muted-2); margin-top: 2px; }

.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__phone { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--white); }
.nav__phone span { color: var(--gold); font-weight: 600; }

/* Hamburger */
.nav__toggle {
  display: none; width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 6px; z-index: 1002;
}
.nav__toggle span { width: 26px; height: 2px; background: var(--white); transition: all 0.35s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding-top: var(--header-h);
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 55%, var(--black) 100%),
              var(--black-3);
  background-size: cover; background-position: center;
}
.hero--page { min-height: 56vh; }
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .thin { font-style: italic; font-weight: 400; color: var(--gold-2); }
.hero p { font-size: 1.14rem; max-width: 560px; margin-bottom: 34px; color: #d8d6d0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll::after { content: ""; width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); }

.page-hero {
  position: relative; padding: calc(var(--header-h) + 70px) 0 70px; text-align: center;
  background: linear-gradient(180deg, rgba(10,10,10,0.7), rgba(10,10,10,0.85)), var(--black-3);
  background-size: cover; background-position: center;
}
.page-hero .crumbs { font-size: 0.75rem; letter-spacing: 1px; color: var(--muted); margin-top: 16px; }
.page-hero .crumbs a:hover { color: var(--gold); }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,0.5); }
.card__media { aspect-ratio: 16 / 11; overflow: hidden; position: relative; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 26px; }
.card__body h3 { margin-bottom: 10px; }
.card__body p { font-size: 0.92rem; margin-bottom: 16px; }
.card__link { font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.card__link::after { content: " →"; transition: margin 0.3s; }
.card:hover .card__link::after { margin-left: 5px; }

/* Feature (icon) card */
.feature {
  background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: border-color 0.4s, transform 0.4s var(--ease);
}
.feature:hover { border-color: rgba(201,162,75,0.5); transform: translateY(-5px); }
.feature__ico {
  width: 58px; height: 58px; border-radius: 14px; background: var(--gold-soft);
  border: 1px solid rgba(201,162,75,0.3); display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.feature h3 { font-size: 1.25rem; margin-bottom: 12px; }
.feature p { font-size: 0.92rem; }

/* Split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--framed::after {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(201,162,75,0.5); border-radius: 8px; pointer-events: none;
}
.split h2 { margin-bottom: 20px; }
.split p + p { margin-top: 16px; }

.check-list { margin-top: 24px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--white); font-size: 0.94rem; }
.check-list li::before {
  content: "✓"; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; font-size: 0.72rem; font-weight: 700;
  border: 1px solid rgba(201,162,75,0.4);
}

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold); }
.stat__label { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding: 34px 26px; background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius); }
.step__n { font-family: var(--serif); font-size: 2.4rem; color: rgba(201,162,75,0.35); line-height: 1; }
.step h3 { font-size: 1.15rem; margin: 10px 0; }
.step p { font-size: 0.9rem; }

/* Testimonials */
.quote {
  background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
}
.quote__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; }
.quote p { color: var(--white); font-size: 1rem; font-style: italic; line-height: 1.7; }
.quote__by { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); font-weight: 700; }
.quote__name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.quote__role { font-size: 0.75rem; color: var(--muted-2); }

/* Price cards */
.price-card {
  background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px; position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,0.5); }
.price-card--featured { border-color: var(--gold); }
.price-card__badge {
  position: absolute; top: 18px; right: 18px; font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--gold); color: #1a1408; padding: 5px 12px; border-radius: 50px; font-weight: 700;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card__sub { font-size: 0.82rem; color: var(--muted-2); margin-bottom: 20px; }
.price-card__price { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); }
.price-card__price small { font-size: 0.9rem; color: var(--muted); font-family: var(--sans); }
.price-card ul { margin: 24px 0; display: grid; gap: 12px; }
.price-card ul li { font-size: 0.88rem; color: var(--muted); display: flex; gap: 10px; }
.price-card ul li::before { content: "—"; color: var(--gold); }

/* Fleet spec chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 18px; }
.chip {
  font-size: 0.72rem; letter-spacing: 0.5px; color: var(--muted); background: var(--black-3);
  border: 1px solid var(--line); padding: 5px 12px; border-radius: 50px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-wrap {
  background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.76rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  background: var(--black-3); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; color: var(--white); font-family: var(--sans); font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a24b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--muted-2); margin-top: 16px; }
.form-success {
  display: none; margin-top: 20px; padding: 16px 18px; border-radius: var(--radius-sm);
  background: var(--gold-soft); border: 1px solid rgba(201,162,75,0.4); color: var(--gold-2); font-size: 0.9rem;
}
.form-success.show { display: block; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative; text-align: center;
  background: linear-gradient(rgba(10,10,10,0.82), rgba(10,10,10,0.9)), var(--black-3);
  background-size: cover; background-position: center; background-attachment: fixed;
}
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black-2); border-top: 1px solid var(--line); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col p { font-size: 0.88rem; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 0.88rem; color: var(--muted); transition: color 0.25s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-contact li { display: flex; gap: 10px; font-size: 0.88rem; color: var(--muted); margin-bottom: 14px; }
.footer-contact .ico { color: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--muted); transition: all 0.3s; font-size: 0.9rem;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted-2); }
.footer-bottom a { color: var(--muted-2); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .nav__phone { display: none; }
}

@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: 0; right: 0; width: min(340px, 84vw); height: 100vh;
    background: var(--black-2); border-left: 1px solid var(--line);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: calc(var(--header-h) + 20px) 24px 40px; gap: 2px;
    transform: translateX(100%); transition: transform 0.45s var(--ease); overflow-y: auto;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__item { width: 100%; }
  .nav__link { padding: 14px 8px; font-size: 0.92rem; justify-content: space-between; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__item--has-drop .caret { transform: rotate(45deg); }
  .nav__item--has-drop.expanded .caret { transform: rotate(-135deg); }
  .dropdown {
    position: static; transform: none; min-width: 0; width: 100%; grid-template-columns: 1fr;
    opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; border: none;
    background: transparent; padding: 0; max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease); display: block;
  }
  .nav__item--has-drop.expanded .dropdown { max-height: 640px; padding: 6px 0 10px; }
  .drop-link { padding: 12px 8px; }
  .drop-link__ico { width: 32px; height: 32px; font-size: 0.95rem; }
  .nav__actions .btn { display: none; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden;
    transition: opacity 0.4s; z-index: 999;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
  .cta-band { background-attachment: scroll; }
}

@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .section { padding: 60px 0; }
}
