@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --color-primary: #f9f221;
    --color-primary-variant: #ff0000;
    --color-gray-0: #f3f6f7;
    --color-gray-50: #d6e1e6;
    --color-gray-100: #bdcdd4;
    --color-gray-200: #a0b2b9;
    --color-gray-300: #8ea3ac;
    --color-gray-400: #7a8b93;
    --color-gray-500: #5a6d75;
    --color-gray-600: #3f4d53;
    --color-gray-700: #2a3439;
    --color-gray-800: #182023;
    --color-gray-900: #080b0c;
    --color-danger: #c72156;
    --color-succes: #06c4c4;
    --color-info: #ffcd56;

    --transition: all 300ms ease;

    --radius-1: 0.4rem;
    --radius-2: 0.8rem;
    --radius-3: 1.2rem;
    --radius-4: 1.6rem;
    --radius-5: 2rem;
    --radius-6: 4rem;

    --container-w-lg: 84%;
    --container-w-md: 92%;

     --navbar-height: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    background: transparent;
    outline: 0;
    list-style: none;
    text-decoration: none;
    user-select: none;
}

html {
    font-size: 14px;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--color-gray-600);
    line-height: 1.6;
    background: var(--color-gray-50);
    font-weight: 500;
}

.container {
    width: var(--container-w-lg);
    margin-inline: auto;
}

a {
    color: var(--color-gray-900);
    transition: var(--transition);
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-gray-900);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}


.section[id] {
    scroll-margin: calc(var(--navbar-height) + 50rem);
}

.hero {
  padding-top: calc(var(--navbar-height) + 6rem);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.1rem;
}

h4 {
    font-size: 0.92rem;
}

h5 {
    font-size: 0.86rem;
}

h6 {
    font-size: 0.7rem;
}

button {
    cursor: pointer;
    transition: var(--transition);
}

.btn {
    display: inline-block;
    width: fit-content;
    padding: 1.3rem 2.5rem;
    background: var(--color-gray-0);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-3);
    box-shadow: 0 0.7rem 0 var(--color-gray-100);
}

.btn.primary {
    background: var(--color-primary);
    color: var(--color-gray-900);
}

.btn:hover {
    background: var(--color-gray-900);
    color: var(--color-gray-0);
    box-shadow: none;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
}

