.main-nav {
	background-color: #000;
	border-bottom: 1px solid #19191a;
}

.work-item {
	border: 1px solid #333;
}

.address-item {
	z-index: 999;
}

.nav-link a {
	color: #fff;
}

.bx {
	color: #ccc;
}

.editor-controls {
	display: flex;
	gap: 12px;
	align-items: center;
}

.edit-toggle-form {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
}

.edit-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	color: #fff;
	font-size: 12px;
	margin: 0;
}

.edit-toggle input {
	display: none;
}

.edit-toggle-slider {
	width: 34px;
	height: 18px;
	background: #666;
	border-radius: 999px;
	position: relative;
	display: inline-block;
	transition: background 0.2s ease;
}

.edit-toggle-slider::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 14px;
	height: 14px;
	background: #fff;
	border-radius: 50%;
	transition: transform 0.2s ease;
}

.edit-toggle input:checked + .edit-toggle-slider {
	background: #26c281;
}

.edit-toggle input:checked + .edit-toggle-slider::after {
	transform: translateX(16px);
}

.edit-toggle-state {
	font-size: 12px;
	color: #ccc;
}

.edit-toggle-state.is-on {
	color: #26c281;
}

/* Force navbar black everywhere */
.navbar-area,
.navbar-area .main-nav,
.navbar-area .mobile-nav,
.navbar-area.navbar-black,
.main-nav.navbar-black,
.navbar-black {
	background: #000 !important;
}

.navbar-area .navbar,
.navbar-area .navbar * {
	color: #fff;
}

.navbar-area .navbar .nav-link,
.navbar-area .navbar a {
	color: #fff !important;
}

.navbar-area .dropdown-menu {
	background: #111 !important;
}

.navbar-area .dropdown-menu .dropdown-item {
	color: #fff !important;
}

.navbar-area .dropdown-menu .dropdown-item:hover {
	background: #222 !important;
}

.nav-controls {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: 16px;
}

.nav-controls .lang-links a {
	color: #fff !important;
	font-weight: 600;
	text-decoration: none;
	margin-right: 8px;
}

.nav-controls .lang-links a:hover {
	text-decoration: underline;
}

/* Editor badge - toggle button for edit mode */
.editor-badge {
    display: inline-block !important;
    position: fixed;
    top: 10px;
    right: 10px;
    background: #6b7280;
    color: #ffffff !important;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    z-index: 9999;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.editor-badge:hover {
    text-decoration: none !important;
    color: #ffffff !important;
    opacity: 0.9;
}

.editor-badge.on {
    background: #ff6b35 !important;
}

.editor-badge.off {
    background: #6b7280 !important;
}

/* Navbar logo: force single logo */
.navbar-area .navbar-brand img.logo-two {
	display: none !important;
}

.navbar-area .navbar-brand img.logo-one {
	display: inline-block !important;
}

.navbar-area .navbar-brand img.site-logo {
  max-height: 64px;
  width: auto;
}

.dashboard .form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dashboard .form-check-input {
  margin-top: 0;
}

.dashboard .form-check-label {
  margin: 0;
  line-height: 1.2;
}

.dashboard-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dashboard-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dashboard-row {
  flex: 1;
}

