/* ===== CSS Variables ===== */
:root {
  --primary: #0f62fe;
  --primary-dark: #0043ce;
  --primary-light: #e8f0fe;
  --accent: #00c9a7;
  --text: #111827;
  --text-secondary: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 40px rgba(16, 24, 40, 0.12);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", sans-serif;
  --max-w: 1100px;
  --transition: 0.25s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.2; }

/* ===== Navigation ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  /* Prevent mobile gap above nav */
  margin: 0;
  padding: 0;
}
.site-nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 max(20px, env(safe-area-inset-left)) 0 max(20px, env(safe-area-inset-right));
  padding-top: calc(env(safe-area-inset-top, 0px) + 6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(60px + env(safe-area-inset-top, 0px) + 6px);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.nav-logo-img{
  height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.nav-logo-text{
  display: inline-block;
  line-height: 1;
}
.nav-logo:hover { color: var(--primary-dark); }
.nav-links {
  display: flex;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(60px + env(safe-area-inset-top, 0px) + 6px);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 8px 20px 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 16px; }
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, #0f62fe 0%, #0043ce 60%, #002d9c 100%);
  color: #fff;
  padding: 80px 20px 70px;
  text-align: center;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-media-links {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-media-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.hero-media-link:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover { background: #f0f4ff; color: var(--primary-dark); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; }

/* Hero info strip */
.hero-info {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}
.hero-info-item svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* ===== Section Common ===== */
.section {
  padding: 70px 20px;
}
@supports (content-visibility: auto) {
  .home-perf-section {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}
.section-alt {
  background: var(--bg-alt);
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: var(--text);
}
.section-title p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 8px;
}

/* ===== Services Page ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  aspect-ratio: 16 / 9;
  margin-bottom: 6px;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f0fe 0%, #f1f5f9 100%);
}
.service-card__placeholder {
  width: 48px;
  height: 48px;
  color: var(--primary);
  opacity: 0.5;
}
.service-card__badge {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(15, 98, 254, 0.95);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  transition: color var(--transition);
}
.service-card:hover h3 {
  color: var(--primary);
}
.service-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}
.service-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card ul li {
  padding-left: 22px;
  position: relative;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 4.5L6.5 11.5L2.5 7.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 4.5L6.5 11.5L2.5 7.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}
.service-cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.service-cta h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.service-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.service-cta-card {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 40px;
  background: linear-gradient(135deg, #0f62fe 0%, #0043ce 60%, #002d9c 100%);
  border-radius: 16px;
  color: #fff;
}
.service-cta-card h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 10px;
}
.service-cta-card p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .service-cta-card { padding: 36px 24px; }
}

/* ===== Image Carousel ===== */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.carousel-img .carousel-slide {
  min-width: 100%;
  position: relative;
  padding: 0;
  background: #000;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: clamp(240px, 46vw, 480px);
  max-height: min(72vh, 520px);
}
.carousel-img .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background var(--transition), box-shadow var(--transition);
  z-index: 2;
}
.carousel-btn:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}
@media (max-width: 768px) {
  .carousel-dot { width: 14px; height: 14px; }
  .carousel-img .carousel-slide {
    aspect-ratio: 16 / 10;
    min-height: clamp(220px, 52vw, 420px);
  }
}
@media (max-width: 600px) {
  .carousel-img .carousel-slide {
    aspect-ratio: 4 / 3;
    min-height: clamp(210px, 62vw, 320px);
  }
  .carousel-caption { font-size: 16px; padding: 16px 20px; }
  .carousel-btn { width: 36px; height: 36px; }
  .carousel-prev { left: 6px; }
  .carousel-next { right: 6px; }
}

/* ===== Tracking Section ===== */
.track-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.track-card h3 {
  text-align: center;
  margin-bottom: 4px;
  font-size: 20px;
}
.track-card .subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ===== Form Styles ===== */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group .hint {
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 13px;
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.12);
}
.form-input::placeholder { color: #9ca3af; }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

/* Checkbox / Fault selection */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  font-size: 14px;
}
.checkbox-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}
.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Form row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Error messages */
.form-errors {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
}
.form-errors li {
  color: #991b1b;
  font-size: 14px;
  margin: 4px 0;
}
.error-msg-inline {
  background: #fee2e2;
  color: #991b1b;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  margin-top: 12px;
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-text h3 {
  font-size: 22px;
  margin-bottom: 16px;
}
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}
.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

