@import url("reset.less");

/*------------------------------------------------------------------------ Global ------------------------------------------------------------------------*/
#header {
  padding: 20px 0;
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  .mega-menu-link{
	color: #ffffff !important;
	font-weight: 300 !important;
	font-size: 16px !important;
  }

  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
    margin: 0px !important;
    display: inline-block;
    height: auto;
    vertical-align: middle;
}

  .navbar-brand {
    display: flex;
    align-items: center;

    img {
      max-height: 50px;
      width: auto;
    }
  }

  html, body, span, p, a, div {
  font-family: "Gilroy", sans-serif !important;
}


  .header-nav-wrapper {
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.01);    border-radius: 50px;
    padding: 20px 24px;
    display: inline-flex;
  }

  .header-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
    align-items: center;

    li {
      display: inline-block;

      a {
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 10px 0;
        transition: opacity 0.3s ease;

        &:hover {
          opacity: 0.8;
        }
      }

      &.current-menu-item a,
      &.current_page_item a {
        opacity: 0.8;
      }
    }
  }

   .header-cta-button {
    background: linear-gradient(180deg, #FFC600 0%, #FFD133 100%);
    border: 1px solid #FFEDAD;
    box-shadow: 0 0 28px 0 rgba(255, 198, 0, 0.55);
    color: #000000;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    }
  }

  // Tablet
  @media (max-width: 991px) {
    .header-nav-wrapper {
      width: 100%;
      justify-content: center;
    }

    .header-nav {
      gap: 20px;
      font-size: 14px;
    }

    .header-cta-button {
      padding: 12px 25px;
      font-size: 14px;
    }
  }

  // Mobile
  @media (max-width: 767px) {
	 
    .header-nav-wrapper {
      padding: 10px 15px;
    }

    .header-nav {
      gap: 15px;
      font-size: 13px;

      li a {
        padding: 8px 0;
      }
    }

    .header-cta-button {
      padding: 10px 20px;
      font-size: 13px;
    }

    .navbar-brand img {
      max-height: 40px;
    }

  }
}


.page_content {
  background: @black;

	.page_div {

    &.intro-header {
      position: relative;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transform: scale(.9);
      animation: grow 1s ease-out .5s forwards;

      @keyframes grow {
        to {transform: scale(1);}
      }

      &:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: @donker_groen;
        opacity: 60%; 
      }

      .row {
          position: relative;
          z-index: 10;
      }
    }

		.intro-header {
    
    .container {
        position: relative;
        z-index: 2;
    }
    
    &_content {
        text-align: center;
    }
    
    &_title {
        font-size: 56px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 30px;
        
        &-part1 {
            display: block;
            color: #ffffff;
        }
        
        &-part2 {
            display: block;
            color: #4fd6bf;
        }
    }
    
    &_description {
        font-size: 20px;
        color: #ffffff;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    &_cta-text {
        font-size: 22px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 40px;
    }
    
    &_button {
    background: linear-gradient(180deg, #FFC600 0%, #FFD133 100%);
    border: 1px solid #FFEDAD;
    box-shadow: 0 0 28px 0 rgba(255, 198, 0, 0.55);
    color: #000000;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
        
        &:hover {
            background-color: #ffd96b;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 237, 173, 0.3);
        }
    }
    
    &_trust {
        margin-top: 50px;
    }
    
    &_trust-text {
        font-size: 16px;
        color: #ffffff;
        margin-bottom: 25px;
        opacity: 0.9;
    }
    
    &_logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    &_logo {
        width: auto;
        filter: brightness(0) invert(1);
        opacity: 0.9;
        transition: opacity 0.3s ease;
        height: 20px !important;
        
        &:hover {
            opacity: 1;
        }
    }
	}

			
	}

		
			.proven-results {
			background-color: @groen;
			position: relative;
			overflow: hidden;
			
			&_content {
				color: #ffffff;
			}
			
			&_heading {
				font-size: 48px;
				font-weight: 700;
				margin-bottom: 24px;
				color: #ffffff;
				line-height: 1.2;
			}
			
			&_description {
				font-size: 18px;
				line-height: 1.6;
				margin-bottom: 48px;
				color: #ffffff;
			}
			
			&_subheading {
				font-size: 32px;
				font-weight: 700;
				margin-bottom: 20px;
				color: #ffffff;
			}
			
			&_text {
				font-size: 16px;
				line-height: 1.7;
				color: #ffffff;
				
				p {
					margin-bottom: 20px;
					
					&:last-child {
						margin-bottom: 0;
					}
				}
			}
			
    &_stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
        margin-bottom: 20px;


    }


			
			&_stat-card {
				background-color: rgba(255, 255, 255, 0.1);
				backdrop-filter: blur(10px);
				border: 1px solid rgba(255, 255, 255, 0.2);
				border-radius: 12px;
				padding: 32px 24px;
				transition: all 0.3s ease;
				
				&:hover {
					background-color: rgba(255, 255, 255, 0.15);
					transform: translateY(-4px);
				}

        &.full{
          margin-bottom: 20px;
                }
			}
			
			&_stat-value {
				font-size: 48px;
				font-weight: 700;
				color: #ffffff;
				margin-bottom: 8px;
				line-height: 1;
			}
			
			&_stat-label {
				font-size: 22px;
				color: #ffffff;
				line-height: 1.4;
			}
			
			&_image {


				img {
    width: 20%;
    height: auto;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(20%);
				}

			}

	}

