/* ============================================
   EW-G Elektriciteitswerken - Hoofdstijlblad
   Verbeterd design: strak, professioneel, modern
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

/* Bootstrap & vendors */
@import url('../vendor/bootstrap/css/bootstrap.min.css');
@import url('../vendor/Camera-master/css/camera.css');
@import url('../vendor/menu/dist/css/slimmenu.css');
@import url('../fonts/font-awesome/css/font-awesome.min.css');
@import url('../vendor/owl-carousel/owl.carousel.css');
@import url('../vendor/owl-carousel/owl.theme.css');
@import url('../vendor/WOW-master/css/libs/animate.css');
@import url('../fonts/icon/font/flaticon.css');
@import url('../vendor/fancybox/dist/jquery.fancybox.min.css');

/* ============================================
   CSS VARIABELEN
   ============================================ */
:root {
  --kleur-primair: #0a1628;
  --kleur-accent: #f0a500;
  --kleur-accent-licht: #f5bc3a;
  --kleur-tekst: #3a3a3a;
  --kleur-tekst-licht: #6b6b6b;
  --kleur-wit: #ffffff;
  --kleur-achtergrond: #f7f8fa;
  --kleur-border: #e2e5ec;
  --schaduw-klein: 0 2px 12px rgba(0,0,0,0.08);
  --schaduw-medium: 0 6px 30px rgba(0,0,0,0.12);
  --schaduw-groot: 0 15px 50px rgba(0,0,0,0.15);
  --overgang: all 0.3s ease;
  --radius: 6px;
}

/* ============================================
   LOADING ANIMATIE
   ============================================ */
#loader-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 999999;
  background: var(--kleur-primair);
  display: flex;
  align-items: center;
  justify-content: center;
}
#loader {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(240,165,0,0.2);
  border-top-color: var(--kleur-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   SCROLL-NAAR-BOVEN KNOP
   ============================================ */
.scroll-top {
  width: 44px; height: 44px;
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 99;
  background: var(--kleur-accent);
  color: var(--kleur-primair);
  font-size: 18px;
  display: none;
  cursor: pointer;
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--schaduw-medium);
  transition: var(--overgang);
}
.scroll-top:hover { background: var(--kleur-primair); color: var(--kleur-wit); }

/* ============================================
   GLOBALE STIJLEN
   ============================================ */
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--kleur-tekst);
  font-size: 17px;
  position: relative;
  background: var(--kleur-wit);
  -webkit-font-smoothing: antialiased;
}
.main-page-wrapper { overflow-x: hidden; }
h1,h2,h3,h4,h5,h6,p,ul { margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--kleur-primair);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: 64px; font-weight: 900; }
h2 { font-size: 40px; font-weight: 800; }
h3 { font-size: 32px; font-weight: 700; }
h4 { font-size: 24px; font-weight: 700; }
h5 { font-size: 20px; font-weight: 700; }
h6 { font-size: 18px; font-weight: 600; }
p { line-height: 1.7; color: var(--kleur-tekst-licht); }
ul { list-style: none; }
a { text-decoration: none; color: var(--kleur-tekst); transition: var(--overgang); display: inline-block; }
a:hover, a:focus, a:visited { text-decoration: none; outline: none; }
img { max-width: 100%; display: block; }
button { border: none; outline: none; box-shadow: none; padding: 0; cursor: pointer; }
button:focus { outline: none; }
input, textarea { outline: none; box-shadow: none; transition: var(--overgang); }

.section-spacing { margin-bottom: 110px; }
.margintop-70 { margin-top: 70px; }
.white { color: var(--kleur-wit) !important; }
.white-link { color: var(--kleur-wit); font-weight: 400; }

/* ============================================
   ANIMATIE OVERGANGEN
   ============================================ */
.tran3s,
.theme-button-one,
.header-two .top-header .social-icon li a,
.our-case .single-case-block .hover-content,
.theme-footer-two .top-footer .footer-list ul li a,
.why-we-best .wrapper .best-list-item li .icon,
.single-solution-block,
h2 a, h3 a, h4 a, h5 a, h6 a {
  transition: var(--overgang);
}

/* ============================================
   KNOP STIJL
   ============================================ */
