/*
Theme Name: SHM Transmissie
Description: Zelfstandig maatwerkthema voor SHM Transmissie.
Version: 1.0.1
Text Domain: shm-transmissie
*/

:root {
  --shm-color-bg: #0b0f19;
  --shm-color-surface: #131a26;
  --shm-color-surface-dark: #0f1219;
  --shm-color-text: #ffffff;
  --shm-color-text-muted: rgba(255,255,255,0.72);
  --shm-color-blue: #38bdf8;
  --shm-color-blue-dark: #2568f0;
  --shm-color-green: #68c753;
  --shm-color-orange: #ec771a;
  --shm-color-lime: #a0c334;
  --shm-radius-card: 14px;
  --shm-radius-panel: 20px;
}

.shm-blog {
  padding: 78px 0 72px;
  background: var(--shm-color-bg, #0b0f19);
  color: var(--shm-color-text, #fff);
}

.shm-blog .container {
  max-width: 1200px;
}

.shm-blog-hero {
  max-width: 860px;
  margin: 0 auto 48px;
  padding: 0;
  text-align: center;
}

.shm-blog-hero-title {
  margin: 0 0 15px;
  color: var(--shm-color-text, #fff);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.shm-blog-hero-title .highlight-orange,
.shm-blog-hero-title span {
  color: var(--shm-color-orange, #ec771a) !important;
}

.shm-blog-hero-sub,
.shm-blog-hero-desc {
  max-width: 750px;
  margin: 0 auto;
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 17px;
  line-height: 1.65;
}

.shm-blog-hero-desc {
  margin-top: 12px;
}

.shm-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.shm-filter {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: var(--shm-color-surface, #131a26);
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.shm-filter:hover,
.shm-filter.is-active {
  background: var(--shm-color-blue, #38bdf8);
  border-color: var(--shm-color-blue, #38bdf8);
  color: #0b0f19 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(56,189,248,0.16);
}

.shm-featured-one {
  display: none;
}

.shm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 0;
}

.shm-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--shm-radius-card, 14px);
  background: var(--shm-color-surface, #131a26);
  box-shadow: 0 16px 34px rgba(0,0,0,0.24);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.shm-card:hover {
  border-color: rgba(236,119,26,0.45);
  transform: translateY(-5px);
  box-shadow: 0 24px 42px rgba(0,0,0,0.38);
}

.shm-thumb {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  background: #1e2633;
}

.shm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  transition: transform .5s ease;
}

.shm-card:hover .shm-thumb img {
  transform: scale(1.05);
}

.shm-thumb-ph {
  height: 100%;
  background: linear-gradient(135deg, rgba(56,189,248,0.18), rgba(236,119,26,0.18));
}

.shm-card-badge {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  max-width: calc(100% - 30px);
  padding: 5px 13px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  background: rgba(11,15,25,0.86);
  color: var(--shm-color-blue, #38bdf8);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.shm-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.shm-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.shm-meta i {
  color: var(--shm-color-orange, #ec771a);
}

.shm-dot {
  color: rgba(255,255,255,0.36);
}

.shm-cats a {
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  text-decoration: none !important;
}

.shm-title {
  margin: 0 0 12px;
  color: var(--shm-color-text, #fff);
  font-size: 21px;
  line-height: 1.34;
  font-weight: 850;
}

.shm-title a {
  color: inherit !important;
  text-decoration: none !important;
}

.shm-title a:hover {
  color: var(--shm-color-blue, #38bdf8) !important;
}

.shm-excerpt {
  flex: 1;
  margin: 0 0 24px;
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 14.5px;
  line-height: 1.62;
}

.shm-readmore {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--shm-color-orange, #ec771a) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 900;
}

.shm-arrow {
  display: inline-block;
  transition: transform 220ms ease;
}

.shm-card:hover .shm-arrow,
.shm-readmore:hover .shm-arrow {
  transform: translateX(6px);
}

.shm-loadmore-wrap {
  margin-top: 50px;
  text-align: center;
}

.shm-loadmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 38px;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: transparent;
  color: var(--shm-color-text, #fff);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  transition: border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.shm-loadmore:hover {
  border-color: var(--shm-color-orange, #ec771a);
  color: var(--shm-color-orange, #ec771a);
  box-shadow: 0 10px 24px rgba(236,119,26,0.16);
}

@media (max-width: 1024px) {
  .shm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .shm-blog {
    padding: 52px 0 56px;
  }

  .shm-blog-hero-title {
    font-size: 32px;
  }

  .shm-filters {
    justify-content: flex-start;
    margin-top: 30px;
  }

  .shm-filter {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 13px;
  }

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

  .shm-card-body {
    padding: 24px;
  }
}

/* Single Blog Article */
body.single-post,
.single-post #page,
.single-post #main,
.single-post #content.site-content,
.shm-single-post {
  background: var(--shm-color-bg, #0b0f19);
  overflow: visible;
}

.shm-single-post {
  padding: 30px 0 92px;
  color: var(--shm-color-text, #fff);
}

.shm-single-post .container {
  max-width: 1200px;
}

.shm-single-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.58);
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 700;
}

.shm-single-breadcrumbs a {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
}

.shm-single-breadcrumbs a:hover {
  color: var(--shm-color-blue, #38bdf8) !important;
}

.shm-single-breadcrumbs span:last-child {
  color: #fff;
}

.shm-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(300px, .9fr);
  gap: 50px;
  align-items: start;
  overflow: visible;
}

.shm-single-article {
  min-width: 0;
}

.shm-single-category {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgba(236,119,26,0.32);
  border-radius: 6px;
  background: rgba(236,119,26,0.12);
  color: var(--shm-color-orange, #ec771a) !important;
  text-decoration: none !important;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.shm-single-title {
  max-width: 860px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 44px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.shm-single-title .highlight-orange,
.shm-single-title span {
  color: var(--shm-color-orange, #ec771a) !important;
}

.shm-single-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 14px;
  line-height: 1.45;
}

.shm-single-author-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  background: #1e2633;
  color: var(--shm-color-blue, #38bdf8);
  font-size: 20px;
}

.shm-single-author-details strong,
.shm-single-author-details span {
  display: block;
}

.shm-single-author-details strong {
  color: #fff;
  font-size: 15px;
  font-weight: 850;
}

.shm-single-meta-dot {
  display: inline-block;
  margin: 0 6px;
  color: rgba(255,255,255,0.35);
}

.shm-single-featured {
  overflow: hidden;
  margin-bottom: 42px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  background: var(--shm-color-surface, #131a26);
}

.shm-single-featured img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 0 !important;
}

.shm-single-content {
  color: #cbd5e1;
  font-size: 16.5px;
  line-height: 1.75;
}

.shm-single-content p,
.shm-single-content ul,
.shm-single-content ol,
.shm-single-content blockquote,
.shm-single-content table,
.shm-single-content figure {
  margin-bottom: 24px;
}

.shm-single-content h2,
.shm-single-content h3,
.shm-single-content h4 {
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.005em;
}

.shm-single-content h2 {
  margin: 46px 0 20px;
  padding-left: 15px;
  border-left: 4px solid var(--shm-color-blue, #38bdf8);
  font-size: 28px;
  line-height: 1.24;
}

.shm-single-content h3 {
  margin: 32px 0 14px;
  color: var(--shm-color-blue, #38bdf8);
  font-size: 21px;
  line-height: 1.3;
}

.shm-single-content h4 {
  margin: 26px 0 12px;
  font-size: 18px;
  line-height: 1.35;
}

.shm-single-content strong,
.shm-single-content b {
  color: #fff;
}

.shm-single-content a {
  color: var(--shm-color-orange, #ec771a) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(236,119,26,0.45);
}

.shm-single-content a:hover {
  border-bottom-color: var(--shm-color-orange, #ec771a);
}

.shm-single-content ul,
.shm-single-content ol {
  padding-left: 24px;
}

.shm-single-content li {
  margin-bottom: 12px;
}

.shm-single-content ul li::marker {
  color: var(--shm-color-orange, #ec771a);
}

.shm-single-content blockquote,
.shm-single-content .article-pullquote {
  margin: 36px 0;
  padding: 28px 30px;
  border-left: 4px solid var(--shm-color-orange, #ec771a);
  border-radius: 0 12px 12px 0;
  background: var(--shm-color-surface, #131a26);
  color: #e2e8f0;
  font-size: 17px;
  line-height: 1.65;
  font-style: italic;
}

.shm-single-content blockquote p:last-child {
  margin-bottom: 0;
}

.shm-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.shm-single-content table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: var(--shm-color-surface, #131a26);
}

.shm-single-content th,
.shm-single-content td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  text-align: left;
}

.shm-single-content th {
  color: #fff;
  font-weight: 900;
}

.shm-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.shm-single-tags a {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: var(--shm-color-surface, #131a26);
  color: rgba(255,255,255,0.74) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 800;
}

.shm-single-tags a:hover {
  border-color: rgba(236,119,26,0.45);
  color: var(--shm-color-orange, #ec771a) !important;
}

.shm-single-sidebar {
  min-width: 0;
  align-self: start;
  height: 100%;
}

.shm-single-sidebar-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
  max-height: calc(100vh - 140px);
  overflow: visible;
}

.admin-bar .shm-single-sidebar-sticky {
  top: 152px;
  max-height: calc(100vh - 172px);
}

.shm-single-sidebar .shm-single-form-wrap {
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  background: rgba(13,17,27,0.9);
  box-shadow: 0 25px 50px rgba(0,0,0,0.38);
}

.shm-single-sidebar .route_widget,
.shm-single-widget {
  margin: 0 0 18px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--shm-radius-card, 14px);
  background: var(--shm-color-surface, #131a26);
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  box-shadow: 0 20px 40px rgba(0,0,0,0.34);
}

.shm-single-sidebar .route_widget {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.shm-single-sidebar .route_widget:last-child {
  margin-bottom: 0;
}

.shm-single-sidebar .route_widget .clear {
  display: none;
}

.shm-single-sidebar .widget-title {
  margin: 0 0 8px;
}

.shm-single-sidebar .widget-title h4,
.shm-single-sidebar .route_widget h2,
.shm-single-sidebar .route_widget h3,
.shm-single-widget h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.shm-single-sidebar .route_widget p,
.shm-single-sidebar .textwidget p,
.shm-single-widget p {
  margin: 0 0 18px;
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 14px;
  line-height: 1.6;
}

.shm-single-sidebar .route_widget p:last-child,
.shm-single-sidebar .textwidget p:last-child,
.shm-single-widget p:last-child {
  margin-bottom: 0;
}

.shm-single-sidebar .textwidget > span,
.shm-single-sidebar .textwidget .microcopy,
.shm-single-sidebar .shm-single-cta-microcopy {
  display: none;
  margin: 0 0 25px;
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
}

.shm-single-sidebar .textwidget > span span,
.shm-single-sidebar .textwidget .microcopy span,
.shm-single-sidebar .shm-single-cta-microcopy span {
  color: var(--shm-color-orange, #ec771a);
  font-style: normal;
  font-weight: 900;
}

.shm-single-sidebar .wpcf7 form,
.shm-single-sidebar .wpcf7 .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  margin: 0;
}

.shm-single-sidebar .contactform,
.shm-single-sidebar .buttoncontact,
.shm-single-sidebar .verplicht {
  margin: 0;
  padding: 0;
}

.shm-single-sidebar .contactform label,
.shm-single-sidebar .contactform > label,
.shm-single-sidebar .wpcf7 label {
  display: block;
  margin: 0 0 7px;
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.shm-single-sidebar .shm-field-kenteken::before {
  content: "1. VOER UW KENTEKEN IN";
  display: block;
  margin: 0 0 9px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.shm-single-sidebar .shm-field-kenteken > label {
  display: none;
}

.shm-single-sidebar .shm-field-kenteken .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 64px;
  overflow: hidden;
  border: 3px solid #d8a600;
  border-radius: 10px;
  background: #f5bd05;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.08);
}

.shm-single-sidebar .shm-field-kenteken .wpcf7-form-control-wrap::before {
  content: "NL";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  background: #0639b7;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.shm-single-sidebar .shm-field-kenteken input[type="text"],
.shm-single-sidebar .shm-field-kenteken input[type="text"]#formulier-offerte {
  position: absolute;
  inset: 0 0 0 56px;
  width: calc(100% - 56px);
  height: 100%;
  margin: 0 !important;
  padding: 0 12px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #6a6f7d;
  font-family: Kenteken, Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  outline: none;
}

.shm-single-sidebar .shm-field-kenteken input[type="text"]::placeholder {
  color: rgba(79,84,98,0.78);
  opacity: 1;
}

.shm-single-sidebar input[type="text"],
.shm-single-sidebar input[type="email"],
.shm-single-sidebar input[type="tel"],
.shm-single-sidebar textarea,
.shm-single-sidebar select {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 9px;
  background: var(--shm-color-bg, #0b0f19);
  color: #fff;
  outline: none;
  font-size: 14px;
  line-height: 1.35;
}

.shm-single-sidebar textarea {
  min-height: 70px !important;
  max-height: 92px;
  resize: vertical;
}

.shm-single-sidebar input:focus,
.shm-single-sidebar textarea:focus,
.shm-single-sidebar select:focus {
  border-color: rgba(56,189,248,0.58);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.12);
}

.shm-single-sidebar input::placeholder,
.shm-single-sidebar textarea::placeholder {
  color: rgba(255,255,255,0.46);
}

.shm-single-sidebar .buttoncontact,
.shm-single-sidebar .wpcf7-submit {
  width: 100%;
}

.shm-single-sidebar .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 0;
  border-radius: 7px;
  background: var(--shm-color-green, #68c753);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(104,199,83,0.22);
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.shm-single-sidebar .wpcf7-submit:hover {
  background: #58b744;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(104,199,83,0.3);
}

.shm-single-sidebar .verplicht {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  line-height: 1.4;
}

.shm-single-sidebar .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #ffb3b3;
  font-size: 12px;
  line-height: 1.35;
}

.shm-single-sidebar .wpcf7-response-output {
  margin: 0 !important;
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
}

.shm-single-sidebar .wpcf7-spinner {
  filter: invert(1);
}

.shm-single-sidebar .shm-transmission-chips {
  display: none !important;
}

.shm-single-sidebar .shm-transmissie-select-hidden {
  position: static !important;
  left: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 44px !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.shm-single-sidebar .shm-field-email,
.shm-single-sidebar .shm-field-phone {
  grid-column: 1 / -1 !important;
}

.shm-single-sidebar .shm-single-phone-box {
  margin-top: 12px;
  padding-top: 18px;
}

.shm-single-cta-card,
.shm-single-trust-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--shm-radius-card, 14px);
  background: var(--shm-color-surface, #131a26);
  box-shadow: 0 20px 40px rgba(0,0,0,0.34);
}

.shm-single-cta-card {
  padding: 34px;
}

.shm-single-cta-card h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900;
}

.shm-single-cta-microcopy {
  display: block;
  margin: 0 0 25px;
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
}

.shm-single-cta-microcopy span {
  color: var(--shm-color-orange, #ec771a);
  font-style: normal;
  font-weight: 900;
}

.shm-single-field-group {
  margin-bottom: 19px;
}

.shm-single-field-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 11px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.shm-single-kenteken {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 2px solid #d9a004;
  border-radius: 7px;
  background: #f2b705;
}

.shm-single-kenteken-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-height: 56px;
  background: #003399;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.shm-single-kenteken input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #000;
  outline: none;
  text-align: center;
  text-transform: uppercase;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1px;
}

.shm-single-field-group > input {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 7px;
  background: var(--shm-color-bg, #0b0f19);
  color: #fff;
  outline: none;
  font-size: 14px;
}

.shm-single-field-group > input:focus {
  border-color: rgba(56,189,248,0.58);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.12);
}

.shm-single-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 0;
  border-radius: 7px;
  background: var(--shm-color-green, #68c753);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(104,199,83,0.22);
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.shm-single-submit:hover {
  background: #58b744;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(104,199,83,0.3);
}

.shm-single-phone-box {
  margin-top: 25px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.shm-single-phone-box span {
  display: block;
  margin-bottom: 5px;
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

.shm-single-phone-box a {
  color: var(--shm-color-blue, #38bdf8) !important;
  text-decoration: none !important;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.shm-single-trust-card {
  margin-top: 18px;
  padding: 24px;
}

.shm-single-trust-card h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.shm-single-trust-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shm-single-trust-card li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 23px;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.45;
}

.shm-single-trust-card li:last-child {
  margin-bottom: 0;
}

.shm-single-trust-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--shm-color-orange, #ec771a);
  font-weight: 900;
}

@media (max-width: 1024px) {
  .shm-single-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .shm-single-sidebar-sticky {
    position: static;
  }
}

@media (max-width: 640px) {
  .shm-single-post {
    padding: 22px 0 60px;
  }

  .shm-single-breadcrumbs {
    margin-bottom: 22px;
    font-size: 12.5px;
  }

  .shm-single-title {
    font-size: 32px;
  }

  .shm-single-meta {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 22px;
  }

  .shm-single-content {
    font-size: 15.5px;
  }

  .shm-single-content h2 {
    font-size: 24px;
  }

  .shm-single-content h3 {
    font-size: 19px;
  }

  .shm-single-content blockquote,
  .shm-single-content .article-pullquote {
    padding: 24px;
  }

  .shm-single-sidebar .route_widget,
  .shm-single-widget,
  .shm-single-cta-card {
    padding: 26px;
  }

  .shm-single-sidebar .shm-field-kenteken::before {
    font-size: 16px;
  }

  .shm-single-sidebar .shm-field-kenteken .wpcf7-form-control-wrap {
    height: 86px;
  }

  .shm-single-sidebar .shm-field-kenteken .wpcf7-form-control-wrap::before {
    width: 56px;
    font-size: 17px;
  }

  .shm-single-sidebar .shm-field-kenteken input[type="text"],
  .shm-single-sidebar .shm-field-kenteken input[type="text"]#formulier-offerte {
    inset: 0 0 0 56px;
    width: calc(100% - 56px);
    font-size: 38px;
  }
}

/* verberg de standaard Route page title als die in de weg zit */
.page-title,
.page-title-wrap,
.page-title-container {
  display: none;
}

/* Global Geo Maps Wrapper (site-wide above footer) */
.geo-maps-wrapper {
  position: relative;
  width: 100%;
  background-color: var(--shm-color-bg, #0b0f19);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.geo-tags-container {
  padding: 60px 20px 40px;
}

.shm-geo-header {
  margin-bottom: 40px !important;
}

.shm-geo-header h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
}

.shm-geo-header h2 span {
  color: var(--shm-color-blue, #38bdf8);
}

.shm-geo-header p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.86);
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
}

.shm-geo-header p:last-child {
  margin-bottom: 0;
}

.geo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.geo-tag {
  background: var(--shm-color-surface, #131a26);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--shm-color-blue, #38bdf8);
  text-align: center;
  border-radius: 8px;
  padding: 15px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
}

.maps-backdrop-section {
  position: relative;
  height: 500px;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.iframe-container {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.65;
  filter: grayscale(0.6) invert(0.9) contrast(1.2);
}

.maps-info-card {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  background-color: rgba(19,26,38,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  z-index: 2;
  backdrop-filter: blur(8px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.7);
}

.maps-info-card h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.maps-info-card p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 12px;
}

.maps-info-card p i {
  color: var(--shm-color-blue, #38bdf8);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.maps-info-card h4 {
  margin: 24px 0 12px;
  color: var(--shm-color-blue, #38bdf8);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.84);
  margin-bottom: 8px;
}

.hours-row .open {
  color: var(--shm-color-blue, #38bdf8);
  font-weight: 700;
}

/* Footer V2 (clean) */
#colophon.main-footer {
  padding: 32px 0 64px;
  background: #060911;
  color: #fff;
  font-family: Ubuntu, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

#colophon.main-footer .container,
#copyright .container {
  max-width: 1450px;
}

.shm-footer-grid {
  display: grid;
  grid-template-columns: repeat(var(--shm-footer-columns, 1), minmax(0, 1fr));
  gap: 48px;
  margin-left: 0;
  margin-right: 0;
}

.shm-footer-grid:before,
.shm-footer-grid:after {
  content: none;
}

.shm-footer-grid-count-1 { --shm-footer-columns: 1; }
.shm-footer-grid-count-2 { --shm-footer-columns: 2; }
.shm-footer-grid-count-3 { --shm-footer-columns: 3; }
.shm-footer-grid-count-4 { --shm-footer-columns: 4; }
.shm-footer-grid-count-5 { --shm-footer-columns: 5; }
.shm-footer-grid-count-6 { --shm-footer-columns: 6; }

#colophon.main-footer .shm-footer-grid-main.shm-footer-grid-count-2 {
  grid-template-columns: minmax(260px, 1.2fr) minmax(0, 1fr);
}

#colophon.main-footer .shm-footer-grid-main.shm-footer-grid-count-3 {
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(0, 1fr));
}

#colophon.main-footer .shm-footer-grid-main.shm-footer-grid-count-4 {
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(0, 1fr));
}

#colophon.main-footer .shm-footer-grid-main.shm-footer-grid-count-5 {
  grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(0, 1fr));
}

#colophon.main-footer .shm-footer-grid-main.shm-footer-grid-count-6 {
  grid-template-columns: minmax(260px, 1.2fr) repeat(5, minmax(0, 1fr));
}

.shm-footer-widget {
  min-width: 0;
  width: 100%;
}

#colophon.main-footer .route_widget {
  margin: 0;
  color: rgba(255,255,255,0.72);
}

#colophon.main-footer ul,
#colophon.main-footer ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

#colophon.main-footer .route_widget .widget-title {
  margin: 0 0 12px;
}

#colophon.main-footer .shm-footer-grid-main .widget-title h4 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

#colophon.main-footer .shm-footer-grid-main .route_widget ul li a,
#colophon.main-footer .shm-subfooter-text-link,
#colophon.main-footer .shm-subfooter-html {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.65;
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

#colophon.main-footer .shm-footer-grid-main .route_widget ul li a:hover,
#colophon.main-footer .shm-subfooter-text-link:hover {
  color: #fff;
  text-decoration: none !important;
  border-bottom: 0 !important;
}

#colophon.main-footer .route_widget ul li,
#colophon.main-footer .route_widget ul li a {
  border: 0 !important;
}

#colophon.main-footer .route_widget ul li {
  margin: 0 0 10px !important;
  padding: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

#colophon.main-footer .route_widget ul li:last-child {
  margin-bottom: 0 !important;
}

#colophon.main-footer .shm-footer-main-logo-wrap {
  margin-bottom: 14px;
}

#colophon.main-footer .shm-footer-main-logo {
  height: 100px;
  max-height: 100px;
  width: auto;
}

#colophon.main-footer .shm-footer-logo-subtext {
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.6;
}

#colophon.main-footer .shm-footer-widget-col1 .cs-module-social {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

#colophon.main-footer .shm-footer-widget-col1 .cs-module-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font-size: 18px;
  line-height: 1;
}

#colophon.main-footer .shm-footer-widget-col1 .cs-module-social a i {
  color: #ffffff !important;
}

#colophon.main-footer .shm-footer-widget-col1 .cs-module-social a:hover {
  background: none !important;
  color: #38bdf8 !important;
}

#colophon.main-footer .shm-footer-widget-col1 .cs-module-social a:hover i {
  color: #38bdf8 !important;
}

#colophon.main-footer .shm-footer-grid-sub {
  clear: both;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: 22px 34px;
  margin-top: 140px;
  padding-top: 10px;
  border-top: 1px solid rgba(250,248,248,0.1);
}

#colophon.main-footer .shm-footer-grid-main {
  margin-bottom: 12px;
}

#colophon.main-footer .shm-subfooter-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}

#colophon.main-footer .shm-footer-widget-sub-2 .shm-subfooter-items {
  justify-content: flex-end;
  gap: 8px 34px;
}

#colophon.main-footer .shm-subfooter-image {
  height: 24px;
  width: auto;
  max-width: none;
}

#copyright {
  padding: 0 0 28px;
  background: #1a171b;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

#copyright .container {
  padding-top: 24px;
  border-top: 1px solid rgba(250,248,248,0.1);
}

#copyright a {
  color: rgba(255,255,255,0.72);
}

#copyright a:hover {
  color: #fff;
}

/* Header + Mega Menu V4 */
.shm-header-v3 .container {
  max-width: 1450px;
}

.shm-header-v3 .shm-top-usp {
  background: #0c0f16;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  max-height: 56px;
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.28s ease, opacity 0.28s ease, border-color 0.28s ease;
}

html.shm-top-usp-hidden .shm-header-v3 .shm-top-usp {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.shm-header-v3 .shm-top-usp-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  align-items: center;
  min-height: 56px;
}

.shm-header-v3 .shm-top-usp-item {
  margin: 0;
  color: #f4f7fb;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.shm-header-v3 .shm-top-usp-icon {
  color: #45d83d;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shm-header-v3 .shm-top-usp-icon i {
  font-size: 13px;
  line-height: 1;
}

.shm-header-v3 .shm-top-usp-text {
  display: inline-block;
}

.shm-header-v3 #masthead.shm-masthead {
  position: sticky;
  top: 0;
  z-index: 1005;
  background: #0f1219;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.shm-header-v3 .shm-main-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.shm-header-v3 .shm-main-header-logo #site-logo a {
  display: inline-flex;
  align-items: center;
}

.shm-header-v3 .shm-main-header-logo #site-logo img {
  max-height: 56px;
  width: auto;
}

