:root {
  --yellow: #DA4411;
  --gray-light: #f9f9f9;
  --gray-dark: #333;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

*{
  letter-spacing: 1.4px;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--gray-light);
}


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .container .nav-links ul li a{
color: black;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
}


.nav-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--yellow);
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover {
  color: var(--yellow) !important;
}

.nav-links a:hover::after {
  width: 100%;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 200px;
  flex-direction: column;
  border-radius: 5px;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 10px 20px;
  white-space: nowrap;
}

.dropdown-menu li a {
  color: var(--gray-dark);
  text-decoration: none;
  display: block;
}

.dropdown-menu li a:hover {
  background: #f1f1f1;
}

/* CTA BUTTONS */
  .cta-buttons a{
    margin-left: 10px;
  }

.bel-knop {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background-color: #DA4411;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(168, 80, 50, 0.4);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  user-select: none;
}

/* lens glare is initially hidden */
.bel-knop::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* hover styles */
.bel-knop:hover {
  box-shadow: 0 8px 16px rgba(168, 80, 50, 0.7);
  background-color: #b35b3a;
}

/* show and animate lens glare only on hover */
.bel-knop:hover::before {
  opacity: 1;
  animation: lens-glare 1.5s linear infinite;
}

/* lens glare animation */
@keyframes lens-glare {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Offerte Knop */
.offerte-knop {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background-color: #DA4411;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(168, 80, 50, 0.4);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  user-select: none;
}

/* lens glare is initially hidden */
.offerte-knop::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* hover styles */
.offerte-knop:hover {
  box-shadow: 0 8px 16px rgba(168, 80, 50, 0.7);
  background-color: #b35b3a;
}

/* show and animate lens glare only on hover */
.offerte-knop:hover::before {
  opacity: 1;
  animation: lens-glare 1.5s linear infinite;
}

/* lens glare animation */
@keyframes lens-glare {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--yellow);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 80%;
   text-align: center; 
  height: 100%;
  background: var(--white);
  z-index: 1000;
  padding: 40px 20px;
  transition: right 0.3s ease;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  padding: 15px 0;
}

.mobile-menu a {
  color: var(--gray-dark);
  text-decoration: none;
  font-size: 1.2rem;
}

.mobile-menu .dropdown .dropdown-menu {
  display: block;
  background: transparent;
  box-shadow: none;
  padding-left: 15px;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.close-mobile {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--yellow);
}

/* RESPONSIVE */
@media (max-width: 1209px) {
  .nav-links,
  .cta-buttons {
    display: none;
  }

  .hamburger {
    display: block;
  }

.dropdown-menu-ham {
  display: none;
  margin-left: 10px;
  margin-top: 10px;
  animation: fadeIn 0.3s ease-in-out;
}

.dropdown-menu-ham li {
  padding: 10px 0;
}

.dropdown-menu-ham a {
  display: inline; /* only inline, not block */
   position: relative; 
  color: var(--gray-dark);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dropdown-menu-ham a:hover {
  color: var(--yellow);
}

.dropdown-menu-ham a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--yellow);
  transition: width 0.3s ease-in-out;
}


.dropdown-menu-ham a:hover::after {
  width: 100%;
}

.mobile-menu li a {
    display: inline-block; /* only inline, not block */
   position: relative; 
  color: var(--gray-dark);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu li a:hover {
  color: var(--yellow);
}

.mobile-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--yellow);
  transition: width 0.3s ease-in-out;
}


.mobile-menu li a:hover::after {
  width: 100%;
}


}

/* HERO */
.hero {
  background: url('/assets/imgs/image.png') no-repeat center center/cover;
  text-align: center;
  padding: 150px 20px;
  position: relative;
}

.hero-content {
  background: rgba(0, 0, 0, 0.7);
  display: inline-block;
  padding: 40px;
  width: 50%;
  border-radius: 10px;
  border: 2px solid var(--yellow);
  color: white;
}

