/*!
Theme Name: Brandeniers starter
Theme URI: https://brandeniers.nl
Author: Brandeniers
Description: Een starter thama
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: brandeniers
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =============================================================================
   INHOUDSOPGAVE
   1.  CSS VARIABELEN
   2.  GLOBAL RESET
   3.  TYPOGRAFIE
   4.  LAYOUT HULPKLASSEN
   5.  KNOPPEN
   6.  HEADER & NAVIGATIE
       6a. Top bar
       6b. Hoofdnavigatie
       6c. Dropdown menu (desktop)
       6d. Mobiel menu toggle & overlay
   7.  HERO & TEKST-AFBEELDING SECTIES
   8.  CONTENT COMPONENTEN
       8a. Breadcrumbs
       8b. Expertise cards
       8c. Feature row
       8d. About sectie
       8e. Icon row
       8f. Insights
       8g. Logo cloud
       8h. Downloads
       8i. Partner worden
   9.  CTA BANNER
   10. FORMULIEREN (Gravity Forms)
   11. FOOTER
       11a. Footer top
       11b. Footer main
       11c. Footer newsletter
       11d. Footer kolommen & bottom
   12. GROTE SCHERMEN (min-width: 1921px)
   ============================================================================= */

/* =============================================================================
   1. CSS VARIABELEN
   ============================================================================= */

:root {
  /* Neutraal/Zwart & Wit */
  --color-zwart: #171717;
  --color-grijs: #ededed;
  --color-wit: #ffffff;
 --flexibele-body: 1600px;

  /* Tekst kleuren */
  --color-tekst-zwart: #171717;
  --color-tekst-wit: #ffffff;

  /* Primaire kleuren */
  --color-goud: #c69c6c;
  --color-goud-rgb: 198, 144, 108;
  --color-blauw: #6aa0ba;
  --color-blauw-rgb: 106, 160, 138;

  /* Kleur verlopen */
  --gradient-goud-zwart: linear-gradient(to right, #c6906c 0%, #171717 100%);
  --gradient-blauw-zwart: linear-gradient(to right, #6aa0ba 0%, #171717 100%);
  --gradient-blauw-lichtblauw: linear-gradient(
    to left,
    #6aa0ba 0%,
    #1a4462 100%
  );
  --gradient-lichtblauw-blauw: linear-gradient(
    to right,
    #6aa0ba 0%,
    #1a4462 100%
  );

  /* Font families */
  --font-primary: "Barlow", sans-serif;
  --font-headings: "Barlow Condensed", sans-serif;

/* Desktop Typography */
--font-size-h1: 56px;
--line-height-h1: 1.1em;
--font-size-h2: 44px;
--line-height-h2: 1.2em;
--font-size-h3: 28px;
--line-height-h3: 1.2em;
--font-size-h4: 20px;
--line-height-h4: 1.4em;
--font-size-button: 14px;
--font-size-menu: 14px;
--font-size-body: 16px;
--line-height-body: 1.4em;
/* Mobile Typography */
--font-size-h1-mobile: 32px;
--line-height-h1-mobile: 1.2em;
--font-size-h2-mobile: 24px;
--line-height-h2-mobile: 1.2em;
--font-size-h3-mobile: 24px;
--line-height-h3-mobile: 1.2em;
--font-size-h4-mobile: 16px;
--line-height-h4-mobile: 1.4em;
--font-size-button-mobile: 12px;
--font-size-menu-mobile: 14px;
--font-size-body-mobile: 14px;
--line-height-body-mobile: 1.4em;
/* Font weights */
--font-weight-medium: 500;
--font-weight-semibold: 600;
--container-width: 1400px;
}

/* =============================================================================
   2. GLOBAL RESET
   ============================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  text-wrap-style: balance;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}




body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: var(--line-height-body);
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  color: var(--color-tekst-zwart);
  background-color: var(--color-wit);
/*   overflow-x: hidden; */
}

@media all and (max-width: 981px) {
	body {
		  overflow-x: hidden; 
	}
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a:-webkit-any-link {
  color: var(--color-zwart);
  text-decoration: none;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

hr {
  color: var(--color-blauw);
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =============================================================================
   3. TYPOGRAFIE
   ============================================================================= */

h1 {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-headings);
  text-transform: uppercase;
  letter-spacing: normal;
}

h2 {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-headings);
  text-transform: uppercase;
  letter-spacing: normal;
}

h3 {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-headings);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h4 {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-headings);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

p {
	text-wrap-style: pretty;
}

@media (max-width: 768px) {
  h1 {
    font-size: var(--font-size-h1-mobile);
    line-height: var(--line-height-h1-mobile);
  }

  h2 {
    font-size: var(--font-size-h2-mobile);
    line-height: var(--line-height-h2-mobile);
  }

  h3 {
    font-size: var(--font-size-h3-mobile);
    line-height: var(--line-height-h3-mobile);
  }

  h4 {
    font-size: var(--font-size-h4-mobile);
    line-height: var(--line-height-h4-mobile);
  }

  body {
    font-size: var(--font-size-body-mobile);
    line-height: var(--line-height-body-mobile);
  }
	
}

/* =============================================================================
   4. LAYOUT HULPKLASSEN
   ============================================================================= */

.container {
  /* max-width: var(--container-width); */
  max-width: 90%;
  width: 90%;
  margin: 0 auto;
}

section {
  position: relative;
  padding: 70px 0;
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--color-wit);
}

.highlight-blue {
  color: var(--color-blauw);
}

.highlight-gold {
  color: var(--color-goud);
}

.bg-gray,
.section-bg-light {
  background-color: var(--color-grijs);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 70px;
}

.section-header.left-align {
  text-align: left;
  max-width: 100%;
  margin: 0;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--color-tekst-zwart);
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .section-header-flex {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* Grijze sectie afbreekeffect */
.grijze-sectie-afbreek.rechts-afbreken {
  background-color: var(--color-grijs);
  margin-right: clamp(0px, 5vw, 96px);
  border-radius: 0 15px 15px 0px;
}

.grijze-sectie-afbreek.links-afbreken {
  background-color: var(--color-grijs);
  margin-left: clamp(0px, 5vw, 96px);
  border-radius: 15px 0px 0px 15px;
}

.vier-nul-vier {
	margin-bottom: 70px;
}

/* =============================================================================
   5. KNOPPEN
   ============================================================================= */

.button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
	font-size: 16px;
	    min-width: 215px;
    text-align: center;
}

.button.button-primary,
.gform_button {
  background-color: var(--color-goud);
  color: #fff;
  border: 1px solid var(--color-goud);
}

.button.button-primary:hover,
.gform_button:hover {
  background-color: #e6c198;
  color: #fff;
  border: 1px solid #e6c198;
}

.button.button-secondairy {
  color: #fff;
  background-color: var(--color-blauw);
}

.button.button-secondairy:hover {
  color: #fff;
  background-color: #9fb9c6;
}

.menu-cta {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
  background-color: var(--color-goud);
  color: #fff;
}
@media all and (min-width: 1400px) {
#menu-item-1060 {
	margin-right: 10vw;
}

}