body .theme-button-one {
  display: inline-block;
  line-height: 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kleur-primair);
  background: var(--kleur-accent);
  border-radius: var(--radius);
  padding: 0 24px;
  border: 2px solid var(--kleur-accent);
}
body .theme-button-one:hover {
  background: var(--kleur-primair);
  border-color: var(--kleur-primair);
  color: var(--kleur-wit);
}
body .theme-button-one.outline {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--kleur-wit);
}
body .theme-button-one.outline:hover {
  background: var(--kleur-accent);
  border-color: var(--kleur-accent);
  color: var(--kleur-primair);
}

/* ============================================
   SECTIETITEL
   ============================================ */
.theme-title-one {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}
.theme-title-one h2 {
  position: relative;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.theme-title-one h2:after {
  content: '';
  width: 50px;
  height: 4px;
  background: var(--kleur-accent);
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -25px;
  border-radius: 2px;
}
.theme-title-one.tekst-links { text-align: left; }
.theme-title-one.tekst-links h2:after { left: 0; margin-left: 0; }
.theme-title-one p {
  padding-top: 18px;
  max-width: 580px;
  margin: 0 auto;
  font-size: 17px;
}

/* ============================================
   HEADER
   ============================================ */
.header-two { position: relative; }

/* Bovenste balk */
.header-two .top-header {
  background: var(--kleur-primair);
  padding: 10px 0;
}
.header-two .top-header .left-widget li {
  display: inline-block;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
}
.header-two .top-header .left-widget li i { margin-right: 6px; color: var(--kleur-accent); }
.header-two .top-header .social-icon { text-align: right; }
.header-two .top-header .social-icon li {
  display: inline-block;
  margin-left: 14px;
}
.header-two .top-header .social-icon li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.header-two .top-header .social-icon li a:hover { color: var(--kleur-accent); }

/* Navigatiebalk */
.header-two .theme-menu-wrapper {
  background: var(--kleur-wit);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-two .theme-menu-wrapper .bg-wrapper {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding-left: 0;
}
.header-two .theme-menu-wrapper .bg-wrapper .logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  z-index: 99;
  float: none !important;
}
.header-two .theme-menu-wrapper .bg-wrapper .menu-wrapper {
  float: none !important;
  position: static !important;
  width: auto !important;
}

.logmer { width: 80px; height: auto; }
.header-two #mega-menu-holder > ul > li > a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--kleur-primair);
  padding: 20px 22px;
}
.header-two #mega-menu-holder > ul > li > a:hover,
.header-two #mega-menu-holder > ul > li.active > a {
  color: var(--kleur-accent);
}
.header-two #mega-menu-holder > ul > li.active > a {
  position: relative;
}
.header-two #mega-menu-holder > ul > li.active > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  background: var(--kleur-accent);
  border-radius: 2px 2px 0 0;
}

/* Sticky menu */
@keyframes menu_sticky {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.theme-menu-wrapper.fixed {
  position: fixed !important;
  width: 100%;
  top: 0; left: 0;
  z-index: 999;
  box-shadow: var(--schaduw-medium);
  animation: menu_sticky 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   HERO BANNER
   ============================================ */
#theme-main-banner { margin: 0 !important; padding: 0; }
.camera_wrap { float: none; }

.banner-container-wrapper {
  padding: 20px 15px 0;
  max-width: 1350px;
  margin: 0 auto;
}

.meraba {
  display: block;
  margin: 0 auto !important;
  height: 250px !important;
  min-height: 250px !important;
  max-height: 250px !important;
  border-radius: 10px;
  overflow: hidden;
}

#theme-main-banner .camera_overlayer {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.35) 50%, rgba(10,22,40,0.65) 100%);
}
#theme-main-banner .camera_caption { height: 100%; }
#theme-main-banner .container {
  position: relative;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
#theme-main-banner .camera_caption > div {
  background: transparent;
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  padding: 0;
  text-shadow: none;
}

#theme-main-banner .camera_caption p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kleur-accent);
  margin-bottom: 8px;
}
#theme-main-banner .camera_caption h1 {
  font-size: 34px;
  font-weight: 900;
  color: var(--kleur-wit);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}
#theme-main-banner .camera_caption .hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 500px;
}

/* Paginering */
#theme-main-banner .camera_pag {
  display: none;
}
#theme-main-banner .camera_pag .camera_pag_ul { display: flex; gap: 8px; }
#theme-main-banner .camera_pag .camera_pag_ul li {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--overgang);
}
#theme-main-banner .camera_pag .camera_pag_ul li span {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
}
#theme-main-banner .camera_pag .camera_pag_ul li.cameracurrent {
  background: var(--kleur-accent);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   STATISTIEKEN BALK (nieuw element)
   ============================================ */