/* ==================== NAVBAR ==================== */
nav {
    background: var(--color-primary);
    box-shadow: 0 0.5rem 0 rgba(0, 0, 0, 0.1);
    min-width: 100vw;
    height: 4rem;
    display: grid;
    place-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

body.dark nav {
    box-shadow: 0 0.5rem 0 rgba(255, 255, 255, 0.1);
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.nav__menu {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.nav__menu-open, .nav__menu-close {
    font-size: 2rem;
    color: var(--color-gray-900);
    display: none;
}

nav a {
    color: var(--color-gray-900);
}

.nav__logo {
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem; /* ruimte tussen logo en tekst */
}

.nav__logo-img {
    height: 32px; /* of 40px afhankelijk van je header */
    width: auto;
    border-radius: 10%;
}

nav a:hover {
    color: var(--color-primary-variant);
}

nav a.active {
    color: var(--color-primary-variant);
}

.theme__btn {
    color: var(--color-gray-900);
    font-size: 1.5rem;
}

.theme__btn:hover {
    color: var(--color-primary-variant);
}

/* ==================== PAGE HEADER ==================== */

.page__header {
    height: 15rem;
    background: url(./Assets/auto.png) center center/cover;
    display: grid;
    place-items: center;
    margin: 4rem 0 ;
    position: relative;
}

.page__header::before {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: var(--color-gray-900);
    opacity: 0.75;
}

.page__header-content {
    width: 50%;
    text-align: center;
    z-index: 1;
}

.page__header-content * {
    color: var(--color-gray-50);
}

.page__header-content h2 {
    margin-bottom: 0.7rem;
}


.value--autisme .value__icon {
  background: #6ac1e9; /* goud */
  color: #fff;
}

.value--adhd .value__icon {
  background: #6ac1e9; /* oranje-rood */
  color: #fff;
}

.value--faalangst .value__icon {
  background: #6ac1e9; /* lichtblauw */
  color: #fff;
}

.value--rijangst .value__icon {
  background: #6ac1e9; /* groen pastel */
  color: #fff;
}

.value--rijbewijs .value__icon {
    background: #6ac1e9;
    color: #fff;
}

.value--onzekerheid .value__icon {
    background: #6ac1e9;
    color: #fff;
}

.section__header h4 {
  font-size: 2rem !important;
}

.nav__logo {
  font-size: 2rem;
}

.letter-icon {
  width: 60px;
  height: 60px;
  background: #000000; /* zelfde als je huidige icoonkleur */
  color: #f9f221;       /* zelfde als je icoonkleur */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  border-radius: 25%;
}

.value__icon__card {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  display: inline-block;
  padding-bottom: 5rem !important;
}

.values__wrapper__card {
  display: flex;
  gap: 5rem;
  justify-content: center;
  flex-wrap: wrap; /* zodat het mobiel ook goed is */
}

/* USP icon-kleuren per blok */
.usp--prijzen .value__icon {
    background-color: #6ac1e9;
    color: #fff;
}

.usp--ervaring .value__icon {
    background-color: #6ac1e9;
    color: #fff;
}

.usp--klantgerichtheid .value__icon {
    background-color: #6ac1e9;
    color: #fff;
}

.usp--slaging .value__icon {
    background-color: #6ac1e9;
    color: #fff;
}



/* ==================== FOOTER ==================== */
footer {
    border-top: 0.5rem solid var(--color-gray-0);
}

footer * {
    color: var(--color-gray-900);
}

.footer__container {
    padding: 5rem 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__menu, .footer__socials {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.footer__socials a {
    background: var(--color-gray-0);
    height: 3rem;
    aspect-ratio: 1/1;
    border-radius: var(--radius-3);
    display: grid;
    place-items: center;
}

.footer__socials a i {
    font-size: 1.2rem;
    color: var(--color-gray-900);
}

.footer__copyright {
    text-align: center;
    display: block;
    padding: 1.5rem;
    border-top: 4px solid var(--color-gray-300);
}

.hero ul {
    text-align: left;
    padding-left: 14rem;
}

section {
    overflow-x: hidden;
}

#hero {
    padding: 10rem 0;
}

#about {
    padding: 2rem 0;
}

#specialisaties {
    padding: 3rem 0;
}

.about {
    padding: 1rem 0;
}

.section__header {
    text-align: center;
}

.section__header h4 {
    color: var(--color-primary-variant);
    margin-bottom: 0.5rem;
}


.tooltip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tooltip-container {
  position: relative;
  margin: 0.5rem 0;
  cursor: pointer;
}

.tooltip-container i {
    color: #fbc02d; /* Gele kleur voor het stericoon */
}

.tooltip-text {
line-height: 1.4;
  visibility: hidden;
  opacity: 0;
  width: 450px;
  background-color: #111;
  color: #fff;
  text-align: left;
  padding: 0.5rem;
  border-radius: 6px;
  position: absolute;
  max-width: 90vw;  
  z-index: 100;
  top: 100%; /* onder het item */
  left: 0;
  margin-top: 0.5rem;
  transition: opacity 0.3s ease;
}

/* Hover of tap */
.tooltip-container:hover .tooltip-text,
.tooltip-container:focus-within .tooltip-text {
  visibility: visible;
  opacity: 1;
}


/* ================================ HERO ================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(var(--color-gray-0), var(--color-gray-100));
}

body.dark .hero{
    background: linear-gradient(var(--color-gray-200), var(--color-gray-0));
}

.hero__container {
    text-align: center;
}

.hero__content {
    width: 50%;
    margin-inline: auto;
}

.hero__content p {
    margin-top: 0.5rem;
}

.hero__cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.hero__images {
    width: fit-content;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8rem;
    justify-content: space-between;
    margin-top: 5rem;   
}

.hero__image {
    width: 75rem;
    height: 50rem;
    margin-top: 10rem;
    border-radius: 7rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 0 var(--color-gray-200);
    transition: var(--transition);
}

.hero__image:hover {
    box-shadow: none;
}


/* ================================ ABOUT SECTION ================================ */
.about {
   background: var(--color-gray-50);
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
}

.about__left {
    border-radius: 7rem;
    overflow: hidden;
    box-shadow: 0 2rem 0 var(--color-gray-100);
    transition: var(--transition);
}

.about_center:hover {
    box-shadow: none;
}

.about__left:hover {
    box-shadow: none;
}

.about .section__header {
    text-align: left;
}

.about__container h1 {
    margin-bottom: 1rem;
}

.about__right p {
    margin-bottom: 1rem;
}

.about__container a {
    margin-top: 2rem;
}


/* ANIMATION FOR PACKAGES TOGGLE/CHAGE */
@keyframes indentifier {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.package-card p {
    text-align: center;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet schermen */
@media screen and (max-width: 1024px) {
    .container {
        width: var(--container-w-md);
    }

    .hero__content {
        width: 80%;
    }

    .hero ul {
        padding-left: 2.5rem;
    }

    .hero__images {
        gap: 4rem;
        width: 25rem;
        height: 25rem;
    }

    .about__container,
    .whyUs__container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .ourProcess__list {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .section {
        padding: 8rem 0;
    }
}

/* Smartphones */
@media screen and (max-width: 768px) {
    html {
        font-size: 13px;
    }

    nav {
        height: auto;
        padding: 1rem;
    }

    .nav__menu {
        display: none;
        flex-direction: column;
        gap: 2rem;
    }

    .nav__menu-open,
    .nav__menu-close {
        display: block;
        cursor: pointer;
    }

    .nav__container {
        flex-direction: column;
        gap: 1rem;
    }

    .footer__container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer__menu,
    .footer__socials {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__content {
        width: 100%;
    }

    .hero__cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero__images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ourPrograms__list {
        grid-template-columns: 1fr;
    }

    .whyUs__right {
        grid-template-columns: 1fr;
    }

    .ourProcess__list {
        grid-template-columns: 1fr;
    }

    .packages__buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .page__header-content {
        width: 90%;
    }
}

@media screen and (max-width: 1024px) {

    .hero__image {
        width: 12rem;
        height: 22rem;
        border-radius: 6rem;
    }
}

@media screen and (max-width: 768px) {
    .hero__images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__image {
        width: 80%;
        max-width: 18rem;
        height: auto;
        aspect-ratio: 2/3;
        margin-inline: auto;
        border-radius: var(--radius-6);
    }

    .section {
        padding: 8rem 0;
    }
}

/* Verberg close-knop standaard */
.nav__menu-close {
    display: none;
}

/* Mobile menu basisinstellingen */
.nav__menu {
    position: fixed;
    top: 4rem;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: var(--color-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
    box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
}

.nav__menu.show {
    transform: translateX(0%);
}

@media screen and (max-width: 768px) {
    .nav__menu {
        display: flex;
        top: 7.35rem;
    }

    .nav__menu-open,
    .nav__menu-close {
        display: block;
        font-size: 2rem;
        background: none;
        color: var(--color-gray-900);
        cursor: pointer;
        z-index: 101;
    }
}

/*======================= LANGUAGE SWITCHER ======================== */

.language-switcher {
    display: flex;
    gap: 0.8rem;
    align-items: center;
  }
  
  .language-switcher img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.2s ease;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
    cursor: pointer;
  }
  
  .language-switcher img:hover {
    transform: scale(1.1);
  }













  /* Centraal uitlijnen */
#container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(var(--color-gray-0), var(--color-gray-100));
}

/* Sign up box with flexbox for form and social links */
#signupBox {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--color-gray-0);
    border-radius: var(--radius-3);
    box-shadow: 0 1.5rem 0 var(--color-gray-100);
    overflow: hidden;
    transition: var(--transition);
}

#signupBox:hover {
    box-shadow: none;
}

/* Form section */
#formSection {
    width: 60%;
    padding: 2rem;
    background: var(--color-gray-0);
}

/* Styling for the Dation form */
#dationSignUpForm {
    height: 100%;
}

#dationSignUpForm input, 
#dationSignUpForm select, 
#dationSignUpForm textarea {
    border: 1px solid var(--color-gray-100) !important;
    border-radius: var(--radius-1) !important;
    padding: 0.8rem !important;
    font-family: "Montserrat", sans-serif !important;
    margin-bottom: 1rem !important;
}

