/* ============================================================
   NGM Motors — style.css
   Friendly & local | Warm dark theme | Mobile-first
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --red:        #e8341a;
  --red-dark:   #b8260f;
  --red-hover:  #ff4525;
  --red-glow:   rgba(232,52,26,0.14);
  --bg:         #111316;
  --bg2:        #191c21;
  --bg3:        #20242b;
  --bg4:        #282d36;
  --border:     rgba(255,255,255,0.07);
  --border2:    rgba(255,255,255,0.12);
  --text:       #f0f0ee;
  --text-muted: #7a808f;
  --text-light: #b8bdc8;
  --white:      #ffffff;
  --green:      #22c55e;
  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --font-ui:    'Barlow', sans-serif;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 4px 28px rgba(0,0,0,0.5);
  --shadow-red: 0 8px 28px rgba(232,52,26,0.32);
  --trans:      0.22s ease;
  --header-h:   64px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--red-hover); }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-family: var(--font-ui); font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; }
p  { color: var(--text-light); line-height: 1.85; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.3em; }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-xs { padding: 36px 0; }
.text-center { text-align: center; }
.eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.divider { width: 48px; height: 3px; background: var(--red); border-radius: 2px; margin: 14px 0 28px; }
.divider.center { margin: 14px auto 28px; }

/* ── Topbar ────────────────────────────────────────────────── */
.topbar {
  background: #0b0d10;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 7px 0;
}
.topbar-inner { display: flex; align-items: center; gap: 12px; }
.topbar-sep { color: var(--border2); }
.topbar-right { margin-left: auto; }
.topbar-phone { color: var(--red); font-weight: 700; font-size: 0.85rem; }
.topbar-phone:hover { color: var(--red-hover); }

/* ── Header / Nav ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(17,19,22,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.header-inner { display: flex; align-items: center; height: 100%; gap: 24px; }

.logo { display: flex; align-items: baseline; gap: 3px; text-decoration: none; }
.logo-ngm {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.04em;
}
.logo-motors {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav > a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
}
.main-nav > a:hover { color: var(--white); background: var(--bg3); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  display: block;
  transition: color var(--trans), background var(--trans);
}
.nav-dropdown:hover .nav-dropdown-toggle { color: var(--white); background: var(--bg3); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 10px;
  min-width: 240px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans), transform var(--trans);
  transform: translateX(-50%) translateY(-6px);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
}
.dropdown-menu a:hover { background: var(--bg3); color: var(--white); }

.header-ctas { display: flex; align-items: center; gap: 8px; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--trans); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--bg2);
  border-left: 1px solid var(--border2);
  z-index: 300;
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav nav a {
  display: block;
  padding: 11px 16px;
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
}
.mobile-nav nav a:hover { background: var(--bg3); color: var(--white); }
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.show { opacity: 1; pointer-events: all; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-ui); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.03em;
  border-radius: var(--radius); cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--trans);
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--white); color: var(--white); transform: translateY(-2px); }
.btn-ghost  { background: var(--bg3); color: var(--text-light); border-color: var(--border2); }
.btn-ghost:hover { color: var(--white); background: var(--bg4); }
.btn-green  { background: #16a34a; color: var(--white); border-color: #16a34a; }
.btn-green:hover { background: #15803d; border-color: #15803d; color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0e1014 0%, #18202a 60%, #111316 100%);
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,52,26,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,52,26,0.12);
  border: 1px solid rgba(232,52,26,0.3);
  color: var(--red);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 strong { color: var(--red); }
.hero-sub { font-size: 1.1rem; color: var(--text-light); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg3); border: 1px solid var(--border2);
  padding: 6px 13px; border-radius: 100px;
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600;
  color: var(--text-light);
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* Hero search */
.hero-search-wrap { margin-bottom: 32px; }
.hero-search {
  display: flex;
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: visible;
  transition: border-color var(--trans), box-shadow var(--trans);
  position: relative;
}
.hero-search:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
.hero-search input {
  flex: 1; padding: 16px 20px;
  background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--font-body); font-size: 1rem;
}
.hero-search input::placeholder { color: var(--text-muted); }
.hero-search button {
  background: var(--red); color: var(--white);
  border: none; padding: 12px 22px;
  font-family: var(--font-ui); font-size: 0.9rem; font-weight: 700;
  cursor: pointer; border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: background var(--trans);
  white-space: nowrap;
}
.hero-search button:hover { background: var(--red-hover); }

