﻿/* ============================================================
       DESIGN TOKENS
    ============================================================ */
:root {
  --white: #fff;
  --black: #111;
  --text: #1f1f1f;
  --muted: #666666;
  --brand: #ff8b10;
  --brand-hover: #e07a0e;
  --brand-soft: #fff3e4;

  --gray-50: #f7f7f7;
  --gray-100: #efefef;
  --gray-200: #dddddd;

  --border: rgba(17, 17, 17, 0.08);
  --border-width: 1px;

  --shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);

  --content: 1200px;
  --header-h: 92px;
  --text-body: 1rem;
  --text-sm: 0.875rem;
  --text-h1: clamp(3rem, 1.8rem + 4vw, 5rem);
  --text-h2: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);

  --radius-card: 28px;
  --radius-inner: 20px;

  --space-xs: 8px;
  --space-sm: 14px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;

  --section-pad: 120px;
  --transition: 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
       BASE RESET
    ============================================================ */
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--space-xl));
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: 'General Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: var(--text-body);
  line-height: 1.65
}

img,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
}

a {
  text-decoration: none;
  color: inherit
}

button,
input,
textarea,
select {
  font: inherit
}

h1,
h2,
h3,
h4,
p {
  margin: 0
}

ul {
  list-style: none;
  padding: 0
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-140%);
  transition: opacity var(--transition), transform var(--transition);
}

.skip-link:focus,
.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* ============================================================
       1. HEADER
    ============================================================ */
.site-header {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 92px;
  padding-block: 24px 12px;
  background: transparent;
  border-bottom: 0;
  transition: background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background: transparent;
  box-shadow: none;
}

.site-header .header-shell {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand {
  display: flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0
}

.brand img {
  height: 82px;
  width: 250px;
  max-width: 250px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 4px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .74);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.main-nav a:hover {
  background: transparent;
  color: var(--white);
}

.main-nav a.active {
  background: transparent;
  color: var(--brand);
  box-shadow: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--black);
  font-weight: 800;
  font-size: var(--text-sm);
  border: 1px solid rgba(255, 255, 255, .10);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  justify-self: end;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: none;
}

.header-cta:hover {
  background: var(--brand-hover);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: none
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.menu-toggle:hover {
  background: transparent;
  color: var(--brand)
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 14, 14, .98);
  padding: 16px var(--space-lg) 40px;
  z-index: 999;
  flex-direction: column;
  gap: var(--space-xs);
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: flex
}

.mobile-menu nav {
  display: grid;
  gap: var(--space-xs)
}

.mobile-menu a {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--space-md);
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition);
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, .08)
}

.mobile-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: var(--space-lg)
}

/* ============================================================
       SHARED BUTTON SYSTEM
    ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: var(--text-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: var(--black);
  box-shadow: 0 4px var(--space-md) rgba(255, 139, 16, .30)
}

.btn-primary:hover {
  background: var(--brand-hover);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 var(--space-xs) 16px rgba(255, 139, 16, .40)
}

.btn:disabled {
  cursor: not-allowed;
  opacity: .72;
  transform: none;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .25)
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white)
}

.btn-dark {
  background: var(--black);
  color: var(--white)
}

.btn-dark:hover {
  background: #222;
  transform: translateY(-2px)
}

.btn-disabled,
.btn-disabled:hover {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  background: transparent;
  color: #a85000;
  border: 2px solid var(--brand)
}

.btn-outline:hover {
  background: var(--brand);
  color: var(--black)
}

.btn-block {
  width: 100%
}

/* ============================================================
       LAYOUT HELPERS
    ============================================================ */
section {
  padding-block: var(--section-pad)
}

.section-white {
  background: var(--white)
}

.section-light {
  position: relative;
  background: var(--white)
}

.section-gray {
  position: relative;
  background: var(--gray-50)
}

.section-dark {
  background: var(--black);
  color: var(--white)
}

.section-light::before,
.section-gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(20px, calc((100% - var(--content)) / 2));
  right: max(20px, calc((100% - var(--content)) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 139, 16, .28), transparent);
  pointer-events: none;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: clamp(2.5rem, 5vw, 4rem)
}