#dationSignUpForm button {
    background: var(--color-primary) !important;
    color: var(--color-gray-900) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    border-radius: var(--radius-3) !important;
    box-shadow: 0 0.7rem 0 var(--color-gray-100) !important;
    padding: 1rem 2rem !important;
    font-family: "Montserrat", sans-serif !important;
    transition: var(--transition) !important;
}

#dationSignUpForm button:hover {
    background: var(--color-gray-900) !important;
    color: var(--color-gray-0) !important;
    box-shadow: none !important;
}

#dationSignUpForm label {
    font-weight: 600 !important;
    color: var(--color-gray-600) !important;
    font-family: "Montserrat", sans-serif !important;
    margin-bottom: 0.5rem !important;
}

/* Social section */
#socialSection {
    width: 40%;
    background: var(--color-primary);
    color: var(--color-gray-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

#socialSection img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 2rem;
    object-fit: cover;
    box-shadow: 0 0.5rem 0 var(--color-gray-200);
    transition: var(--transition);
}

#socialSection img:hover {
    box-shadow: none;
}

#socialSection h4, 
#socialSection h5, 
#socialSection h6 {
    margin: 0.5rem 0;
}

.footer__socials {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.footer__socials a {
    display: grid;
    place-items: center;
    background: var(--color-gray-0);
    color: var(--color-gray-900);
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: var(--transition);
}


/* ==================== CONTACT PAGE RESPONSIVE ==================== */

/* Tablet schermen (max 1024px) */
@media screen and (max-width: 1024px) {
    #signupBox {
      flex-direction: column;
      max-width: 90%;
    }
  
    #formSection,
    #socialSection {
      width: 100%;
      padding: 2rem;
    }
  
    #socialSection {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }
  
    #socialSection img {
      width: 120px;
      height: 120px;
    }
  }
  
  /* Smartphones (max 768px) */
  @media screen and (max-width: 768px) {
    #signupBox {
      box-shadow: none;
    }
  
    #formSection {
      padding: 1.5rem;
    }
  
    #dationSignUpForm input,
    #dationSignUpForm select,
    #dationSignUpForm textarea {
      font-size: 0.95rem;
    }
  
    #dationSignUpForm label {
      font-size: 0.95rem;
    }
  
    #dationSignUpForm button {
      width: 100%;
      padding: 1rem;
    }
  
    #socialSection {
      padding: 2rem 1rem;
      flex-direction: column;
      text-align: center;
    }
  
    #socialSection img {
      width: 100px;
      height: 100px;
    }
  
    .footer__socials {
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.8rem;
    }
  }
  
  /* Extra kleine schermen (max 480px) */
  @media screen and (max-width: 480px) {
    #dationSignUpForm input,
    #dationSignUpForm select,
    #dationSignUpForm textarea {
      font-size: 0.9rem;
      padding: 0.6rem !important;
    }
  
    #dationSignUpForm label {
      font-size: 0.9rem;
    }
  
    #dationSignUpForm button {
      font-size: 0.9rem;
      padding: 0.8rem 1.5rem;
    }
  
    #socialSection h4,
    #socialSection h5,
    #socialSection h6 {
      font-size: 1rem;
    }
  
    #socialSection img {
      width: 80px;
      height: 80px;
    }
  }


  /* ==================== CONTACT PAGE RESPONSIVE ==================== */

