:root {
  --bg: #050608;
  --panel: #0d1015;
  --panel-2: #11151d;
  --text: #f6f7fb;
  --muted: #c6cad4;
  --line: rgba(255,255,255,0.08);
  --red: #cb0f13;
  --red-2: #8c090b;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.06), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(55,110,255,.15), transparent 17%),
    linear-gradient(180deg, #0b0d12 0%, #050608 50%, #090b0f 100%);
}
img { max-width: 100%; display: block; }
a { -webkit-tap-highlight-color: transparent; }
input, select, textarea, button { font: inherit; }
.site-shell { max-width: 1280px; margin: 0 auto; padding: 14px; }
.topbar, .navbar, .section-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,20,28,.96), rgba(10,11,16,.97));
  box-shadow: var(--shadow);
}
.topbar { padding: 10px 18px; margin-bottom: 10px; }
.topbar-compact { border-radius: 24px; }
.topbar-right { display: flex; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.top-item { color: var(--muted); text-decoration: none; font-size: 14px; }
.navbar {
  position: sticky; top: 10px; z-index: 20; margin-bottom: 12px;
  padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.gallery-navbar { position: static; }
.logo-wrap { text-decoration: none; flex-shrink: 0; }
.logo-img { width: min(490px, 52vw); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: #eef2f9; text-decoration: none; font-weight: 600; }
.nav-links a:hover { color: white; }
.socials { display: flex; gap: 8px; }
.socials a { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.08); }
.menu-toggle {
  display: none; border: 0; background: rgba(255,255,255,.08); color: white;
  width: 42px; height: 42px; border-radius: 12px; font-size: 22px;
}
.section-card { padding: 28px; margin-bottom: 14px; overflow: hidden; position: relative; }
.hero, .services, .gallery, .quote, .contact, .gallery-page { isolation: isolate; }
.hero {
  min-height: 730px;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  gap: 28px;
  padding-top: 34px;
}
.hero::before, .services::before, .gallery::before, .quote::before, .contact::before, .gallery-page::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.hero::after {
  content: ""; position: absolute; left: 12%; right: 0; bottom: 108px; height: 6px;
  background: linear-gradient(90deg, transparent, #d7191c, #d7191c 70%, transparent);
  transform: skewX(-12deg);
  opacity: .95;
}
.hero-copy { position: relative; z-index: 2; max-width: 460px; padding-left: 28px; }
.hero-copy h1 { margin: 0; font-size: clamp(42px, 5.5vw, 84px); line-height: .94; letter-spacing: -.03em; }
.hero-copy p { font-size: clamp(22px, 2vw, 30px); color: var(--muted); margin: 18px 0 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-width: 170px;
  padding: 15px 24px; border-radius: 12px; font-weight: 800; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(180deg, #db1b1f, #970d10); box-shadow: 0 12px 24px rgba(200,13,16,.3); }
.btn-secondary { color: white; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.09); }
.hero-photo-wrap {
  position: relative; min-height: 520px; display: flex; align-items: end; justify-content: center;
}
.hero-photo-wrap::before {
  content: ""; position: absolute; inset: 0 0 5% 10%;
  background:
    radial-gradient(circle at 74% 38%, rgba(57,104,255,.38), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%);
  border-radius: 28px;
}
.hero-photo {
  position: relative; z-index: 1; width: 100%; max-width: 820px; border-radius: 24px; object-fit: cover;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.5));
}
.side-tires {
  position: absolute; left: 18px; bottom: 28px; width: 208px; z-index: 1;
  border-radius: 24px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.side-tires img { width: 100%; height: 298px; object-fit: cover; }
.section-heading { text-align: center; margin-bottom: 26px; }
.section-heading-tight { margin-bottom: 20px; }
.section-heading-left { text-align: left; margin-bottom: 14px; }
.section-heading h2 { margin: 0; font-size: clamp(32px, 4vw, 52px); font-weight: 900; }
.section-heading p { margin: 8px 0 0; color: var(--muted); font-size: 24px; }
.service-grid { display: grid; gap: 18px; }
.service-grid.six { grid-template-columns: repeat(3, 1fr); }
.detailed-card {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.detailed-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.18); box-shadow: 0 18px 40px rgba(0,0,0,.34); }
.service-image-wrap {
  position: relative; height: 210px; overflow: hidden; background: #090b10;
}
.service-image-wrap::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: linear-gradient(90deg, #a90d10, #d81a1d);
}
.service-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-content { padding: 18px 18px 20px; }
.service-content-static h3 { margin: 0 0 10px; font-size: 24px; line-height: 1.08; }
.service-content-static p { margin: 0; color: #d8dde6; font-size: 15px; line-height: 1.7; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.home-gallery-grid .gallery-item { min-height: 260px; }
.gallery-grid-large { grid-template-columns: repeat(3, 1fr); }
.gallery-item {
  border-radius: 20px; min-height: 280px; border: 1px solid var(--line); overflow: hidden; margin: 0;
  display: block; background: #0b0d12;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-action { text-align: center; margin-top: 22px; }
.quote {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: start;
}
.quote-note { color: var(--muted); font-size: 18px; line-height: 1.6; margin: 0; }
.quote-form {
  padding: 22px; border-radius: 22px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
}
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.quote-form label { display: grid; gap: 8px; margin-bottom: 14px; }
.quote-form span { color: #eef2f9; font-weight: 600; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; padding: 14px 15px; border-radius: 14px; border: 1px solid rgba(255,255,255,.08);
  background: rgba(4,5,8,.8); color: white; outline: none;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: rgba(219,27,31,.7); }
.quote-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; }
.contact-info h2 { margin-top: 0; font-size: clamp(34px, 4vw, 50px); }
.contact-list { display: grid; gap: 12px; }
.contact-list a { color: var(--text); text-decoration: none; font-size: 20px; }
.rating-box {
  margin-top: 22px; display: inline-grid; grid-template-columns: auto auto; align-items: center; gap: 8px 14px;
  padding: 18px 22px; border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)); border: 1px solid var(--line);
}
.rating-brand { font-weight: 800; color: #d8dde6; }
.rating-score { font-size: 36px; font-weight: 900; }
.rating-stars { color: #ffd34d; letter-spacing: 2px; }
.rating-count { color: var(--muted); }
.map-wrap { min-height: 360px; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 360px; }
.floating-btn {
  position: fixed; right: 18px; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  text-decoration: none; font-size: 28px; z-index: 30; box-shadow: 0 15px 35px rgba(0,0,0,.35);
}
.floating-btn.whatsapp { bottom: 20px; background: #18b959; }
.floating-btn.call { bottom: 92px; background: #d5191c; }

@media (max-width: 1200px) {
  .service-grid.six { grid-template-columns: repeat(2, 1fr); }
  .quote { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 190px; }
  .hero-copy { max-width: 100%; padding-left: 0; }
  .contact { grid-template-columns: 1fr; }
  .hero::after { left: 8%; bottom: 124px; }
}
@media (max-width: 760px) {
  .topbar-right { justify-content: center; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    background: linear-gradient(180deg, rgba(18,20,28,.98), rgba(10,11,16,.98));
    border: 1px solid var(--line); border-radius: 20px; padding: 16px; flex-direction: column;
  }
  .nav-links-static { position: static; display: flex; background: transparent; border: 0; padding: 0; }
  .nav-links.open { display: flex; }
  .logo-img { width: min(340px, 72vw); }
  .hero-copy p { font-size: 22px; }
  .section-card { padding: 20px; }
  .service-grid.six, .gallery-grid, .gallery-grid-large, .field-grid { grid-template-columns: 1fr; }
  .side-tires { width: 126px; left: 8px; bottom: 18px; }
  .side-tires img { height: 178px; }
  .quote-form { padding: 18px; }
}
