/*
Theme Name: Smart Telecom Store
Theme URI: https://testoosteromstudio.nl
Author: Oosterom Studio
Author URI: https://oosteromstudio.nl
Description: Custom thema voor Smart Telecom Store
Version: 1.0
*/

/*
  Inhoud:
  1.  Reset & tokens
  2.  Typografie
  3.  Buttons
  4.  Formulieren
  5.  USP bar
  6.  Navbar & dropdown
  7.  Mobiel menu
  8.  Hero (homepage)
  9.  Secties (gedeeld)
  10. Diensten
  11. Waarom / Waarden
  12. Reviews
  13. Kenmerken
  14. CTA
  15. Brand bar
  16. Reparatie pagina's
  17. Modellen sectie
  18. Over ons
  19. B2B
  20. FAQ
  21. Plaatsnamen sectie
  22. Contact
  23. Abonnementen
  24. Telefoon verkopen
  25. Store status widget
  26. Zakelijk
  27. Footer
  28. Keyframes
  29. Responsive
*/

/* ─────────────────────────────────────────
   1. RESET & TOKENS
───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #ffffff;
  --dark:         #0a0a0a;
  --accent:       #fc8203;
  --accent-light: #fff3e6;
  --text:         #0a0a0a;
  --muted:        #6b7280;
  --border:       #e5e7eb;
  --surface:      #f9fafb;
  --radius:       16px;
  --font-display: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   2. TYPOGRAFIE
───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

p {
  font-family: var(--font-body);
}

/* ─────────────────────────────────────────
   3. BUTTONS
───────────────────────────────────────── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(252, 130, 3, 0.3);
}

.btn-primary.btn-dark {
  background: var(--dark);
}

.btn-primary.btn-dark:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.btn-secondary:hover {
  gap: 10px;
}

.lazy {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lazy.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   4. FORMULIEREN
───────────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.verkoop-form-wrapper .form-textarea {
  min-height: 80px;
}

.form-success {
  display: none;
  background: #f0fff4;
  border: 1px solid #25d366;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #166534;
  margin-top: 8px;
}

.verkoop-form-wrapper .form-success {
  margin-top: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-bar-usp {
  background: var(--surface);
  padding: 20px 0;
}

/* ─────────────────────────────────────────
   6. NAVBAR & DROPDOWN
───────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fc8203;
  backdrop-filter: blur(16px);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-cta {
  background: var(--dark);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-display);
}

.nav-cta:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  list-style: none;
}

.nav-dropdown > a {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 10px 0;
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  z-index: 200;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.nav-dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu-inner {
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 12px;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: var(--surface);
  color: var(--accent);
  text-decoration: underline;
}

/* Submenu (tweede niveau) */
.nav-submenu {
  position: relative;
}

.nav-submenu > a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}


.nav-submenu:hover > a {
  background: var(--surface);
}

.submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 97%;
  background: #fff;
  min-width: 200px;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 8px;
}

.nav-submenu:hover .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: background 0.15s;
}

.submenu a:hover {
  background: var(--surface);
  color: var(--accent);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}

/* ─────────────────────────────────────────
   7. MOBIEL MENU
───────────────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.mobile-overlay.active {
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 12px 24px 32px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  transform: translateY(0);
}

.mobile-menu-handle {
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  margin: 0 auto 16px;
}

.mobile-menu-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--muted);
}

.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-cta {
  margin-top: 16px;
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  border-radius: 12px !important;
  padding: 14px !important;
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* ─────────────────────────────────────────
   8. HERO (HOMEPAGE)
───────────────────────────────────────── */
.hero-section {
  height: 800px;
  position: relative;
  padding-bottom: 120px;
  clip-path: ellipse(100% 80% at 50% 0%);

}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero-card-img {
  background-color: rgb(229, 229, 229);
  width: auto;
  border-radius: 10px;
  height: 100%;
  width: 10 0%;
}