@media all and (max-width: 1600px) {
	.top-bar-content {
		font-size: 14px;
	}
	}
@media all and (max-width: 1399px) {
	.top-bar-content {
		font-size: 12px;
	}
	}

.menu-cta:hover {
  background-color: #e6c198;
}

.menu-cta a,
.menu-cta:hover a {
  color: #fff !important;
	    
}

@media (min-width: 768px) {
	
.menu-cta a,
.menu-cta:hover a {
	font-size: var(--font-size-body)!important;
}
}

@media (max-width: 767px) {
  .button {
    font-size: 15px;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }
}

/* =============================================================================
   6. HEADER & NAVIGATIE
   ============================================================================= */

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* --- 6a. Top bar --- */

.top-bar {
  background: var(--gradient-lichtblauw-blauw);
  color: var(--color-wit);
  padding: 27px 0;
  font-size: var(--font-size-body);
  border-radius: 0px 0px 0px 10px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-item:before {
  content: "";
  background-image: url(/wp-content/uploads/2026/02/check-cfo.svg);
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: -5px;
}

@media (max-width: 1200px) {
  .top-bar-content {
    gap: 10px;
    font-size: 12px;
  }
}

/* Mobiele USP rotatie */
@media (min-width: 981px) {
  .mobile-usp-bar {
    display: none;
  }
}

@media (max-width: 980px) {
  .mobile-usp-container {
    width: 100%;
    min-width: 100%;
  }

  .mobile-usp-container .top-bar-content {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    position: relative;
    overflow: hidden;
  }

  .mobile-usp-container .top-bar {
    border-radius: 0px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .mobile-usp-container .top-bar-item {
    position: absolute;
    left: 0;
    right: 0;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }

  .mobile-usp-container .top-bar-item.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
  }

  .top-bar .mobile-usp-container {
    border-radius: 0px !important;
  }
}

/* --- 6b. Hoofdnavigatie --- */

.main-navigation {
  background-color: var(--color-wit);
  padding-left: clamp(0px, 5vw, 96px);
}

.nav-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  width: 100%;
  max-width: var(--flexibele-body);
}