/* Map placeholder */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  aspect-ratio: 4 / 3;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.contact-card svg {
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-card h4 {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-card p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* ===== Success Page ===== */
.success-card {
  max-width: 560px;
  margin: 60px auto;
  padding: 40px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #16a34a;
}
.success-card h1 {
  font-size: 24px;
  margin-bottom: 8px;
}
.success-card .lead {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 24px;
}
.booking-summary {
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
}
.booking-summary .kv {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}
.booking-summary .kv:last-child { border-bottom: 0; }
.booking-summary .kv span { color: var(--text-secondary); }
.booking-summary .kv b { text-align: right; color: var(--text); }

/* ===== Footer ===== */
.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.8);
  padding: 50px 20px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
}
.footer-col p {
  margin: 6px 0;
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 16px 0;
  font-size: 13px;
  opacity: 0.6;
}
.staff-link {
  color: inherit;
  text-decoration: none;
  opacity: 0.5;
  margin-left: 8px;
}
.staff-link:hover {
  opacity: 1;
  text-decoration: underline;
}
.staff-link--hidden {
  opacity: 0;
  font-size: 0;
  pointer-events: auto;
  user-select: none;
  margin-left: 4px;
}
.staff-link--hidden:hover {
  opacity: 0;
}

/* ===== Cookie Notice ===== */
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 9999;
}
.cookie-banner__inner {
  max-width: 760px;
  margin: 0 auto;
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.cookie-banner__text {
  font-size: 12px;
  line-height: 1.4;
  max-width: 520px;
}
.cookie-banner__text a {
  color: #93c5fd;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-banner .btn {
  padding: 7px 10px;
  font-size: 12px;
  border-radius: 8px;
  line-height: 1.2;
}
.cookie-banner .btn:hover {
  transform: none;
  box-shadow: none;
}
@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 9px 10px;
  }
  .cookie-banner__text { font-size: 11.5px; }
  .cookie-banner .btn {
    padding: 6px 9px;
    font-size: 11px;
  }
}

/* ===== Booking Page Wrapper ===== */
.booking-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.booking-page h1 {
  font-size: 28px;
  margin-bottom: 4px;
}
.booking-page .subtitle {
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.form-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
}

/* ===== About Hero ===== */
.about-hero {
  background: linear-gradient(135deg, #0f62fe 0%, #0043ce 60%, #002d9c 100%);
  color: #fff;
  padding: 60px 20px 50px;
  text-align: center;
}
.about-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-hero h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
}
.about-hero p {
  font-size: 17px;
  opacity: 0.85;
  margin: 0;
}

/* ===== Map Consent ===== */
.map-consent {
  min-height: 280px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.map-consent h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.map-consent p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
}
.map-consent__actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.map-consent.map-loaded {
  padding: 0;
  border: 0;
  background: transparent;
}
.map-consent iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
}

/* ===== Contact Form ===== */
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.msg-success-card {
  text-align: center;
  padding: 40px 20px;
}
.msg-success-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.msg-success-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: var(--bg);
  transition: box-shadow var(--transition);
}
.faq-item[open] {
  box-shadow: var(--shadow);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--text-secondary);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}
.faq-answer p {
  margin: 0 0 8px;
}
.faq-answer p:last-child { margin-bottom: 0; }

.faq-cta {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.faq-cta h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.faq-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.faq-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, bottom 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: max(20px, env(safe-area-inset-bottom, 16px));
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.hidden { display: none !important; }

/* ===== Smooth scroll ===== */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ===== Brands Grid (Homepage) ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.brand-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.brand-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.brand-card strong {
  display: block;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}
.brand-card span {
  font-size: 13px;
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .brands-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== Repair Types List (Homepage) ===== */
.repair-types {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
}
.repair-types h3 {
  font-size: 20px;
  margin: 0 0 16px;
  text-align: center;
}
.repair-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.repair-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--text-secondary);
}
.repair-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 600px) {
  .repair-list { grid-template-columns: 1fr; }
  .repair-types { padding: 24px 20px; }
}

/* ===== Footer Services List ===== */
.footer-services {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-services li {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding: 2px 0;
}