.hero-card-title {
  position: absolute; 
  bottom: -10px;
  clip-path: ellipse(100% 100% at 50% 100%);
  background: var(--dark);
  width: 100%;
  font-family: var(--font-display);
  padding: 18px;
  z-index: 100;
  border-radius: 10px;
  color: var(--accent-light);
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 0;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.hero h1 {
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  text-align: center;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p {
  color: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  text-align: center;
}

.hero-btns {
  margin-bottom: 20px;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-btns-homepage{
  justify-content: center !important;
}


.page-btns {
  justify-content: flex-start !important;
}

.hero-stats  {
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  gap: 32px;
  margin-top: 20px;
}

.hero-stat {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-stat-check {
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--bg);
}

.stat-label {
  color: var(--bg);
  font-size: 13px;
  margin-top: 2px;
}

.hero-cards-grid {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: center;
  z-index: 999;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card {
  position: relative;
  background: var(--bg);
  border-radius: 24px;
  height: 200px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 200px;
  cursor: pointer;
  box-shadow: 0 2px 80px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}

.hero-card:hover {
  box-shadow: 0 4px 80px rgba(0, 0, 0, 0.15);

}

.hero-search {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.hero-search-input {
  width: 100%;
  padding: 20px 100px 20px 20px;
  border-radius: 30px;
  border: none;
}

.hero-search-input::placeholder {
  color: var(--dark);
}

.hero-search-input:focus {
  outline: none;
  border: 1px solid var(--accent);
}

.hero-search-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bg);
  border-radius: 20px;
  padding: 10px 20px;
  border: none;
  background-color: var(--accent);
  cursor: pointer;
  font-family: var(--font-display);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-main {
  background: var(--dark);
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(252, 130, 3, 0.3), transparent 70%);
}

.repair-steps {
  display: flex;
  flex-direction: column;
}

.repair-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.repair-step:last-child {
  border-bottom: none;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(252, 130, 3, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.step-text {
  flex: 1;
}

.step-title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-display);
}

.step-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  margin-top: 2px;
}

.step-price {
  color: #4ade80;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
}

.hero-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.hero-float-1 {
  bottom: 20px;
  left: -20px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-2 {
  top: 20px;
  right: -20px;
  animation: float 3s ease-in-out infinite 1.5s;
}

.float-icon { font-size: 20px; }
.float-label { font-weight: 600; font-size: 12px; }
.float-sub { color: var(--muted); font-size: 11px; }

/* ─────────────────────────────────────────
   9. SECTIES (GEDEELD)
───────────────────────────────────────── */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag, .verkoop-tag, .abonnementen-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-family: var(--font-display);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--dark);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--dark);
  font-size: 16px;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* ─────────────────────────────────────────
   10. DIENSTEN
───────────────────────────────────────── */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.diensten-section {
  margin-top: -200px;
}

.dienst-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  height: 100%;
}

img.dienst-img {
  max-height:80px;
  max-width: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}

.dienst-card::after {
  content: '→';
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 18px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s;
}

.dienst-card:hover {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 8px 32px rgba(252, 130, 3, 0.08);
  transform: translateY(-2px);
}

.dienst-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.dienst-emoji {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.dienst-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.dienst-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.dienst-merken {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.merk-tag {
  background: var(--border);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

/* Diensten overzicht pagina */
.dienst-card-groot {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}

.dienst-card-groot:hover {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 8px 32px rgba(252, 130, 3, 0.08);
  transform: translateX(4px);
}

.dienst-card-groot-icon   { font-size: 40px; flex-shrink: 0; }
.dienst-card-groot-content { flex: 1; }

.dienst-card-groot-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.dienst-card-groot-desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.dienst-card-groot-merken {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.dienst-card-groot-prijs {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}

.dienst-card-groot-arrow {
  font-size: 22px;
  color: var(--accent);
  opacity: 0;
  transition: all 0.2s;
}

.dienst-card-groot:hover .dienst-card-groot-arrow {
  opacity: 1;
}


/* ─────────────────────────────────────────
   11. WAAROM / WAARDEN
───────────────────────────────────────── */
.waarom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.waarom-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
  min-width: 400px;
}

.waarom-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(252, 130, 3, 0.08);
}

.waarom-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.waarom-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.waarom-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.waarden-section {
  background: var(--surface);
  padding: 80px 40px;
}

.waarden-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.waarden-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.waarde-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.2s;
}

.waarde-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 130, 3, 0.1);
}