.section-head.center {
  text-align: center;
  align-items: center
}

.section-head h2 {
  font-size: var(--text-h2);
  line-height: 1.05;
  letter-spacing: -.03em
}

.section-head p {
  max-width: 62ch;
  color: var(--muted);
  font-size: var(--text-body)
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, .72)
}

/* ============================================================
       2. HERO
    ============================================================ */
.hero {
  position: relative;
  height: auto;
  min-height: 920px;
  padding-block: 0;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 45%;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 16% 28%, rgba(255, 139, 16, .26), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .70) 44%, rgba(0, 0, 0, .38) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: flex-start;
  padding-block: calc(var(--header-h) + 4.5rem) 4rem;
}

.hero-inner {
  position: relative;
  width: min(760px, 100%);
  max-width: 760px;
  padding: clamp(1rem, 2vw, 1.6rem);
  border-radius: var(--radius-card);
  background: rgba(17, 17, 17, .44);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(5px);
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 5px;
  border-radius: 999px;
  background: var(--brand);
}

.hero h1 {
  font-size: var(--text-h1);
  line-height: 1.02;
  letter-spacing: -.04em;
  max-width: 13ch;
  font-weight: 900;
}

.hero-sub {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero-lead {
  margin-top: var(--space-sm);
  font-size: clamp(1.05rem, .95rem + .45vw, 1.25rem);
  max-width: 60ch;
  color: rgba(255, 255, 255, .82);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: 14px;
}

.hero-actions .btn {
  border-radius: 12px;
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
  max-width: 680px;
}

.stat-card {
  padding: 12px var(--space-md);
  border-radius: var(--radius-inner);
  background: rgba(255, 255, 255, .09);
  border: var(--border-width) solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 64px;
}

.stat-number {
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.4rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1
}

.stat-label {
  margin-top: var(--space-xs);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .80);
  font-weight: 600
}

/* ============================================================
       3. TRUST BAR
    ============================================================ */
.trust-section {
  padding-block: 44px;
  background: #141414;
  color: var(--white)
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg)
}

.trust-card {
  min-height: 140px;
  background: #1b1b1b;
  padding: 28px 24px;
  border-radius: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover)
}

.trust-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 139, 16, .12);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.trust-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3
}

.trust-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .68);
  line-height: 1.5
}

/* ============================================================
       4. OVER ONS
    ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-media {
  min-height: 560px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
  border: var(--border-width) solid rgba(17, 17, 17, .06);
  background: var(--white);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .55));
  pointer-events: none;
  z-index: 1;
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transform: scale(1.02);
}

.about-media-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  z-index: 2;
}

.about-media-title {
  display: block;
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 2.8vw, 2.55rem);
  line-height: 1.7;
  font-weight: 900;
  letter-spacing: -.035em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

.about-media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-media-cta .btn {
  min-height: 48px;
  border-radius: 12px;
}

.about-media-cta .btn-primary {
  box-shadow: 0 10px 24px rgba(255, 139, 16, .36);
}

.about-media-cta .btn-secondary {
  background: rgba(255, 255, 255, .10);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(10px);
}

.about-media-cta .btn-secondary:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.about-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-card);
  background: var(--white);
  border: var(--border-width) solid var(--border);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .08);
}

.about-content::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 18px;
  width: 5px;
  border-radius: 999px;
  background: var(--brand);
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid rgba(255, 139, 16, .24);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 139, 16, .12);
}

.hero-inner .about-eyebrow,
.legal-hero .about-eyebrow {
  margin-bottom: var(--space-md);
  background: rgba(255, 255, 255, .10);
  color: var(--white);
  border-color: rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
}

.section-dark .about-eyebrow,
.depannage-content .about-eyebrow,
.hours-card .about-eyebrow {
  color: var(--brand);
  background: rgba(255, 139, 16, .12);
  border-color: rgba(255, 139, 16, .32);
}

.hours-card .about-eyebrow {
  margin-bottom: var(--space-md);
}

.about-content h2 {
  font-size: var(--text-h2);
  line-height: 1.05;
  letter-spacing: -.03em
}

.about-content p {
  font-size: var(--text-body);
  color: var(--muted);
  line-height: 1.7
}

.about-content .about-lead {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.55;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: var(--space-xs);
}

.about-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: start;
  padding: var(--space-md);
  border-radius: var(--radius-inner);
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  border: var(--border-width) solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.about-point:hover {
  border-color: rgba(255, 139, 16, .24);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .07);
  transform: translateY(-2px);
}

.about-point-icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-soft);
  border: var(--border-width) solid rgba(255, 139, 16, .26);
  color: var(--brand);
  font-size: .78rem;
  font-weight: 900;
}

.about-point strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--text)
}

.about-point span {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5
}

/* ============================================================
       5. DIENSTEN
    ============================================================ */