.shm-header-v3 .shm-main-header-right {
  display: flex;
  align-items: center;
}

.shm-header-v3 .shm-main-header-right-desktop {
  gap: 12px;
}

.shm-header-v3 .shm-main-header-mobile-toggle {
  display: none;
}

.shm-header-v3 .shm-header-right-html {
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  line-height: 1.4;
}

.shm-header-v3 .shm-header-review-block {
  color: rgba(255,255,255,0.92);
}

.shm-header-v3 .shm-header-right-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shm-header-v3 .shm-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none !important;
}

.shm-header-v3 .shm-header-btn-primary {
  background: #68c753;
  color: #fff !important;
}

.shm-header-v3 .shm-header-btn-secondary {
  background: #e7e8ed;
  color: #1d2230 !important;
}

.shm-header-v3 .shm-submenu-row {
  border-top: 1px solid #ffffff80;
}

.shm-header-v3 .shm-main-nav {
  width: 100%;
}

.shm-header-v3 .shm-main-nav-list {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shm-header-v3 .shm-main-nav-item {
  position: relative;
}

.shm-header-v3 .shm-main-nav-link-wrap {
  display: inline-flex;
  align-items: center;
}

.shm-header-v3 .shm-main-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 16px;
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none !important;
}

.shm-header-v3 .shm-main-nav-link:hover {
  color: #fff;
}

