/* Newcastle Luxury Cars — Dark Luxury Theme */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:     #0B0B0B;
  --bg2:    #141414;
  --bg3:    #1C1C1C;
  --white:  #FFFFFF;
  --light:  #D0D0D0;
  --muted:  #7A7A7A;
  --border: rgba(255,255,255,0.07);
  --gold:   #C8A84B;
  --gold-l: #E0C06A;
  --font:   'Inter', system-ui, -apple-system, sans-serif;
  --max:    1200px;
  --r:      8px;
  --t:      0.25s ease;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  font-size: 1rem;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  z-index: 200;
  background: rgba(11,11,11,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 1rem;
}

.nav-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo em { color: var(--gold); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.775rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  transition: color var(--t);
}
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 0.6rem 1.4rem;
  border: 1.5px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}

.btn-gold { background: var(--gold); color: #111100; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); transform: translateY(-1px); }

.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #111100; }

.btn-white { background: var(--white); color: var(--bg); border-color: var(--white); }
.btn-white:hover { background: var(--light); border-color: var(--light); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

.btn-lg { padding: 0.9rem 2.2rem; font-size: 0.825rem; }
.btn-full { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 1px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: #0d0d0d;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem 1.75rem;
  flex-direction: column;
  gap: 0;
  z-index: 199;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--t);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Set background-image to your hero photo here, e.g.:
     background: url('assets/hero.jpg') center/cover no-repeat; */
  background: linear-gradient(135deg, #080818 0%, #0c1830 50%, #080808 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.hero-title em { color: var(--gold); font-style: normal; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 2.75rem;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── SECTION BASICS ──────────────────────────────────────── */
.section { padding: 6rem 0; }

.label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.sub {
  font-size: 0.975rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
}

.divider { width: 44px; height: 2px; background: var(--gold); margin: 1.1rem 0 0; }
.section-head { margin-bottom: 3.5rem; }

/* ── FLEET GRID (homepage) ───────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fleet-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.fleet-card:hover {
  border-color: rgba(200,168,75,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

.fleet-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.fleet-img.navy  { background: linear-gradient(140deg, #091627 0%, #102240 100%); }
.fleet-img.forest { background: linear-gradient(140deg, #101a10 0%, #182818 100%); }
.fleet-img.maroon { background: linear-gradient(140deg, #1e0c0c 0%, #2e1212 100%); }

.fleet-img img { transition: transform 0.5s ease; }
.fleet-card:hover .fleet-img img { transform: scale(1.05); }

.fleet-img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.6rem;
}
.fleet-img-placeholder svg { width: 44px; height: 44px; stroke: rgba(200,168,75,0.18); fill: none; stroke-width: 0.8; }
.fleet-img-placeholder span { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.1); }

.fleet-body { padding: 1.6rem; }
.fleet-make { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.fleet-name { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.1rem; }

.fleet-mini-specs {
  display: flex; gap: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.mini-spec-val { font-size: 0.9rem; font-weight: 700; color: var(--white); display: block; }
.mini-spec-key { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 0.15rem; }

.fleet-footer { display: flex; align-items: center; justify-content: space-between; }
.fleet-price-label { font-size: 0.72rem; color: var(--muted); }

/* ── ABOUT STRIP ─────────────────────────────────────────── */
.about-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5rem 0; }

.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-top: 3.5rem; }

.about-item { background: var(--bg2); padding: 2.5rem 2rem; text-align: center; }

.about-icon {
  width: 54px; height: 54px;
  background: rgba(200,168,75,0.07);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.about-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.about-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.about-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* ── HOMEPAGE CONTACT ────────────────────────────────────── */
.contact-section { background: var(--bg); padding: 6rem 0; border-top: 1px solid var(--border); }

.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }

.contact-info .title { margin-bottom: 0.75rem; }
.contact-info .sub { margin-bottom: 2.25rem; }

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

.contact-method {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--t);
}
.contact-method:hover { border-color: rgba(200,168,75,0.35); }