.service-tabs {
  max-width: 1180px;
  margin-inline: auto;
  scroll-margin-top: calc(var(--header-h) + var(--space-xl));
}

.service-tab-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  padding: 6px;
  background: var(--black);
  border: var(--border-width) solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
  margin-bottom: var(--space-lg);
}

.service-tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  min-width: 0;
  min-height: 52px;
  padding: 9px 8px;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .86);
  cursor: pointer;
  border-radius: 15px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-tab span {
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, .56);
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap
}

.service-tab:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  transform: translateY(-1px)
}

.service-tab.active {
  background: var(--brand);
  color: var(--black);
  box-shadow: 0 10px 22px rgba(255, 139, 16, .28);
  transform: translateY(-1px)
}

.service-tab.active span {
  color: rgba(17, 17, 17, .76)
}

.service-tab:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px
}

.service-tab-panels {
  background: var(--white);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-tab-panel[hidden] {
  display: none
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) 1.2fr;
  gap: var(--space-xl);
  padding: var(--space-lg);
  align-items: stretch;
}

.service-detail-grid img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  border-radius: var(--space-md);
}

.service-detail-grid div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm)
}

.service-detail-grid h3 {
  font-size: 1.35rem;
  line-height: 1.2
}

.service-detail-grid p {
  color: var(--muted);
  line-height: 1.7
}

.service-detail-grid .btn {
  margin-top: auto
}

/* ============================================================
       MAINTENANCE
    ============================================================ */
.maintenance-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center
}

.maintenance-media {
  max-height: 680px;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow)
}

.maintenance-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.maintenance-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg)
}

.maintenance-content p {
  color: var(--muted);
  line-height: 1.7
}

.maintenance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.maintenance-list span {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  border: var(--border-width) solid var(--border);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* ============================================================
       SELLING PANEL
    ============================================================ */
.selling-panel {
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #151515 0%, #1f1f1f 100%);
  color: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.selling-panel::after {
  content: '';
  position: absolute;
  inset: auto -80px -100px auto;
  width: 280px;
  height: 280px;
  background: rgba(255, 139, 16, .14);
  filter: blur(60px);
  border-radius: 50%;
}

.selling-panel h2 {
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -.03em
}

.selling-panel p {
  color: rgba(255, 255, 255, .76);
  max-width: 52ch;
  margin-top: 12px
}

.selling-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl)
}

.selling-box {
  padding: 16px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, .06);
  border: var(--border-width) solid rgba(255, 255, 255, .10);
  position: relative;
  z-index: 1;
}

.selling-box h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .8)
}

.selling-box strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 10px
}

.selling-box p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6)
}

.sales-path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg)
}

.sales-path-card {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 0;
  min-height: 450px;
  overflow: hidden;
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow);
  scroll-margin-top: calc(var(--header-h) + var(--space-xl));
}

.sales-path-card img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.sales-path-card div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-lg)
}

.sales-path-card h3 {
  font-size: 1.35rem;
  line-height: 1.2
}

.sales-path-card p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65
}

.sales-path-card .btn {
  margin-top: auto
}

/* ============================================================
       6. WAGENS -- VEHICLE CARDS
    ============================================================ */
.cars-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cars-loading,
.cars-empty {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 139, 16, 0.18);
  border-radius: var(--radius-inner);
  background: var(--brand-soft);
  color: var(--black);
  font-weight: 800;
  padding: var(--space-lg);
  text-align: center;
}