.shm-header-v3 .shm-main-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-height: 56px;
  margin-left: -8px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.92);
  padding: 0;
  cursor: pointer;
}

.shm-header-v3 .shm-main-nav-toggle-icon {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.shm-header-v3 .shm-main-nav-item.is-mega-open .shm-main-nav-toggle-icon {
  transform: rotate(225deg);
}

.shm-header-v3 .shm-main-nav-item.has-mega:hover .shm-main-nav-toggle-icon,
.shm-header-v3 .shm-main-nav-item.has-mega:focus-within .shm-main-nav-toggle-icon {
  transform: rotate(225deg);
}

.shm-header-v3 .shm-main-nav-item.has-mega {
  position: static;
}

.shm-header-v3 .shm-mega-panel {
  display: none;
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  transform: translateX(-50%);
  width: min(1450px, calc(100vw - 30px));
  padding: 22px 22px;
  background: #f2f2f2;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.16);
  z-index: 100;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 700px);
  gap: 22px;
}

.shm-header-v3 .shm-main-nav-item.has-mega:hover .shm-mega-panel,
.shm-header-v3 .shm-main-nav-item.has-mega:focus-within .shm-mega-panel,
.shm-header-v3 .shm-main-nav-item.is-mega-open .shm-mega-panel {
  display: grid;
}