.proven-results_stat-card.full {

  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.proven-results_stat-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.proven-results_stat-logos {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.proven-results_stat-logos img {
  height: 14px;
  width: auto;
  object-fit: contain;
  display: block;
}


.prestaties {
  background-color: @donker_groen;
  padding: 80px 0;

  .prestaties_header {
    text-align: center;
    margin-bottom: 60px;
  }

  .prestaties_title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    margin: 0 0 20px 0;
  }

  .prestaties_description {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 700px;
  }

  .prestaties_toggle_intro {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 8px;
  }

  .prestaties_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .prestaties_toggle_label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
  }

  /* Switch */
  .prestaties_switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;

    .prestaties_toggle_input {
      opacity: 0;
      width: 0;
      height: 0;

      &:checked + .prestaties_switch_slider {
        background: linear-gradient(135deg, #FFC600 0%, #FFD133 100%);

        &:before {
          transform: translate(30px, -50%);
        }
      }
    }

    .prestaties_switch_slider {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, #ffc600 0%, #ffd133 100%);
      border: 1px solid #FFEDAD;
      box-shadow: 0 0 28px 0 rgba(255, 198, 0, 0.55);
      border-radius: 50px;
      transition: 0.4s;
      cursor: pointer;

      &:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 4px;
        top: 50%;
        transform: translateY(-50%);
        background-color: #fff;
        transition: 0.4s;
        border-radius: 50%;
      }
    }
  }

/* wrapper toggle */
.prestaties_slider_wrapper {
  position: relative;
  width: 100%;
  padding: 20px 70px;

  /* Fade: gebruik max-height + opacity, NIET height:0 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s, max-height 0s linear 0.4s;

  &.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 2000px; /* ruim genoeg voor elke slider hoogte */
    overflow: visible;  /* arrows mogen buiten de box uitsteken */
    transition: opacity 0.4s ease, visibility 0s linear 0s, max-height 0s linear 0s;
  }

.slick-prev { left: -50px; }
.slick-next { right: -50px; }

@media (max-width: 991px) {
  .slick-prev { left: -45px; }
  .slick-next { right: -45px; }
}

@media (max-width: 767px) {
  .slick-prev { left: -5px; }
  .slick-next { right: -5px; }
}
}
	.prestaties .slick-arrow {
  display: flex !important;
}

.prestaties .slick-prev {
  left: -50px !important;
}