.dashboard-main {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dashboard-footer {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

.dashboard-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dashboard-footer-links a {
  color: inherit;
  text-decoration: none;
}

.dashboard-footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .dashboard-footer {
    height: auto;
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .dashboard-footer-links {
    justify-content: flex-start;
  }
}

.settings-container {
  max-width: 1200px;
  margin: 0 auto;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 768px) {
  .settings-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .settings-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.settings-card {
  display: block;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}

.settings-card-title {
  font-size: 16px;
  margin-bottom: 12px;
}

.settings-card-actions {
  margin-top: 12px;
  text-align: right;
}

.settings-actions {
  margin-top: 1rem;
}

.settings-actions-top {
  margin-bottom: 1rem;
}

.settings-card .mb-3 {
  margin-bottom: 10px;
}

.settings-advanced {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #e5e7eb;
}

.settings-advanced summary {
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 8px;
}

.map-preview-box {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f8fafc;
  height: 220px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-preview-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.map-preview-text {
  color: #6b7280;
  margin-bottom: 8px;
}

.map-preview-coords {
  font-size: 13px;
  color: #111827;
}

.seo-preview {
  background: #fff;
}

.seo-meter {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
}

.seo-meter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: #374151;
}

.seo-meter-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.seo-meter-fill {
  height: 100%;
  width: 0;
  background: #f59e0b;
  transition: width 0.2s ease;
}

.seo-meter-fill.is-good {
  background: #22c55e;
}

.seo-meter-fill.is-warn {
  background: #ef4444;
}

.seo-meter-status {
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
}

.seo-preview-note {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 12px;
}

.seo-serp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.seo-serp-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  min-height: 140px;
}

.seo-serp-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.seo-serp-title {
  color: #1a0dab;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.seo-serp-url {
  color: #006621;
  font-size: 12px;
  margin-bottom: 6px;
}

.seo-serp-snippet {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.4;
}

.assistant-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1050;
}

.assistant-launcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.assistant-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #22c55e;
  color: #0f172a;
  font-weight: 700;
  font-size: 12px;
}

.assistant-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: 320px;
  max-width: 90vw;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  border: 1px solid #e5e7eb;
  display: none;
  overflow: hidden;
}

.assistant-widget.is-open .assistant-panel {
  display: block;
}

.assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.assistant-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.assistant-close {
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  color: #6b7280;
}

.assistant-body {
  padding: 16px;
  max-height: 280px;
  overflow-y: auto;
  background: #fff;
}

.assistant-message {
  margin-bottom: 12px;
  display: flex;
}

.assistant-message--user {
  justify-content: flex-end;
}

.assistant-bubble {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f3f4f6;
  color: #111827;
  font-size: 13px;
  max-width: 220px;
}

.assistant-message--user .assistant-bubble {
  background: #111827;
  color: #fff;
}

.assistant-suggestions {
  margin-top: 8px;
  font-size: 12px;
  color: #6b7280;
}

.assistant-suggestions ul {
  margin: 6px 0 0;
  padding-left: 16px;
}

.assistant-footer {
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 8px;
}

.assistant-input {
  font-size: 13px;
}

.assistant-send {
  font-size: 13px;
  white-space: nowrap;
}

.editor-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.editor-lang-tabs .nav-link {
  padding: 6px 14px;
  font-weight: 600;
}

.editor-lang-actions .btn {
  font-size: 12px;
}

.editor-layout {
  align-items: flex-start;
}

.editor-form {
  position: relative;
  padding-bottom: 64px;
}

.editor-preview-card {
  position: sticky;
  top: 24px;
}

.editor-accordion {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  margin-bottom: 16px;
  overflow: hidden;
}

.editor-accordion-item + .editor-accordion-item {
  border-top: 1px solid #e5e7eb;
}

.editor-accordion-header {
  margin: 0;
}

