/* =========================================
   WRENCHDROP — STYLES.CSS
   ========================================= */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --color-bg: #0a0f1e;
  --color-surface: #0f1729;
  --color-surface-2: #162040;
  --color-accent: #22c55e;
  --color-accent-dark: #16a34a;
  --color-navy: #1a3a6e;
  --color-navy-mid: #1e4080;
  --color-blue: #2563eb;
  --color-text: #f0f4ff;
  --color-muted: #8899bb;
  --color-border: rgba(255,255,255,0.08);
  --color-card: rgba(255,255,255,0.04);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-accent: 0 0 40px rgba(34,197,94,0.2);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1200px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; }

/* === UTILITIES === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
.btn-primary {
  background: var(--color-accent);
  color: #0a1a0f;
}
.btn-primary:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 520px;
  margin: 0 auto;
}
.section-header .section-label { justify-content: center; }

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === NAVIGATION === */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--transition);
}
.nav-header.scrolled {
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { flex-shrink: 0; }
.logo-img { height: 72px; width: auto; mix-blend-mode: screen; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-muted);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.06);
}
.nav-links a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.nav-cta { margin-left: auto; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,58,110,0.4) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(34,197,94,0.08) 0%, transparent 60%),
              var(--color-bg);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--color-navy-mid);
  top: -200px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--color-accent);
  bottom: -100px; right: 20%;
  animation: float 12s ease-in-out infinite reverse;
}
.shape-3 {
  width: 300px; height: 300px;
  background: var(--color-blue);
  top: 30%; left: -50px;
  animation: float 10s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text {
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: normal;
  color: var(--color-accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}
.avatar-stack {
  display: flex;
}
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c, #3b82f6);
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-bg);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.proof-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stars { color: #fbbf24; font-size: 14px; letter-spacing: 2px; }
.proof-text span { font-size: 13px; color: var(--color-muted); }
.proof-text strong { color: var(--color-text); }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-card-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.repair-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
}
.repair-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.repair-icon { font-size: 28px; }
.repair-title { font-weight: 700; font-size: 17px; }
.repair-status {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 4px;
}
.status-active {
  background: rgba(34,197,94,0.15);
  color: var(--color-accent);
}
.repair-progress { margin-bottom: 20px; }
.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), #86efac);
  border-radius: 6px;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.repair-progress span { font-size: 13px; color: var(--color-muted); }