/* Tablet schermen (max 1024px) */
@media screen and (max-width: 1024px) {
    #signupBox {
      flex-direction: column;
      max-width: 90%;
    }
  
    #formSection,
    #socialSection {
      width: 100%;
      padding: 2rem;
    }
  
    #socialSection {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }
  
    #socialSection img {
      width: 120px;
      height: 120px;
    }
  }
  
  /* Smartphones (max 768px) */
  @media screen and (max-width: 768px) {
    #signupBox {
      box-shadow: none;
    }
  
    #formSection {
      padding: 1.5rem;
    }
  
    #dationSignUpForm input,
    #dationSignUpForm select,
    #dationSignUpForm textarea {
      font-size: 0.95rem;
    }
  
    #dationSignUpForm label {
      font-size: 0.95rem;
    }
  
    #dationSignUpForm button {
      width: 100%;
      padding: 1rem;
    }
  
    #socialSection {
      padding: 2rem 1rem;
      flex-direction: column;
      text-align: center;
    }
  
    #socialSection img {
      width: 100px;
      height: 100px;
    }
  
    .footer__socials {
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.8rem;
    }
  }
  
  /* Extra kleine schermen (max 480px) */
  @media screen and (max-width: 480px) {
    #dationSignUpForm input,
    #dationSignUpForm select,
    #dationSignUpForm textarea {
      font-size: 0.9rem;
      padding: 0.6rem !important;
    }
  
    #dationSignUpForm label {
      font-size: 0.9rem;
    }
  
    #dationSignUpForm button {
      font-size: 0.9rem;
      padding: 0.8rem 1.5rem;
    }
  
    #socialSection h4,
    #socialSection h5,
    #socialSection h6 {
      font-size: 1rem;
    }
  
    #socialSection img {
      width: 80px;
      height: 80px;
    }
  }

  #container {
    padding-top: 6rem; /* geeft ademruimte onder de navbar */
  }
  