.prestaties .slick-next {
  right: -50px !important;
}

  /* Slick spacing */
  .prestaties_slick {
    position: relative;

    .slick-track {
      display: flex;
    }

    .slick-slide {
      height: auto;
      display: flex !important;
      flex-direction: column;

      > div {
        height: 100%;
        display: flex;
        flex-direction: column;
      }
    }
  }

  .prestaties_slide {
    padding: 0 12px; /* ruimte tussen cards */
    box-sizing: border-box;
    height: 100%;
  }

  .prestaties_card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px 20px;
    margin: 0;
    box-sizing: border-box;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
  }

  .prestaties_card_title {
    color: #ffffff;
    font-size: 24px !important;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 32px !important;
    margin-bottom: 16px !important;
  }

  .prestaties_bullet {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #FFC600 0%, #FFD133 100%);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
  }

  .prestaties_card_description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px !important;
    line-height: 1.6;
    margin: 0;
  }

  .prestaties_toggle_label {
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.prestaties_toggle_label.active {
  opacity: 1;
}


  /* Slick arrows (we gebruiken slick's knoppen) */
  .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;

    &:hover {
      background-color: rgba(255, 255, 255, 0.3);
    }

    &.slick-disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }
  }

  

  .slick-prev { left: 0; }
  .slick-next { right: 0; }

  /* we verstoppen de standaard tekst + slick.less background-image override */
  .slick-prev:before,
  .slick-next:before {
    content: "";
    background-image: none !important;
    display: none !important;
  }

  /* custom svg in buttons */
  .prestaties_slick_arrow_icon {
    width: 24px;
    height: 24px;
    color: #07BA9B;
  }

  /* Slick dots */
  .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;

    li {
      margin: 0;
      padding: 0;

      button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.3);
        border: none;
        cursor: pointer;
        padding: 0;
        font-size: 0;
        transition: all 0.3s ease;
        font-size: 0 !important;
      }

      &.slick-active button {
        background: linear-gradient(135deg, #FFC600 0%, #FFD133 100%);
        width: 30px;
        border-radius: 999px;
        color: transparent;
      }
    }
  }


  @media (max-width: 991px) {
    padding: 60px 0;

    .prestaties_header { margin-bottom: 40px; }
    .prestaties_title { font-size: 36px; }
    .prestaties_description { font-size: 16px; }

    .prestaties_slider_wrapper { padding: 20px 60px; }

    .slick-arrow {
      width: 40px;
      height: 40px;
    }

    .prestaties_slick_arrow_icon {
      width: 20px;
      height: 20px;
    }
  }

  @media (max-width: 767px) {
    padding: 40px 0;

    .prestaties_header { margin-bottom: 30px; }
    .prestaties_title { font-size: 28px; }
    .prestaties_description { font-size: 15px; }

    .prestaties_toggle {
      flex-direction: column;
      gap: 10px;
    }

    .prestaties_card { padding: 30px 20px; }

    .prestaties_card_title { font-size: 20px; }
    .prestaties_card_description { font-size: 15px; }

    .prestaties_slider_wrapper { padding: 0 10px; }

    .slick-arrow {
      width: 36px;
      height: 36px;
    }

    .prestaties_slick_arrow_icon {
      width: 18px;
      height: 18px;
    }

    .slick-dots {
      margin-top: 20px;

      li button {
        width: 10px;
        height: 10px;
      }

      li.slick-active button {
        width: 24px;
      }
    }
  }
}


}