.logo img {
  padding-top: 27px;
  padding-bottom: 27px;
}

.logo-text {
  font-weight: 800;
  font-size: 24px;
  color: var(--color-zwart);
  letter-spacing: 1px;
}

.menu-right-bar {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

header .nav-links {
  display: flex;
  column-gap: 30px;
  margin-right: clamp(0px, 5vw, 96px);
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--color-blauw);
  row-gap: 12px;
	padding-left: 0px;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-zwart);
  transition: color 0.3s ease;
	font-size: 19px;
	
}

.nav-links a:hover {
  color: var(--color-blauw);
}

@media (max-width: 980px) {
  .main-navigation {
    padding-left: 0px !important;
  }

  .nav-content {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
    max-width: 90%;
  }

  .logo img {
    max-width: 280px;
    width: 40vw;
  }

  .menu-right-bar {
    display: none;
  }

  .nav-links {
    gap: 15px;
  }
}

/* --- 6c. Dropdown menu (desktop) --- */

.nav-links .menu-item-has-children {
  position: relative;
}

.nav-links .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

.nav-links .menu-item-has-children:hover > a::after {
  transform: rotate(-135deg);
}

.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-wit);
  min-width: 220px;
  padding: 10px 0;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  z-index: 100;
}

.nav-links .menu-item-has-children:hover > .sub-menu {
  display: block;
}

.nav-links .sub-menu li {
  padding: 0;
}

.nav-links .sub-menu a {
  display: block;
  padding: 8px 20px;
  white-space: nowrap;
  font-size: 0.85em;
}

.nav-links .sub-menu a:hover {
  background-color: var(--color-grijs, #f5f5f5);
}

/* --- 6d. Mobiel menu toggle & overlay --- */

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-blauw);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--gradient-blauw-lichtblauw);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu-overlay.is-open {
  transform: translateX(0);
}

.mobile-menu-inner {
  padding: 80px 32px 40px;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-wit, #fff);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-links li {
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  position: relative;
    width: 80%;
    margin: auto;

}

.mobile-nav-links li a {
  display: block;
  color: var(--color-wit, #fff);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
    padding: 16px 0px 16px 0;
    letter-spacing: 0.02em;
    text-align: center;



}

.mobile-nav-links li a {
  padding-right; 1
}

.mobile-nav-links .dropdown-toggle {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  /* background-color: var(--color-goud, #c9a96e); */
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.25s;
  /* background: white; */
  border-radius: 100%;
  color: white;
}

.mobile-nav-links .dropdown-toggle.open {
  transform: rotate(180deg);
}

.mobile-nav-links .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 16px;
  display: none;
}

.mobile-nav-links .sub-menu.is-open {
  display: block;
}

.mobile-nav-links .sub-menu li {
  border-bottom: none;
}

.mobile-nav-links .sub-menu li a {
  font-weight: 700;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
}

.mobile-nav-links .menu-cta {
  margin-top: 54px;
  width: 100%;
}

@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
  }
}

/* =============================================================================
   7. HERO & TEKST-AFBEELDING SECTIES
   ============================================================================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;

}

@media all and (min-width: 981px) {
	.hero {
	min-height: 650px;
}
}

.hero-bg-wrapper > div {
  margin-right: 0px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.home .hero .hero-grid {
  grid-template-columns: 1fr 2fr;
}

.tekst-afbeelding-speciaal.links-afbreken .hero-grid {
  grid-template-columns: 2fr 1fr;
}

.tekst-afbeelding-speciaal.rechts-afbreken .hero-grid {
  grid-template-columns: 1fr 2fr;
}

/* Hero content */
.hero-content,
.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content-wysiwyg h1,
.hero-content-wysiwyg h2,
.hero-content-wysiwyg h3,
.hero-content-wysiwyg h4,
.feature-content-wysiwyg h1,
.feature-content-wysiwyg h2,
.feature-content-wysiwyg h3,
.feature-content-wysiwyg h4 {
  margin-bottom: 25px;
}