.vehicle-card {
  position: relative;
  min-height: 520px;
  height: auto;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
  border: 1px solid rgba(17, 17, 17, .08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.vehicle-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), rgba(255, 139, 16, 0));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 139, 16, .22);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .14)
}

.vehicle-card:hover::before {
  opacity: 1;
}

.car-image-wrapper {
  display: block;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--gray-50);
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  line-height: 0;
}

.car-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.car-image-wrapper::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .38));
  opacity: .72;
  pointer-events: none;
  transition: opacity var(--transition);
}

.vehicle-card:hover .car-image-wrapper img {
  transform: scale(1.04)
}

.vehicle-card:hover .car-image-wrapper::after {
  opacity: .92;
}

/* STATUS -- BRAND COLOR ONLY */
.status-badge,
.status-beschikbaar,
.status-gereserveerd,
.status-bieden {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 139, 16, .15) !important;
  color: #8a4100 !important;
  border: 1px solid rgba(255, 139, 16, .25);
  line-height: 1;
  white-space: nowrap;
}

.car-status-row {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.car-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-lg) 22px 22px;
  gap: 10px;
  overflow: hidden;
}

.car-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3
}

.car-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--muted);
  background: var(--gray-50);
  padding: 7px 10px;
  border-radius: 10px;
  border: var(--border-width) solid var(--border);
}

.spec-item svg {
  width: var(--space-sm);
  height: var(--space-sm);
  flex-shrink: 0;
  color: var(--brand)
}

.car-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #a85000;
  line-height: 1
}

.car-actions {
  margin-top: 0;
  display: flex;
  gap: 10px;
}

.car-actions .btn {
  min-height: 44px;
  padding: 0 var(--space-sm);
  font-size: .85rem;
  border-radius: var(--space-sm)
}

#car-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

#car-modal.open {
  display: flex
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(4px);
}

.modal-inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 96vw);
  max-height: 94vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 3fr 2fr;
  background: var(--white);
  border-radius: var(--radius-card);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 30;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  color: var(--white);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--brand)
}

.modal-gallery {
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--black);
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}

.gallery-main {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--black);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--black);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  transform: translateY(-50%);
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 15px rgba(255, 139, 16, .5);
}

.gallery-nav:hover {
  background: var(--brand-hover);
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

.gallery-counter {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 10;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .65);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
}

.gallery-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  overflow-x: auto;
  flex-shrink: 0;
  background: #1a1a1a;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-track {
  background: var(--black);
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 2px;
}

.gallery-thumb {
  width: 68px;
  height: 50px;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  opacity: .55;
  transition: opacity var(--transition), border-color var(--transition);
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--brand);
}

.gallery-thumb:hover {
  opacity: .85;
}

.modal-info {
  max-height: 94vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 28px;
}

.modal-header h2 {
  margin: 0;
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}

.modal-price {
  margin-top: 6px;
  color: var(--brand);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.modal-spec-item {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--gray-50);
  color: var(--text);
  font-size: .87rem;
}

.modal-spec-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.modal-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.modal-extra-tag {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 139, 16, .1);
  border: 1px solid rgba(255, 139, 16, .25);
  color: var(--brand-hover);
  font-size: .8rem;
  font-weight: 600;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
}

.car-photo-count {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(17, 17, 17, .72);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 600;
}

/* ============================================================
       6.1 DEPANNAGE
    ============================================================ */
.depannage-section {
  position: relative;
  overflow: hidden;
}

.depannage-section::before {
  content: '';
  position: absolute;
  inset: auto -12% -36% auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 139, 16, .24), transparent 68%);
  pointer-events: none;
}

.depannage-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255, 139, 16, .16), rgba(255, 139, 16, 0) 42%),
    rgba(255, 255, 255, .045);
  border: var(--border-width) solid rgba(255, 255, 255, .10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.depannage-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--black);
}

.depannage-media::before,
.depannage-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.depannage-media::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .36), rgba(0, 0, 0, 0) 54%),
    linear-gradient(180deg, rgba(255, 139, 16, .20), rgba(0, 0, 0, .34));
  mix-blend-mode: multiply;
}

.depannage-media::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 62%, rgba(17, 17, 17, .82) 100%);
}