.stats-balk {
  background: var(--kleur-accent);
  padding: 28px 0;
}
.stats-balk .stat-item { text-align: center; }
.stats-balk .stat-getal {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--kleur-primair);
  line-height: 1;
}
.stats-balk .stat-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--kleur-primair);
  opacity: 0.75;
  margin-top: 4px;
}

/* ============================================
   PROJECTEN / CASES
   ============================================ */
.our-case { margin-top: 80px; }
.our-case .wrapper { margin-top: 20px; }
.our-case .row { margin: 0 -12px; }
.our-case .single-case-block {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 12px 24px;
}
.our-case .single-case-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}
.our-case .single-case-block:hover img { transform: scale(1.05); }
.our-case .single-case-block .hover-content {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, transparent 60%);
  border-radius: var(--radius);
  opacity: 0;
  transition: var(--overgang);
}
.our-case .single-case-block:hover .hover-content { opacity: 1; }
.our-case .single-case-block .hover-content .text {
  position: absolute;
  bottom: 20px;
  left: 20px; right: 20px;
  transform: translateY(10px);
  transition: var(--overgang);
}
.our-case .single-case-block:hover .hover-content .text { transform: translateY(0); }
.our-case .single-case-block .hover-content .text h5 a { color: var(--kleur-wit); }
.our-case .view-all { text-align: center; margin-top: 48px; }

/* ============================================
   WAAROM KIEZEN
   ============================================ */
.why-choose-us { background: var(--kleur-achtergrond); padding: 90px 0; margin-bottom: 0; }
.why-choose-us .wrapper { margin-top: 0; }
.why-choose-us .single-block {
  background: var(--kleur-wit);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--schaduw-klein);
  transition: var(--overgang);
  height: 100%;
  border-bottom: 3px solid transparent;
}
.why-choose-us .single-block:hover {
  box-shadow: var(--schaduw-medium);
  border-bottom-color: var(--kleur-accent);
  transform: translateY(-4px);
}
.why-choose-us .single-block .icon-wrapper {
  width: 64px; height: 64px;
  background: rgba(240,165,0,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-choose-us .single-block .icon-wrapper img {
  width: 36px; height: 36px;
}
.why-choose-us .single-block h5 { margin-bottom: 10px; color: var(--kleur-primair); }
.why-choose-us .single-block p { font-size: 15px; }

/* ============================================
   CONTACT SECTIE (op homepage)
   ============================================ */
.about-compnay-two {
  background: linear-gradient(135deg, var(--kleur-primair) 0%, #162845 100%);
  padding: 90px 0;
}
.about-compnay-two.no-bg {
  background: none;
  padding: 0;
}
.about-compnay-two .tekst-blok h2 {
  color: var(--kleur-wit);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-compnay-two .tekst-blok p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 12px;
}
.about-compnay-two .quote-form {
  background: var(--kleur-wit);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--schaduw-groot);
}
.about-compnay-two .quote-form h3 {
  margin-bottom: 28px;
  font-size: 22px;
}

/* Formulier */
.theme-form-one input,
.theme-form-one .form-control {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--kleur-border);
  border-radius: 0;
  outline: none;
  box-shadow: none;
  font-size: 15px;
  padding: 10px 0;
  margin-bottom: 22px;
  font-family: 'Barlow', sans-serif;
  color: var(--kleur-tekst);
  background: transparent;
}
.theme-form-one input:focus,
.theme-form-one textarea:focus {
  border-bottom-color: var(--kleur-accent);
}
.theme-form-one textarea {
  width: 100%;
  max-width: 100%;
  height: 100px;
  max-height: 100px;
  resize: none;
  border: none;
  border-bottom: 2px solid var(--kleur-border);
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  padding: 10px 0;
  margin-bottom: 28px;
  background: transparent;
}
.theme-form-one .theme-button-one { font-family: 'Barlow Condensed', sans-serif; }

/* ============================================
   OVER MIJ PAGINA
   ============================================ */
.about-company-two { padding: 90px 0; }
.about-company-two .tekst-blok { padding-left: 40px; }
.about-company-two .tekst-blok h2 { margin-bottom: 24px; }
.about-company-two .tekst-blok p { margin-bottom: 16px; font-size: 16px; }
.about-company-two .handtekening {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--kleur-primair);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 2px solid var(--kleur-border);
}
.about-company-two .foto-wrapper { position: relative; }
.about-company-two .foto-wrapper img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  height: 520px;
}
.about-company-two .ervarings-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--kleur-accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--schaduw-medium);
}
.about-company-two .ervarings-badge .getal {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--kleur-primair);
  line-height: 1;
}
.about-company-two .ervarings-badge .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--kleur-primair);
}