.hero-content-wysiwyg h4:before,
.feature-content-wysiwyg h4:before {
  background-image: url(/wp-content/uploads/2026/02/pijltje-koers.svg);
  height: 1em;
  width: 1em;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  top: 3px;
  position: relative;
}




.feature-content-wysiwyg p:not(:last-child),
.hero-content-wysiwyg p:not(:last-child) {
    padding-bottom: 12px;
}

.hero-content-wysiwyg ul,
.feature-content-wysiwyg ul {
  list-style: none;
}

.hero-content-wysiwyg ul li:before,
.feature-content-wysiwyg ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--color-blauw);
  position: absolute;
  display: block;
  margin-left: -29px;
  margin-top: 10px;
}

.hero-content-wysiwyg ul li:not(:last-child),
.feature-content-wysiwyg ul li:not(:last-child) {
  padding-bottom: 12px;
}

.feature-actions,
.hero-actions {
  margin-top: 35px;
}

.hero-description {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-tekst-zwart);
  max-width: 400px;
  margin-bottom: 40px;
}

.arrow {
  color: var(--color-blauw);
  font-size: 1.5rem;
  line-height: 1;
}

/* Hero afbeelding uitbreekeffect */
.grijze-sectie-afbreek.rechts-afbreken .hero-image {
  position: relative;
  margin-right: -25%;
}

.grijze-sectie-afbreek.links-afbreken .hero-image {
  position: relative;
  margin-left: -25%;
}

.grijze-sectie-afbreek.links-afbreken .hero-image img {
  border-radius: 0 15px 15px 0px;
  width: 100%;
}

.grijze-sectie-afbreek.rechts-afbreken .hero-image img {
  border-radius: 15px 0px 0px 15px;
  width: 100%;
}

/* Cases archief */
.cases-archive.has-breadcrumbs:before {
  content: "";
  background-color: var(--color-grijs);
  width: 95vw;
  height: 50vh;
  top: 0px;
  left: 0px;
  position: absolute;
  border-radius: 0px 15px 15px 0px;
  z-index: -1;
}

.cases-header {
  margin-bottom: 27px;
}

.cases-header-row .button {
  width: fit-content !important;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .hero.grijze-sectie-afbreek.rechts-afbreken .hero-content {
    order: 2;
  }
}

/* =============================================================================
   8. CONTENT COMPONENTEN
   ============================================================================= */

/* --- 8a. Breadcrumbs --- */

@media all and (min-width: 981px) {
  .breadcrumbs-mobiel {
    display: none;
  }

  .breadcrumbs {
    margin-bottom: 25px;
  }
}
@media all and (max-width: 980px) {
  .breadcrumbs-desktop {
    display: none;
  }
}

 span.breadcrumb-pijltje
 {
	display: none;
}


div.breadcrumbs > span > span:nth-child(3):before {
content: ">";
    display: inline-block;
    margin-right: 5px;
    opacity: .5;
}

.breadcrumbs a {
  opacity: 0.5 !important;
}

.breadcrumbs .breadcrumb_last {
  display: block;
  font-size: var(--font-size-h4);
  text-transform: uppercase;
  font-family: var(--font-headings);
  margin-top: 12px;
}

.breadcrumbs .breadcrumb_last:before {
  background-image: url(/wp-content/uploads/2026/02/pijltje-koers.svg);
  height: 1em;
  width: 1em;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;

  top: 3px;
  position: relative;
	content:""!important;
	display: inline-block!important;
}

