/* ═══════════════════════════════════════════════
   RESET & ROOT
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0E0E0E;
  --dark:     #141414;
  --dark2:    #1A1A1A;
  --dark3:    #222222;
  --card:     #1E1E1E;
  --border:   #2A2A2A;
  --white:    #FFFFFF;
  --off:      #B0B0B0;
  --dim:      #707070;
  --red:      #D32F2F;
  --red-h:    #B71C1C;
  --red-glow: rgba(211,47,47,.25);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 68px;
  --radius: 10px;
  --transition: .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform .15s, box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-h);
  border-color: var(--red-h);
  box-shadow: 0 6px 24px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.7);
}

.btn-sm { padding: 11px 22px; font-size: 13px; }

/* ── Section shared ── */
section { padding: 96px 0; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--off);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(14,14,14,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition),
              background var(--transition);
}
#site-header.scrolled {
  background: rgba(14,14,14,.98);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Header right side (hamburger + lang toggle) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language toggle pill */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--off);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition), color var(--transition);
  line-height: 1.4;
}
.lang-btn.active {
  background: var(--red);
  color: #fff;
}
.lang-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255,255,255,.09);
}

.logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .5px;
  flex-shrink: 0;
}
.logo-joe  { color: var(--red); }
.logo-auto { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--off);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-call {
  background: var(--red) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
}
.nav-call:hover { background: var(--red-h) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile sticky call */
.mobile-sticky-call {
  display: none;
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 900;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(211,47,47,.45);
  transition: transform .15s, box-shadow .15s;
}
.mobile-sticky-call:hover { transform: scale(1.04); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background:
    linear-gradient(135deg, rgba(14,14,14,.97) 0%, rgba(30,10,10,.92) 50%, rgba(14,14,14,.97) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,.012) 40px,
      rgba(255,255,255,.012) 41px
    );
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(211,47,47,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--dark) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(211,47,47,.15);
  border: 1px solid rgba(211,47,47,.3);
  color: #FF7979;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

#hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #fff;
}
#hero h1 br { display: block; }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--off);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 13px;
  color: var(--dim);
}

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
#services {
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: rgba(211,47,47,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.service-card--wide {
  grid-column: span 4;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.service-card--wide .service-icon { flex-shrink: 0; }
.service-card--wide h3 { margin-bottom: 8px; }

.service-icon {
  width: 48px; height: 48px;
  color: var(--red);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.service-card p {
  font-size: 14px;
  color: var(--off);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   BEFORE & AFTER GALLERY
═══════════════════════════════════════════════ */
#gallery { background: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ba-pair { display: flex; flex-direction: column; gap: 0; }

.ba-image {
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.ba-image + .ba-image { border-radius: 0 0 10px 10px; }

.ba-label {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0,0,0,.7);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.ba-before .ba-label { color: #FF7979; border-color: rgba(211,47,47,.4); }
.ba-after  .ba-label { color: #6EE7B7; border-color: rgba(16,185,129,.4); }

.ba-placeholder {
  height: 180px;
  background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-bottom: none;
}
.ba-placeholder--after {
  background: linear-gradient(135deg, #111A14 0%, #182019 100%);
  border-top: 1px dashed rgba(110,231,183,.2);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.ba-placeholder span {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ba-caption {
  font-size: 13px;
  color: var(--off);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* ═══════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════ */
#why-us {
  background: var(--black);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.why-text h2 {
  margin-bottom: 20px;
}
.why-desc {
  font-size: 16px;
  color: var(--off);
  margin-bottom: 36px;
  line-height: 1.75;
}

.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.reason {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.reason:first-child { border-top: 1px solid var(--border); }

.reason-icon {
  width: 28px; height: 28px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.reason strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.reason p {
  font-size: 14px;
  color: var(--off);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   ESTIMATE FORM
═══════════════════════════════════════════════ */
#estimate {
  background: var(--dark);
}
#estimate h2, #estimate .section-label { text-align: center; }
#estimate .section-sub { margin: 0 auto 56px; text-align: center; }

.form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 48px 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-row .form-group { margin-bottom: 0; }

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--off);
  letter-spacing: .3px;
}
.req { color: var(--red); }

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font);
  color: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--dim); }
input:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211,47,47,.15);
}
textarea { resize: vertical; min-height: 120px; }

/* File drop */
.file-drop {
  border: 2px dashed var(--border);
  border-radius: 10px;
  background: var(--dark2);
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.file-drop:hover, .file-drop.drag-over {
  border-color: var(--red);
  background: rgba(211,47,47,.05);
}
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%; height: 100%;
}
.file-drop-inner {
  padding: 32px 20px;
  text-align: center;
  color: var(--dim);
  pointer-events: none;
}
.file-drop-inner svg { margin: 0 auto 12px; }
.file-drop-inner p { font-size: 14px; color: var(--off); }
.file-drop-inner p strong { color: #fff; }
.file-hint { font-size: 12px !important; color: var(--dim) !important; margin-top: 4px; }

.file-names {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}
.file-chip {
  font-size: 12px;
  background: rgba(211,47,47,.12);
  border: 1px solid rgba(211,47,47,.25);
  color: #FF8A8A;
  padding: 4px 10px;
  border-radius: 20px;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.btn-submit { width: 100%; padding: 18px; font-size: 16px; }

.form-meta { text-align: center; }
.form-respond {
  font-size: 14px;
  color: #6EE7B7;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-disclaimer {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.5;
}

/* Success state */
.hidden { display: none !important; }
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 64px; height: 64px;
  background: rgba(16,185,129,.15);
  border: 2px solid rgba(16,185,129,.35);
  color: #6EE7B7;
  font-size: 28px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}
.form-success p {
  font-size: 15px;
  color: var(--off);
  margin-bottom: 8px;
  line-height: 1.7;
}
.form-success a { color: var(--red); font-weight: 600; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--off);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--off);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--red); color: #fff; border-color: var(--red); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--off);
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--off);
  line-height: 1.55;
}
.footer-list svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.footer-list a { color: var(--off); transition: color var(--transition); }
.footer-list a:hover { color: #fff; }

.footer-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--off);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.footer-hours li:last-child { border-bottom: none; }
.footer-hours span:first-child { color: #fff; font-weight: 500; }
.closed { color: var(--dim) !important; }

.map-placeholder { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--dim);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--wide {
    grid-column: span 2;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

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

  section { padding: 72px 0; }

  /* Header */
  .nav-links {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(14,14,14,.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    display: none;
    backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; font-size: 15px; }
  .nav-call { text-align: center; margin-top: 8px; }
  .hamburger { display: flex; }

  /* Mobile sticky call */
  .mobile-sticky-call { display: flex; }

  /* Hero */
  #hero h1 { font-size: clamp(30px, 8vw, 42px); letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .hero-content { padding: 60px 0; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card--wide {
    grid-column: span 1;
    flex-direction: column;
  }

  /* Gallery */
  .gallery-grid { max-width: 100%; }

  /* Form */
  .form-wrapper { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-map { order: -1; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn { padding: 14px 24px; font-size: 14px; }
}
