/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e6edf7;
  line-height: 1.6;
  background: #070d1a;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* === Colors === */
:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --dark: #1d1d1d;
  --gray: #f4f4f4;
  --white: #ffffff;
  --text: #333;
  --text-light: #666;
  --shadow: 0 2px 12px rgba(0,0,0,.1);
  --radius: 8px;
}

/* === Utility === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(135deg, #070d1a 0%, #12203a 55%, #070d1a 100%);
  color: #e6edf7;
  overflow: hidden;
  isolation: isolate;
}
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .14;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(230,57,70,.3), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(66,133,244,.25), transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='%2365a3ff' stroke-width='0.6' stroke-opacity='0.5'><path d='M0 20h40v20h40v30h40'/><path d='M0 80h30v-30h30v20h60'/><path d='M20 0v30h40v40h30v50'/><circle cx='40' cy='20' r='2'/><circle cx='80' cy='40' r='2'/><circle cx='120' cy='70' r='2'/><circle cx='30' cy='80' r='2'/><circle cx='60' cy='50' r='2'/><circle cx='90' cy='70' r='2'/><circle cx='20' cy='30' r='2'/><circle cx='60' cy='70' r='2'/></g></svg>");
  background-size: auto, auto, 240px 240px;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
}
.section-subtitle {
  text-align: center;
  color: #9fb2d4;
  margin-bottom: 40px;
  font-size: 1.05rem;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .3s, transform .15s;
}
.btn:hover { transform: translateY(-2px); }

/* Visually hidden (accessible + SEO-indexable, not visible) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === Generic marquee (auto-scroll, pause on interact, manual swipe) === */
/* Only kicks in once JS adds .marquee-active for the current viewport */
.marquee { position: relative; }
.marquee.marquee-active {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.marquee.marquee-active::-webkit-scrollbar { display: none; }
.marquee.marquee-active .marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--dark); }
.btn-hero-map { background: #4285F4; color: #fff; }
.btn-hero-map:hover { background: #3367D6; }
.btn-hero-dir { background: #34A853; color: #fff; }
.btn-hero-dir:hover { background: #2d8f47; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; }
.btn-call { background: var(--primary); color: #fff; }

/* === Header / Navbar === */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(29,29,29,.95);
  backdrop-filter: blur(6px);
  z-index: 1000;
  padding: 0 20px;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 700; color: #fff;
  letter-spacing: 1px;
}
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: #ccc; font-size: .95rem; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 26px; height: 3px; background: #fff; border-radius: 2px;
  transition: .3s;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-start; justify-content: center;
  text-align: center;
  color: #fff;
  padding: 150px 20px 70px;
  background: linear-gradient(135deg, #070d1a 0%, #12203a 55%, #070d1a 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .28;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(230,57,70,.45), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(66,133,244,.32), transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'><g fill='none' stroke='%2365a3ff' stroke-width='0.6' stroke-opacity='0.6'><path d='M0 25h45v25h45v35h50'/><path d='M0 95h35v-35h35v25h70'/><path d='M25 0v35h45v45h35v60'/><circle cx='45' cy='25' r='2.2'/><circle cx='90' cy='50' r='2.2'/><circle cx='140' cy='85' r='2.2'/><circle cx='35' cy='95' r='2.2'/><circle cx='70' cy='60' r='2.2'/><circle cx='105' cy='85' r='2.2'/><circle cx='25' cy='35' r='2.2'/><circle cx='70' cy='80' r='2.2'/></g></svg>");
  background-size: auto, auto, 280px 280px;
}
.hero-inner {
  max-width: 860px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.5px;
  color: #fff;
}
.hero h1 span {
  background: linear-gradient(90deg, #ff6170, #ffb75e);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Chips (marquee — continuous auto-scroll) */
.hero-chips-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 32px;
}
.hero-chips {
  gap: 10px;
  padding: 4px 0;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  white-space: nowrap;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: #dbe6fa;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.hero-chip svg {
  width: 15px; height: 15px;
  color: #ff6170;
  flex-shrink: 0;
}
.hero-chip:hover {
  background: rgba(230,57,70,.14);
  border-color: rgba(230,57,70,.45);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero-btn {
  flex: 0 0 auto;
  min-width: 200px;
  height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .2px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.hero-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hero-btn:hover { transform: translateY(-2px); }

.hero-btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37,211,102,.38);
}
.hero-btn-wa:hover {
  background: #1da851;
  box-shadow: 0 10px 26px rgba(37,211,102,.48);
}

.hero-btn-service {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(230,57,70,.35);
}
.hero-btn-service:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 26px rgba(230,57,70,.45);
}

.hero-btn-call {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.hero-btn-call:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 18px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  margin-bottom: 22px;
}
.hero-stat {
  text-align: center;
  min-width: 80px;
}
.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff6170, #ffb75e);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.hero-stat span {
  font-size: .75rem;
  color: #9fb2d4;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* Single location tile (below stats) */
.hero-location-row {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}
.location-tile {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(66,133,244,.1);
  border: 1px solid rgba(66,133,244,.3);
  border-radius: 14px;
  color: #dbe6fa;
  max-width: 100%;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
}
.location-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(66,133,244,.14), transparent);
  transform: translateX(-100%);
  transition: transform .8s ease;
}
.location-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(66,133,244,.55);
  background: rgba(66,133,244,.16);
  box-shadow: 0 10px 26px rgba(66,133,244,.28);
}
.location-tile:hover::before { transform: translateX(100%); }
.location-tile-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4285F4, #6aa3ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: locPulse 2.6s ease-in-out infinite;
}
.location-tile-icon svg { width: 20px; height: 20px; }
@keyframes locPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(66,133,244,.55); }
  50%      { box-shadow: 0 0 0 8px rgba(66,133,244,0); }
}
.location-tile-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}
.location-tile-label { color: #fff; font-weight: 600; font-size: .95rem; }
.location-tile-sub { color: #a9b8d1; font-size: .78rem; margin-top: 2px; }
.location-tile-arrow {
  font-size: 1.4rem;
  color: #9cc4ff;
  margin-left: 4px;
  transition: transform .3s ease;
}
.location-tile:hover .location-tile-arrow { transform: translateX(4px); }

/* === Services === */
.services-wrap { width: 100%; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.service-card {
  display: block;
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease, background .4s ease, border-color .3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(160deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
  box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 30px rgba(230,57,70,.12);
  border-color: rgba(230,57,70,.35);
}
.service-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(230,57,70,.14);
  color: #ff6170;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.02rem; margin-bottom: 8px; color: #fff; font-weight: 600; line-height: 1.3; }
.service-card p { color: #a9b8d1; font-size: .9rem; line-height: 1.55; }

/* Hidden services (desktop default) — revealed via "View All Services" */
.hidden-service { display: none; }
.services-grid.expanded .hidden-service {
  display: block;
  opacity: 1;
  transform: none;
  animation: fadeInUp .45s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* View All Services button */
.services-expand {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: rgba(255,255,255,.04);
  color: #dbe6fa;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.btn-view-all svg { width: 16px; height: 16px; transition: transform .3s ease; }
.btn-view-all:hover {
  background: rgba(230,57,70,.12);
  border-color: rgba(230,57,70,.4);
  color: #fff;
  transform: translateY(-2px);
}
.btn-view-all.is-expanded svg { transform: rotate(180deg); }

/* SEO Accordion */
.services-seo {
  max-width: 900px;
  margin: 26px auto 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
}
.services-seo summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 20px;
  font-size: .9rem;
  font-weight: 600;
  color: #9fb2d4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: color .2s, background .2s;
}
.services-seo summary::-webkit-details-marker { display: none; }
.services-seo summary::after {
  content: '+';
  font-size: 1.2rem;
  color: #ff6170;
  font-weight: 700;
  transition: transform .3s ease;
}
.services-seo[open] summary::after { content: '–'; }
.services-seo summary:hover { color: #fff; background: rgba(255,255,255,.02); }
.services-seo-body {
  padding: 0 20px 18px;
  color: #9fb2d4;
  font-size: .92rem;
  line-height: 1.7;
}
.services-seo-body strong { color: #fff; }

/* Single primary CTA */
.services-cta {
  margin-top: 36px;
  text-align: center;
  padding: 28px 22px;
  background: linear-gradient(135deg, rgba(37,211,102,.12), rgba(66,133,244,.08));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}
.btn-services-cta {
  font-size: 1.02rem;
  padding: 14px 34px;
  box-shadow: 0 8px 22px rgba(37,211,102,.35);
}
.cta-phone-link {
  display: block;
  margin-top: 14px;
  color: #9fb2d4;
  font-size: .9rem;
}
.cta-phone-link:hover { color: #fff; }

/* Mobile: keep grid + View All pattern (no marquee) */
@media (max-width: 768px) {
  .services-grid { gap: 12px; }
}

/* === ECU-section shared primitives (hook pill + trust badges, reused in merged Services section) === */
.ecu-hook {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  background: rgba(230, 57, 70, .12);
  border: 1px solid rgba(230, 57, 70, .35);
  color: #ffd1d5;
  font-size: .92rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  margin: 0 auto 22px;
  letter-spacing: .2px;
  text-align: center;
  justify-content: center;
}
.ecu-hook strong { color: #fff; font-weight: 700; }
.ecu-hook-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff4d5a;
  box-shadow: 0 0 0 4px rgba(255,77,90,.18);
  animation: ecuPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ecuPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,77,90,.18); }
  50% { box-shadow: 0 0 0 8px rgba(255,77,90,.05); }
}
/* Trust Badges */
.ecu-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}
.ecu-badge {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.ecu-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(230,57,70,.45);
  background: rgba(255,255,255,.06);
}
.ecu-badge-icon {
  width: 54px; height: 54px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(230,57,70,.18), rgba(66,133,244,.18));
  display: flex; align-items: center; justify-content: center;
  color: #ff6170;
  box-shadow: 0 0 20px rgba(230,57,70,.18) inset;
}
.ecu-badge-icon svg { width: 26px; height: 26px; }
.ecu-badge h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.ecu-badge p { color: #9fb2d4; font-size: .88rem; line-height: 1.5; }

@media (max-width: 768px) {
  .ecu-hook { font-size: .82rem; padding: 8px 14px; }
  .ecu-badges {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }
  .ecu-badge { padding: 16px 14px; }
  .ecu-badge h4 { font-size: .88rem; }
  .ecu-badge p { font-size: .78rem; }
  .ecu-badge-icon { width: 44px; height: 44px; margin-bottom: 8px; }
  .ecu-badge-icon svg { width: 22px; height: 22px; }
  /* Show only the first two badges on mobile (Advanced Tools + All Car Brand Services) */
  .ecu-badges .ecu-badge:nth-child(3) { display: none; }
}

/* === About === */
.about-wrap {
  display: flex; gap: 40px; align-items: center; flex-wrap: wrap;
}
.about-img {
  flex: 1 1 380px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-img-inner {
  min-height: 280px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 30px;
  color: #fff; text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(230,57,70,.35), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(66,133,244,.30), transparent 55%),
    linear-gradient(135deg, #0f1b32, #162748);
}
.about-img-inner svg { color: #ff6170; }
.about-img-inner strong { font-size: 1.6rem; letter-spacing: .5px; }
.about-img-inner span { color: #9fb2d4; font-size: .92rem; }
.about-text { flex: 1 1 400px; }
.about-text h2 { font-size: 1.8rem; margin-bottom: 14px; color: #fff; }
.about-text p { color: #b8c4de; margin-bottom: 14px; }
.about-highlights {
  display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap;
}
.about-highlights-2up { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.highlight {
  text-align: center;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
}
.about-highlights-2up .highlight { width: 100%; }
.highlight .number {
  font-size: 1.8rem; font-weight: 700;
  background: linear-gradient(90deg, #ff6170, #ffb75e);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.highlight .label { font-size: .8rem; color: #9fb2d4; text-transform: uppercase; letter-spacing: .3px; }

/* === Brands === */
.brands-wrap { width: 100%; }
/* Desktop default: wrap grid (centered) */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.brand-badge {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 14px 18px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  opacity: 0;
  transform: translateY(20px);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 130px;
  width: 130px; height: 95px;
}
.brand-badge img {
  max-width: 90px; max-height: 60px;
  object-fit: contain;
  transition: transform .3s ease;
}
.brand-badge.visible {
  opacity: 1;
  transform: translateY(0);
}
.brand-badge:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 12px 28px rgba(0,0,0,.45), 0 0 20px rgba(230,57,70,.18);
  border-color: rgba(230,57,70,.35);
}
.brand-badge:hover img {
  transform: scale(1.05);
}
.brand-badge:active {
  transform: scale(.95);
}

/* === Testimonials === */
.testimonials-wrap { width: 100%; }
.testimonials-grid {
  gap: 18px;
  padding: 4px 0;
}
.testimonials-grid .testimonial-card {
  flex: 0 0 320px;
}
@media (max-width: 480px) {
  .testimonials-grid .testimonial-card { flex: 0 0 280px; }
}
.testimonial-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .3s ease;
  border-left: 3px solid transparent;
  opacity: 0;
  transform: translateY(30px);
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0,0,0,.35), 0 0 24px rgba(230,57,70,.12);
  border-left-color: #ff6170;
  border-color: rgba(255,255,255,.12);
}
.testimonial-card::before {
  content: '\201C';
  font-size: 3.5rem;
  color: #ff6170;
  position: absolute;
  top: 10px; left: 18px;
  line-height: 1;
  opacity: .35;
}
.testimonial-card p { color: #c7d2e6; font-size: .95rem; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: .92rem; color: #fff; }
.testimonial-location { color: #9fb2d4; font-size: .82rem; }

/* === Inquiry Form === */
.inquiry-wrap {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.inquiry-form {
  flex: 1 1 480px;
  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 36px 30px;
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
  color: #e6edf7;
}
.inquiry-form h2 { font-size: 1.6rem; margin-bottom: 6px; color: #fff; }
.inquiry-form .form-subtitle { color: #9fb2d4; margin-bottom: 24px; font-size: .95rem; }
.form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.form-group { flex: 1 1 200px; margin-bottom: 16px; position: relative; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .88rem; color: #dbe6fa; letter-spacing: .2px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,13,26,.55);
  color: #fff;
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #6d7e9c; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(230,57,70,.6);
  background: rgba(7,13,26,.75);
  box-shadow: 0 0 0 3px rgba(230,57,70,.15);
}
.form-group input.invalid { border-color: #ff4d5a; box-shadow: 0 0 0 3px rgba(255,77,90,.15); }
.form-group select option { background: #0b1220; color: #fff; }
.form-group textarea { resize: vertical; min-height: 90px; }
.field-hint {
  display: block;
  margin-top: 6px;
  font-size: .78rem;
  color: #8797b5;
}
.field-hint.error { color: #ff7a85; }
.field-hint.success { color: #4ade80; }

/* Location input with button */
.location-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.location-wrap input { flex: 1 1 220px; }
.btn-location {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(66,133,244,.18);
  color: #9cc4ff;
  border: 1px solid rgba(66,133,244,.45);
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.btn-location svg { width: 15px; height: 15px; }
.btn-location:hover { background: rgba(66,133,244,.3); color: #fff; transform: translateY(-1px); }
.btn-location:disabled { opacity: .6; cursor: not-allowed; }

/* Emergency Pickup toggle button */
.emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-bottom: 20px;
  background: rgba(255,77,90,.08);
  color: #ff7a85;
  border: 1px solid rgba(255,77,90,.35);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.emergency-btn svg { width: 16px; height: 16px; }
.emergency-btn:hover {
  background: rgba(255,77,90,.16);
  color: #fff;
  transform: translateY(-1px);
}
.emergency-btn.active {
  background: #ff4d5a;
  color: #fff;
  border-color: #ff4d5a;
  box-shadow: 0 6px 18px rgba(255,77,90,.45);
  animation: emergencyPulse 1.6s ease-in-out infinite;
}
@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(255,77,90,.45), 0 0 0 0 rgba(255,77,90,.5); }
  50%      { box-shadow: 0 6px 18px rgba(255,77,90,.45), 0 0 0 10px rgba(255,77,90,0); }
}

.inquiry-info { flex: 1 1 300px; }
.info-card {
  background: var(--dark); color: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  margin-bottom: 20px;
}
.info-card h3 { margin-bottom: 16px; font-size: 1.2rem; }
.info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.info-item .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.info-item p { font-size: .92rem; color: #ccc; }
.info-item a { color: #ccc; }
.info-item a:hover { color: #fff; }

/* === Map === */
/* Map facade — defers Google Maps iframe load until user clicks */
.map-facade {
  position: relative;
  cursor: pointer;
  min-height: 350px;
  background:
    linear-gradient(135deg, rgba(230,57,70,.14), rgba(66,133,244,.14)),
    repeating-linear-gradient(45deg, #0f1b32 0, #0f1b32 14px, #12213d 14px, #12213d 28px);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.map-facade:hover, .map-facade:focus-visible {
  outline: none;
  background:
    linear-gradient(135deg, rgba(230,57,70,.22), rgba(66,133,244,.22)),
    repeating-linear-gradient(45deg, #0f1b32 0, #0f1b32 14px, #12213d 14px, #12213d 28px);
}
.map-facade-inner {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #fff; text-align: center; padding: 20px;
}
.map-facade-inner svg { color: #ff6170; margin-bottom: 4px; }
.map-facade-inner strong { font-size: 1rem; }
.map-facade-inner span { color: #9fb2d4; font-size: .88rem; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 350px; border: 0; }

/* Map buttons inside contact info card */
.info-map-buttons {
  display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap;
}
.btn-map-sm {
  background: #4285F4; color: #fff;
  flex: 1; text-align: center;
  padding: 10px 12px; font-size: .85rem;
  border-radius: var(--radius);
}
.btn-map-sm:hover { background: #3367D6; }
.btn-directions-sm {
  background: #34A853; color: #fff;
  flex: 1; text-align: center;
  padding: 10px 12px; font-size: .85rem;
  border-radius: var(--radius);
}
.btn-directions-sm:hover { background: #2d8f47; }

/* === Footer === */
.footer {
  background: var(--dark); color: #aaa;
  padding: 40px 20px 20px; text-align: center;
}
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }
.footer-links a { color: #ccc; font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.footer p { font-size: .85rem; }

/* === Floating Buttons === */
.float-whatsapp {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25d366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .3s;
  text-decoration: none;
  animation: floatBreath 3.2s ease-in-out infinite;
}
.float-whatsapp::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: .55;
  animation: floatRing 2.4s ease-out infinite;
  pointer-events: none;
}
.float-whatsapp:hover { transform: scale(1.08); animation-play-state: paused; }

.float-call {
  position: fixed; bottom: 24px; left: 24px;
  width: 58px; height: 58px;
  background: var(--primary); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 14px rgba(230,57,70,.4);
  z-index: 999;
  transition: transform .3s;
  text-decoration: none;
  animation: floatBreath 3.2s ease-in-out infinite;
  animation-delay: 1.6s;
}
.float-call::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: .55;
  animation: floatRing 2.4s ease-out infinite;
  animation-delay: 1.2s;
  pointer-events: none;
}
.float-call:hover { transform: scale(1.08); animation-play-state: paused; }

@keyframes floatBreath {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-2px) scale(1.03); }
}
@keyframes floatRing {
  0%   { transform: scale(1); opacity: .55; }
  80%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 64px; left: 0; width: 100%;
    background: rgba(29,29,29,.98);
    flex-direction: column; align-items: center;
    padding: 20px 0;
    gap: 16px;
    transform: translateY(-120%);
    transition: transform .35s ease;
  }
  .nav-links.active { transform: translateY(0); }
  .hamburger { display: flex; }
  .hero { padding: 110px 18px 54px; min-height: auto; align-items: flex-start; }
  .hero h1 { font-size: 1.85rem; margin-bottom: 24px; }
  .hero-chips-wrap { margin-bottom: 48px; }
  .hero-chips { gap: 8px; }
  .hero-chip { font-size: .78rem; padding: 7px 13px; }
  .hero-chip svg { width: 13px; height: 13px; }
  .hero-buttons { gap: 10px; margin-bottom: 28px; }
  .hero-stats { gap: 8px 16px; padding: 14px 16px; margin-bottom: 16px; }
  .hero-stat strong { font-size: 1.2rem; }
  .hero-stat span { font-size: .68rem; }
  .location-tile { padding: 10px 14px; gap: 12px; }
  .location-tile-icon { width: 34px; height: 34px; }
  .location-tile-icon svg { width: 18px; height: 18px; }
  .location-tile-label { font-size: .88rem; }
  .location-tile-sub { font-size: .72rem; }
  .about-wrap { flex-direction: column; }
  .section { padding: 36px 0; }
  .section-title { font-size: 1.5rem; margin-bottom: 4px; }
  .section-subtitle { margin-bottom: 20px; font-size: .92rem; }

  /* Form compact mobile */
  .inquiry-wrap { flex-direction: column; gap: 20px; }
  .inquiry-form { padding: 20px 16px; }
  .inquiry-form h2 { font-size: 1.2rem; margin-bottom: 2px; }
  .inquiry-form .form-subtitle { margin-bottom: 10px; font-size: .85rem; }
  .form-row { flex-direction: column; gap: 0; }
  .form-group { flex: none; margin-bottom: 6px; }
  .form-group label { margin-bottom: 2px; font-size: .82rem; }
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 8px 10px; font-size: .88rem; }
  .form-group textarea { min-height: 50px; }
  .checkbox-group { margin-bottom: 10px; gap: 8px; }
  .checkbox-group label { font-size: .82rem; }
  .btn { padding: 10px 20px; font-size: .9rem; }
  .info-card { padding: 18px 14px; margin-bottom: 14px; }
  .info-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
  .info-item { margin-bottom: 10px; gap: 8px; }
  .info-item p { font-size: .85rem; }
  .map-container iframe { height: 250px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; padding: 10px 16px; }
  .section { padding: 28px 0; }
}

/* ============================================================
   SUB-PAGE STYLES (service / location / brand pages)
   ============================================================ */

/* Breadcrumbs */
.breadcrumbs {
  background: #0b1426;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 14px 0;
  font-size: .9rem;
  color: #9fb2d4;
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; }
.breadcrumbs li { display: inline-flex; align-items: center; }
.breadcrumbs li + li::before { content: "›"; margin-right: 10px; color: #5d7aa8; }
.breadcrumbs a { color: #9fb2d4; transition: color .2s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs li[aria-current="page"] { color: #fff; font-weight: 500; }

/* Sub-page hero (smaller than home hero) */
.sub-hero {
  position: relative;
  padding: 60px 0 50px;
  background: linear-gradient(135deg, #070d1a 0%, #12203a 55%, #070d1a 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.sub-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1; opacity: .18; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(230,57,70,.35), transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(66,133,244,.3), transparent 50%);
}
.sub-hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 700;
}
.sub-hero h1 span { color: var(--primary); }
.sub-hero-lead {
  max-width: 780px;
  margin: 0 auto 22px;
  color: #c6d4ed;
  font-size: 1.08rem;
}
.sub-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sub-hero-cta .btn { padding: 12px 26px; font-size: .95rem; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebe57; }
.btn-call { background: var(--primary); color: #fff; }
.btn-call:hover { background: var(--primary-dark); }

/* Content blocks */
.content-block {
  padding: 60px 0;
  background: linear-gradient(135deg, #070d1a 0%, #12203a 55%, #070d1a 100%);
  color: #e6edf7;
}
.content-block:nth-of-type(even) {
  background: #0a1224;
}
.content-block h2 {
  font-size: 1.75rem;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 700;
}
.content-block h3 {
  font-size: 1.2rem;
  margin: 22px 0 8px;
  color: #fff;
  font-weight: 600;
}
.content-block p { margin-bottom: 14px; color: #c6d4ed; }
.content-block ul.bullet-list {
  margin: 10px 0 18px 0;
  padding-left: 0;
}
.content-block ul.bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #c6d4ed;
}
.content-block ul.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 16px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230,57,70,.18);
}
.content-block ul.bullet-list li::after {
  content: "✓";
  position: absolute;
  left: 3px; top: 5px;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
}

/* Two-column feature layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 20px; }
}

/* Feature cards (sub-page) */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.feature-card {
  background: #0f1b32;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.feature-card h4 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.feature-card p { color: #9fb2d4; font-size: .92rem; margin: 0; }

/* FAQ */
.faq-list { margin-top: 18px; }
.faq-item {
  background: #0f1b32;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
  position: relative;
  padding-right: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer {
  padding: 0 20px 18px;
  color: #c6d4ed;
}

/* Related pages (internal linking) */
.related-pages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.related-link {
  display: block;
  padding: 16px 18px;
  background: #0f1b32;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  color: #e6edf7;
  transition: border-color .2s, transform .2s;
}
.related-link:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.related-link strong { display: block; color: #fff; margin-bottom: 4px; }
.related-link span { color: #9fb2d4; font-size: .85rem; }

/* Link grid on home (sub-navigation) */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.link-grid a {
  padding: 12px 16px;
  background: #0f1b32;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  color: #e6edf7;
  font-size: .95rem;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.link-grid a:hover {
  background: #162748;
  border-color: var(--primary);
  color: #fff;
}

/* CTA strip */
.cta-strip {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}
.cta-strip h2 { color: #fff; font-size: 1.7rem; margin-bottom: 8px; }
.cta-strip p { color: rgba(255,255,255,.92); margin-bottom: 20px; }
.cta-strip .btn {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
}
.cta-strip .btn:hover { background: #f5f5f5; }

@media (max-width: 600px) {
  .sub-hero { padding: 40px 0 36px; }
  .sub-hero h1 { font-size: 1.7rem; }
  .sub-hero-lead { font-size: .95rem; }
  .content-block { padding: 40px 0; }
  .content-block h2 { font-size: 1.35rem; }
  .content-block h3 { font-size: 1.05rem; }
  .cta-strip h2 { font-size: 1.3rem; }
}