.timeline-slider {
  background: @groen;
  position: relative;
  overflow: hidden;
  
  
  &_wrapper {
    position: relative;
  }
  
  &_content {
    padding-right: 40px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out; // Reduced from 0.6s to 0.4s
  }
  
  &_year {
    color: #3dd6c5;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  &_title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  
  &_description {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  &_image-stack {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  &_arrow{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #fff;
  }
  
  &_image {
    position: absolute;
    width: 500px;
    height: auto;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    
    img {
      width: 100%;
      height: 600px;
      border-radius: 8px;
      object-fit: cover;
    }
    
    &::before,
    &::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      z-index: -1;
      background-size: cover;
      background-position: center;
      transition: all 0.8s ease-in-out 0s; 
	
    }
    
    &::before {
      background-image: var(--prev-image);
      transform: rotate(-7deg) translateX(-20px) translateY(-15px);
      opacity: 0.6;
    }
    
    &::after {
      background-image: var(--next-image);
      transform: rotate(7deg) translateX(20px) translateY(-15px);
      opacity: 0.4;
    }
  }
  
  &_navigation {
    display: flex;
    gap: 16px !important;
    margin-top: 40px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out; // Reduced from 0.6s to 0.4s
  }
  
  // Tablet styles
  @media (max-width: 991px) {
    &_content {
      padding-right: 0;
      margin-bottom: 40px;
      text-align: center;
    }
    
    &_title {
      font-size: 36px;
    }
    
    &_description {
      font-size: 16px;
    }
    
    &_image-stack {
      height: 500px;
    }
    
    &_image {
      width: 400px;
    }
    
    &_navigation {
      justify-content: center;
    }
  }
  
  // Mobile styles
  @media (max-width: 767px) {  // spacing (met correcte fallback)
  padding-top: var(--padding-top-mobile, unset) !important;
  padding-bottom: var(--padding-bottom-mobile, unset) !important;
  margin-top: var(--margin-top-mobile, unset) !important;
  margin-bottom: var(--margin-bottom-mobile, unset) !important;

  &_image-stack {
    height: 380px; 
  }

  &_image {
    width: 240px;

    img {
      height: 360px;
      padding: 6px;
      padding-bottom: 24px;
    }

    &::before {
      transform: rotate(-6deg) translateX(-12px) translateY(-8px);
    }

    &::after {
      transform: rotate(6deg) translateX(12px) translateY(-8px);
    }
  }

  &_arrow {
    width: 40px;
    height: 40px;
  }
  }
}

.slick-slide {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; // Reduced from 0.8s to 0.5s
}

.slick-active {
  .timeline-slider_content,
  .timeline-slider_navigation {
    animation: fadeIn 0.4s ease-in-out forwards; // Reduced from 0.6s to 0.4s
  }
}

.slick-slide.animate-slide-right .timeline-slider_image {
  animation: slideInFromRight 0.5s ease-in-out forwards 0s !important; // Reduced from 0.8s to 0.5s
}

.slick-slide.animate-slide-left .timeline-slider_image {
  animation: slideInFromLeft 0.5s ease-in-out forwards 0s !important; // Reduced from 0.8s to 0.5s
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(150px) rotate(12deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-150px) rotate(-12deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}


// faq

.faq-block {
  background: @donker_groen;
  padding: var(--padding-desktop, 80px) 0;
  margin: var(--margin-desktop, 0) 0;
  max-height: none;

  @media (max-width: 1024px) {
    padding: var(--padding-tablet, 60px) 0;
    margin: var(--margin-tablet, 0) 0;
  }

  @media (max-width: 768px) {
    padding: var(--padding-mobile, 40px) 0;
    margin: var(--margin-mobile, 0) 0;
  }
}

.faq-container{
	position: relative;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 20px;

  @media (max-width: 768px) {
    font-size: 36px;
  }
}

.faq-description {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
  margin: 0 0 40px;

  @media (max-width: 768px) {
    font-size: 16px;
  }
}

/* ===== Toggle ===== */
.faq-toggle-intro {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 8px;
  text-align: center;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 60px;
}

.faq-toggle-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, opacity .25s ease;

  &.active {
    color: #ffffff;
    opacity: 1;
  }
}

/* Switch track */
.faq-toggle-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background: linear-gradient(180deg, #ffc600 0%, #ffd133 100%);
  border: 1px solid #FFEDAD;
  box-shadow: 0 0 28px 0 rgba(255, 198, 0, 0.55);
  border-radius: 16px;
  cursor: pointer;
  padding: 0;
  overflow: hidden; /* voor subtle shine */

  transition: filter .2s ease, transform .15s ease;

  &:hover {
    filter: brightness(1.03);
  }

  &:active {
    transform: translateY(1px);
position: relative;
  }

  &:focus-visible{
    outline: 2px solid rgba(255, 198, 0, 0.65);
    outline-offset: 3px;
  }

  &::after{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(120px 40px at 20% 20%, rgba(255,255,255,.22), transparent 55%);
    opacity: .65;
    pointer-events:none;
    transition: opacity .25s ease;
  }

  &:hover::after{
    opacity: .85;
  }
}

.faq-question-icon{
  filter: drop-shadow(0px 0px 14px #ffc600);
}

/* standaard: alle FAQ iconen iets transparant */
.faq-question .faq-question-icon {
  opacity: 0.6;
  transition: opacity 0.3s ease;
  padding: 0 20px;
}

/* actief item: icoon volledig zichtbaar */
.faq-item.active .faq-question .faq-question-icon {
  opacity: 1;
  padding: 0 20px;
}


/* Slider knob */
.faq-toggle-slider {
  position: absolute;
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  border-radius: 50%;

  /* smooth slide */
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(.2,.9,.2,1), box-shadow .2s ease;

  box-shadow: 0 10px 22px rgba(0,0,0,.25);

  /* als switch "active" wordt -> naar rechts */
  .faq-toggle-switch.active & {
    transform: translateX(28px);
  }

  /* mini pop/bounce op click (als je in JS even .anim togglet) */
  .faq-toggle-switch.anim &{
    animation: knobPop .28s ease;
  }
}

@keyframes knobPop{
  0%   { transform: translateX(var(--knob-x, 0px)) scale(1); }
  50%  { transform: translateX(var(--knob-x, 0px)) scale(1.08); }
  100% { transform: translateX(var(--knob-x, 0px)) scale(1); }
}

/* ===== FAQ sets: grid-overlay fade — geen positie-toggle, geen jump ===== */
.faq-sets {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  width: 100%;
}

.faq-set {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;

  &.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .35s ease, transform .35s ease, visibility 0s;
  }
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);

  &:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.faq-loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;

  .faq-item.active & {
    opacity: 1;
  }
}

.faq-loading-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #07ba9b 0%, #07ba9b 100%);
  box-shadow: 0 0 10px rgba(255, 198, 0, 0.5);
  transition: width 10s linear;

  &.no-transition {
    transition: none;
  }

  &.animating {
    width: 100%;
  }

  .faq-item.active.paused & {
    transition: none;
  }
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;

  @media (max-width: 768px) {
    font-size: 18px;
    padding: 20px 0;
  }

  &:hover {
    color: #ffffff;
  }

  .faq-item.active & {
    color: #ffffff;
  }
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.7);

  .faq-item.active & {
    transform: rotate(180deg);
    color: #ffffff;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;

  .faq-item.active & {
    max-height: 1000px;
    opacity: 1;
  }
}