/* --- 8b. Expertise cards --- */

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.expertise-card {
  background-color: var(--color-grijs);
  padding: 40px;
  border-radius: 15px;
  transition: transform 0.3s ease;
	
	    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.expertise-card .button {
  margin-top: 27px;
}

.card-icon-wrapper {
  margin-bottom: 25px;
  display: flex;
}

.card-title {
  margin-bottom: 15px;
}


@media (max-width: 980px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --- 8c. Feature row --- */

.feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.feature-image,
.feature-content {
  flex: 1;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.feature-section--no-padding-top {
  padding-top: 0;
}

.feature-section--small-padding-top {
  padding-top: 40px;
}

.feature-section--no-padding-bottom {
  padding-bottom: 0;
}

.feature-section--small-padding-bottom {
  padding-bottom: 40px;
}

.feature-row--no-padding {
  margin-bottom: 0;
}

@media all and (min-width: 981px) {
  .feature-row--reversed {
    flex-direction: row-reverse;
  }
}

@media (max-width: 980px) {
  .feature-row {
    flex-direction: column;
    gap: 30px;
  }

  .feature-content h2 {
    font-size: 28px;
  }
}

/* --- 8d. About sectie --- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.about-text {
  margin-bottom: 20px;
}

.about-actions {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-image {
    order: 2;
  }

  .about-content {
    order: 1;
  }
}

/* --- 8e. Icon row --- */

.icon-row {
  background-color: var(--color-wit);
  padding: 60px 0;
}

.icon-row-grid {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  align-content: flex-start;
}

.icon-item i {
  font-size: 40px;
  color: var(--color-blauw);
  margin-bottom: 15px;
}

.card-icon-wrapper img,
.icon-item img {
	max-width: 100px;
}

@media (max-width: 768px) {
  .icon-row-grid {
    justify-content: center;
  }
}

/* --- 8f. Insights --- */

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.insight-card {
  background-color: var(--color-wit);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.insight-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.insight-content {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.insight-title {
  font-size: 22px;
  margin: 0;
  max-width: 80%;
}

.insight-link {
  width: 50px;
  height: 50px;
  background-color: var(--color-goud);
  color: var(--color-wit);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.insight-link:hover {
  background-color: var(--color-zwart);
}

@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 8g. Logo cloud --- */

/* ── Desktop grid ── */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 40px;
  align-items: center;
  margin-top: 50px;
}

@media all and (min-width: 981px) {
  .logo-item {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-goud);
  }
  .logo-item:nth-last-child(-n + 5) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.logo-item img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  margin: 0 auto;
  max-width: 300px;
  width: 70%;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 981px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Hide/show ── */



@media (max-width: 767px) {
  .logo-grid {
    display: none;
  }
  .logo-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    overflow: hidden;
  }
}

/* ── Marquee base ── */
.logo-marquee {
  overflow: hidden;
  width: 100%;
}

.logo-marquee__track {
  display: flex;
  gap: 70px;
  width: max-content;
}

.logo-marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-marquee__item img {
  height: 80px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  object-fit: contain;
}

.logo-marquee.logo-marquee--left {
	border-bottom: 1px solid var(--color-goud);
	padding-bottom: 40px;

}

.logo-marquee-wrapper {
	gap: 40px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 980px) {

.logo-marquee__item img {
	height: 120px;
	}
	
}

/* ── Animations ── */
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.logo-marquee--left .logo-marquee__track {
  animation: marquee-left 120s linear infinite;
}
.logo-marquee--right .logo-marquee__track {
  animation: marquee-right 120s linear infinite;
}

/* ── Pause on hover ──
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; } */

/* ── Fade edges ── */
.logo-marquee-wrapper {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
/* --- 8h. Downloads --- */

.downloads ul {
  list-style: none;
  margin-top: 70px;
}

.downloads ul li {
  margin-left: 0px;
  padding-left: 0px;
  display: flex;
  border-bottom: 1px solid var(--color-blauw);
}

.downloads ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--color-blauw);
  position: absolute;
  display: block;
  margin-left: 0px;
  margin-top: 10px;
}

.downloads ul li:not(:last-child) {
  padding-bottom: 12px;
}

.downloads-item {
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.downloads-list {
  padding-left: 0;
}

.downloads-title {
  width: 100%;
}

.downloads-item a.downloads-title {
  margin-left: 27px;
}

.downloads-ext {
  opacity: 0.5;
  margin-right: 12px;
}

/* --- 8i. Partner worden --- */

.partner-worden-sectie {
  background: var(--gradient-blauw-lichtblauw);
  padding-bottom: 0px;
}

.partner-worden-sectie .feature-content-wysiwyg {
  color: white;
  position: relative;
}

.partner-worden-subtitel {
  width: 50%;
}

.partner-image-wrapper img {
  width: 600px;
  position: absolute;
  bottom: 0;
  right: -154px;
  object-fit: contain;
}

.partner-worden-column-form {
  padding-bottom: 70px;
}

@media all and (max-width: 980px) {
  .partner-person-img {
    display: none;
  }

  .partner-worden-subtitel {
    width: 100%;
  }
}

/* =============================================================================
   9. CTA BANNER
   ============================================================================= */

.cta-banner {
  background: url(/wp-content/uploads/2026/02/Rectangle-33-scaled.jpg);
  background-size: cover;
  background-position: center;
  padding: 0px 0;
  margin: 0 auto;
  margin-right: clamp(0px, 5vw, 96px);
  border-radius: 0 15px 15px 0px;
  margin-top: 70px;
}

.cta-container {
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: stretch;
  grid-template-columns: 2fr 1fr;
  position: relative;
  padding: 0px;
  color: #fff;
}

.cta-content {
  flex: 1;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
  align-content: center;
}

.cta-title {
  margin-bottom: 25px;
}

.cta-subtext {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.fase-slide-title:before,
.cta-subtext:before {
  content: "";
  background-image: url(/wp-content/uploads/2026/02/chevron-goud.svg);
  width: 14px;
  height: 18px;
  display: block;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
}

.fase-slide-title:before {
	  background-image: url(/wp-content/uploads/2026/02/pijltje-koers.svg);
}

.cta-arrow {
  margin-top: 5px;
  flex-shrink: 0;
}

.cta-image-wrapper {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
	    margin-left: -200px;
}

.cta-person-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.cta-person-img img {
  margin-top: -70px;
}

.cta-button:hover {
  background-color: #a3815a;
}

@media (max-width: 900px) {
  .cta-container {
    flex-direction: column;
    padding: 40px;
    padding-bottom: 0px;
  }

  .cta-content {
    margin-bottom: 40px;
  }

  .cta-subtext {
    justify-content: center;
  }

  .cta-title {
    font-size: 30px;
  }
	
	.cta-image-wrapper {
		    left: 100px;
	}
}

@media (max-width: 768px) {
  .cta-subtitle {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .cta-container {
    padding: 0px;
  }
}

/* =============================================================================
   10. FORMULIEREN (Gravity Forms)
   ============================================================================= */

.gform_required_legend {
  display: none;
}

.gfield_label {
  margin-bottom: 12px;
  display: none;
}

.gform-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

#gform_fields_1 input,
#gform_fields_1 textarea,
#gform_fields_3 input,
#gform_fields_3 textarea,
#gform_fields_4 input,
#gform_fields_4 textarea {
  width: 100%;
  border: none;
  border-radius: 5px;
  padding: 12px;
}

#gform_fields_3 {
  display: grid;
  grid-column-gap: 14px;
  grid-row-gap: 14px;
}

#gform_fields_1,
#gform_fields_4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 14px;
  grid-row-gap: 14px;
}

/* Grid area toewijzingen */
#field_1_6,
#field_4_6 {
  grid-area: 1 / 1 / 2 / 2;
}

#field_1_11,
#field_4_11 {
  grid-area: 1 / 2 / 2 / 3;
}

#field_1_8,
#field_4_8 {
  grid-area: 2 / 1 / 3 / 2;
}

