/* ============================================================
   WJ PLACE — Shared Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0b0b0b;
  --surface:  #141414;
  --surface2: #1c1c1c;
  --border:   #242424;
  --red:      #c0392b;
  --red-h:    #a53125;
  --text:     #f0f0f0;
  --muted:    #787878;
  --font:     'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:    64px;
  --max:      1160px;
  --pad:      5%;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: rgba(11,11,11,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: #fff; }
.nav-links > li > a.active { color: #fff; background: rgba(255,255,255,0.05); }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 11px;
  min-width: 210px;
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.dropdown a.active { color: #fff; background: rgba(255,255,255,0.05); }

.btn-nav-call {
  background: var(--red) !important;
  color: #fff !important;
  padding: 0.5rem 1.15rem !important;
  font-weight: 700 !important;
  border-radius: 7px;
  transition: background 0.2s !important;
  letter-spacing: 0.01em;
}
.btn-nav-call:hover { background: var(--red-h) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #111;
  border-bottom: 1px solid var(--border);
  padding: 1rem var(--pad) 1.5rem;
  flex-direction: column;
  z-index: 199;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 0.8rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: #fff; }
.mobile-nav .m-section {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.8rem 0 0.4rem;
  pointer-events: none;
}
.mobile-nav .m-indent { padding-left: 1rem; font-size: 0.875rem; }
.mobile-nav .m-call { color: var(--red) !important; font-weight: 700 !important; margin-top: 0.25rem; }

/* ── LAYOUT ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.section    { padding: 90px var(--pad); }
.section-sm { padding: 60px var(--pad); }
.section-inner { max-width: var(--max); margin: 0 auto; }

.surface { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── TYPOGRAPHY ── */
.label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.65rem;
}

.heading {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.subtext {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.72;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-h); box-shadow: 0 4px 20px rgba(192,57,43,0.3); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: #505050; background: var(--surface); }
.btn-sm { padding: 0.65rem 1.35rem; font-size: 0.875rem; }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 70px) var(--pad) 90px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 35%, rgba(192,57,43,0.1) 0%, transparent 58%),
              radial-gradient(ellipse at 10% 80%, rgba(192,57,43,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(192,57,43,0.13);
  border: 1px solid rgba(192,57,43,0.28);
  color: #e07868;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.35rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 1.35rem;
}
.hero h1 span { color: var(--red); }

.hero > .hero-inner > .hero-content > p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 2.25rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-panel img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 16px 56px rgba(0,0,0,0.75));
}

.trust-strip {
  margin-top: 3.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: var(--muted);
}
.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── SERVICE HERO (inner pages) ── */
.service-hero {
  padding: calc(var(--nav-h) + 80px) var(--pad) 80px;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(192,57,43,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.service-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.service-hero-logo img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.8));
}
.service-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.service-hero h1 span { color: var(--red); }
.service-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 2rem;
}

/* ── HOME SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.22s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.service-card img {
  width: 155px;
  height: 155px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
  transition: transform 0.25s;
}
.service-card:hover img { transform: scale(1.05); }
.sc-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.sc-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1;
}
.sc-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
}

/* ── REPAIR SERVICES GRID ── */
.repair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.repair-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.repair-item:hover { border-color: rgba(192,57,43,0.5); transform: translateY(-3px); }
.repair-icon { font-size: 1.65rem; margin-bottom: 0.75rem; line-height: 1; }
.repair-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.repair-item p  { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }

/* ── PRICING TABLE ── */
.table-wrap {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 620px;
}

thead th {
  background: var(--surface2);
  padding: 0.95rem 1.3rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.025); }

td {
  padding: 1.05rem 1.3rem;
  vertical-align: top;
  line-height: 1.5;
}
td:nth-child(1) { font-weight: 600; }
td:nth-child(2) { color: var(--muted); }
td:nth-child(3) { font-weight: 800; color: var(--red); white-space: nowrap; }
td:nth-child(4) { color: var(--muted); font-size: 0.82rem; }