/* Verberg close-knop standaard */
.nav__menu-close {
    display: none;
}

/* Mobile menu basisinstellingen */
.nav__menu {
    position: fixed;
    top: 4rem;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: var(--color-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
    box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
}

.nav__menu.show {
    transform: translateX(0%);
}

@media screen and (max-width: 768px) {
    .nav__menu {
        display: flex;
        top: 7.35rem;
    }

    .nav__menu-open,
    .nav__menu-close {
        display: block;
        font-size: 2rem;
        background: none;
        color: var(--color-gray-900);
        cursor: pointer;
        z-index: 101;
    }
}



.page__header {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../Assets/Audi\ Wit7.jpg');
    background-position: center;
    background-size: cover;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--color-white);
    padding: 0 1rem;
    margin-bottom: 5rem;
}

.page__header-content {
    max-width: 800px;
}

.page__header-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.page__header-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.values {
    margin-top: 8rem;
    background: var(--color-light);
    padding: 7rem 0;
}

.values__container {
    text-align: center;
}

.section__header {
    margin-bottom: 4rem;
}

.section__header h4 {
    color: var(--color-primary-variant);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.section__header h1 {
    font-size: 2.5rem;
    color: var(--color-gray-500);
}

.values__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.value {
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border-radius: 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.value:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.value__icon {
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 0, 0, 0.5);
    color: var(--color-primary);
    border-radius: 1rem;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.value:hover .value__icon {
    transform: scale(1.1);
    background: rgb(255, 213, 0);
}

.value h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gray-700);
    font-weight: 600;
}