.shm-header-v3 .shm-mega-links {
  margin: 0;
  padding: 8px 10px;
  list-style: none;
}

.shm-header-v3 .shm-mega-links li {
  margin: 0 0 4px;
}

.shm-header-v3 .shm-mega-links a {
  display: inline-block;
  color: #222734;
  text-decoration: none !important;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0;
  padding: 4px 2px;
}

.shm-header-v3 .shm-mega-links a:hover {
  color: #0f61db;
}

.shm-header-v3 .shm-mega-right {
  display: grid;
  grid-template-columns: 92px 180px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.shm-header-v3 .shm-mega-image {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  min-height: 360px;
  background: #d4d8de;
}

.shm-header-v3 .shm-mega-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shm-header-v3 #navigation-mobile {
  background: #f2f2f5;
}

.shm-header-v3 #navigation-mobile .container {
  padding-top: 14px;
  padding-bottom: 18px;
}

.shm-header-v3 .shm-mobile-menu-actions,
.shm-header-v3 .shm-mobile-menu-info {
  display: none;
}

/* Home Hero ACF Block */
.shm-home-hero {
  position: relative;
  padding: 72px 0;
  color: #fff;
  overflow: hidden;
}

.shm-home-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, 0.35);
  pointer-events: none;
}

.shm-home-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1450px;
  width: 100%;
}

