:root {
  --ink: #111316;
  --carbon: #181c21;
  --carbon-soft: #20262d;
  --text: #252a31;
  --muted: #65707b;
  --paper: #f3f5f7;
  --surface: #ffffff;
  --line: #d9dee4;
  --line-dark: rgba(255, 255, 255, 0.14);
  --red: #c82127;
  --red-dark: #9f1b20;
  --amber: #f2b632;
  --blue: #385d78;
  --shadow: 0 18px 48px rgba(17, 19, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17, 19, 22, 0.95);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 250px;
  padding-left: 14px;
  border-left: 4px solid var(--red);
  color: #fff;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: #fff;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(200, 33, 39, 0.28);
}

.header-call:hover {
  background: var(--red-dark);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 42%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 15, 18, 0.94), rgba(13, 15, 18, 0.76), rgba(13, 15, 18, 0.22)),
    linear-gradient(180deg, rgba(13, 15, 18, 0.12), rgba(13, 15, 18, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  padding: 104px 0 86px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 850px;
  margin-top: 30px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-facts span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-left: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.hero-facts span:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
}

.btn.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(200, 33, 39, 0.28);
}

.btn.primary:hover {
  background: var(--red-dark);
  color: #fff;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: var(--ink);
}

.service-strip {
  background: var(--carbon);
  color: #fff;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-grid a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-left: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  text-align: center;
}

.strip-grid a:last-child {
  border-right: 1px solid var(--line-dark);
}

.strip-grid a:hover {
  background: var(--red);
  color: #fff;
}

.section {
  padding: 96px 0;
}

.muted {
  background: #e8edf1;
}

h2,
h3,
p {
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.12;
}

h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.25;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading p,
.process-heading p,
.contact-grid p,
.intro-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-section {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.intro-grid p:last-child {
  padding-left: 32px;
  border-left: 4px solid var(--red);
}

.local-section {
  background: var(--paper);
}

.local-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.local-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.local-cards article {
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(17, 19, 22, 0.08);
}

.local-cards article:first-child {
  background: var(--carbon);
}

.local-cards article:first-child h3,
.local-cards article:first-child p {
  color: #fff;
}

.local-cards p {
  margin: 0;
  color: var(--muted);
}

.vehicle-section {
  background: var(--carbon);
  color: #fff;
}

.vehicle-section h2,
.vehicle-section h3 {
  color: #fff;
}

.vehicle-section .section-heading p,
.vehicle-card p {
  color: rgba(255, 255, 255, 0.72);
}

.vehicle-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.vehicle-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.vehicle-photo-stack img {
  width: 100%;
  height: 430px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.vehicle-photo-stack img:first-child {
  margin-top: 28px;
}

.vehicle-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--carbon-soft);
  box-shadow: var(--shadow);
}

.vehicle-copy p {
  margin: 0;
}

.vehicle-checks {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.vehicle-checks li {
  padding: 14px 16px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.service-section {
  background: var(--surface);
}

.service-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 38px;
}

.service-heading p:last-child {
  margin: 0;
  padding: 22px 24px;
  border-left: 4px solid var(--red);
  background: var(--paper);
  color: var(--muted);
  font-weight: 700;
}

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

.service-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(17, 19, 22, 0.1);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.service-body {
  position: relative;
  padding: 28px;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--carbon);
  color: #fff;
  font-weight: 800;
  line-height: 1;
}

.service-body p {
  margin: 0;
  color: var(--muted);
}

.service-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.symptom-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(17, 19, 22, 0.08);
}

.table-row {
  display: grid;
  grid-template-columns: 0.78fr 1.1fr 1.12fr;
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
}

.table-row span {
  padding: 18px 20px;
  border-left: 1px solid var(--line);
}

.table-row span:first-child {
  border-left: 0;
  font-weight: 800;
  color: var(--ink);
}