/* ============================================
   WAAROM WIJ BEST (Over-pagina)
   ============================================ */
.why-we-best {
  background: url(../images/home/11.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  margin-bottom: 280px;
}
.why-we-best .overlay {
  background: linear-gradient(135deg, rgba(10,22,40,0.93) 0%, rgba(10,22,40,0.85) 100%);
  padding: 90px 0 0 0;
}
.why-we-best .theme-title-one h2 { color: var(--kleur-wit); }
.why-we-best .theme-title-one h2:after { background: var(--kleur-accent); }
.why-we-best .theme-title-one p { color: rgba(255,255,255,0.65); }
.why-we-best .wrapper {
  margin-top: 55px;
  box-shadow: var(--schaduw-groot);
}
.why-we-best .wrapper .img-box {
  background: url(../images/home/16.jpg) no-repeat center center;
  background-size: cover;
  border-radius: 0 var(--radius) var(--radius) 0;
  height: 520px;
}
.why-we-best .wrapper .best-list-item {
  background: var(--kleur-wit);
  padding: 60px 30px 60px 50px;
  border-radius: var(--radius) 0 0 var(--radius);
}
.why-we-best .wrapper .best-list-item li {
  position: relative;
  margin-bottom: 44px;
  padding: 0 0 0 76px;
}
.why-we-best .wrapper .best-list-item li:last-child { margin-bottom: 0; }
.why-we-best .wrapper .best-list-item li h5 { margin-bottom: 6px; color: var(--kleur-primair); }
.why-we-best .wrapper .best-list-item li .icon {
  position: absolute;
  top: -4px; left: 0;
  width: 56px; height: 56px;
}

/* ============================================
   DIENSTEN PAGINA
   ============================================ */
.our-solution { padding: 90px 0; }
.our-solution .single-solution-block {
  background: var(--kleur-wit);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--schaduw-klein);
  margin-top: 30px;
  text-align: left;
  border-left: 4px solid transparent;
  transition: var(--overgang);
}
.our-solution .single-solution-block:hover {
  border-left-color: var(--kleur-accent);
  box-shadow: var(--schaduw-medium);
  transform: translateX(4px);
}
.our-solution .single-solution-block .dienst-icon {
  width: 56px; height: 56px;
  background: rgba(240,165,0,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: var(--kleur-accent);
}
.our-solution .single-solution-block h5 {
  margin-bottom: 14px;
  color: var(--kleur-primair);
  font-size: 21px;
}
.our-solution .single-solution-block p { font-size: 15px; line-height: 1.8; }
.our-solution .single-solution-block ul {
  margin-top: 12px;
  padding: 0;
}
.our-solution .single-solution-block ul li {
  font-size: 15px;
  color: var(--kleur-tekst-licht);
  padding: 5px 0 5px 20px;
  position: relative;
}
.our-solution .single-solution-block ul li:before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--kleur-accent);
  font-weight: 700;
}

.offerte-balk {
  background: var(--kleur-achtergrond);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  border: 2px dashed var(--kleur-border);
}
.offerte-balk p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--kleur-tekst);
}

/* ============================================
   CONTACT PAGINA
   ============================================ */
.contact-us-section { padding: 90px 0; }
.contact-us-section .contactinfo-blok {
  padding-right: 50px;
}
.contact-us-section .contactinfo-blok h2 { margin-bottom: 20px; }
.contact-us-section .contactinfo-blok p { margin-bottom: 32px; }
.contact-us-section .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-us-section .contact-item .ci-icon {
  width: 48px; height: 48px;
  background: rgba(240,165,0,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--kleur-accent);
}
.contact-us-section .contact-item .ci-tekst strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--kleur-tekst-licht);
  margin-bottom: 2px;
}
.contact-us-section .contact-item .ci-tekst a,
.contact-us-section .contact-item .ci-tekst span {
  font-size: 16px;
  font-weight: 600;
  color: var(--kleur-primair);
}
.contact-us-section .form-wrapper {
  background: var(--kleur-wit);
  border-radius: var(--radius);
  box-shadow: var(--schaduw-medium);
  padding: 48px 40px;
}