.waarde-icon  { font-size: 36px; margin-bottom: 12px; display: block; }
.waarde-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.waarde-desc  { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ─────────────────────────────────────────
   12. REVIEWS
───────────────────────────────────────── */
.reviews-section {
  background: #f9fafb;
  padding: 100px 40px;
  margin: 0 auto;
}

.reviews-inner {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;

}

.reviews-header {
  display: flex;  
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.reviews-score { 
  text-align: center; 
  display: flex; 
  flex-direction: column; 
}

.score-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: var(--accent);
}

.score-stars {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 2px;
}

.score-label { color: var(--dark); font-size: 13px; }


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

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}

.review-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }

.review-text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  font-family: var(--font-display);
}

.review-name { font-weight: 600; font-size: 13px; }
.review-date { color: var(--muted); font-size: 12px; }

/* ─────────────────────────────────────────
   13. HULP AAN HUIS
───────────────────────────────────────── */

.hulp-aan-huis-section {
  padding: 80px 40px;
}

.hulp-aan-huis-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hulp-aan-huis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hulp-aan-huis-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.2s;
}

.hulp-aan-huis-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(252, 130, 3, 0.08);
}

.hulp-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.hulp-aan-huis-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hulp-aan-huis-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hulp-aan-huis-inner {
    grid-template-columns: 1fr;
  }

  .hulp-aan-huis-card {
    text-align: center;
  }
  .hulp-aan-huis-card h3{
    text-align: center;
  }
  .hulp-aan-huis-card p{
    text-align: center;
  }

  .hulp-icon {
    margin: 0 auto;
}
}


/* ─────────────────────────────────────────
   13. KENMERKEN
───────────────────────────────────────── */
.kenmerken-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


.kenmerk-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.2s;
}

.kenmerk-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(252, 130, 3, 0.08);
  transform: translateY(-2px);
}

.kenmerk-icon  { font-size: 36px; margin-bottom: 16px; display: block; }
.kenmerk-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.kenmerk-desc  { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.kenmerk-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kenmerk-list li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.kenmerk-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─────────────────────────────────────────
   14. CTA
───────────────────────────────────────── */
.cta-section {
  background: var(--accent);
  padding: 80px 40px;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-btn-white {
  background: #fff;
  color: var(--accent);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  font-family: var(--font-display);
  transition: all 0.2s;
}

.cta-btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  font-family: var(--font-display);
  transition: all 0.2s;
}

.cta-btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ─────────────────────────────────────────
   15. BRAND BAR
───────────────────────────────────────── */
.brand-bar {
  overflow: hidden;
  background: var(--surface);
  padding: 20px 0;
}

.brand-track {
  display: flex;
  width: max-content;
  animation: scrollBrands 45s infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-play-state: running;
}

.brand-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  padding: 0 40px;
  white-space: nowrap;
}

.brand-item-usp {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 14px;
}

/* ─────────────────────────────────────────
   16. REPARATIE PAGINA'S
───────────────────────────────────────── */
.reparatie-hero {
  background: var(--dark);
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}

.reparatie-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 130, 3, 0.15), transparent 70%);
  pointer-events: none;
}

.reparatie-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.reparatie-hero .section-tag {
  color: var(--accent);
}