.table-head {
  background: var(--carbon);
  color: #fff;
  font-weight: 800;
}

.table-head span:first-child {
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 50px;
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 186px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(17, 19, 22, 0.08);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.08rem;
}

.steps span {
  color: var(--muted);
}

.workshop-section {
  background: var(--surface);
}

.workshop-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.workshop-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.workshop-media img {
  width: 100%;
  height: 440px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.workshop-grid p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
}

.gallery-section {
  background: var(--ink);
  color: #fff;
}

.gallery-section h2 {
  color: #fff;
}

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

.gallery-grid img {
  width: 100%;
  height: 270px;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(5) {
  grid-column: span 2;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(6),
.gallery-grid img:nth-child(7),
.gallery-grid img:nth-child(8),
.gallery-grid img:nth-child(9),
.gallery-grid img:nth-child(10) {
  grid-column: span 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(17, 19, 22, 0.06);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  background: var(--red);
  color: #fff;
}

.contact-section h2,
.contact-section .section-kicker {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.8fr;
  gap: 46px;
  align-items: start;
}

.contact-grid h2 {
  margin-bottom: 18px;
  font-size: 2.7rem;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.88);
}

.contact-panel {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-panel p {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  margin: 0;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.contact-panel p:first-child {
  border-top: 0;
}

.contact-panel strong {
  color: var(--muted);
}

.contact-panel a {
  color: var(--red);
  font-weight: 800;
}

.contact-map {
  grid-column: 1 / -1;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.site-footer {
  background: #0d0f12;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #fff;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 8px;
  background: #1fa855;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(14, 113, 55, 0.34);
}

.floating-whatsapp:hover {
  background: #188a46;
  color: #fff;
}

@media (max-width: 1020px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .brand {
    flex: 1;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .hero-facts span {
    min-height: 54px;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding-left: 0;
  }

  .hero-facts span:first-child {
    border-top: 0;
  }

  .vehicle-layout,
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .service-heading,
  .service-card,
  .intro-grid,
  .local-grid,
  .workshop-grid,
  .process-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .local-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(4),
  .gallery-grid img:nth-child(5),
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(6),
  .gallery-grid img:nth-child(7),
  .gallery-grid img:nth-child(8),
  .gallery-grid img:nth-child(9),
  .gallery-grid img:nth-child(10) {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: sticky;
    background: rgba(17, 19, 22, 0.98);
  }

  .header-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 12px;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
    padding-left: 12px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .header-call {
    width: auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: initial;
    width: auto;
    gap: 8px;
    padding: 2px 0 0;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.82rem;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(13, 15, 18, 0.76), rgba(13, 15, 18, 0.9)),
      linear-gradient(90deg, rgba(13, 15, 18, 0.72), rgba(13, 15, 18, 0.34));
  }

  .hero-content {
    padding: 70px 0 58px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  h2 {
    font-size: 2rem;
  }

  .intro-grid p:last-child {
    padding-left: 18px;
  }

  .vehicle-layout,
  .strip-grid,
  .local-cards,
  .workshop-media,
  .steps,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-heading,
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-heading p:last-child {
    padding: 18px;
  }

  .service-card img {
    height: 230px;
    min-height: 0;
  }

  .strip-grid a,
  .strip-grid a:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .table-row span:first-child {
    border-top: 0;
  }

  .table-head {
    display: none;
  }

  .gallery-grid img {
    height: 300px;
  }

  .workshop-media img {
    height: 280px;
  }

  .contact-grid h2 {
    font-size: 2.05rem;
  }

  .contact-panel p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-map {
    min-height: 320px;
  }

  .contact-map iframe {
    height: 320px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0 92px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.92rem;
  }
}
  .vehicle-photo-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .vehicle-photo-stack {
    grid-template-columns: 1fr;
  }

  .vehicle-photo-stack img,
  .vehicle-photo-stack img:first-child {
    height: 280px;
    margin-top: 0;
  }