/* Formulier validatie */
.alert-wrapper {
  display: none;
  position: fixed;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0; left: 0;
  z-index: 9999999;
  align-items: center;
  justify-content: center;
}
#success, #error {
  position: relative;
  width: 440px;
  padding: 40px;
  text-align: center;
  border-radius: var(--radius);
  top: calc(50% - 80px);
  left: calc(50% - 220px);
}
#success { background: var(--kleur-primair); }
#error { background: #c0392b; }
#success p { color: var(--kleur-accent); font-size: 17px; }
#error p { color: #fff; font-size: 17px; }
#error button, #success button {
  color: #fff;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  position: absolute;
  top: -14px; right: -14px;
  font-size: 16px;
}
.form-validation label.error { display: none !important; }
.form-validation input.error,
.form-validation textarea.error { border-bottom: 2px solid #c0392b !important; }

/* ============================================
   PROJECTEN PAGINA
   ============================================ */
.projecten-grid { padding: 90px 0; }
.projecten-grid .project-kaart {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.projecten-grid .project-kaart img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.projecten-grid .project-kaart:hover img { transform: scale(1.06); }
.projecten-grid .project-kaart .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: var(--overgang);
}
.projecten-grid .project-kaart:hover .overlay { opacity: 1; }
.projecten-grid .project-kaart .info {
  position: absolute;
  bottom: 20px;
  left: 20px; right: 20px;
  transform: translateY(8px);
  transition: var(--overgang);
}
.projecten-grid .project-kaart:hover .info { transform: translateY(0); }
.projecten-grid .project-kaart .info h5 { color: var(--kleur-wit); font-size: 18px; }
.projecten-grid .project-kaart .info span {
  font-size: 13px;
  color: var(--kleur-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   GOOGLE MAP
   ============================================ */
#google_map { position: relative; height: 200px; }

/* ============================================
   FOOTER
   ============================================ */
.theme-footer-two {
  background: var(--kleur-primair);
  padding-top: 28px;
}
.theme-footer-two .top-footer .title {
  color: var(--kleur-wit);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 8px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.theme-footer-two .logo-widget p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  line-height: 1.4;
}
.theme-footer-two .logo-widget .social-icon { display: flex; gap: 8px; margin-top: 6px; }
.theme-footer-two .logo-widget .social-icon li a {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  transition: var(--overgang);
}
.theme-footer-two .logo-widget .social-icon li a:hover {
  background: var(--kleur-accent);
  border-color: var(--kleur-accent);
  color: var(--kleur-primair);
}
.theme-footer-two .top-footer .footer-list ul li {
  margin-bottom: 3px;
}
.theme-footer-two .top-footer .footer-list ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-family: 'Barlow', sans-serif;
  transition: var(--overgang);
}
.theme-footer-two .top-footer .footer-list ul li a:hover { color: var(--kleur-accent); }
.theme-footer-two .top-footer .contact-widget ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 0 0 6px 26px;
  position: relative;
}
.theme-footer-two .top-footer .contact-widget ul li a { color: rgba(255,255,255,0.55); }
.theme-footer-two .top-footer .contact-widget ul li a:hover { color: var(--kleur-accent); }
.theme-footer-two .top-footer .contact-widget ul li i {
  position: absolute;
  top: 2px; left: 0;
  color: var(--kleur-accent);
  font-size: 16px;
}
.theme-footer-two .bottom-footer {
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 10px 0;
  text-align: center;
}
.theme-footer-two .bottom-footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}
.modal-content {
  background: var(--kleur-wit);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--schaduw-groot);
  width: 90%;
  max-width: 400px;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.close {
  position: absolute;
  right: 18px; top: 14px;
  color: var(--kleur-tekst-licht);
  font-size: 22px;
  cursor: pointer;
}
.close:hover { color: var(--kleur-primair); }
#modalContent { margin: 15px 0; font-size: 16px; line-height: 1.6; }
#closePopupButton { display: block; margin: 20px auto 0; }

/* ============================================
   GOOGLE MAP FOOTER
   ============================================ */
#google_map { height: 140px; }