#field_1_9,
#field_4_9 {
  grid-area: 2 / 2 / 3 / 3;
}

#field_1_10,
#field_4_10 {
  grid-area: 3 / 1 / 4 / 3;
}

#gform_confirmation_message_3,
#gform_confirmation_message_4 {
  color: white;
}

#gform_3 > div.gform-footer.gform_footer.top_label {
	justify-content: center;
}

/* Contactpagina formulier */
.contact-hero {
  background-color: var(--color-grijs);
}

.contact-hero .row-form {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
}

.contact-hero .row-form h2 {
  z-index: 2;
  position: relative;
}

.contact-hero .row-form h1 {
  padding-bottom: 70px;
}

.contant-toelichting {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--color-blauw);
}

@media all and (max-width: 980px) {
  .contact-hero .row-form {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   11. FOOTER
   ============================================================================= */

.site-footer {
  background-color: var(--color-wit);
    font-family: var(--font-primary);
}

.footer-container {
  margin: 0 auto;
}

/* --- 11a. Footer top --- */

.footer-top .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 40px;
  margin-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-top: 1px solid var(--color-goud);
}

.cta-banner + .site-footer .footer-top .container {
  border-top: none;
}

.footer-slogan h2 {
  text-align: right;
  margin: 0;
}

.footer-slogan span {
  color: var(--color-goud);
}

.social-icons {
  padding-top: 25px;
  padding-bottom: 25px;
	    display: flex;
    gap: 27px;

}

.social-icons img {
	width: 30px;
}

.social-links {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.social-links a {
  font-size: 24px;
  color: var(--color-zwart);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--color-blauw);
}

/* --- 11b. Footer main --- */

.footer-main {
  padding-bottom: 40px;
  background: var(--color-grijs);
}

.footer-main .container {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  column-gap: 10%;
  width: 100%;
  margin-right: clamp(0px, 5vw, 96px);
  max-width: 100%;
}

.footer-copy {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 12px;
}

/* --- 11c. Footer newsletter --- */

.footer-newsletter {
  background: var(--gradient-blauw-lichtblauw);
  padding: clamp(0px, 5vw, 96px);
  border-radius: 0px 15px 15px 0px;
  color: white;
  margin-top: -40px;
}

.footer-newsletter h4 {
  margin-bottom: 25px;
}

.newsletter-form input {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: none;
  margin-bottom: 15px;
}

.newsletter-form button {
  background-color: #b8946a;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
}

/* Oud newsletter box (behouden voor compatibiliteit) */
.newsletter-box {
  background-color: var(--color-blauw);
  color: var(--color-wit);
  padding: 40px;
  border-radius: 20px;
}

/* --- 11d. Footer kolommen & bottom --- */

.footer-column {
  padding-top: 70px;
}

.footer-column h3 {
  color: #b8946a;
  margin-bottom: 25px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #333;
}

.footer-h3 {
  font-size: 20px;
  margin-bottom: 25px;
}

.footer-links li,
.footer-contact-info li {
  margin-bottom: 15px;
}

.footer-links a {
  text-decoration: none;
  color: var(--color-tekst-zwart);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-blauw);
}