.faq-answer-content {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);

  ul {
    list-style-type: none;
    padding: 0;
    margin: 0;

    li {
      position: relative;
      margin-left: 24px;

      &:after {
        content: '';
        position: absolute;
        left: -24px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 20px;
        background-image: url('../images/check.svg');
        background-size: contain;
        background-repeat: no-repeat;
      }
    }
  }
  
  ol {
    list-style-type: none;
    padding: 0;
    margin: 0;

    li {
      position: relative;
      margin-left: 24px;

      &:after {
        content: '';
        position: absolute;
        left: -24px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 20px;
        background-image: url('../images/arrow.svg');
        background-size: contain;
        background-repeat: no-repeat;
      }
    }
  }

  @media (max-width: 768px) {
    font-size: 15px;
    padding: 0 0 20px;
  }

  p {
    margin: 0 0 12px;

    &:last-child {
      margin-bottom: 0;
    }
  }
}



.double-gallery-slider {
  position: relative;
  overflow: hidden;

  /* ✅ echte achtergrondkleur */
  background-color: #033028;

  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;

    /* kies 1: of clamp, of percentage — niet allebei */
    width: clamp(80px, 14vw, 240px);

    z-index: 10;
    pointer-events: none;
  }

  /* Fade links */
  &::before {
    left: 0;
    background: linear-gradient(
      90deg,
      #033028 50%,
      rgba(3, 48, 40, 0.85) 75%,
      rgba(3, 48, 40, 0) 100%
    );
  }

  /* Fade rechts */
  &::after {
    right: 0;
    background: linear-gradient(
      270deg,
      #033028 50%,
      rgba(3, 48, 40, 0.85) 75%,
      rgba(3, 48, 40, 0) 100%
    );
  }

  /* Zorg dat ALLE content onder de fade zit */
  > * {
    position: relative;
    z-index: 1;
  }

  .gallery-heading {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
  }

  .gallery-slider {
    width: 100%;
    margin-bottom: 24px;

    &:last-child {
      margin-bottom: 0;
    }

    .slick-track {
      display: flex;
      gap: 24px;
    }

    .slick-slide {
      margin: 0 12px;
    }
  }

  .gallery-item {
    background-color: rgba(25, 87, 76, 0.5);
    border-radius: 16px;
    padding: 60px 40px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;

    span {
      color: #ffffff;
      font-size: 24px;
      font-weight: 400;
      white-space: nowrap;
      text-align: center;
    }
  }

  // Tablet
  @media (max-width: 991px) {
    padding: 60px 0;

    .gallery-heading {
      font-size: 36px;
      margin-bottom: 40px;
    }

    .gallery-item {
      width: max-content;
      padding: 50px 30px;

      span {
        font-size: 20px;
      }
    }
  }

  // Mobile
  @media (max-width: 767px) {
    .gallery-heading {
      font-size: 28px !important;
      margin-bottom: 30px !important;
      padding: 0 20px !important;
    }

    .gallery-slider {
      margin-top: 24px;
      margin-bottom: 16px;

      .slick-track {
        gap: 16px;
      }

      .slick-slide {
        margin: 0 8px;
      }

      .slick-list {
        overflow: hidden;
      }
    }

    .gallery-item {
      width: max-content;
      padding: 40px 24px;

      span {
        font-size: 18px;
      }
    }

    /* ✅ MOBIEL: fade blijft aan, maar smaller (en duidelijker) */
    &::before,
    &::after {
      content: "";
      width: clamp(48px, 18vw, 120px);
    }

    &::before {
      background: linear-gradient(
        90deg,
        #033028 0%,
        rgba(3, 48, 40, 0.85) 55%,
        rgba(3, 48, 40, 0) 100%
      );
    }

    &::after {
      background: linear-gradient(
        270deg,
        #033028 0%,
        rgba(3, 48, 40, 0.85) 55%,
        rgba(3, 48, 40, 0) 100%
      );
    }
  }
}