.shm-home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.shm-home-hero-copy {
  min-width: 0;
}

.shm-home-hero-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
}

.shm-home-hero-title .shm-home-hero-gradient-word {
  background: linear-gradient(90deg, #62a0ff 0%, #9b7bff 55%, #57d2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shm-home-hero-description {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.7;
}

.shm-home-hero-description p {
  margin: 0 0 14px;
}

.shm-home-hero-description p:last-child {
  margin-bottom: 0;
}

.shm-home-hero-form-wrap {
  background: rgba(13, 17, 27, 0.88);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px;
}

.shm-home-hero-form-wrap .wpcf7 form,
.shm-home-hero-form-wrap .wpcf7 .wpcf7-form {
  margin: 0;
}

.shm-home-hero-form-wrap .wpcf7 .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 12px;
}

.shm-home-hero-form-wrap .contactform,
.shm-home-hero-form-wrap .buttoncontact,
.shm-home-hero-form-wrap .verplicht {
  margin: 0;
  padding: 0;
}

.shm-home-hero-form-wrap .contactform.col-sm-6 {
  grid-column: span 1;
}

.shm-home-hero-form-wrap .contactform.col-sm-12,
.shm-home-hero-form-wrap .buttoncontact,
.shm-home-hero-form-wrap .verplicht {
  grid-column: 1 / -1;
}