.hero h1 {
  color: var(--yellow);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.subtext {
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.big-number {
  color: var(--yellow);
  font-size: 2.2rem;
  margin: 10px 0;
}

.hero-button {
  background: var(--yellow);
  color: black;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.trustpilot {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.trustpilot img {
  height: 30px;
}

/* MOBILE HERO */
@media (max-width: 768px) {
  .hero-content {
    width: auto;
  }
}

/* FADE ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.services-section {
  position: relative;
  padding: 6rem 2rem 2rem;
  background: rgb(248, 248, 248);
  text-align: center;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
  margin-top: -10rem; /* voor overlap met hero */
}

.service-card {
  background: #000;
  color: #fff;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card.highlight {
  background: var(--yellow);
  color: white;
}

.card-image {
  position: relative;
}

.card-image img {
  width: 100%;
  height: 400px;
  display: block;
}

.service-card.highlight .card-icon{
  background:black !important;
}

.card-icon {
  position: absolute;
  bottom: -20px;
  left: 1rem;
  background: var(--yellow);
  padding: 0.5rem;
  border-radius: 0.3rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 2.5rem 1rem 1.5rem;
  text-align: left;
}

.card-content h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}

.card-content p {
  margin: 0.5rem 0 1rem;
  font-size: 0.95rem;
  color: inherit;
}

.card-button {
  color: inherit;
  font-weight: bold;
  text-decoration: none;
}

.card-checks {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* background-color: #f7f7f7; */
  padding: 1rem 1.5rem;
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.check-item:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); */
}

.check-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.check-item span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .card-checks {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .check-item {
    justify-content: flex-start;
    width: 100%;
    max-width: 320px;
  }

  .check-item img {
    width: 32px;
    height: 32px;
  }

  .check-item span {
    font-size: 0.95rem;
  }
}



/* Responsiveness */
@media (max-width: 1024px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 90%;
  }
}

.cards{
  background-color: #919191;
}


.brands-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: white;
  /* margin-top: 2rem; */
  padding: 2rem 1rem;
  /* border-top: 1px solid #ddd; */
}

.brands-section img {
  max-height: 40px;
  width: auto;
  height: auto;
  transition: filter 0.3s ease;
}


/* Mobiel layout: verticale stack */
@media (max-width: 768px) {
  .brands-section {
    flex-direction: column;
    gap: 1rem;
  }

  .brands-section img {
    max-height: 35px;
  }
}

.card-content a {
    display: inline; /* only inline, not block */
   position: relative; 
  color: white;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-content a:hover {
  color: var(--yellow);
}

.service-card.highlight .card-content a:hover{
  color: var(--gray-dark);
}

.card-content a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--yellow) ;
  transition: width 0.3s ease-in-out;
}

.service-card.highlight .card-content a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--gray-dark) !important;
  transition: width 0.3s ease-in-out;
}

.service-card.highlight .card-content a:hover::after {
  width: 100%;
}

.card-content a:hover::after {
  width: 100%;
}

/* Footer */

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* Layout to keep footer at bottom */
body {
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

/* Footer styles */
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

/* Footer styles */
.footer {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px 30px;
  margin-top: auto;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.offerte-boven {
  text-align: center;
  margin-bottom: 50px;
      border: 1px solid rgba(255, 255, 255, .3);
    padding: 40px;
}

.offerte-boven h1 {
  font-size: 25px;
  margin-bottom: 25px;
}

.offerte-boven button {
  background-color: #facc15;
  color: #000;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.offerte-boven button:hover {
  background-color: #eab308;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-box {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-box h3 {
  font-size: 24px;
  margin-bottom: 14px;
  padding-bottom: 4px;
  border-bottom: 2px solid #fff;
  display: inline-block;
}

.footer-box ul {
  list-style: none;
  margin-top: 10px;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-box a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--yellow);
  transition: width 0.3s ease-in-out;
}

.footer-box a:hover {
  color: var(--yellow) !important;
}

.footer-box a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 60px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  .footer-box h3 {
    font-size: 17px;
  }
}

.footer-box.offerte a:hover{
  color: var(--gray-dark);
}

/* Steps section */

.km-section-wrapper {
  background-color: rgb(248, 248, 248);
  padding: 60px 20px;
}

.km-container {
  max-width: 1200px;
  margin: 0 auto;
}

.km-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
}

.km-flex-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.km-text-block {
  flex: 1 1 500px;
}

.km-image-block {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.km-image-block img {
  max-width: 100%;
  height: auto;
}

.km-step {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
}

.km-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.km-icon:hover {
  transform: scale(1.15);
}

.km-icon img {
  width: 100%;
  height: auto;
}

.km-step-title {
  margin: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: black
}

.km-step-text {
  margin: 4px 0 0;
  color: black;
  font-size: 19px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .km-flex-layout {
    flex-direction: column;
  }

  .km-image-block {
    order: 2;
    margin-top: 0px;
  }

  .km-text-block {
    order: 1;
  }
}