.value p {
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* ==================== ABOUT PAGE RESPONSIVE ==================== */

/* Tablet schermen */
@media screen and (max-width: 1024px) {
    .page__header-content h2 {
        font-size: 2.5rem;
    }

    .page__header-content p {
        font-size: 1rem;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 2rem;
    }

    .about__image {
        height: 24rem;
        border-radius: 5rem;
    }

    .values {
        padding: 5rem 2rem;
    }

    .instructors__list {
        flex-direction: column;
        gap: 3rem;
    }

    .instructor__image {
        height: 14rem;
    }
}

/* Smartphones */
@media screen and (max-width: 768px) {
    .page__header {
        height: 40vh;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .page__header-content h2 {
        font-size: 2rem;
    }

    .page__header-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section__header h1 {
        font-size: 2rem;
    }

    .value {
        padding: 2rem 1.5rem;
    }

    .about__container {
        padding: 2rem 1rem;
    }

    .about__image {
        height: 20rem;
        border-radius: var(--radius-5);
    }

    .instructor__image {
        height: 12rem;
    }

    .instructors {
        padding: 6rem 1rem;
    }

    .values__wrapper {
        gap: 2rem;
    }
}

/* Extra small (mobiele) schermen */
@media screen and (max-width: 480px) {
    .page__header-content h2 {
        font-size: 1.6rem;
    }

    .page__header-content p {
        font-size: 0.9rem;
    }

    .value h3 {
        font-size: 1.1rem;
    }

    .value p {
        font-size: 0.9rem;
    }

    .about__story h2 {
        font-size: 1.6rem;
    }

    .about__story p {
        font-size: 0.95rem;
    }

    .instructor h4 {
        font-size: 1rem;
    }

    .instructor p {
        font-size: 0.9rem;
    }
}



/* Verberg close-knop standaard */
.nav__menu-close {
    display: none;
}

/* Mobile menu basisinstellingen */
.nav__menu {
    position: fixed;
    top: 4rem;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: var(--color-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
    box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
}

.nav__menu.show {
    transform: translateX(0%);
}

@media screen and (max-width: 768px) {
    .nav__menu {
        display: flex;
        top: 7.35rem;
    }

    .nav__menu-open,
    .nav__menu-close {
        display: block;
        font-size: 2rem;
        background: none;
        color: var(--color-gray-900);
        cursor: pointer;
        z-index: 101;
    }
}

html {
    scroll-behavior: smooth;
}

/* APPROACH SECTION */
.approach-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
    background: var(--color-gray-50);
    padding: 5rem 0;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.approach-step {
    position: relative;
    background: var(--color-gray-50);
    padding: 3rem 1.5rem;
    border-radius: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 0.3rem 0.7rem rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    width: 4rem;
    height: 4rem;
    border-radius: 15%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 2rem;
    color: var(--color-gray-900);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
}

.approach-step h3 {
    margin-bottom: 1rem;
}


.step-arrow {
    font-size: 2.5rem;
    color: red;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

/* Op desktop: pijl rechts van het blok */
@media screen and (min-width: 769px) {
    .approach-step {
        position: relative;
    }

    .step-arrow {
        position: absolute;
        right: -2rem;
        top: 50%;
        transform: translateY(-50%) rotate(0deg); /* horizontale pijl */
    }
}

/* Op mobiel: pijl onderaan en naar beneden gericht */
@media screen and (max-width: 768px) {
    .step-arrow {
        position: static;
        text-align: bottom;
        transform: rotate(90deg); /* pijl naar beneden */
        margin-top: 1rem;
    }
}

/* CONTACT CTA */
.contact-cta {
    margin: 6rem 0;
    background: var(--color-primary);
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-content h2 {
    color: var(--color-gray-900);
}

.cta-content p {
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.cta-content .btn {
    background: var(--color-gray-900);
    color: var(--color-gray-0);
    box-shadow: 0 0.5rem 0 rgba(0, 0, 0, 0.2);
}

.cta-content .btn:hover {
    background: var(--color-gray-0);
    color: var(--color-gray-900);
}

/* ==================== SPECIALISATIES RESPONSIVE ==================== */

/* Tablet schermen (max 1024px) */
@media screen and (max-width: 1024px) {
    .specialisaties-intro .container {
      grid-template-columns: 1fr;
      padding: 2rem;
    }
  
    .expertise-badges {
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
  
    .tab-content.active {
      grid-template-columns: 1fr;
    }
  
    .tab-image {
      height: 25rem;
    }
  
    .tab-info {
      padding: 2rem;
    }
  
    .approach-steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  
    .testimonial-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }
  
  /* Smartphones (max 768px) */
  @media screen and (max-width: 768px) {
    .page__header {
      height: 40vh;
      padding: 0 1rem;
      margin-bottom: 3rem;
    }
  
    .page__header-content h2 {
      font-size: 2rem;
    }
  
    .page__header-content p {
      font-size: 0.95rem;
      line-height: 1.6;
    }
  
    .specialisaties-intro .container {
      padding: 1.5rem;
    }
  
    .expertise-badges {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  
    .tab-btn {
      font-size: 0.95rem;
      padding: 1rem;
    }
  
    .tab-image {
      height: 20rem;
    }
  
    .tab-info {
      padding: 1.5rem;
    }
  
    .approach-steps {
      grid-template-columns: 1fr;
    }
  
    .testimonial-cards {
      grid-template-columns: 1fr;
    }
  
    .cta-content {
      padding: 0 1.5rem;
    }
  }
  
  /* Extra kleine schermen (max 480px) */
  @media screen and (max-width: 480px) {
    .page__header-content h2 {
      font-size: 1.6rem;
    }
  
    .page__header-content p {
      font-size: 0.9rem;
    }
  
    .tab-btn {
      flex: 1 0 100%;
      font-size: 0.85rem;
      padding: 0.8rem;
    }
  
    .tab-info h2 {
      font-size: 1.3rem;
    }
  
    .tab-info h3 {
      font-size: 1.1rem;
    }
  
    .cta-content h2 {
      font-size: 1.5rem;
    }
  
    .cta-content p {
      font-size: 0.95rem;
    }
  }

  @media screen and (max-width: 768px) {
    .tabs {
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
    }
  
    .tab-btn {
      flex: 1 0 45%;
      text-align: center;
    }
  }

  /* Verberg close-knop standaard */
.nav__menu-close {
    display: none;
}

/* Mobile menu basisinstellingen */
.nav__menu {
    position: fixed;
    top: 4rem;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: var(--color-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
    box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
}

.nav__menu.show {
    transform: translateX(0%);
}

@media screen and (max-width: 768px) {
    .nav__menu {
        display: flex;
        top: 7.35rem;
    }

    .nav__menu-open,
    .nav__menu-close {
        display: block;
        font-size: 2rem;
        background: none;
        color: var(--color-gray-900);
        cursor: pointer;
        z-index: 101;
    }
}


.page__header {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../Assets/Audi\ Wit7.jpg');
    background-position: center;
    background-size: cover;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--color-white);
    padding: 0 1rem;
    margin-bottom: 5rem;
}

.page__header-content {
    max-width: 800px;
}

.page__header-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.page__header-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.values {
    margin-top: 4rem;
    background: var(--color-light);
    padding: 7rem 0;
}

.values__container {
    text-align: center;
}

.section__header {
    margin-bottom: 4rem;
}

.section__header h4 {
    color: var(--color-primary-variant);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.section__header h1 {
    font-size: 2.5rem;
    color: var(--color-gray-500);
}

.values__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.value {
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border-radius: 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.value:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.value__icon {
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 0, 0, 0.5);
    color: var(--color-primary);
    border-radius: 1rem;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.value:hover .value__icon {
    transform: scale(1.1);
    background: rgb(255, 213, 0);
}

.value h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gray-700);
    font-weight: 600;
}

.value p {
    color: var(--color-gray-500);
    line-height: 1.7;
}

.value ul {
    text-align: left;
    padding-left: 4rem;
}

h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--black);
  margin-bottom: 2rem;
}

.package-intro {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.standard-features {
  max-width: 700px;
  margin: 1rem auto 3rem;
  padding-left: 1.2rem;
}

.standard-features li {
  margin: 0.5rem 0;
}

.package-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 0 0.5rem rgba(0,0,0,0.05);
  padding: 2rem 1.5rem;
  position: relative;
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--color-primary);
}

.package-card.highlight {
  border-top-color: var(--color-primary-variant);
}

.package-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: var(--color-gray-900);
}

.package-card p {
  font-size: 0.95rem;
  color: var(--color-gray-700);
  margin-bottom: 1rem;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  text-align: left;
}

.package-card ul li {
  margin: 0.4rem 0;
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.9rem;
}

.package-card ul li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1rem;
}

.page__header ul {
    padding-left: 16rem;
    text-align: left;  
}
.price-badge ul {
    padding-left: 16rem;
    text-align: left;
}

.btn.primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-gray-900);
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn.primary:hover {
  background: var(--color-gray-900);
  color: var(--color-gray-500);
}

.price-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--color-gray-900);
  color: var(--color-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 0.3rem 0 rgba(0,0,0,0.1);
}

.guarantee {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 0.3rem 0.5rem rgba(0,0,0,0.05);
}

.guarantee h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  text-align: center;
}

