/* ==========================================================
   Finesse Car Body Repairs — Premium Automotive
   Dark theme · Orange accents · 2026
   ========================================================== */

:root {
  --black: #0a0a0b;
  --dark: #111113;
  --dark-2: #1a1a1e;
  --dark-3: #222228;
  --dark-4: #2a2a32;
  --orange: #f97316;
  --orange-dark: #d95d0e;
  --orange-light: #fb923c;
  --orange-glow: rgba(249, 115, 22, 0.25);
  --white: #ffffff;
  --ink: #ededef;
  --ink-soft: #9ca3af;
  --ink-muted: #6b7280;
  --border: #2a2a32;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.5);
  --shadow-orange: 0 8px 24px rgba(249, 115, 22, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Familjen Grotesk', 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.5px; }
.accent { color: var(--orange); }
.bold { font-weight: 700; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  50%      { box-shadow: 0 0 0 16px rgba(249, 115, 22, 0); }
}
.animate-in { animation: fadeUp 0.7s ease both; }
.animate-in-d1 { animation-delay: 0.1s; }
.animate-in-d2 { animation-delay: 0.2s; }
.animate-in-d3 { animation-delay: 0.3s; }
.animate-in-d4 { animation-delay: 0.4s; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.wrap  { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .eyebrow {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--orange); margin-bottom: 6px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white);
}
.section-head .rule {
  width: 48px; height: 3px; background: var(--orange);
  margin: 14px auto 0; border-radius: 4px;
}

/* --- Navigation --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 68px;
}
.brand {
  font-family: 'Familjen Grotesk', sans-serif; font-size: 1.1rem;
  color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.brand b { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft); font-size: 0.85rem;
  font-weight: 500; transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 60px; font-weight: 600; font-size: 0.88rem;
  border: none; cursor: pointer; text-decoration: none;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn span { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
}
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); }
.btn-outline {
  background: transparent; color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-outline-light {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* --- Hero --- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(249, 115, 22, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(249, 115, 22, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255,255,255,0.02) 0%, transparent 40%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 3px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249, 115, 22, 0.1); border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 60px; padding: 8px 18px; font-size: 0.78rem;
  color: var(--orange); margin-bottom: 24px;
  animation: fadeUp 0.8s ease;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.8rem); line-height: 1.02;
  color: var(--white); margin-bottom: 16px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero p {
  font-size: 1.1rem; color: var(--ink-soft);
  max-width: 540px; margin: 0 auto 32px; line-height: 1.7;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-stats {
  display: flex; justify-content: center; gap: 40px; margin-top: 48px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.stat { text-align: center; }
.stat .num { display: block; font-family: 'Familjen Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--white); }
.stat .lab { font-size: 0.75rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* --- Locations Strip --- */
.locations-strip {
  background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.loc-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.loc-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--dark-3); border-radius: var(--radius);
  padding: 20px; border: 1px solid var(--border);
  transition: var(--transition);
}
.loc-card:hover { border-color: var(--orange); box-shadow: var(--shadow-orange); }
.loc-icon { font-size: 1.5rem; flex-shrink: 0; }
.loc-info h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.loc-info p { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 8px; }
.loc-info a { display: block; color: var(--orange); text-decoration: none; font-size: 0.88rem; font-weight: 500; margin-bottom: 2px; }
.loc-info a:hover { color: var(--orange-light); }
.wa-link { color: #25D366 !important; }
.wa-link:hover { color: #4ade80 !important; }

/* --- Services --- */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.service-card {
  background: var(--dark-2); border-radius: var(--radius-lg);
  padding: 36px 24px; text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition); cursor: default;
}
.service-card:hover {
  border-color: var(--orange); transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.12);
}
.s-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(249, 115, 22, 0.1); border: 1px solid rgba(249, 115, 22, 0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.4rem;
}
.service-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.6; }

/* --- Why Us --- */
.why-section { background: var(--dark); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.why-card {
  text-align: center; padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--dark-2); border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.why-card p { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.6; }

/* --- CTA Strip --- */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 70px 0; text-align: center;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; margin-bottom: 12px;
}
.cta-content p {
  color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 28px; font-size: 1rem;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Gallery --- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-card {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gallery-card:hover { border-color: var(--orange); transform: scale(1.02); }
.gallery-placeholder { text-align: center; color: var(--ink-muted); }
.gallery-placeholder span { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.gallery-placeholder p { font-size: 0.85rem; }
.gallery-cta { text-align: center; margin-top: 28px; color: var(--ink-soft); font-size: 0.9rem; }

/* --- Testimonials --- */
.testimonial-section { background: var(--dark); }
.testi-badge {
  text-align: center; margin-bottom: 40px; padding: 32px;
  background: var(--dark-2); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.big-star { font-size: 2rem; color: #fbbf24; letter-spacing: 4px; margin-bottom: 4px; }
.big-num { font-family: 'Familjen Grotesk', sans-serif; font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; }
.testi-badge p { color: var(--ink-soft); margin: 8px 0 16px; font-size: 0.9rem; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testi-card {
  background: var(--dark-2); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover { border-color: var(--orange); }
.stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-card blockquote {
  font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7;
  font-style: italic; margin-bottom: 14px;
}
.testi-card .author { font-size: 0.82rem; color: var(--ink-muted); font-weight: 500; }

/* --- Contact --- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.contact-info h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 16px; }
.hours-card {
  background: var(--dark-2); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border); margin-bottom: 24px;
}
.hours-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-note { font-size: 0.82rem; color: var(--ink-muted); margin-top: 12px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9rem;
}
.contact-row .ic { font-size: 1.1rem; flex-shrink: 0; }
.contact-row a { color: var(--orange); text-decoration: none; }
.contact-row a:hover { color: var(--orange-light); }

.qc-card {
  background: var(--dark-2); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.qc-card h3 { font-size: 1.2rem; color: var(--white); }
.qc-card p { color: var(--ink-soft); font-size: 0.9rem; }

/* --- Footer --- */
footer {
  background: var(--dark-3); padding: 56px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
footer .brand { color: var(--white); margin-bottom: 12px; }
footer .brand-desc { color: var(--ink-muted); font-size: 0.82rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col a {
  display: block; color: var(--ink-muted); text-decoration: none;
  font-size: 0.82rem; margin-bottom: 8px; transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--ink-muted);
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .loc-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .nav-links a:not(.btn):not(.brand) { display: none; }
  .section { padding: 60px 0; }
  .hero { min-height: auto; padding: 100px 20px 60px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .hero-actions { flex-direction: column; }
}