.shm-home-hero-form-wrap .contactform .wpcf7-form-control-wrap {
  display: block;
}

.shm-home-hero-form-wrap input[type="text"],
.shm-home-hero-form-wrap input[type="email"],
.shm-home-hero-form-wrap input[type="tel"],
.shm-home-hero-form-wrap textarea,
.shm-home-hero-form-wrap select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.35;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.shm-home-hero-form-wrap input[type="text"]#formulier-offerte {
  background: #ffcc00;
  color: #111;
  border: 2px solid #10141e;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shm-home-hero-form-wrap select#transmissie {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.85) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.85) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.shm-home-hero-form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.shm-home-hero-form-wrap input:focus,
.shm-home-hero-form-wrap textarea:focus,
.shm-home-hero-form-wrap select:focus {
  outline: none;
  border-color: rgba(37,104,240,0.9);
  background-color: rgba(255,255,255,0.09);
}

.shm-home-hero-form-wrap input::placeholder,
.shm-home-hero-form-wrap textarea::placeholder {
  color: rgba(255,255,255,0.62);
}

.shm-home-hero-form-wrap .wpcf7-submit {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #2568f0;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 15px 22px;
  cursor: pointer;
}

.shm-home-hero-form-wrap .verplicht {
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  line-height: 1.4;
}