/* Service-call callout */
.callout-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.callout-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 1.5rem 1.75rem;
}
.callout-card.urgent { border-color: rgba(192,57,43,0.4); }
.callout-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.callout-card.urgent .callout-tag { color: #e07060; }
.callout-price { font-size: 2.5rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 0.4rem; }
.callout-desc  { font-size: 0.875rem; color: var(--muted); }

/* ── WHY CHOOSE ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.why-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.why-item:hover { border-color: rgba(192,57,43,0.35); }
.why-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(192,57,43,0.22);
  line-height: 1;
  flex-shrink: 0;
  min-width: 30px;
}
.why-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.why-item p  { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }

/* ── MOBILE WASH TIERS ── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.tier-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.tier-card.featured { border-color: var(--red); }

.tier-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
}
.tier-card.featured .tier-header { background: rgba(192,57,43,0.07); }

.tier-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.tier-card.featured .tier-badge { background: rgba(192,57,43,0.2); color: #e07868; }

.tier-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.25rem; }
.tier-duration { font-size: 0.825rem; color: var(--muted); }

.tier-prices {
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-bottom: 1px solid var(--border);
}
.price-row { display: flex; justify-content: space-between; align-items: center; }
.price-row-label { font-size: 0.875rem; color: var(--muted); }
.price-row-amount { font-size: 1.15rem; font-weight: 800; color: var(--red); }

.tier-features {
  padding: 1.25rem 1.75rem;
  flex: 1;
}
.tier-features-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.tier-features ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.tier-features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
}
.tier-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.12em;
}

/* Payment methods */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.pay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pay-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
.pay-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.pay-card p  { font-size: 0.825rem; color: var(--muted); line-height: 1.5; }

/* Notice box */
.notice {
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.22);
  border-radius: 11px;
  padding: 1rem 1.4rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}
.notice-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ── ABOUT GRID (home) ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 1.5rem;
}
.stat-number { font-size: 2.75rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 0.3rem; }
.stat-label  { font-size: 0.875rem; color: var(--muted); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h3 { font-size: 1.5rem; font-weight: 800; line-height: 1.25; margin-bottom: 0.35rem; }
.cta-banner p  { color: var(--muted); font-size: 0.95rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  margin-top: 3rem;
}

.ci-list { display: flex; flex-direction: column; gap: 1.75rem; }

.ci-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.ci-value { font-size: 0.95rem; line-height: 1.6; }
.ci-value a { text-decoration: none; transition: color 0.2s; }
.ci-value a:hover { color: var(--red); }

/* Form */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-g { display: flex; flex-direction: column; gap: 0.4rem; }
.form-g label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.form-g input,
.form-g textarea,
.form-g select {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-g input:focus,
.form-g textarea:focus,
.form-g select:focus { border-color: rgba(192,57,43,0.55); }
.form-g input::placeholder,
.form-g textarea::placeholder { color: #383838; }
.form-g textarea { resize: vertical; min-height: 120px; }
.form-g select option { background: #1c1c1c; }

/* ── FOOTER ── */
footer {
  background: #070707;
  border-top: 1px solid var(--border);
  padding: 4.5rem var(--pad) 2.5rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.875rem; color: var(--muted); line-height: 1.65; max-width: 260px; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text); }

/* ── FLOAT CALL ── */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 0.875rem 2.25rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 28px rgba(192,57,43,0.5);
  z-index: 300;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-call:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 8px 36px rgba(192,57,43,0.6); }

/* ── BRANDS STRIP ── */
.brands-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}
.brands-strip img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.45;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.brands-strip img:hover { opacity: 0.9; }

/* ── FULL-WIDTH PHOTO BANNER ── */
.full-photo {
  overflow: hidden;
  position: relative;
  max-height: 460px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.full-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(11,11,11,0.65) 0%, transparent 40%, transparent 60%, rgba(11,11,11,0.65) 100%),
    linear-gradient(to top, rgba(11,11,11,0.6) 0%, transparent 50%);
  pointer-events: none;
}
.full-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.full-photo-caption {
  position: absolute;
  bottom: 2.5rem;
  left: var(--pad);
  z-index: 1;
  max-width: 520px;
}
.full-photo-caption h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.full-photo-caption p  { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* ── PHOTO GRID (gallery) ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.35s, filter 0.35s;
}
.photo-grid img:hover { transform: scale(1.04); filter: brightness(1.08); }