/* Buiten de component (globale helpers) */
.gallery-slider {
  margin-top: 24px;
}

.gallery-slider .slick-list {
  overflow: hidden;
}


//3 points

.my-approach {
      background: linear-gradient(180deg, #033028, #000);
  position: relative;
  color: #ffffff;

  .my-approach-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;

    @media (max-width: 991px) { font-size: 40px; }
    @media (max-width: 767px) { font-size: 32px; }
  }

  .my-approach-subheading {
    font-size: 20px;
    margin-bottom: 80px;

    @media (max-width: 991px) {
      font-size: 18px;
            margin-bottom: 10px;

    }

    @media (max-width: 767px) {
      font-size: 16px;
      margin-bottom: 10px;
    }
  }

  .my-approach-diagram {
    margin-top: 40px;
  }

  .diagram-svg {
    display: block;
    margin: 0 auto;
    width: 69%;
    transform: translateY(3px);
    position: relative;
    z-index: 2;
  }

  .diagram-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }

  .center-point {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: #fff; // zoals screenshot (pas aan als je #07ba9b wil)
    border-radius: 50%;
    z-index: 3;
  }

  .connecting-lines {
    position: absolute;
    top: 6px;      // net onder de dot
    left: 0;
    width: 100%;
    height: 240px; // match met viewBox hoogte
    z-index: 1;
    pointer-events: none;

    @media (max-width: 767px) {
      display: block !important;
    }

    .line {
      stroke: rgba(255,255,255,0.85); // of #07ba9b
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;

      // start state (nog niet getekend)
      stroke-dasharray: 1400;
      stroke-dashoffset: 1400;
      animation: none;
    }
  }

  .pillars-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;

    @media (max-width: 991px) {
      gap: 30px;
      margin-top: 60px;
    }

    @media (max-width: 767px) {
      flex-direction: column;
      align-items: center;
      margin-top: 40px;
    }
  }

  

  .pillar {
    flex: 1;
    text-align: center;

    opacity: 0;
    transform: translateY(10px);

    @media (max-width: 767px) {
      max-width: 400px;
    }
  }

.connecting-lines .line.is-drawing {
  animation: draw-line 1.2s ease-out forwards;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}


  .pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border: 2px solid #ffc600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;

    img {
      width: 80px;
      height: 80px;
      filter: brightness(0) saturate(100%) invert(82%) sepia(62%) saturate(1647%) hue-rotate(359deg) brightness(104%) contrast(104%);
    }

    @media (max-width: 991px) {
      width: 70px;
      height: 70px;

      img {
        width: 70px;
        height: 70px;
      }
    }
  }

  .pillar-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;

    @media (max-width: 991px) { font-size: 24px; }
    @media (max-width: 767px) { font-size: 22px; }
  }

  .pillar-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;

    @media (max-width: 991px) { font-size: 15px; }
    @media (max-width: 767px) { font-size: 14px; }
  }

  // keyframes
  @keyframes drawLine {
    to { stroke-dashoffset: 0; }
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  &.is-visible {

    .pillar, .diagram-svg {
      animation: fadeInUp 0.5s ease-out 1.3s forwards;
    }

    .diagram-svg .svg-dot {
      animation: dotIn 450ms ease forwards;
    }

    .diagram-svg .svg-draw {
      animation: draw 900ms ease forwards; 
    }
  }
}