/* Search suggestions */
.search-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  z-index: 50; display: none; overflow: hidden;
}
.search-suggestions.show { display: block; }
.suggestion-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; cursor: pointer;
  color: var(--text-light); font-size: 0.9rem;
  transition: background var(--trans);
  text-decoration: none;
}
.suggestion-item:hover { background: var(--bg3); color: var(--white); }
.suggestion-item .si-icon { color: var(--red); font-size: 1.1rem; width: 24px; text-align: center; }
.no-results { padding: 16px 18px; color: var(--text-muted); font-size: 0.9rem; }

/* Hero right side */
.hero-right {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.hero-right h3 { margin-bottom: 20px; font-size: 1.4rem; }
.hero-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.hero-contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--bg3); border-radius: var(--radius);
  color: var(--text-light);
  transition: background var(--trans);
}
.hero-contact-item:hover { background: var(--bg4); }
.hero-contact-item a { color: inherit; text-decoration: none; flex: 1; }
.hci-icon { font-size: 1.3rem; width: 32px; text-align: center; }
.hci-label { font-size: 0.78rem; color: var(--text-muted); display: block; font-family: var(--font-ui); letter-spacing: 0.08em; text-transform: uppercase; }
.hci-value { font-size: 1rem; font-weight: 700; color: var(--white); font-family: var(--font-ui); }

/* ── Trust bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 0.85rem;
  font-weight: 600; color: var(--text-light);
  padding: 8px 16px;
}
.trust-item .ti-icon { font-size: 1rem; }
.trust-sep { color: var(--border2); font-size: 1.2rem; }

/* ── Services grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon { font-size: 2rem; }
.sc-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--white); }
.sc-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.sc-arrow { margin-top: auto; font-size: 0.8rem; color: var(--red); font-family: var(--font-ui); font-weight: 700; }

/* ── Why NGM section ───────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
.why-card p { font-size: 0.9rem; margin: 0; }

/* ── Area section ──────────────────────────────────────────── */
.area-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.area-tag {
  background: var(--bg3); border: 1px solid var(--border2);
  padding: 8px 16px; border-radius: 100px;
  font-family: var(--font-ui); font-size: 0.85rem;
  font-weight: 600; color: var(--text-light);
}

/* ── Reviews ───────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
}
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }
.review-text { font-size: 0.93rem; font-style: italic; color: var(--text-light); margin-bottom: 16px; }
.review-author { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 700; color: var(--white); }
.review-date { font-size: 0.78rem; color: var(--text-muted); }

/* ── CTA banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #f04a2a 100%);
  padding: 64px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 28px; }
.cta-banner .btn-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Page hero (service pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--bg2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 50px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
  pointer-events: none;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 0.78rem;
  color: var(--text-muted); margin-bottom: 18px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--red); }
.ph-notice {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  color: #f59e0b;
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px; border-radius: 100px; margin-top: 16px;
}

/* ── Service body layout ───────────────────────────────────── */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 60px 0 80px;
  align-items: start;
}
.service-content h2 { margin: 44px 0 14px; }
.service-content h2:first-child { margin-top: 0; }
.service-content h3 {
  font-family: var(--font-ui); font-size: 0.85rem; font-weight: 700;
  color: var(--red); text-transform: uppercase; letter-spacing: 0.12em;
  margin: 28px 0 10px;
}
.service-content p  { color: var(--text-light); }
.service-content ul { list-style: none; padding: 0; margin: 0 0 20px; }
.service-content ul li {
  padding: 8px 0 8px 24px; position: relative;
  color: var(--text-light); font-size: 0.975rem; line-height: 1.7;
  border-bottom: 1px solid var(--border);
}
.service-content ul li:last-child { border-bottom: none; }
.service-content ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--red); font-weight: 800; font-family: var(--font-ui);
}