.depannage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08) brightness(.82);
  transform: scale(1.02);
}

.depannage-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem) 0;
  color: var(--white);
}

.depannage-content .about-eyebrow {
  align-self: flex-start;
}

.depannage-content h2 {
  max-width: 14ch;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.depannage-content p {
  max-width: 62ch;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  line-height: 1.75;
}

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

.depannage-points li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .86);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.45;
}

.depannage-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .35em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(255, 139, 16, .14);
}

.depannage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.depannage-actions .btn {
  min-height: 50px;
  padding-inline: 22px;
}

/* ============================================================
       7. CTA BAND
    ============================================================ */
.cta-band {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  background: var(--black);
  box-shadow: var(--shadow);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .20) 100%);
  z-index: 1;
}

.cta-copy {
  padding: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  font-size: clamp(2rem, 1.5rem + 1.8vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  max-width: 14ch;
}

.cta-copy p {
  margin-top: var(--space-md);
  color: rgba(255, 255, 255, .78);
  max-width: 46ch;
  line-height: 1.6
}

.cta-phone {
  margin-top: 22px;
  font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.6rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -.02em;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: 26px
}

.cta-visual {
  position: relative;
  z-index: 0;
  min-height: 100%;
  overflow: hidden
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
  object-position: center
}

/* ============================================================
       8. OPENINGSUREN
    ============================================================ */
.hours-wrap {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: var(--space-xl);
  align-items: stretch
}

.hours-media {
  position: relative;
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: var(--border-width) solid rgba(255, 255, 255, 0.08);
  background: #181818;
}

.hours-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, .10), rgba(17, 17, 17, .62)),
    linear-gradient(0deg, rgba(255, 139, 16, .24), transparent 46%);
  pointer-events: none
}

.hours-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center
}

.hours-card {
  background: linear-gradient(145deg, #1f1f1f 0%, #161616 100%);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow);
  border: var(--border-width) solid rgba(255, 255, 255, 0.07);
}

/* ============================================================
       9. CONTACT
    ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-xl);
  align-items: stretch;
}

.contact-panel,
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow);
  border: var(--border-width) solid var(--border);
}

.contact-items {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 139, 16, .08), rgba(255, 139, 16, 0) 42%),
    var(--white);
  border: 1px solid rgba(17, 17, 17, .08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.contact-item>div:not(.contact-icon) {
  min-width: 0;
}

.contact-item:hover {
  background:
    linear-gradient(135deg, rgba(255, 139, 16, .14), rgba(255, 139, 16, .04) 48%),
    var(--white);
  border-color: rgba(255, 139, 16, .32);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .09);
  transform: translateY(-2px);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  flex-shrink: 0;
  background: var(--brand);
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 139, 16, .28);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
}

.contact-item:hover .contact-icon {
  background: var(--brand-hover);
  color: var(--white);
  transform: scale(1.04);
}

.contact-item h3 {
  font-size: 1.08rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -.01em;
}

.contact-item p,
.contact-item a {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  color: var(--brand);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid rgba(255, 139, 16, .22);
  color: var(--brand);
  font-size: .86rem;
  font-weight: 900;
  line-height: 1;
}

.map-frame {
  margin-top: var(--space-md);
  border-radius: var(--radius-inner);
  overflow: hidden;
  border: var(--border-width) solid var(--border);
}

.map-frame iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

.form-grid {
  display: grid;
  gap: var(--space-md);
}

.field {
  display: grid;
  gap: var(--space-xs);
}

.field label {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  padding: var(--space-sm) 8px;
  border-radius: var(--space-sm);
  border: 1.5px solid var(--gray-200);
  background: var(--gray-50);
  outline: none;
  color: var(--text);
  font-size: var(--text-sm);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 139, 16, 0.10);
}

.field.has-error input,
.field.has-error textarea {
  border-color: #d92d20;
  background: #fff7f6;
  box-shadow: 0 0 0 4px rgba(217, 45, 32, .10);
}

.field-error-message {
  min-height: 18px;
  color: #b42318;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
}

.field-error-message:empty {
  display: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-alt-contact {
  padding: var(--space-md);
  border-radius: var(--radius-inner);
  background: linear-gradient(135deg, var(--brand-soft), var(--white));
  border: var(--border-width) solid rgba(255, 139, 16, .22);
}

.form-alt-contact p {
  margin-bottom: var(--space-sm);
  color: var(--text);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-contact-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.form-contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  border: var(--border-width) solid rgba(255, 139, 16, .24);
  color: var(--text);
  font-size: .85rem;
  font-weight: 800;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.form-contact-links a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  transform: translateY(-1px);
}

.form-alt-contact .form-contact-links a[href*="facebook.com"],
.form-alt-contact .form-contact-links a[href*="instagram.com"] {
  display: none;
}

#form-message {
  display: none;
  margin-top: var(--space-sm);
  padding: var(--space-sm) 8px;
  border-radius: var(--space-sm);
  background: rgba(255, 139, 16, 0.08);
  color: #9a5600;
  font-weight: 600;
  font-size: var(--text-sm);
}

#form-message.error {
  display: block;
  background: rgba(255, 50, 50, .08);
  color: #b00;
}

#form-message.success {
  display: block;
  background: rgba(22, 163, 74, .10);
  color: #166534;
  border: 1px solid rgba(22, 163, 74, .24);
}

#form-message.info {
  display: block;
  background: rgba(255, 139, 16, .10);
  color: #8a4a00;
}

/* ============================================================
       10. FOOTER
    ============================================================ */
.footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 139, 16, .16), transparent 34%),
    linear-gradient(180deg, #111 0%, #080808 100%);
  color: var(--white);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 3px solid var(--brand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: var(--border-width) solid rgba(255, 255, 255, .07);
}

.footer-col {
  display: grid;
  gap: var(--space-sm);
  align-content: start;
  min-width: 0;
}

.footer-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.footer-col>p,
.footer-col>a {
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
  line-height: 1.65;
}

.footer-col>a:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
  padding-bottom: 6px;
  border-bottom: var(--border-width) solid rgba(255, 139, 16, 0.4);
  display: inline-block;
  width: fit-content
}