@media (max-width: 767px) {
  .my-approach .pillar {
    opacity: 1 !important;
    transform: none !important;
  }
}

.page_content .proven-results_stat-logos img{
	font-size: 22px;
}

.footer-cta{
  border-top: 1px solid #19574C; /* subtiele groene lijn */
  position: relative;
  padding: 150px 0;
  background: url("https://bokitosales.helloitsme.website/wp-content/uploads/2025/12/Gorilla-scaled.webp") center/cover no-repeat;
  overflow: hidden;
}

.footer-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.85);
  z-index:0;
}


.footer-cta .container{
  position: relative;
  z-index: 1;
}

.footer-cta .footer-titel{
  text-align: center;
}

.footer-cta_inner{
  text-align: left;
}

/* Headline */
.footer-cta .footer-titel h2{
  color:#fff;
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 26px;
  font-weight: 800;
}

.footer-cta .footer-titel h2 span{
  display:block;
  margin-top: 6px;
  color: @groen_licht;
}

/* ===== Gravity Forms reset-ish ===== */
.footer-cta .gform_wrapper{
  margin: 0;
}

.footer-cta .gform_body{
  margin: 0;
}

.footer-cta .gform_fields{
  row-gap: 12px !important;
}

.gform_heading {
  display: none !important;
}

/* labels verbergen (we gebruiken placeholders zoals screenshot) */
.footer-cta .gfield_label{
  color: #fff !important;
  font-weight: 100 !important;
}

/* Inputs pill */
.footer-cta .ginput_container input[type="text"],
.footer-cta .ginput_container input[type="email"],
.footer-cta .ginput_container input[type="tel"],
.footer-cta .ginput_container textarea{
  width: 100%;
  height: 56px;
  border-radius: 8px;
  border: 0;
  outline: none;
  padding: 0 22px;
  background: #fff;
  color: #111;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,.20);
}

.footer-cta .ginput_container textarea{
  height: 120px;
  border-radius: 28px;
  padding-top: 16px;
}

/* placeholder kleur */
.footer-cta input::placeholder,
.footer-cta textarea::placeholder{
  color: #8c8c8c;
}

/* focus state */
.footer-cta .ginput_container input:focus,
.footer-cta .ginput_container textarea:focus{
  box-shadow: 0 0 0 3px rgba(25,179,166,.35), 0 10px 25px rgba(0,0,0,.25);
}

/* Submit button pill + glow */
.footer-cta .gform_footer{
  margin-top: 10px;
  padding: 0;
  justify-content: center;
}

.gform_button{
  width: 100% !important;
  height: 58px!important;
  border-radius: 999px!important;
  border: 0!important;
  cursor: pointer!important;
  font-weight: 800!important;
  letter-spacing: .2px!important;
  background: #ffcc00!important;
  color: #111!important;
  box-shadow: 0 0 30px rgba(255,204,0,.55) !important;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease !important;
}

.footer-cta .gform_footer input[type="submit"]:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(255,204,0,.70);
  filter: brightness(1.02);
}

/* validation (optioneel) netjes */
.footer-cta .validation_message,
.footer-cta .gfield_validation_message,
.footer-cta .validation_error{
  color: #fff !important;
  background: rgba(255, 60, 60, .18);
  border: 1px solid rgba(255, 60, 60, .35);
  padding: 10px 14px;
  border-radius: 12px;
} 

/* ========== Footer Bottom Bar ========== */
.footer-bar{
  /* Achtergrond opties (standaard: kleur) */
  --footer-bg: #070707;                 /* fallback kleur */
  --footer-bg-image: none;              /* vul jij in via inline style */
  --footer-overlay: rgba(0,0,0,.7);     /* overlay bovenop image */

  position: relative;
  padding: 18px 0;
  border-top: 1px solid #19574C;
  color: #fff;

  background: var(--footer-bg);
  background-image: var(--footer-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-bar::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--footer-overlay);
  pointer-events: none;
}