.guarantee p {
  text-align: center;
  margin: 0.3rem 0;
}

.extras {
  list-style: disc;
  margin-top: 1.5rem;
  padding-left: 2rem;
  font-size: 0.9rem;
}

.package-grid.no-cards {
  display: block;
  margin-top: 2rem;
}

.package-line {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-0);
}

.package-line .package-label {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--color-gray-900);
}

.package-line .package-price {
  font-weight: 600;
  color: var(--color-primary-variant);
  margin: 0.2rem 0;
}

.package-line .package-desc {
  font-size: 0.95rem;
  color: var(--color-gray-0);
}

.features-box {
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 0.3rem 0.5rem rgba(0,0,0,0.05);
  margin-bottom: 3rem;
}

.features-box h3 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
}

.features-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
}

.features-list span {
  color: green;
  font-weight: bold;
}

.section__header ul {
    text-align: left;
    padding-left: 53rem;
}

.guarantee ul {
    text-align: left;
    padding-left: 56rem;
    padding-bottom: 5rem;
}

.package-section {
  display: flex !important;
  justify-content: center !important;
  padding: 4rem 1rem !important;
}

.guarantee {
  max-width: 700px !important;
  width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
  background: var(--color-gray-50) !important;
  padding: 2rem !important;
  border-radius: 5% !important;
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.05) !important;
}

.guarantee ul {
  padding-left: 15rem;
  margin: 1.5rem 0 !important;
  list-style: none !important;
  align-items: center !important;
  text-align: left;
}

.guarantee ul li {
  margin-bottom: 0.8rem !important;
  font-size: 1rem !important;
  color: var(--color-gray-700) !important;
}

/* ==================== PAKKETTEN EN PRIJZEN RESPONSIVE ==================== */