.footer-contact-info li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.footer-contact-info i {
  color: var(--color-blauw);
  margin-top: 5px;
}

.contact-details p {
  margin: 5px 0;
}

.contact-details .label {
  font-weight: bold;
  margin-right: 10px;
}

.footer-bottom {
  grid-column: 2 / -1;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-blauw);
  padding-top: 25px;
  margin-right: 10%;
}

@media all and (max-width: 980px) {
  .footer-column {
    padding-left: clamp(0px, 5vw, 96px);
    padding-right: clamp(0px, 5vw, 96px);
  }
  .footer-bottom {
    margin-left: clamp(0px, 5vw, 96px);
    margin-right: clamp(0px, 5vw, 96px);
    margin-top: 25px;
  }
}
@media all and (max-width: 479px) {
  .footer-column ul {
    grid-template-columns: 1fr;
  }
}

/* Oud bottom footer (behouden voor compatibiliteit) */
.bottom-footer {
  background-color: var(--color-grijs);
  padding: 20px 0;
  font-size: 14px;
}

.bottom-footer-content {
  display: flex;
  justify-content: space-between;
}

.bottom-footer a {
  color: var(--color-zwart);
  font-weight: var(--font-weight-semibold);
}

/* Pre-footer (behouden voor compatibiliteit) */
.pre-footer {
  padding: 60px 0;
  border-bottom: 1px solid var(--color-grijs);
}

.pre-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tagline-text {
  font-size: 28px;
  max-width: 600px;
  text-align: right;
}

/* Footer grid (oud, behouden voor compatibiliteit) */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
}

@media (max-width: 1024px) {
  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 980px) {
  .footer-top .container {
    display: grid;
    grid-template-columns: 1fr 3fr;
  }

  .footer-top .container h2 {
    padding-top: 0px;
    margin-top: 0px;
    text-align: right;
  }

  .footer-top .container {
    flex-direction: column;
  }

  .footer-main .container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-column: 1;
  }

  .footer-slogan h2 {
    text-align: left;
    margin-top: 20px;
  }

  .footer-main {
    padding-right: clamp(0px, 5vw, 96px);
  }
}

@media (max-width: 768px) {
  .pre-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .tagline-text {
    text-align: center;
    font-size: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .bottom-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* =============================================================================
   12. GROTE SCHERMEN (min-width: 1730px)
   ============================================================================= */

@media all and (min-width: 1500px) {
  body {
    max-width: var(--flexibele-body);
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .top-bar {
    border-radius: 0px 0px 10px 10px !important;
  }

  .grijze-sectie-afbreek {
    border-radius: 15px !important;
  }

  .grijze-sectie-afbreek .hero-image img {
    border-radius: 15px !important;
  }

  .cta-banner {
    border-radius: 15px !important;
  }

  .footer-newsletter {
    border-radius: 15px !important;
  }

  .quote-carousel-section {
    border-radius: 15px !important;
  }
}