.repair-details { display: flex; flex-direction: column; gap: 10px; }
.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-muted);
}
.price-row strong, .price-val {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-accent);
}
.tech-pill {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,58,110,0.9);
  border: 1px solid rgba(37,99,235,0.4);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.green-dot {
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* === SERVICES === */
.services {
  padding: 100px 0;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.service-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,197,94,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(34,197,94,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}
.service-card:hover::before { opacity: 1; }
.card-large {
  grid-column: span 2;
}
.card-wide {
  grid-column: span 2;
}
.service-icon { font-size: 32px; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p { color: var(--color-muted); font-size: 15px; line-height: 1.6; }
.service-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(34,197,94,0.15);
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 0;
  position: relative;
}
.hiw-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(26,58,110,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 40px 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
}
.step:hover {
  border-color: rgba(34,197,94,0.3);
  transform: translateY(-4px);
}
.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(34,197,94,0.4), rgba(34,197,94,0.1));
  margin-top: 56px;
  position: relative;
}
.step-connector::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: -10px;
  color: var(--color-accent);
  font-size: 18px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(34,197,94,0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.step:hover .step-number {
  color: rgba(34,197,94,0.55);
  text-shadow: 0 0 24px rgba(34,197,94,0.4);
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-content p { color: var(--color-muted); font-size: 15px; line-height: 1.6; }

/* === WHY US === */
.why-us {
  padding: 100px 0;
  border-top: 1px solid var(--color-border);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.why-text p {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.why-list li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.5;
}
.why-list li strong { color: var(--color-text); }
.why-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stat-accent {
  background: linear-gradient(135deg, rgba(34,197,94,0.12) 0%, rgba(22,163,74,0.05) 100%);
  border-color: rgba(34,197,94,0.25);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { font-size: 28px; color: var(--color-accent); }
.stat-label { font-size: 14px; color: var(--color-muted); font-weight: 500; }

/* === TESTIMONIALS / REVIEWS === */
.testimonials {
  padding: 100px 0;
  border-top: 1px solid var(--color-border);
}

/* Loading spinner */
.reviews-list-wrap { margin-bottom: 60px; }
.reviews-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* No reviews yet state */
.reviews-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--color-muted);
  font-size: 16px;
}
.reviews-empty .empty-icon { font-size: 48px; display: block; margin-bottom: 12px; }

/* Summary bar */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.reviews-avg-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}
.reviews-summary-right { display: flex; flex-direction: column; gap: 4px; }
.reviews-stars-display { color: #f59e0b; font-size: 20px; letter-spacing: 2px; }
.reviews-count-label { font-size: 13px; color: var(--color-muted); }

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card-stars { color: #f59e0b; font-size: 18px; letter-spacing: 1px; }
.review-card-text {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.review-card-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card-author strong { display: block; font-size: 14px; }
.review-card-author span { font-size: 12px; color: var(--color-muted); }

/* Service Area Map */
.service-area { padding: 100px 0; border-top: 1px solid var(--color-border); }
.service-area .section-header { text-align: center; margin-bottom: 48px; }
.service-area .section-header p { color: var(--color-muted); max-width: 540px; margin: 12px auto 0; }
.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--color-border); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
#serviceMap { height: 420px; width: 100%; background: #1a1a2e; }

/* Leave a review section */
.leave-review-section {
  padding: 80px 0;
  border-top: 1px solid var(--color-border);
}

/* Leave a review form */
.leave-review-wrap {
  margin-top: 0;
  padding: 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.leave-review-wrap h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: 28px;
}

/* Star picker */
.star-picker { display: flex; gap: 4px; }
.star-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--color-border);
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  transition: color 0.15s, transform 0.1s;
}
.star-btn.active, .star-btn.hovered { color: #f59e0b; }
.star-btn:active { transform: scale(1.2); }

/* Submit note */
.review-note {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 10px;
}

/* Success state */
.review-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 40px;
}
.review-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  color: var(--color-accent);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.review-success h4 { font-size: 20px; margin: 0; }
.review-success p { color: var(--color-muted); margin: 0; }

/* === CONTACT === */
.contact {
  padding: 100px 0;
  border-top: 1px solid var(--color-border);
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(26,58,110,0.2) 0%, transparent 60%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.contact-text p {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.info-icon { font-size: 22px; flex-shrink: 0; }
.info-row strong { display: block; font-size: 13px; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.info-row a, .info-row span {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
}
.info-row a:hover { color: var(--color-accent); }

.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
input, textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--color-text);
  font-size: 15px;
  transition: var(--transition);
  resize: vertical;
}
.label-optional { font-size: 11px; font-weight: 400; color: var(--color-muted); text-transform: none; letter-spacing: 0; opacity: 0.7; }
input::placeholder, textarea::placeholder { color: rgba(136,153,187,0.5); }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(34,197,94,0.04);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
/* === SERVICE TOGGLE === */
.service-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  background: rgba(255,255,255,0.03);
  color: var(--color-muted);
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.toggle-btn:hover {
  border-color: rgba(34,197,94,0.4);
  color: var(--color-text);
}
.toggle-btn.active {
  border-color: var(--color-accent);
  background: rgba(34,197,94,0.08);
  color: var(--color-text);
}
.toggle-icon { font-size: 20px; }
.toggle-label { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }

/* === SERVICE NOTICES === */
.service-notice {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}
.service-notice strong { display: block; margin-bottom: 4px; font-size: 14px; }
.service-notice p { margin: 0; }
.notice-urgent {
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.25);
  color: #fbbf24;
}
.notice-urgent p { color: rgba(251,191,36,0.8); }
.notice-scheduled {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--color-accent);
}
.notice-scheduled p { color: rgba(34,197,94,0.8); }
.notice-info {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  color: #93c5fd;
}
.notice-info p { color: rgba(147,197,253,0.8); }
.hidden { display: none; }