.footer-bar__inner{
  position: relative; /* boven overlay */
  gap: 18px;
  align-items: center;
}

.footer-bar__brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer-bar__logo img{
  width: 100%;
  display: block;
}



.footer-bar__brandtext{
  line-height: 1.05;
}
.footer-bar__name{
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 12px;
}
.footer-bar__tag{
  opacity: .85;
  font-size: 11px;
  letter-spacing: .12em;
}

.footer-bar__contact{
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bar__item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  opacity: .95;
}

.footer-bar__item:hover{
  opacity: 1;
}

.footer-bar__icon{
  font-size: 16px;
}

.footer-bar__links{
  color: ;
  display: flex;
  justify-content: flex-end;
  text-decoration: underline;
}

.footer-bar__link{
  color: #f2c100; /* geel zoals in je screenshot */
  text-decoration: underline !important;
  text-decoration-color: #f2c100 !important;
  font-size: 12px;
}

.footer-bar__link:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px){
  .footer-bar__inner{
    text-align: center;
  }
  .footer-bar__brand{
    justify-content: center;
  }
  .footer-bar__links{
    justify-content: center;
  }
}

.page_content .prestaties .slick-arrow{
  background-color: #19574C !important;
}

.page_content .prestaties .prestaties_toggle_intro {
  margin-left: 1%;
}

/* mobiel */
@media (max-width: 600px){
  .footer-cta{
    padding: 55px 0;
  }
  .footer-cta_inner h2{
    font-size: 28px;
  }
}


.gform-theme--framework .gfield--type-choice .gfield_checkbox, .gform-theme--framework .gfield--type-choice .gfield_radio{
  display: flex;
  flex-direction: row !important;
  gap: 24px !important;
}

.gform-theme--framework .gform-field-label--type-inline{
	color: #fff !important;
	font-size: 16px !important;
}
/*---------------------------------------------------------------------- Responsive ----------------------------------------------------------------------*/

@media only screen and (min-width: 960px) and (max-width: 1199px) {
	


}

@media only screen and (max-width: 992px) {
	
			  #header{
		    background-color: #000 !important;
	  }

    .diagram-svg {
    display: none !important;
  }

}

@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 480px) {

}

// svg animatie:

.diagram-svg .svg-dot{
  opacity: 0;
  transform-origin: center;
  transform: scale(0.8);
}

/* Draw setup */
.diagram-svg .svg-draw{
  stroke-dasharray: var(--dash, 999);
  stroke-dashoffset: var(--dash, 999);
}

/* Middenlijn na dot */
.diagram-svg .svg-mid{
  animation-delay: 700ms;
  transform: rotate(180deg) translateY(-4px);
transform-origin: center;
}
/* Split links + rechts tegelijk (na middenlijn) */
.diagram-svg .svg-left,
.diagram-svg .svg-right{
  animation-delay: 950ms;
}

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes dotIn { to { opacity: 1; transform: scale(1); } }

@media (max-width: 767px) {
  .proven-results_image {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .my-approach .pillar {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

.prestaties_slider {
  touch-action: pan-y; /* laat verticaal scrollen toe, horizontaal = slider */
  cursor: grab;
  transition: transform 250ms ease; /* optioneel, voor smooth snap */
}
.prestaties_slider_wrapper.is-dragging .prestaties_slider {
  cursor: grabbing;
}


@media (max-width: 767px) {
  .mobile_padding {
    padding-top: var(--padding-top-mobile, unset) !important;
    padding-bottom: var(--padding-bottom-mobile, unset) !important;
    margin-top: var(--margin-top-mobile, unset) !important;
    margin-bottom: var(--margin-bottom-mobile, unset) !important;
  }
}
}


.whatsapp-sticky {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: rgba(25, 87, 76, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.gform_validation_errors h2.gform_submission_error,
.gform_validation_errors .gform_submission_error,
.gfield_validation_message,
.validation_message,
.gform_wrapper .gfield_description.validation_message {
  font-size: 12px !important;
  line-height: 1.4;
}

.gform-theme--framework .gform_validation_errors .gform_submission_error{
  	font-size: 12px !important;
	line-height: 1rem !important;
}

.gform-theme--framework .gform_validation_errors .gform-icon{
	display: none !important;
}