/* ═══════════════════════════════════════════════
   AURUM MOTORS — index.css
   Responsive Luxury Automotive Website
   Pure HTML + CSS, no JavaScript
═══════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --navy:      #08152e;
  --navy-mid:  #0e1f42;
  --navy-card: #111d36;
  --gold:      #c9a84c;
  --gold-lt:   #e0c06a;
  --gold-dk:   #a0802e;
  --white:     #ffffff;
  --off-white: #f5f3ef;
  --grey:      #aaaaaa;
  --grey-lt:   #e8e6e2;
  --dark-bg:   #161c28;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;
  --ff-hero:    'Bebas Neue', sans-serif;

  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 4px 24px rgba(0,0,0,.18);
  --shadow-lg: 0 16px 60px rgba(0,0,0,.32);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1280px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--off-white);
  color: var(--navy);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ─── UTILITY ─── */
.section-label {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}
.section-label.light { color: var(--gold-lt); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header.light .section-title { color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.9rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.full-width { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,21,46,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,.15);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .75rem; }
.logo img { height: 40px; width: auto; object-fit: contain; }
.logo-text {
  font-family: var(--ff-hero);
  font-size: 1.3rem;
  letter-spacing: .12em;
  color: var(--white);
}
.logo-text span { color: var(--gold); }

/* Nav links */
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: .85rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--navy);
  padding: .55rem 1.2rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* Hamburger (CSS only) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: left;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(201,168,76,.15);
  gap: .25rem;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); padding-left: .5rem; }
.mobile-cta {
  margin-top: .75rem;
  background: var(--gold);
  color: var(--navy) !important;
  text-align: center;
  border-radius: 8px;
  padding: .8rem 0 !important;
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* Toggle logic */
#nav-toggle:checked ~ .header .mobile-menu  { display: flex; }
#nav-toggle:checked ~ .header .hamburger span:nth-child(1) { transform: rotate(43deg); }
#nav-toggle:checked ~ .header .hamburger span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ .header .hamburger span:nth-child(3) { transform: rotate(-43deg); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  padding: 100px 2rem 2rem;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* giant bg text */
.hero-bg-text {
  position: absolute;
  font-family: var(--ff-hero);
  font-size: clamp(100px, 18vw, 260px);
  color: rgba(255,255,255,.03);
  letter-spacing: -.02em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  padding: 2rem;
  animation: fadeUp .8s ease both;
}

.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero-heading {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-heading em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat span {
  display: block;
  font-family: var(--ff-hero);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: .05em;
}
.stat p {
  font-size: .75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .15rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* Hero image */
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp .8s .25s ease both;
}
.hero-image img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.5));
  max-height: 480px;
  object-fit: contain;
}
.hero-img-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(201,168,76,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-image.no-img {
  min-height: 400px;
  background: linear-gradient(135deg, var(--navy-mid), var(--dark-bg));
  border-radius: var(--radius-lg);
}

/* Scroll hint */
.hero-scroll-hint {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  justify-content: center;
  padding: 1rem;
  animation: float 2s infinite ease-in-out;
}
.hero-scroll-hint i { font-size: .9rem; }

/* ═══════════════════════════════════════════════
   BRANDS STRIP
═══════════════════════════════════════════════ */
.brands {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--grey-lt);
}
.brands .section-label { margin-bottom: 1.5rem; }

.brands-track {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}
.brand-item:hover {
  border-color: var(--grey-lt);
  background: var(--off-white);
  transform: translateY(-3px);
}
.brand-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(80%);
  transition: var(--transition);
}
.brand-item:hover img { filter: grayscale(0); }
.brand-item span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
}
.brand-item.fallback {
  min-width: 100px;
  min-height: 60px;
  background: var(--grey-lt);
}

/* ═══════════════════════════════════════════════
   FEATURED SECTION
═══════════════════════════════════════════════ */
.featured {
  background: var(--off-white);
  padding: 5rem 2rem;
  max-width: 100%;
}

.category-pills {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.pill {
  padding: .5rem 1.2rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  border: 1.5px solid var(--grey-lt);
  color: var(--grey);
  transition: var(--transition);
  background: var(--white);
}
.pill:hover, .pill.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Featured card */
.featured-card {
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--navy);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  position: relative;
}

.featured-card-bg {
  position: absolute;
  inset: 0;
}
.featured-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,21,46,.95) 40%, rgba(8,21,46,.55) 100%);
}

.featured-info {
  padding: 3rem 2.5rem;
  position: relative;
  z-index: 1;
}
.featured-tag {
  display: inline-block;
  padding: .3rem .9rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.featured-info h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: rgba(255,255,255,.75);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.featured-info h3 strong {
  font-weight: 900;
  color: var(--white);
  display: block;
  font-size: 1.15em;
}
.featured-info > p {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.featured-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.featured-meta span {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.featured-meta i { color: var(--gold); }

.featured-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.featured-car-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}
.featured-car-img img {
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.6));
  transform: translateX(5%);
  transition: var(--transition);
}
.featured-card:hover .featured-car-img img { transform: translateX(2%) scale(1.03); }
.featured-car-img.no-img {
  background: var(--navy-card);
  min-height: 300px;
}

/* ═══════════════════════════════════════════════
   CAR GRID
═══════════════════════════════════════════════ */
.inventory-grid {
  padding: 5rem 2rem;
  max-width: 100%;
  background: var(--white);
}
.inventory-grid .section-header { margin-bottom: 2.5rem; }