.shm-home-hero-form-wrap .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #ffb3b3;
  font-size: 12px;
  line-height: 1.35;
}

.shm-home-hero-form-wrap .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 6px 0 0 !important;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
}

.shm-home-hero-form-wrap .wpcf7-spinner {
  filter: invert(1);
}

.shm-home-hero-form-empty {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.6;
}

/* Hero v2 (left label + USP, right stepped form) */
.shm-home-hero-block .shm-home-hero-label {
  margin: 0 0 12px;
  color: #5ebaee;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shm-home-hero-block .shm-home-hero-usp-grid {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px 14px;
}

.shm-home-hero-block .shm-home-hero-usp-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shm-home-hero-block .shm-home-hero-usp-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shm-home-hero-block .shm-home-hero-usp-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.shm-home-hero-block .shm-home-hero-usp-icon {
  color: #5ebaee;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shm-home-hero-block .shm-home-hero-form-wrap {
  background: #111;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 0 44px -14px rgba(59, 130, 246, 0.45);
}

.shm-home-hero-block .shm-home-hero-form-head {
  margin: 0 0 20px;
}

.shm-home-hero-block .shm-home-hero-form-title {
  margin: 0 0 4px;
  font-size: 30px;
  line-height: 1.16;
  font-weight: 800;
  color: #fff;
}

.shm-home-hero-block .shm-home-hero-form-subtext {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.45;
  font-style: italic;
}