.footer-bottom {
  padding: var(--space-xl) 0 36px;
  color: rgba(255, 255, 255, .38);
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .38)
}

.footer-bottom a:hover {
  color: var(--white)
}

.footer-socials,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .72);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-socials a:hover {
  background: rgba(255, 139, 16, .14);
  border-color: rgba(255, 139, 16, .30);
  color: var(--brand);
  transform: translateY(-2px);
}

/* ============================================================
       SCROLL TO TOP
    ============================================================ */
.scroll-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 var(--space-xs) var(--space-xl) rgba(255, 139, 16, .35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(var(--space-xs));
  transition: all var(--transition);
  z-index: 50;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 139, 16, .45)
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 51;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: var(--black);
  box-shadow: 0 16px 36px rgba(37, 211, 102, .32);
  border: 1px solid rgba(255, 255, 255, .35);
  transform: translateY(0);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(37, 211, 102, .42);
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
       FAQ SECTION
    ============================================================ */
.faq-grid {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin-inline: auto;
  padding: 8px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 139, 16, .10), rgba(255, 139, 16, 0) 40%),
    var(--white);
  border: 1px solid rgba(17, 17, 17, .08);
  box-shadow: var(--shadow);
}

.faq-item {
  position: relative;
  counter-increment: faq;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 139, 16, .28);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  min-height: 74px;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.faq-question>span:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question>span:first-child::before {
  content: counter(faq, decimal-leading-zero);
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

.faq-question:hover {
  background: rgba(255, 139, 16, .045);
  color: var(--text)
}

.faq-question.open {
  color: var(--brand);
  background:
    linear-gradient(135deg, rgba(255, 139, 16, .13), rgba(255, 139, 16, .035) 58%),
    var(--white);
}

.faq-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 12px;
  background: rgba(255, 139, 16, .12);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  overflow: hidden;
  line-height: 1;
  border: 1px solid rgba(255, 139, 16, .22);
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  max-width: none;
  max-height: none;
  display: block;
  flex: 0 0 16px;
  overflow: visible;
  transition: transform var(--transition);
}