.editor-accordion-button {
  width: 100%;
  text-align: left;
  background: #f9fafb;
  border: none;
  padding: 12px 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.editor-accordion-button::after {
  content: "+";
  font-weight: 700;
  color: #6b7280;
}

.editor-accordion-button[aria-expanded="true"]::after {
  content: "-";
}

.editor-accordion-panel {
  padding: 12px 16px 16px;
}

.editor-accordion-panel[hidden] {
  display: none;
}

.editor-accordion-body > .editor-seo-preview {
  margin-top: 12px;
}

.editor-accordion-fields label {
  margin-top: 6px;
}

.editor-seo-preview {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.editor-preview-frame {
  width: 100%;
  height: 680px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.editor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  align-items: start;
}

.editor-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
}

.preview-panel {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
}

.preview-panel-header {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-panel-body {
  position: relative;
}

.preview-iframe {
  width: 100%;
  height: 70vh;
  min-height: 520px;
  border: 0;
  display: block;
  background: #f3f4f6;
}

.preview-fallback {
  position: absolute;
  inset: 12px;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.95);
  color: #334155;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.sticky-save-bar {
  position: sticky;
  bottom: 0;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 14px;
  margin-top: 16px;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}

.sticky-save-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-toast-container {
  position: fixed;
  right: 24px;
  top: 90px;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-toast {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: #111827;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.dashboard-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .seo-serp-grid {
    grid-template-columns: 1fr;
  }

  .assistant-widget {
    right: 16px;
    bottom: 16px;
  }

  .assistant-panel {
    width: 280px;
  }

  .editor-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .editor-preview-card {
    position: static;
    margin-top: 16px;
  }

  .editor-preview-frame {
    height: 420px;
  }

  .preview-iframe {
    height: 60vh;
    min-height: 420px;
  }
}

.login-link {
  display: none;
}

/* Login placeholder button - Dutch-only launch teaser */
.btn-login-placeholder {
  display: inline-block;
  color: #fff !important;
  border: 1px solid #fff;
  background: transparent;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn-login-placeholder:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  text-decoration: none;
}

.navbar-nav .nav-link.active {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.mean-nav .nav-link.active,
.mobile-nav .nav-link.active {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.footer-cta {
  margin-top: 10px;
}

.footer-cta p {
  color: #fff;
}

#toTop {
  right: 80px;
}

.component-section .component-carousel .owl-stage-outer {
	overflow: hidden;
}

.component-section .blog-item {
	height: 100%;
}

.component-section .blog-top img {
	width: 100%;
	height: auto;
	display: block;
}

.rental-card-img {
	height: 190px;
	object-fit: cover;
}

.sticky-sidebar {
	position: sticky;
	top: 110px;
}

.service-details-area .jcw-service-sidebar {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.service-details-area .jcw-service-sidebar__card {
	padding: 30px 25px;
	background-color: #f6f4f4;
}

.service-details-area .jcw-service-sidebar__title {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 12px;
	font-size: 20px;
	font-weight: 600;
	color: #221668;
}

.service-details-area .jcw-service-sidebar__title:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background-color: #d72323;
}

.service-details-area .jcw-service-sidebar__text {
	margin-bottom: 16px;
	color: #565656;
	line-height: 1.7;
}

.service-details-area .jcw-service-sidebar__service-list,
.service-details-area .jcw-service-sidebar__details {
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-details-area .jcw-service-sidebar__service-list li,
.service-details-area .jcw-service-sidebar__details li {
	display: block;
	margin-bottom: 18px;
	color: #565656;
	line-height: 1.6;
}

.service-details-area .jcw-service-sidebar__service-list li:last-child,
.service-details-area .jcw-service-sidebar__details li:last-child {
	margin-bottom: 0;
}

.service-details-area .jcw-service-sidebar__service-list a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #565656;
	text-decoration: none;
	transition: color 0.2s ease;
}

.service-details-area .jcw-service-sidebar__service-list a:hover {
	color: #d72323;
}

.service-details-area .jcw-service-sidebar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	color: #221668;
}

.service-details-area .jcw-service-sidebar__icon .jcw-sidebar-service-icon {
	font-size: 0;
}

.service-details-area .jcw-service-sidebar__icon .jcw-sidebar-service-icon:before {
	content: ">";
	font-size: 18px;
	line-height: 1;
}

.service-details-area .jcw-service-sidebar__details strong {
	display: block;
	color: #221668;
	font-weight: 600;
}

.service-details-area .jcw-service-sidebar__details span {
	display: block;
}

.service-details-area .jcw-service-sidebar__actions {
	display: grid;
	gap: 10px;
	margin-bottom: 16px;
}

.service-details-area .jcw-service-sidebar__actions .btn {
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
}

.service-details-area .jcw-service-sidebar__actions .btn-wa {
	background-color: #25D366;
	border-color: #25D366;
	color: #fff;
}

.service-details-area .jcw-service-sidebar__actions .btn-wa:hover {
	background-color: #1da851;
	border-color: #1da851;
	color: #fff;
}

.copyright-area .copyright-item ul li a {
	color: rgb(24, 24, 99);
}

.dev-by {
	font-size: 8px;
	display: block;
	color: #333;
}

.dev-by a {
	font-size: 9px;
	color: rgb(21, 21, 95);
}

.dev-by a:hover {
	font-size: 8px;
	color: rgb(223, 223, 224);
}

.slider-round {
	display: none;
}

.site-logo {
	width: 170px;
	height: 64px;
	object-fit: contain;
	display: block;
}

.empty-40 {
	display: block;
	height: 40px;
}

.empty-60 {
	display: block;
	height: 60px;
}

.empty-80 {
	display: block;
	height: 80px;
}

.empty-100 {
	display: block;
	height: 100px;
}
.empty200 {
	display: block;
	height: 200px;
}

.image-overlay-wrapper {
	position: relative;
	overflow: hidden;
}

.image-overlay-wrapper img {
	width: 100%;
	height: auto;
	display: block;
}

.overlay-text {
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	/* semi-transparent background */
	padding: 15px;
	border-radius: 4px;
	max-width: 90%;
}

/* Animations */
.slide-left {
	transform: translateX(-100%);
	opacity: 0;
	animation: slideInLeft 0.8s forwards;
}

.slide-right {
	transform: translateX(100%);
	opacity: 0;
	animation: slideInRight 0.8s 0.3s forwards;
}

.blog-details-nav {
	display: none;
}

.nav-item a.active {
	color: #3a1741;
}

.cta-button {
	border: 1px solid #19191a;
	padding: 10px 20px;
	border-radius: 35px;
	margin-top: 25px;
	display: inline-block;
	width: 180px;
	text-align: center;
	background-color: #25D366;
	color: #fff;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 0 0 transparent;
	cursor: pointer;
}

.top-bar {
	background-color: #4b4b4e;
	color: #fff;
	padding: 10px 0;
	height: 50px;
	/* display: none; */
}

body.admin-bar .navbar-area.fixed-top {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .navbar-area.fixed-top {
		top: 46px;
	}
}

  .busverhuur-gallery{display:flex;flex-wrap:wrap;align-items:flex-start;margin:-8px}
  .busverhuur-gallery figure{margin:8px}
  .busverhuur-gallery img{
    width:350px;max-width:100%;height:auto;
    border-radius:8px;background:#f3f3f3;
    box-shadow:0 6px 16px rgba(0,0,0,.08);display:block
    padding: 30px;
    margin-bottom: 100px;
  }

/* Products Carousel Styling */
.products-carousel .parts-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.products-carousel .parts-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.products-carousel .parts-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.products-carousel .parts-top {
  height: 220px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-carousel .parts-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.products-carousel .parts-item:hover .parts-top img {
  transform: scale(1.05);
}

.products-carousel .parts-item h3 {
  padding: 15px 20px 5px;
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin: 0;
}

.products-carousel .product-price {
  padding: 0 20px 15px;
  margin: 0;
  color: #d72323;
  font-size: 16px;
}

.products-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 10px;
}

.products-carousel .owl-nav button {
  pointer-events: auto;
  width: 45px;
  height: 45px;
  background: #d72323 !important;
  border-radius: 50% !important;
  color: #fff !important;
  font-size: 24px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.products-carousel .owl-nav button:hover {
  background: #b91c1c !important;
}

.products-carousel .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.products-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 5px;
}

.products-carousel .owl-dots .owl-dot.active span {
  background: #d72323;
}

/* Parts Item Card Styling (Homepage Shop Section) */
.parts-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.parts-item-link:hover {
  text-decoration: none;
  color: inherit;
}

.parts-item-link .parts-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parts-item-link:hover .parts-item {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.parts-item-link .parts-top img {
  transition: transform 0.3s ease;
}

.parts-item-link:hover .parts-top img {
  transform: scale(1.05);
}

.parts-item .product-price {
  color: #d72323;
  font-weight: 600;
  font-size: 16px;
}

/* WhatsApp Price CTA Button */
.parts-whatsapp-cta {
  padding: 15px;
  text-align: center;
}

.btn-whatsapp-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.btn-whatsapp-price:hover {
  background: #1da851;
  color: #fff !important;
  text-decoration: none;
  transform: scale(1.02);
}

.btn-whatsapp-price i {
  font-size: 20px;
}

/* Busverhuur WhatsApp Button */
.btn-whatsapp-busverhuur {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 15px;
}

.btn-whatsapp-busverhuur:hover {
  background: #1da851;
  color: #fff !important;
  text-decoration: none;
  transform: scale(1.02);
}

.btn-whatsapp-busverhuur i {
  font-size: 22px;
}

/* Keyframes */
@keyframes slideInLeft {
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInRight {
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.settings-card:hover {
  border-color: #cbd5e1;
}
.banner-area-three .banner-text h2 {
  margin-bottom: 26px;
  font-size: 69px;
  color: #ffffff;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

/* Homepage section polish: scoped away from hero slider and service cards. */
.home .address-area {
  position: relative;
  z-index: 2;
}

.home .address-area .row {
  align-items: stretch;
  border: 1px solid rgba(26, 82, 135, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(11, 29, 52, 0.12);
  overflow: visible;
}

.home .address-area [class*="col-"] {
  display: flex;
}

.home .address-item {
  width: 100%;
  margin: -26px 0 0;
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.home .address-item:before {
  top: 70px;
  height: 96px;
  background-color: rgba(26, 82, 135, 0.14);
}

.home .address-item > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1a5287;
  box-shadow: 0 14px 30px rgba(26, 82, 135, 0.16);
}

.home .address-item h3 {
  margin-bottom: 8px;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.home .address-item span,
.home .address-item a {
  color: #4f5d6b;
  font-size: 15px;
  line-height: 1.65;
}

.home .address-item a {
  font-weight: 700;
  text-decoration: none;
}

.home .address-item a[href^="tel:"] {
  color: #1a5287;
  font-size: 17px;
}

.home .address-item a:hover {
  color: #123b62;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home .process-area {
  padding-top: 115px;
  padding-bottom: 85px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.home .process-area .section-title {
  margin-bottom: 58px;
}

.home .process-area .section-title h2 {
  color: #111111;
  font-size: 40px;
  font-weight: 800;
}

.home .process-area .process-shape {
  opacity: 0.16;
  top: 205px;
}

.home .process-item {
  height: 100%;
}

.home .process-item .process-inner {
  min-height: 138px;
  margin-bottom: 42px;
  padding: 24px 88px 24px 0;
}

.home .process-item .process-inner:last-child {
  margin-bottom: 0;
}

.home .process-item .process-inner i {
  top: 24px;
  right: 15px;
  width: 52px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 42px;
}

.home .process-item .process-inner i:after {
  right: -10px;
  width: 42px;
  height: 48px;
  background-color: rgba(26, 82, 135, 0.9);
}

.home .process-item .process-inner h3 {
  margin-bottom: 9px;
  color: #111111;
  font-size: 19px;
  font-weight: 800;
}

.home .process-item .process-inner p {
  color: #596675;
  font-size: 15px;
  line-height: 1.7;
}

.home .process-item .process-one,
.home .process-item .process-two {
  margin-bottom: 46px;
}

.home .process-item .process-two,
.home .process-item .process-three {
  padding-right: 0;
  padding-left: 88px;
}

.home .process-item .process-two i,
.home .process-item .process-three i {
  left: 15px;
}

.home .process-item .process-two i:after,
.home .process-item .process-three i:after {
  left: -10px;
}

.home .process-item .process-img {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .process-item .process-img img {
  max-width: 92%;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.16));
}

.home .quality-area:not(.quality-area-four) {
  overflow: hidden;
}

.home .quality-area:not(.quality-area-four) .quality-content {
  max-width: 590px;
  padding-top: 115px;
  padding-bottom: 115px;
}

.home .quality-area:not(.quality-area-four) .section-title {
  margin-bottom: 34px;
}

.home .quality-area:not(.quality-area-four) .section-title h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
}

.home .quality-area:not(.quality-area-four) .section-title p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.85;
}

.home .quality-area:not(.quality-area-four) .cmn-btn a {
  min-width: 150px;
  padding: 14px 24px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 14px 28px rgba(26, 82, 135, 0.28);
}

.home .quality-area-four {
  padding-top: 105px;
  padding-bottom: 105px;
  background: #ffffff;
}

.home .quality-area-four .row {
  min-height: 470px;
}

.home .quality-area-four .quality-content {
  max-width: 535px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 48px;
}

.home .quality-area-four .quality-content .section-title {
  margin-bottom: 0;
}

.home .quality-area-four .quality-content .section-title h2 {
  color: #111111;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
}

.home .quality-area-four .quality-content .section-title p {
  max-width: 500px;
  color: #4f5d6b;
  font-size: 16px;
  line-height: 1.85;
}

.home .quality-area-four .cmn-btn a {
  padding: 14px 24px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(26, 82, 135, 0.22);
}

.home .quality-area-four .quality-img,
.home .quality-area-four .quality-img img {
  width: 100%;
  height: 100%;
}

.home .quality-area-four .quality-img img {
  min-height: 470px;
  object-fit: cover;
}

.home .bottom-split-section {
  padding: 82px 0 64px;
  margin-bottom: 96px;
  background: #f5f7fb;
}

.home .bottom-split-title {
  margin-bottom: 26px;
  color: #111111;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}

.home .bottom-split-divider {
  top: 74px;
  bottom: 58px;
  border-left-color: rgba(26, 82, 135, 0.18);
}

.home .bottom-split-column {
  margin-bottom: 0;
}

.home .bottom-split-left {
  padding-right: 56px;
}

.home .bottom-split-right {
  padding-left: 56px;
}

.home .bottom-split-card {
  width: 100%;
  max-width: 360px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(11, 29, 52, 0.10);
}

.home .bottom-split-card-img img {
  height: 190px;
  border-radius: 6px;
}

.home .bottom-split-card-body {
  padding: 6px 4px 2px;
}

.home .bottom-split-card-title {
  margin: 14px 0 12px;
  color: #111111;
  font-size: 17px;
  font-weight: 800;
}

.home .bottom-split-cta {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(37, 211, 102, 0.18);
}

.home .subscribe-area {
  top: -96px;
  padding: 56px 28px 62px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
  border: 1px solid rgba(26, 82, 135, 0.12);
  box-shadow: 0 18px 44px rgba(11, 29, 52, 0.14);
  overflow: hidden;
}

.home .subscribe-area .subscribe-shape img {
  opacity: 0.12;
}

.home .footer-cta {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.home .footer-cta p {
  margin-bottom: 18px !important;
  color: #111111 !important;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.home .footer-cta .btn {
  min-width: 170px;
  padding: 13px 26px;
  border-radius: 8px;
  background-color: #1a5287;
  border-color: #1a5287;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(26, 82, 135, 0.24);
}

.home .footer-cta .btn:hover {
  background-color: #123b62;
  border-color: #123b62;
}

@media (max-width: 991px) {
  .home .address-area {
    padding-top: 56px;
    padding-bottom: 30px;
  }

  .home .address-area .row {
    overflow: visible;
  }

  .home .address-item {
    margin-top: 0;
    padding: 28px 24px;
  }

  .home .process-area {
    padding-top: 72px;
    padding-bottom: 48px;
  }

  .home .process-area .section-title h2,
  .home .quality-area:not(.quality-area-four) .section-title h2,
  .home .quality-area-four .quality-content .section-title h2 {
    font-size: 32px;
  }

  .home .process-item .process-inner,
  .home .process-item .process-two,
  .home .process-item .process-three {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 22px 0 22px 82px;
    text-align: left;
  }

  .home .process-item .process-inner i,
  .home .process-item .process-two i,
  .home .process-item .process-three i {
    left: 12px;
    right: auto;
  }

  .home .process-item .process-inner i:after,
  .home .process-item .process-two i:after,
  .home .process-item .process-three i:after {
    left: -10px;
    right: auto;
  }

  .home .process-item .process-img {
    min-height: 260px;
    margin: 8px 0 30px;
  }

  .home .quality-area:not(.quality-area-four) .quality-content {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .home .quality-area-four {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .home .quality-area-four .quality-content {
    max-width: 650px;
    padding: 0 24px 40px;
    text-align: center;
  }

  .home .quality-area-four .quality-content .section-title,
  .home .quality-area-four .quality-content .section-title p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home .quality-area-four .quality-img {
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 0;
  }

  .home .quality-area-four .quality-img img {
    min-height: 320px;
    border-radius: 8px;
  }

  .home .bottom-split-section {
    padding: 62px 0 44px;
    margin-bottom: 82px;
  }

  .home .bottom-split-left,
  .home .bottom-split-right {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home .bottom-split-left {
    margin-bottom: 36px;
  }
}

@media (max-width: 575px) {
  .home .address-area .row {
    border-radius: 0;
  }

  .home .address-item {
    padding: 24px 18px;
  }

  .home .address-item > i {
    width: 64px;
    height: 64px;
    line-height: 64px;
    font-size: 28px;
  }

  .home .process-area .section-title {
    margin-bottom: 34px;
  }

  .home .process-area .section-title h2,
  .home .quality-area:not(.quality-area-four) .section-title h2,
  .home .quality-area-four .quality-content .section-title h2 {
    font-size: 28px;
  }

  .home .process-item .process-inner,
  .home .process-item .process-two,
  .home .process-item .process-three {
    padding-left: 72px;
  }

  .home .process-item .process-img {
    min-height: 210px;
  }

  .home .quality-area-four .quality-img {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home .bottom-split-card-img img {
    height: 170px;
  }

  .home .footer-cta p {
    font-size: 24px;
  }
}

/* Busverhuur conversion polish. */
.page-title-area .busverhuur-hero-trust {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.page-title-area .busverhuur-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(37, 211, 102, 0.22);
}

.page-title-area .busverhuur-hero-btn i {
  font-size: 22px;
}

.quality-area-four .quality-content .section-title p {
  color: #374151;
  font-size: 16px;
  line-height: 1.8;
}

.busverhuur-urgency {
  margin: -8px 0 20px;
  color: #123b62;
  font-size: 16px;
  font-weight: 800;
}

.busverhuur-primary-cta,
.busverhuur-price-cta,
.busverhuur-sidebar-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.22);
}

.busverhuur-primary-cta i,
.busverhuur-price-cta i,
.busverhuur-sidebar-whatsapp i {
  font-size: 22px;
}

.busverhuur-card-cta {
  margin-top: 14px;
  min-height: 42px;
  border-radius: 8px;
  font-weight: 800;
}

.busverhuur-price-intro h4 {
  margin-bottom: 6px;
  color: #111111;
  font-size: 28px;
  font-weight: 800;
}

.busverhuur-price-intro p {
  margin-bottom: 0;
  color: #b42318;
  font-weight: 800;
}

.busverhuur-price-cta {
  font-size: 17px;
}

.sticky-sidebar .busverhuur-sidebar-whatsapp {
  font-size: 17px;
}

.sticky-sidebar .busverhuur-secondary-action {
  min-height: 42px;
  border-color: rgba(26, 82, 135, 0.35);
  color: #1a5287;
  font-weight: 700;
}

.sticky-sidebar .busverhuur-sidebar-email,
.sticky-sidebar .busverhuur-sidebar-email a {
  color: #6b7280;
}

.busverhuur-proof {
  display: block;
  margin: -2px 0 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  opacity: 0.92;
}

.feature-content .busverhuur-proof + p {
  margin-top: 0;
}

.bottom-split-section-title {
  text-align: center;
  font-weight: 800;
  color: #111111;
  margin-bottom: 34px;
}

@media (max-width: 991px) {
  .quality-area-four .quality-content .section-title p {
    margin-left: auto;
    margin-right: auto;
  }

  .busverhuur-primary-cta {
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  .page-title-area .busverhuur-hero-btn {
    width: 100%;
    max-width: 320px;
  }

  .busverhuur-price-intro h4 {
    font-size: 24px;
  }
}

/* Shared dienst page conversion and readability polish. */
.single-dienst .page-title-content .dienst-hero-support {
  margin: 12px auto 20px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.single-dienst .dienst-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.single-dienst .dienst-hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
}

.single-dienst .dienst-hero-whatsapp {
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.22);
}

.single-dienst .dienst-hero-whatsapp i {
  font-size: 22px;
}

.single-dienst .dienst-hero-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.single-dienst .dienst-hero-secondary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

.single-dienst .dienst-content h3 {
  margin-top: 32px;
  margin-bottom: 18px;
  color: #111111;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.single-dienst .dienst-content p {
  margin-bottom: 18px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.85;
}

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

.single-dienst .dienst-content ul,
.single-dienst .dienst-content ol {
  margin-bottom: 22px;
  color: #4b5563;
  line-height: 1.8;
}

.single-dienst .service-details-area .jcw-service-sidebar {
  gap: 28px;
}

.single-dienst .service-details-area .jcw-service-sidebar__card {
  border: 1px solid rgba(34, 22, 104, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(11, 29, 52, 0.08);
}

.single-dienst .service-details-area .jcw-service-sidebar__card--contact .jcw-service-sidebar__title {
  margin-bottom: 18px;
}

.single-dienst .service-details-area .jcw-service-sidebar__card--contact .jcw-service-sidebar__actions {
  gap: 12px;
  margin-bottom: 20px;
}

.single-dienst .service-details-area .jcw-service-sidebar__actions .btn {
  min-height: 44px;
  border-radius: 8px;
}

.single-dienst .service-details-area .jcw-service-sidebar__actions .btn-wa {
  min-height: 52px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(37, 211, 102, 0.22);
}

.single-dienst .service-details-area .jcw-service-sidebar__actions .btn-outline-dark {
  border-color: rgba(34, 22, 104, 0.24);
  color: #221668;
  background-color: transparent;
}

.single-dienst .service-details-area .jcw-service-sidebar__route-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 14px;
  border-radius: 8px;
  border-color: rgba(34, 22, 104, 0.24);
  color: #221668;
  font-weight: 800;
  text-decoration: none;
}

.single-dienst .service-details-area .jcw-service-sidebar__route-btn:hover {
  background-color: #221668;
  border-color: #221668;
  color: #ffffff;
}

.single-dienst .service-details-area .jcw-service-sidebar__details strong {
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: none;
}

.single-dienst .service-details-area .jcw-service-sidebar__details span {
  color: #4b5563;
}

.single-dienst .service-details-area .jcw-service-sidebar__card--services .jcw-service-sidebar__text {
  margin-top: -12px;
}

.bottom-split-section-text {
  text-align: center;
  color: #565656;
  margin: 0 auto 34px;
  max-width: 520px;
}

.footer-cta h2 {
  margin: 0 0 10px;
  color: #111111;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 767px) {
  .single-dienst .dienst-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .single-dienst .dienst-hero-actions .btn {
    width: 100%;
    max-width: 340px;
  }

  .single-dienst .dienst-content h3 {
    font-size: 24px;
  }

  .footer-cta h2 {
    font-size: 25px;
  }
}