/* ── VAN PHOTO SECTION (tire / wash service vehicle) ── */
.van-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-top: 2.5rem;
  max-height: 400px;
}
.van-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.4s;
}
.van-photo:hover img { transform: scale(1.03); }
.van-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.82) 0%, rgba(11,11,11,0.25) 55%, transparent 100%);
  pointer-events: none;
}
.van-photo-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.van-photo-caption h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.2rem; }
.van-photo-caption p  { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--red);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── LOGO BOX (hero logo container) ── */
.logo-box {
  background: #1c1c1c;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-box img {
  width: 240px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
}

/* ── LEGAL PAGES ── */
.legal-hero {
  padding: calc(var(--nav-h) + 70px) var(--pad) 50px;
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: -0.02em; margin-top: 0.75rem; margin-bottom: 0.5rem; }
.legal-hero p  { color: var(--muted); font-size: 0.9rem; }

.legal-body { padding: 0 var(--pad) 90px; }
.legal-body .section-inner { max-width: 780px; }
.legal-body h2 { font-size: 1.15rem; font-weight: 800; margin: 2rem 0 0.5rem; }
.legal-body h3 { font-size: 0.95rem; font-weight: 700; margin: 1.25rem 0 0.35rem; }
.legal-body p  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.75rem; }
.legal-body ul { margin: 0.5rem 0 0.75rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.legal-body ul li { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.legal-body a { color: var(--red); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* ── DIVIDER ── */
hr { border: none; border-top: 1px solid var(--border); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tiers-grid  { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 900px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .float-call { display: block; }
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-logo-panel    { display: none; }
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-hero-logo  { display: none; }
  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .callout-pair  { grid-template-columns: 1fr; }
  .photo-grid    { grid-template-columns: 1fr 1fr; }
  .full-photo { max-height: 340px; }
  .full-photo img { height: 340px; }
  footer { padding-bottom: 6rem; }
  /* Prevent iOS Safari from zooming in on input focus */
  .form-g input,
  .form-g textarea,
  .form-g select { font-size: 1rem; }
}

@media (max-width: 640px) {
  .section    { padding: 60px 5%; }
  .section-sm { padding: 44px 5%; }
  .hero       { padding: calc(var(--nav-h) + 36px) 5% 56px; min-height: auto; }
  .service-hero { padding: calc(var(--nav-h) + 36px) 5% 48px; }
  .trust-strip { margin-top: 2rem; padding-top: 1.25rem; gap: 0.9rem 1.75rem; }
  .form-row   { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .cta-banner { padding: 1.75rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .cta-banner h3 { font-size: 1.2rem; }
  .cta-btns .btn-outline { display: none; }
  .repair-grid { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img { height: 220px; border-radius: 10px; }
  .brands-strip { gap: 1.25rem 2rem; }
  .brands-strip img { height: 26px; }
  .full-photo { max-height: 260px; }
  .full-photo img { height: 260px; }
  .full-photo-caption h3 { font-size: 1.2rem; }
  .van-photo { max-height: 300px; border-radius: 14px; }
  .van-photo img { height: 300px; }
  .van-photo-caption { flex-direction: column; align-items: flex-start; gap: 0.85rem; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
  .van-photo-caption h4 { font-size: 1rem; }
  .service-card { padding: 2rem 1.5rem; }
  .tiers-grid  { max-width: 100%; }
  .tier-header,
  .tier-prices,
  .tier-features { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 400px) {
  .float-call { font-size: 0.875rem; padding: 0.8rem 1.6rem; }
  .hero h1    { font-size: 2.3rem; }
}