.faq-question.open .faq-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  overflow: hidden;
  line-height: 1;
  border-color: var(--brand);
  transform: rotate(90deg);
}

.faq-question.open .faq-icon svg {
  stroke: var(--white);
  transform: rotate(45deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16, 1, .3, 1)
}

.faq-answer.open {
  max-height: 300px
}

.faq-answer p {
  padding: 0 22px 22px 68px;
  color: var(--muted);
  line-height: 1.7;
  font-size: .95rem;
  border-top: 1px solid rgba(17, 17, 17, .07);
  padding-top: 14px;
}

/* ============================================================
       RESPONSIVE -- TABLET (max 1100px)
    ============================================================ */


/* ============================================================
       RESPONSIVE -- MOBILE (max 720px)
    ============================================================ */


/* ============================================================
       RESPONSIVE -- SMALL (max 480px)
    ============================================================ */


/* 8b. HOURS ROW STYLES */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: 13px var(--space-md);
  margin-bottom: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: var(--border-width) solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), border-color var(--transition);
}

.hours-row:last-child {
  margin-bottom: 0;
}

.hours-row:hover {
  background: rgba(255, 139, 16, 0.08);
  border-color: rgba(255, 139, 16, 0.20);
}

.hours-row.today {
  background: rgba(255, 139, 16, 0.13);
  border-color: rgba(255, 139, 16, 0.35);
}

.hours-row.today strong {
  color: var(--brand);
}

.hours-row strong {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
}

.hours-row .time {
  font-weight: 700;
  color: var(--brand);
}

.hours-row .closed {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.38);
}

/* VISUAL IDENTITY FIX */

/* ABOUT */
.about-point {
  gap: 4px 12px;
}

.about-point strong {
  color: var(--text);
  font-size: .95rem;
}

.about-point span:not(.about-point-icon) {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}

.about-content p {
  color: var(--muted);
}

/* TRUST */
.trust-card-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.trust-card p {
  color: rgba(255, 255, 255, .65);
  font-size: .88rem;
  line-height: 1.55;
}

/* CONTACT */
.contact-item h3 {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 900;
}

.contact-item p,
.contact-item a {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-item a:hover {
  color: var(--brand);
}

.contact-form-wrap h3 {
  color: var(--text);
}

.field label {
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.field input,
.field textarea {
  color: var(--text);
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px var(--space-md);
  font-size: .95rem;
  width: 100%;
  transition: border-color var(--transition);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
}

/* SECTION HEADS */
.section-light .section-head h2,
.section-gray .section-head h2 {
  color: var(--text);
}

.section-light .section-head p,
.section-gray .section-head p {
  color: var(--muted);
}

.about-media-rel {
  position: relative;
}

.section-head-tight {
  margin-bottom: 0;
}

.cta-band-pad {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.contact-form-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.footer-contact-line {
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
}

.footer-contact-line-muted {
  color: rgba(255, 255, 255, .50);
  font-size: .85rem;
}

/* LEGAL PAGES */
.legal-page {
  background: var(--gray-50);
}

.legal-hero {
  position: relative;
  padding-block: calc(var(--header-h) + 5rem) 4rem;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 139, 16, .24), transparent 32%),
    linear-gradient(135deg, #111 0%, #1b1b1b 100%);
  color: var(--white);
  overflow: hidden;
}

.legal-hero .container {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  max-width: 820px;
  font-size: clamp(2.3rem, 1.4rem + 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.legal-hero p {
  max-width: 680px;
  margin-top: var(--space-md);
  color: rgba(255, 255, 255, .76);
  font-size: 1.05rem;
  line-height: 1.65;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-lg);
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .82);
  font-size: .85rem;
  font-weight: 800;
}

.legal-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.legal-layout {
  display: grid;
  gap: var(--space-lg);
  max-width: 980px;
  margin-inline: auto;
}

.legal-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.8rem);
  line-height: 1.18;
  letter-spacing: -.02em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-card p+p,
.legal-card ul+p,
.legal-card p+ul {
  margin-top: 10px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  padding-left: 1.1rem;
  list-style: disc;
}

.legal-card strong {
  color: var(--text);
}