.cm-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cm-icon.gold { background: rgba(200,168,75,0.1); }
.cm-icon.green { background: rgba(37,211,102,0.08); }
.cm-icon.gray { background: var(--bg3); }
.cm-icon.gold svg { stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; width: 18px; height: 18px; }
.cm-icon.gray svg { stroke: var(--muted); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; width: 18px; height: 18px; }
.cm-icon.green svg { fill: #25D366; width: 20px; height: 20px; }

.cm-text small { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.15rem; }
.cm-text strong { font-size: 0.9rem; font-weight: 600; }

.contact-form-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 2.25rem; }
.contact-form-card .form-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem; }
.contact-form-card .form-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.form-group { margin-bottom: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.form-label { display: block; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 5px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(200,168,75,0.55); }
.form-textarea { resize: vertical; min-height: 95px; }

.select-wrap { position: relative; }
.select-wrap::after { content: ''; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); border: 4px solid transparent; border-top-color: var(--muted); pointer-events: none; }

.form-msg { margin-top: 0.75rem; padding: 0.7rem 0.9rem; border-radius: 5px; font-size: 0.8rem; font-weight: 500; display: none; line-height: 1.5; }
.form-msg.success { background: rgba(22,163,74,0.12); color: #4ade80; border: 1px solid rgba(22,163,74,0.25); display: block; }
.form-msg.error   { background: rgba(239,68,68,0.1);  color: #f87171; border: 1px solid rgba(239,68,68,0.2);  display: block; }

/* ── CAR PAGE ────────────────────────────────────────────── */

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  padding: 1rem 0 0;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: 0.3; }
.breadcrumb-cur { color: var(--light); }

/* Car page header */
.car-header { padding: 2.5rem 0 3rem; border-bottom: 1px solid var(--border); }
.car-make { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.car-title { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 0.85rem; }
.car-tagline { font-size: 1rem; color: var(--muted); font-weight: 300; line-height: 1.75; max-width: 700px; }

/* Gallery */
.gallery-section { padding: 3rem 0 0; }

.gallery-wrap { display: grid; grid-template-columns: 3fr 1fr; gap: 0.5rem; height: 500px; margin-bottom: 0.5rem; }

.g-main {
  border-radius: var(--r); overflow: hidden; position: relative; cursor: zoom-in;
}
.g-main .g-ph, .g-main img { width: 100%; height: 100%; object-fit: cover; display: block; }

.g-thumbs { display: grid; grid-template-rows: repeat(3, 1fr); gap: 0.5rem; }

.g-thumb {
  border-radius: 6px; overflow: hidden; cursor: pointer; position: relative;
  outline: 2px solid transparent; outline-offset: -2px;
  opacity: 0.5; transition: opacity var(--t), outline-color var(--t);
}
.g-thumb:hover, .g-thumb.active { opacity: 1; outline-color: var(--gold); }
.g-thumb .g-ph, .g-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Gallery placeholders */
.g-ph {
  display: flex; align-items: center; justify-content: center;
}
.g-ph svg { opacity: 0.12; }

/* Specs strip */
.specs-strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  margin: 2.5rem 0;
}

.spec { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.6rem 0.75rem; border-right: 1px solid var(--border); gap: 0.3rem; }
.spec:last-child { border-right: none; }

.spec-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.4rem; }
.spec-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.spec-val { font-size: 1rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; line-height: 1.1; }
.spec-key { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* Car content grid */
.car-content { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; padding-bottom: 5rem; }

.car-desc h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin: 2rem 0 0.85rem; }
.car-desc h2:first-child { margin-top: 0; }
.car-desc p { color: var(--light); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.1rem; }
.car-desc ul { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.1rem; }
.car-desc ul li { display: flex; align-items: flex-start; gap: 0.65rem; color: var(--light); font-size: 0.925rem; line-height: 1.65; }
.car-desc ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.52rem; }

/* Sidebar */
.sidebar-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem; position: sticky; top: 84px; }