.reparatie-hero .section-title { color: #fff; }
.reparatie-hero em { font-style: normal; color: var(--accent); }

.reparatie-hero .section-sub {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.reparatie-usps {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.reparatie-usps span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

.reparatie-usps li {
  display: flex;
  gap: 8px; 
  color: rgba(255, 255, 255, 0.85);
}

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

.reparatie-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}

.reparatie-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 130, 3, 0.1);
}

.reparatie-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.reparatie-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.reparatie-card-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.reparatie-card-prijs {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}

/* ─────────────────────────────────────────
   17. MODELLEN SECTIE
───────────────────────────────────────── */
.modellen-section {
  background: var(--dark);
  padding: 80px 40px;
}

.modellen-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.modellen-section .section-tag  { background: rgba(252, 130, 3, 0.2); color: var(--accent); }
.modellen-section .section-title { color: #fff; }
.modellen-section .section-sub   { color: rgba(255, 255, 255, 0.5); }

.modellen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  list-style: none;
  padding: 0;
}

.model-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.model-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─────────────────────────────────────────
   18. OVER ONS
───────────────────────────────────────── */
.over-hero {
  background-color: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px 60px;
}

.over-hero::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 130, 3, 0.15), transparent 70%);
  pointer-events: none;
}


.over-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.over-hero h1,
.over-hero p { color: #fff; }

.over-hero em { font-style: normal; color: var(--accent); }

.over-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.over-tekst {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 32px;
}

.over-tekst p { color: var(--muted); font-size: 15px; line-height: 1.8; }

.over-quote {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.quote-mark {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 900;
}

.quote-text {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  padding-top: 8px;
}

.over-right {
max-width: 530px;
}

.over-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.over-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  align-content: center;
  transition: all 0.2s;
}

.over-stat:hover { border-color: var(--accent); }

.over-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 4px;
}

.over-stat-label { color: var(--muted); font-size: 12px; }

.over-certified {
  background: #fff3e6;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.certified-icon  { font-size: 32px; }
.certified-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.certified-sub   { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ─────────────────────────────────────────
   19. B2B
───────────────────────────────────────── */
.b2b-voordelen-lijst {
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b2b-voordelen-lijst li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}

.b2b-voordelen-lijst li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.b2b-cta-inline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.b2b-cta-inline .btn-primary { justify-content: center; }

.b2b-cards-section .section-title { color: var(--dark); }

.b2b-cards-intro {
  max-width: 560px;
  margin-bottom: 40px;
}

.b2b-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.b2b-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
}

.b2b-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(252, 130, 3, 0.12);
}

.b2b-card-icon  { font-size: 40px; line-height: 1; margin-bottom: 16px; display: block; }
.b2b-card-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.b2b-card-desc  { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* ─────────────────────────────────────────
   20. FAQ
───────────────────────────────────────── */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-categorie-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-categorie-icon { font-size: 24px; }

.faq-lijst {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--accent); }

.faq-vraag {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.faq-vraag:hover       { background: var(--surface); }
.faq-item.open .faq-vraag { background: var(--surface); }

.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-antwoord {
  display: none;
  padding: 0 20px 18px;
  background: var(--surface);
}

.faq-antwoord p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-antwoord { display: block; }



/* ─────────────────────────────────────────
   21. CONTACT
───────────────────────────────────────── */
.contact-hero {
  background-color: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 60px 40px 48px;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 130, 3, 0.15), transparent 70%);
  pointer-events: none;
}

.contact-hero h1,
.contact-hero p { color: #fff; }

.contact-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.2s;
  position: relative;
}

.contact-info-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(252, 130, 3, 0.1);
}

.contact-info-icon  { font-size: 22px; }
.contact-info-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-info-value { font-size: 14px; font-weight: 600; font-family: var(--font-display); }

.contact-whatsapp { border-color: #25d366; }

.contact-whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.15);
  background: #f0fff4;
}