/* Highlight / callout box */
.callout {
  background: var(--bg2); border-left: 3px solid var(--red);
  padding: 20px 24px; margin: 28px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout p { margin: 0; }
.callout-warn {
  background: rgba(245,158,11,0.07);
  border-left-color: #f59e0b;
}
.callout-warn p { color: #fbbf24; }

/* Sidebar */
.service-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.sidebar-box {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 14px;
}
.sidebar-box h4 { margin-bottom: 16px; color: var(--white); }
.sidebar-contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  color: var(--text-light); font-size: 0.88rem;
}
.sidebar-contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-contact-item strong { display: block; color: var(--white); font-size: 0.95rem; }
.sci-icon { width: 36px; height: 36px; background: var(--bg3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.sidebar-services a { display: block; padding: 8px 0; color: var(--text-light); font-size: 0.88rem; border-bottom: 1px solid var(--border); transition: color var(--trans), padding var(--trans); }
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services a:hover { color: var(--red); padding-left: 4px; }

/* FAQ */
.faq-list { margin-top: 28px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer;
  font-family: var(--font-ui); font-size: 1rem; font-weight: 600;
  color: var(--text); text-align: left; gap: 12px;
  transition: color var(--trans);
}
.faq-question:hover { color: var(--red); }
.faq-icon { font-size: 1.2rem; color: var(--red); flex-shrink: 0; transition: transform var(--trans); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 18px; }
.faq-answer p { font-size: 0.95rem; margin: 0; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-wrap {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 36px;
  max-width: 680px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-family: var(--font-ui); font-size: 0.82rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
input[type=text], input[type=email], input[type=tel],
input[type=search], select, textarea {
  background: var(--bg3); border: 1.5px solid var(--border2);
  border-radius: var(--radius); color: var(--text);
  font-family: var(--font-body); font-size: 0.975rem;
  padding: 12px 16px; width: 100%;
  transition: border-color var(--trans), box-shadow var(--trans);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
select option { background: var(--bg3); }
textarea { resize: vertical; min-height: 120px; }
.honeypot { position: absolute; left: -9999px; top: -9999px; width: 0; height: 0; overflow: hidden; }
.form-msg { padding: 14px 18px; border-radius: var(--radius); font-size: 0.95rem; display: none; margin-bottom: 16px; }
.form-msg.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: var(--green); }
.form-msg.error   { background: rgba(232,52,26,0.1); border: 1px solid rgba(232,52,26,0.3); color: #ff8080; }

/* ── FAB (Floating Action Button) ──────────────────────────── */
.fab-wrap { position: fixed; bottom: 28px; right: 28px; z-index: 400; }
.fab-main {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--red); border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(232,52,26,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: transform var(--trans), background var(--trans);
}
.fab-main:hover { transform: scale(1.08); background: var(--red-hover); }
.fab-menu {
  position: absolute; bottom: calc(100% + 12px); right: 0;
  display: flex; flex-direction: column; gap: 8px;
  width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--trans), transform var(--trans);
}
.fab-wrap.open .fab-menu { opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0); }
.fab-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  color: var(--text); text-decoration: none;
  transition: background var(--trans), transform var(--trans);
  box-shadow: var(--shadow);
}
.fab-item:hover { background: var(--bg3); color: var(--text); transform: translateX(-4px); }
.fab-item-icon { font-size: 1.2rem; width: 28px; text-align: center; }
.fab-item-label { font-family: var(--font-ui); font-size: 0.88rem; font-weight: 700; color: var(--white); }
.fab-item-label small { display: block; font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }
.fab-phone { border-left: 3px solid var(--green); }
.fab-wa    { border-left: 3px solid #25D366; }
.fab-book  { border-left: 3px solid var(--red); }
.fab-quote { border-left: 3px solid #f59e0b; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #0c0e11;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.8rem; font-weight: 800;
  color: var(--white); margin-bottom: 14px;
}
.footer-logo span { color: var(--red); }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: background var(--trans), color var(--trans);
}
.footer-social a:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 0.95rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a, .footer-col ul li { font-size: 0.88rem; color: var(--text-muted); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--red); }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.footer-hours li { display: flex; justify-content: space-between; }
.footer-areas { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; }
.footer-areas li {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 100px;
  font-size: 0.78rem; color: var(--text-muted);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--red); }

/* ── Admin login ───────────────────────────────────────────── */
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg); }
.admin-login-box { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 44px; width: 380px; }
.admin-login-box h1 { font-size: 1.8rem; margin-bottom: 6px; }
.admin-login-box p { margin-bottom: 28px; font-size: 0.9rem; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.animate { opacity: 0; }
.animate.in { animation: fadeUp 0.55s ease both; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; } .d4 { animation-delay: 0.4s; }
.d5 { animation-delay: 0.5s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner  { grid-template-columns: 1fr; gap: 40px; }
  .hero-right  { display: none; } /* hide contact panel on tablet */
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}
@media (max-width: 768px) {
  .section    { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .container  { padding: 0 18px; }
  .main-nav   { display: none; }
  .header-ctas .btn-ghost { display: none; }
  .burger     { display: flex; margin-left: auto; }
  .header-ctas { margin-left: 0; }
  .form-grid  { grid-template-columns: 1fr; }
  .form-grid .form-group.full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; gap: 0; padding-bottom: 4px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fab-wrap { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

/* Utility content card for legal/static pages */
.content-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:34px;box-shadow:var(--shadow-sm)}
.content-card h2{margin-top:24px;margin-bottom:10px;font-family:var(--font-display)}
.content-card h2:first-child{margin-top:0}
.content-card p{color:var(--text);line-height:1.75;margin-bottom:14px}