.shm-home-hero--offerte {
  background-color: var(--shm-color-bg, #0b0f19);
}

.shm-home-hero--offerte .shm-home-hero-grid {
  align-items: start;
}

.shm-home-hero--offerte .shm-home-hero-title {
  max-width: 720px;
  font-size: 46px;
  line-height: 1.14;
}

.shm-home-hero--offerte .shm-home-hero-description {
  max-width: 760px;
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 16.5px;
}

.shm-offerte-hero-timeline {
  display: grid;
  gap: 24px;
  margin: 36px 0 34px;
}

.shm-offerte-hero-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.shm-offerte-hero-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--shm-color-blue, #38bdf8);
  border-radius: 999px;
  background: rgba(56,189,248,0.1);
  color: var(--shm-color-blue, #38bdf8);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.shm-offerte-hero-step-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.shm-offerte-hero-step-title {
  margin: 0;
  color: var(--shm-color-text, #fff);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.shm-offerte-hero-step-text {
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 14.5px;
  line-height: 1.55;
}

.shm-home-hero--offerte .highlight-orange,
.shm-home-hero--offerte .shm-offerte-hero-step-title .highlight-orange,
.shm-home-hero--offerte .shm-offerte-hero-step-text .highlight-orange {
  color: var(--shm-color-orange, #ec771a) !important;
}

.shm-home-hero--offerte .highlight-lime,
.shm-home-hero--offerte .shm-offerte-hero-step-title .highlight-lime,
.shm-home-hero--offerte .shm-offerte-hero-step-text .highlight-lime {
  color: var(--shm-color-lime, #a0c334) !important;
}

.shm-home-hero--offerte .highlight-blue,
.shm-home-hero--offerte .shm-offerte-hero-step-title .highlight-blue,
.shm-home-hero--offerte .shm-offerte-hero-step-text .highlight-blue {
  color: var(--shm-color-blue, #38bdf8) !important;
}

.shm-offerte-hero-trustbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: var(--shm-color-surface, #131a26);
}

.shm-offerte-hero-trust-item {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 108px;
  padding: 22px 18px;
  text-align: center;
}

.shm-offerte-hero-trust-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.shm-offerte-hero-trust-item strong {
  color: var(--shm-color-lime, #a0c334);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.15;
}

.shm-offerte-hero-trust-item span {
  color: var(--shm-color-text-muted, rgba(255,255,255,0.72));
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shm-home-hero--offerte .shm-home-hero-form-wrap {
  background: var(--shm-color-surface-dark, #0f1219);
}

.shm-home-hero--offerte .shm-home-hero-form-subtext span {
  color: var(--shm-color-lime, #a0c334);
  font-weight: 800;
  font-style: normal;
}

.shm-home-hero-block .shm-home-hero-form-wrap .wpcf7 .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.shm-home-hero-block .shm-home-hero-form-wrap .contactform {
  margin: 0;
  padding: 0;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-kenteken,
.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-transmissie,
.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-message,
.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-name,
.shm-home-hero-block .shm-home-hero-form-wrap .buttoncontact,
.shm-home-hero-block .shm-home-hero-form-wrap .verplicht {
  grid-column: 1 / -1;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-email,
.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-phone {
  grid-column: span 1;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-kenteken::before,
.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-transmissie::before {
  display: block;
  margin: 0 0 8px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-kenteken::before {
  content: "Stap 1: Voer uw kenteken in";
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-transmissie::before {
  content: "Stap 2: Type transmissie";
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-kenteken .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 62px;
  background: #f4be04;
  border: 2px solid #111;
  border-radius: 6px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  overflow: hidden;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-kenteken .wpcf7-form-control-wrap::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 38px;
  background: #2662a2 url('assets/images/kentekenplaat-nl-blauw.svg') no-repeat center center;
  background-size: 32px 52px;
  border-right: 1px solid rgba(0,0,0,0.18);
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-kenteken input[type="text"]#formulier-offerte {
  position: absolute;
  inset: 0 0 0 38px;
  width: calc(100% - 38px);
  height: 100%;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #111;
  font-family: Kenteken, Arial, sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 12px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-kenteken input[type="text"]#formulier-offerte::placeholder {
  color: rgba(41,53,83,0.58);
  text-align: center;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-transmissie-select-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-transmission-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-transmission-chip {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 12px;
  min-height: 52px;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-transmission-chip-icon i {
  font-size: 13px;
  line-height: 1;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-transmission-chip-icon {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  min-height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-transmission-chip-label {
  display: block;
  white-space: nowrap;
  line-height: 1.1;
  font-size: 12px;
  letter-spacing: 0;
}

.shm-home-hero-block .shm-home-hero-form-wrap .contactform,
.shm-home-hero-block .shm-home-hero-form-wrap [class*="col-sm-"] {
  float: none !important;
  width: auto !important;
  max-width: none !important;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-transmission-chip:hover,
.shm-home-hero-block .shm-home-hero-form-wrap .shm-transmission-chip.is-active {
  background: #3c91c1;
  border-color: #387ca3;
}

.shm-home-hero-block .shm-home-hero-form-wrap textarea {
  min-height: 66px !important;
  max-height: 120px;
  height: auto !important;
  line-height: 1.35;
}

.shm-home-hero-block .shm-home-hero-form-wrap .wpcf7-submit {
  min-height: 58px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-turnstile,
.shm-home-hero-block .shm-home-hero-form-wrap .shm-turnstile-inline,
.shm-home-hero-block .shm-home-hero-form-wrap .cf-turnstile {
  grid-column: 1 / -1;
}

.shm-home-hero-block .shm-home-hero-form-wrap .cf-turnstile {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-turnstile {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.shm-home-hero-block .shm-home-hero-form-wrap .buttoncontact {
  order: 90;
}

.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-acceptance,
.shm-home-hero-block .shm-home-hero-form-wrap .wpcf7-acceptance,
.shm-home-hero-block .shm-home-hero-form-wrap .wpcf7-form-control-wrap[data-name*="acceptance"] {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Compact single article sidebar form */
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap {
  padding: 18px !important;
  border-radius: 16px;
  background: rgba(13,17,27,0.92);
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .wpcf7 .wpcf7-form {
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .widget-title h4,
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap h2,
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap h3 {
  margin: 0 0 12px !important;
  color: #fff;
  font-size: 24px !important;
  line-height: 1.16;
  font-weight: 900;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .microcopy,
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .shm-single-cta-microcopy {
  display: none !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .contactform,
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .buttoncontact,
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .verplicht,
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-email,
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-phone {
  grid-column: 1 / -1 !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-kenteken::before {
  content: "1. VOER UW KENTEKEN IN";
  margin: 0 0 7px !important;
  font-size: 12px !important;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: .04em;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-transmissie::before {
  content: "SOORT TRANSMISSIE";
  margin: 0 0 5px !important;
  font-size: 10px !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-kenteken .wpcf7-form-control-wrap {
  height: 38px !important;
  border: 2px solid #d8a600 !important;
  border-radius: 8px !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-kenteken .wpcf7-form-control-wrap::before {
  width: 34px !important;
  background: #0639b7 !important;
  background-image: none !important;
  color: #fff;
  content: "NL" !important;
  font-size: 12px !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .shm-field-kenteken input[type="text"]#formulier-offerte {
  inset: 0 0 0 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: calc(100% - 34px) !important;
  height: 100% !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 38px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #111 !important;
  text-align: center !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .shm-transmission-chips {
  display: none !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap select.shm-transmissie-select-hidden,
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap select#transmissie {
  position: static !important;
  left: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 36px !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap input[type="text"],
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap input[type="email"],
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap input[type="tel"],
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap select,
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap textarea {
  min-height: 36px !important;
  border-radius: 8px !important;
  padding: 8px 11px !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap input::placeholder,
.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap textarea::placeholder {
  font-size: 12px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap textarea {
  min-height: 52px !important;
  max-height: 70px !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .wpcf7-submit {
  min-height: 42px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  letter-spacing: .04em !important;
}

.shm-single-sidebar.shm-home-hero-block .shm-home-hero-form-wrap .verplicht {
  display: none !important;
}

.shm-single-sidebar .shm-single-phone-box {
  margin-top: 9px !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.shm-single-sidebar .shm-single-phone-box span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.shm-single-sidebar .shm-single-phone-box a {
  color: var(--shm-color-blue, #38bdf8) !important;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 900;
  text-decoration: none !important;
}

/* Page block styles moved to assets/css/blocks.css */