/* === SERVICE SELECT === */
select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--color-text);
  font-size: 15px;
  font-family: var(--font-body);
  transition: var(--transition);
  cursor: pointer;
  appearance: none;
  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 d='M1 1l5 5 5-5' stroke='%238899bb' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
select:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: rgba(34,197,94,0.04);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
select option { background: #0f1729; color: var(--color-text); }

/* === PARTS QUALITY === */
.quality-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.quality-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  background: rgba(255,255,255,0.03);
  color: var(--color-muted);
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
  text-align: center;
}
.quality-btn:hover { border-color: rgba(34,197,94,0.4); color: var(--color-text); }
.quality-btn.active {
  border-color: var(--color-accent);
  background: rgba(34,197,94,0.08);
  color: var(--color-text);
}
.quality-icon { font-size: 18px; }
.quality-name { font-size: 13px; font-weight: 700; }
.quality-desc { font-size: 11px; color: var(--color-muted); line-height: 1.3; }
.quality-btn.active .quality-desc { color: rgba(34,197,94,0.7); }
.quality-note { font-size: 12px; color: var(--color-muted); margin: 0; }

/* === TIME SLOTS === */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.time-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  background: rgba(255,255,255,0.03);
  color: var(--color-muted);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}
.time-btn span { font-size: 11px; font-weight: 400; display: block; }
.time-btn:hover { border-color: rgba(34,197,94,0.4); color: var(--color-text); }
.time-btn.active {
  border-color: var(--color-accent);
  background: rgba(34,197,94,0.08);
  color: var(--color-text);
}

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 12px;
}

/* === FIELD VALIDATION === */
.field-wrap { position: relative; }
.field-wrap input,
.field-wrap textarea {
  padding-right: 40px;
  transition: border-color 0.2s;
}
.field-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
}
.field-wrap.valid input,
.field-wrap.valid textarea { border-color: #22c55e; }
.field-wrap.error input,
.field-wrap.error textarea { border-color: #ef4444; }
.field-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 5px;
  display: none;
}
.field-wrap.error .field-error { display: block; }

/* VIN decode hint */
.vin-decoded {
  font-size: 12px;
  color: #22c55e;
  margin-top: 5px;
  display: none;
}
.vin-decoded.visible { display: block; }
.vin-loading {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 5px;
  display: none;
}
.vin-loading.visible { display: block; }

/* === FAQ === */
.faq-section {
  padding: 100px 0;
  border-top: 1px solid var(--color-border);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(34,197,94,0.35); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
  padding: 0 24px 22px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* === FLOATING CALL BUTTON === */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(34,197,94,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34,197,94,0.55);
}
/* Hide on desktop — they can use the nav CTA */
@media (min-width: 769px) { .float-call { display: none; } }

/* === FOOTER === */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-logo { height: 72px; width: auto; margin-bottom: 16px; mix-blend-mode: screen; }
.footer-brand p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.social-link:focus-visible { outline: 2px solid var(--color-accent); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--color-muted);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--color-accent); }
.footer-col a:focus-visible { outline: 2px solid var(--color-accent); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span { font-size: 13px; color: var(--color-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 13px;
  color: var(--color-muted);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--color-text); }

/* === MOBILE DRAWER === */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,15,30,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 20px; padding: 12px 32px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 1001; }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .social-proof { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  
  .services-bento {
    grid-template-columns: 1fr;
  }
  .card-large, .card-wide { grid-column: span 1; }
  
  .steps-row {
    flex-direction: column;
    gap: 16px;
  }
  .step-connector { display: none; }
  
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-inner > * { min-width: 0; }
  .why-stats { width: 100%; }
  .why-stats .stat-card { min-width: 0; padding: 20px 12px; }
  .stat-number { font-size: 36px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-featured { transform: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; align-items: flex-start; gap: 8px; }
  .leave-review-wrap { padding: 28px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .why-stats .stat-card { min-width: 0; padding: 20px 12px; }
  .stat-number { font-size: 36px; }
  .footer-links { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}