.car-grid {
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.car-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-lt);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.car-card-img {
  position: relative;
  height: 200px;
  background: var(--grey-lt);
  overflow: hidden;
}
.car-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.car-card:hover .car-card-img img { transform: scale(1.05); }
.car-card-img.no-img { background: linear-gradient(135deg, #d0ccc8, #b5b0aa); }

.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: .28rem .7rem;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
}
.card-badge.hot { background: #c0392b; }

.card-wish {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.92);
  color: var(--grey);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}
.card-wish:hover { background: #e74c3c; color: var(--white); }

.car-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.car-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
}
.car-card-top h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey);
}
.car-card-top h4 span {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.car-price {
  font-family: var(--ff-hero);
  font-size: 1.2rem;
  color: var(--gold-dk);
  white-space: nowrap;
}

.car-desc {
  font-size: .82rem;
  color: var(--grey);
  line-height: 1.5;
}

.car-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.car-tags span {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  color: var(--grey);
  background: var(--white);
  border: 1px solid var(--grey-lt);
  padding: .22rem .6rem;
  border-radius: 6px;
}
.car-tags i { color: var(--gold); font-size: .65rem; }

.card-cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--grey-lt);
  transition: var(--transition);
}
.card-cta i { transition: var(--transition); }
.card-cta:hover { color: var(--gold-dk); }
.card-cta:hover i { transform: translateX(4px); }

.grid-cta { text-align: center; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services {
  background: var(--navy);
  padding: 5rem 2rem;
}
.services .section-title { color: var(--white); }

.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(201,168,76,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.service-card.highlight {
  background: var(--gold);
  border-color: var(--gold);
}
.service-card.highlight .service-icon,
.service-card.highlight h4,
.service-card.highlight p,
.service-card.highlight .service-link { color: var(--navy); }

.service-icon {
  font-size: 1.6rem;
  color: var(--gold);
}
.service-card h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.service-card p {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.service-link i { transition: var(--transition); }
.service-link:hover i { transform: translateX(4px); }

/* ═══════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════ */
.why-us {
  background: var(--off-white);
  padding: 5rem 2rem;
}
.why-us-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-text .section-title { margin-bottom: 1rem; }
.why-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(8,21,46,.7);
  margin-bottom: 1.5rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy);
}
.why-list i {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem;
  flex-shrink: 0;
}

.why-us-img {
  position: relative;
}
.why-us-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 480px;
  box-shadow: var(--shadow-lg);
}
.why-us-img.no-img {
  min-height: 400px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-mid), var(--dark-bg));
}

.why-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-num {
  display: block;
  font-family: var(--ff-hero);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: .05em;
}
.badge-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .75;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials {
  background: var(--white);
  padding: 5rem 2rem;
}

.testimonial-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--grey-lt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }

.testimonial-card.featured-review {
  background: var(--navy);
  border-color: var(--gold);
}
.testimonial-card.featured-review p { color: rgba(255,255,255,.8); }
.testimonial-card.featured-review .testimonial-author strong { color: var(--white); }
.testimonial-card.featured-review .testimonial-author span { color: rgba(255,255,255,.5); }

.stars { display: flex; gap: .2rem; color: var(--gold); font-size: .85rem; }
.testimonial-card p {
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(8,21,46,.75);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
}
.testimonial-author span {
  font-size: .75rem;
  color: var(--grey);
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact {
  background: var(--navy);
  padding: 5rem 2rem;
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-text .section-title { color: var(--white); margin-bottom: .75rem; }
.contact-text > p {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.contact-details i { color: var(--gold); width: 16px; text-align: center; }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--grey-lt);
  border-radius: 8px;
  font-size: .9rem;
  color: var(--navy);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
  resize: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group select { cursor: pointer; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--dark-bg);
  padding: 4rem 2rem 0;
  border-top: 1px solid rgba(201,168,76,.2);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: .75rem;
}
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col a, .footer-col p {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .6rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); padding-left: .3rem; }
.footer-col i { color: var(--gold); width: 14px; text-align: center; font-size: .8rem; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 90px;
    text-align: center;
    gap: 2rem;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 320px; }
  .hero-bg-text { font-size: clamp(80px, 14vw, 180px); }

  /* Why us */
  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .why-us-img { order: -1; }
  .why-badge { bottom: -1rem; left: 1rem; }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 640px)
═══════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* Nav */
  .nav-inner { padding: 0 1rem; }

  /* Hero */
  .hero { padding: 80px 1rem 2rem; }
  .hero-heading { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-sub { font-size: .9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .stat span { font-size: 1.6rem; }

  /* Brands */
  .brand-item { padding: .5rem 1rem; }
  .brand-item span { display: none; }

  /* Featured card */
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-car-img {
    height: 220px;
    justify-content: center;
  }
  .featured-car-img img { transform: none; max-height: 200px; }
  .featured-info { padding: 2rem 1.5rem; }

  /* Car grid */
  .car-grid { grid-template-columns: 1fr; }
  .inventory-grid { padding: 4rem 1rem; }

  /* Services */
  .services { padding: 4rem 1rem; }
  .services-grid { grid-template-columns: 1fr; }

  /* Why us */
  .why-us { padding: 4rem 1rem; }
  .why-badge { left: .5rem; bottom: -1rem; padding: 1rem 1.2rem; }
  .badge-num { font-size: 1.8rem; }

  /* Testimonials */
  .testimonials { padding: 4rem 1rem; }
  .testimonial-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact { padding: 4rem 1rem; }
  .contact-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 3rem 1rem 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }

  /* Section titles */
  .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }

  /* Featured */
  .featured { padding: 4rem 1rem; }

  /* Category pills scroll */
  .category-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: .5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .category-pills::-webkit-scrollbar { display: none; }
}

/* ═══════════════════════════════════════════════
   VERY SMALL (≤ 380px)
═══════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero-heading { font-size: 2.2rem; }
  .nav-inner { gap: 1rem; }
  .featured-meta { gap: .75rem; }
}