/* Laptops en tablets in landschap (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .page__header-content h2 {
    font-size: 3rem;
  }

  .values {
    padding: 5rem 2rem;
  }

  .package-card {
    padding: 2rem 1rem;
  }

  .guarantee ul {
    padding-left: 15rem;
  }

  .section__header ul {
    padding-left: 3rem;
  }

  .hero__content ul {
    padding-left: 3rem;
  }
}

/* Tablets en kleinere schermen (max-width: 768px) */
@media screen and (max-width: 768px) {
  .page__header {
    height: 50vh;
    padding: 0 0.5rem;
  }

  .page__header-content h2 {
    font-size: 2.5rem;
  }

  .page__header-content p {
    font-size: 1rem;
  }

  .values__wrapper {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .page__header ul {
    padding-left: 1rem;
  }

  .standard-features {
    padding-left: 1rem;
  }
}

/* Mobiele telefoons (max-width: 480px) */
@media screen and (max-width: 480px) {
  .page__header {
    height: 40vh;
    margin-bottom: 3rem;
  }

  .page__header-content h2 {
    font-size: 2rem;
  }

  .page__header-content p {
    font-size: 0.95rem;
  }

  .section__header h1 {
    font-size: 2rem;
  }

  .value {
    padding: 2rem 1rem;
  }

  .value h3 {
    font-size: 1.1rem;
  }

  .btn.primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .price-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  .package-line .package-label {
    font-size: 1rem;
  }

  .package-line .package-price {
    font-size: 0.95rem;
  }

  .package-line .package-desc {
    font-size: 0.85rem;
  }

  .features-box {
    padding: 1.5rem 1rem;
  }

  .features-box h3 {
    font-size: 1.1rem;
  }

  .features-list li {
    font-size: 0.9rem;
  }

    .guarantee ul {
    padding-left: 1rem !important;
  }
}



/* ==================== ABOUT PAGE RESPONSIVE ==================== */

/* Tablet schermen */
@media screen and (max-width: 1024px) {
    .page__header-content h2 {
        font-size: 2.5rem;
    }

    .page__header-content p {
        font-size: 1rem;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 2rem;
    }

    .about__image {
        height: 24rem;
        border-radius: 5rem;
    }

    .values {
        padding: 5rem 2rem;
    }

    .instructors__list {
        flex-direction: column;
        gap: 3rem;
    }

    .instructor__image {
        height: 14rem;
    }
}

/* Smartphones */
@media screen and (max-width: 768px) {
    .page__header {
        height: 40vh;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .page__header-content h2 {
        font-size: 2rem;
    }

    .page__header-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section__header h1 {
        font-size: 2rem;
    }

    .value {
        padding: 2rem 1.5rem;
    }

    .about__container {
        padding: 2rem 1rem;
    }

    .about__image {
        height: 20rem;
        border-radius: var(--radius-5);
    }

    .instructor__image {
        height: 12rem;
    }

    .instructors {
        padding: 6rem 1rem;
    }

    .values__wrapper {
        gap: 2rem;
    }
}

/* Extra small (mobiele) schermen */
@media screen and (max-width: 480px) {
    .page__header-content h2 {
        font-size: 1.6rem;
    }

    .page__header-content p {
        font-size: 0.9rem;
    }

    .value h3 {
        font-size: 1.1rem;
    }

    .value p {
        font-size: 0.9rem;
    }

    .about__story h2 {
        font-size: 1.6rem;
    }

    .about__story p {
        font-size: 0.95rem;
    }

    .instructor h4 {
        font-size: 1rem;
    }

    .instructor p {
        font-size: 0.9rem;
    }
}



/* Verberg close-knop standaard */
.nav__menu-close {
    display: none;
}

/* Mobile menu basisinstellingen */
.nav__menu {
    position: fixed;
    top: 4rem;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: var(--color-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
    box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
}

.nav__menu.show {
    transform: translateX(0%);
}

@media screen and (max-width: 768px) {
    .nav__menu {
        display: flex;
        top: 7.35rem;
    }

    .nav__menu-open,
    .nav__menu-close {
        display: block;
        font-size: 2rem;
        background: none;
        color: var(--color-gray-900);
        cursor: pointer;
        z-index: 101;
    }
}


/*

@media only screen and (max-width: 600px) {

}


@media only screen and (min-width: 601px) and (max-width: 768px) {

}


@media only screen and (min-width: 769px) and (max-width: 992px) {

}


@media only screen and (min-width: 993px) and (max-width: 1200px) {

}


@media only screen and (min-width: 1201px) {

}


@media only screen and (orientation: landscape) {

}


@media only screen and (orientation: portrait) {

} 

*/