.wa-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: #25d366;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.openingstijden {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.openingstijden-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 16px; }

.openingstijden-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.openingstijd-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.openingstijd-row:last-child { border-bottom: none; }
.openingstijd-muted { color: var(--muted); }

.contact-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-form-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 20px; }

.contact-right {
  position: sticky;
  top: 88px;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 450px;
  width: 100%;
}

.route-btn {
  display: block;
  text-align: center;
  margin-top: 12px;
  background: var(--accent);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 15px;
  transition: all 0.2s;
}

.route-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.kenmerken-section,
.waarom-section {
  padding: 100px 40px;
}

.kenmerken-inner,
.waarom-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.diensten-grid,
.kenmerken-grid,
.hero-cards-grid,
.reviews-grid, 
.onze-waarden-grid,
.waarden-grid,
.over-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dienst-merken {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ─────────────────────────────────────────
   26. RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar { padding: 0 20px; }

  .nav-links,
  .navbar .nav-cta,
  .usp-bar { display: none; }

  .hamburger { display: block; }

  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 0;
    min-height: auto;
    gap: 40px;
  }

  .hero-visual { display: none; }
  .hero-stats  { gap: 24px; margin-top: -30px; }
  .hero-stat-check { width: 18px; height: 18px; }
  .hero-stat { font-size: 12px; text-align: center; flex-direction: column; gap: 4px;}

  .diensten-grid { grid-template-columns: 1fr 1fr; }

  .waarom-grid,
  .waarden-grid,
  .b2b-cards { grid-template-columns: 1fr 1fr; }


  .reviews-section {
    margin: 20px 20px;

  }
  .reviews-inner {
    display: flex;
    flex-direction: column;
  }

  .reviews-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .reviews-score {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

.section-tag-mobile {
  margin-left: 80px;
}

  .section { padding: 60px 24px; }

  .reviews-section,
  .cta-section { padding: 60px 24px; }


  .reparatie-hero  { padding: 48px 24px 40px; }
  .reparatie-grid  { grid-template-columns: 1fr 1fr; }
  .reparatie-usps  { gap: 12px; }
  .modellen-section { padding: 48px 24px; }

  .over-hero    { padding: 48px 24px 40px; }
  .over-section { padding: 48px 24px; }
  .over-grid    { grid-template-columns: 1fr; gap: 40px; }

  .waarden-section { padding: 48px 24px; }
  .kenmerken-grid  { grid-template-columns: 1fr; }

  .contact-grid  { grid-template-columns: 1fr; }
  .contact-right { position: static; }
  .map-wrapper   { height: 300px; }
  .contact-section { padding: 40px 24px; }
  .contact-hero    { padding: 40px 24px 32px; }

  
  .verkoop-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-section {
    clip-path: ellipse(160% 75% at 50% 0%);
    height: 870px;
    background-size: cover;
    background-position: center;
  }

  .hero-section img {
    width: 100%;
    height: 100%;
  }

  .hero-btns {
    justify-content: start;
  }

  .hero-cards-grid  { display: none; }
  .diensten-section { margin-top: -200px !important; }

  .diensten-grid,
  .reparatie-grid,
  .waarden-grid,
  .b2b-cards { grid-template-columns: 1fr; }

  .waarom-section {
    padding: 100px 20px;
  }

  .waarom-grid  { grid-template-columns: 1fr;  }
  .waarom-card { min-width: 300px;}
  .over-stats   { grid-template-columns: 1fr 1fr; }

  .dienst-card-groot       { flex-wrap: wrap; }
  .dienst-card-groot-arrow { display: none; }
  .dienst-card {
   text-align: center;
  }
  .dienst-merken {
    justify-content: center;
  }
  .contact-info-cards { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }

  .footer-bottom {
    text-align: center;
}

}


/* ─────────────────────────────────────────
   25. KEYFRAMES
───────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes scrollBrands {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-30%); }
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}