.sidebar-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.sidebar-sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.55; }
.sidebar-hr { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

.cta-btns { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; }

.cta-btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.1rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 600;
  transition: all var(--t);
}
.cta-btn.phone { background: var(--gold); color: #111100; }
.cta-btn.phone:hover { background: var(--gold-l); }
.cta-btn.phone svg { width: 17px; height: 17px; stroke: #111100; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cta-btn.whatsapp { background: rgba(37,211,102,0.1); color: #4ade80; border: 1px solid rgba(37,211,102,0.2); }
.cta-btn.whatsapp:hover { background: rgba(37,211,102,0.18); }
.cta-btn.whatsapp svg { width: 19px; height: 19px; fill: #25D366; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5rem 0; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; margin-top: 2.75rem;
}

.price-card { background: var(--bg2); padding: 2rem 1.25rem; text-align: center; position: relative; }
.price-card.featured { background: rgba(200,168,75,0.05); }
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #111100;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.8rem; border-radius: 0 0 5px 5px;
}

.price-duration { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.price-rate { font-size: 1.65rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.price-unit { font-size: 0.72rem; color: var(--muted); }
.price-note { font-size: 0.78rem; color: var(--muted); margin-top: 1.25rem; line-height: 1.6; text-align: center; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: 5rem 0; }

.faq-list { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-top: 2.75rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg2); border: none; color: var(--white);
  font-size: 0.9rem; font-weight: 600; text-align: left; cursor: pointer;
  transition: background var(--t), color var(--t);
}
.faq-q:hover { background: var(--bg3); }
.faq-q.open { color: var(--gold-l); background: rgba(200,168,75,0.04); }

.faq-icon { width: 22px; height: 22px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color var(--t), transform var(--t); }
.faq-q.open .faq-icon { border-color: var(--gold); transform: rotate(45deg); }
.faq-icon svg { width: 9px; height: 9px; stroke: var(--muted); fill: none; stroke-width: 2.5; transition: stroke var(--t); }
.faq-q.open .faq-icon svg { stroke: var(--gold); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a.open { max-height: 500px; }
.faq-a-inner { padding: 0 1.5rem 1.35rem; font-size: 0.875rem; color: var(--muted); line-height: 1.8; background: var(--bg2); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: #080808; border-top: 1px solid var(--border); padding: 4.5rem 0 2rem; }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-logo { font-size: 1rem; font-weight: 700; display: block; margin-bottom: 0.75rem; }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-tagline { font-size: 0.82rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: 0.6rem; }
.social-btn { width: 35px; height: 35px; border: 1px solid var(--border); border-radius: 7px; display: flex; align-items: center; justify-content: center; transition: border-color var(--t), background var(--t); }
.social-btn:hover { border-color: var(--gold); background: rgba(200,168,75,0.07); }
.social-btn svg { width: 15px; height: 15px; fill: var(--muted); transition: fill var(--t); }
.social-btn:hover svg { fill: var(--gold); }

.footer-col-title { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 1.1rem; }
.footer-links-col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links-col a { font-size: 0.82rem; color: var(--muted); transition: color var(--t); }
.footer-links-col a:hover { color: var(--gold); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.65rem; line-height: 1.5; }
.footer-contact-item a { color: var(--muted); transition: color var(--t); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.2); transition: color var(--t); }
.footer-legal a:hover { color: var(--muted); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 50;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: scale(1.09); box-shadow: 0 6px 26px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .car-content { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .specs-strip { grid-template-columns: repeat(3, 1fr); }
  .spec:nth-child(3) { border-right: none; }
  .spec:nth-child(n+4) { border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured::before { font-size: 0.55rem; }
}

@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 1px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .gallery-wrap { grid-template-columns: 1fr; height: auto; }
  .g-main { height: 280px; }
  .g-thumbs { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); height: 90px; }
}

@media (max-width: 640px) {
  .container { padding: 0 1rem; }
  .section { padding: 4rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .specs-strip { grid-template-columns: repeat(2, 1fr); }
  .spec:nth-child(2n) { border-right: none; }
  .spec:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .spec:nth-child(n+3) { border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { text-align: center; }
  .fleet-grid { max-width: 100%; }
}
