/*
Theme Name: Waahan Bootstrap
Description: Moderne Bootstrap theme voor Stichting Waahan
Version: 1.2 - Optimized
*/

/* ===== CSS VARIABLES ===== */
:root {
  /* Kleuren */
  --white: #FFFFFF;
  --black: #000000;
  --gray-dark: #424242;
  
  /* Groen palet */
  --green-100: #FEF2E3;
  --green-300: #C8F169;
  --green-500: #78C51C;
  --green-700: #2A6F2B;
  --green-900: #043F2E;

  /* Accent kleuren */
  --orange-400: #FF7043;
  --orange-500: #FF5722;
  
  /* Neutraal */
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  
  /* Gradients */
  --gradient-subtle: linear-gradient(135deg, var(--green-100) 0%, var(--green-300) 100%);
  --gradient-primary: linear-gradient(135deg, var(--green-500) 0%, var(--green-700) 100%);
  --gradient-deep: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  --gradient-accent: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
  
  /* Schaduwen */
  --shadow-sm: 0 2px 8px rgba(120, 197, 28, 0.1);
  --shadow-md: 0 8px 30px rgba(120, 197, 28, 0.15);
  --shadow-lg: 0 20px 60px rgba(120, 197, 28, 0.2);
  --shadow-primary: 0 8px 25px rgba(120, 197, 28, 0.4);
}

/* ===== BASIS STYLES ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--green-900);
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 4px;
}

.lead {
  font-size: 1.25rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1030;
  border-bottom: 1px solid var(--green-300);
  padding: 0;
  display: flex;
  align-items: center;
  min-height: 80px;
  transition: all 0.4s ease;
}

.navbar {
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  border-bottom: none !important;
  transition: all 0.4s ease;
  flex-grow: 1;
}

.navbar-scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-900) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--green-700) !important;
  margin: 0 0.5rem;
  padding: 0.75rem 1.25rem !important;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.navbar-nav .nav-link:hover {
  color: var(--green-500) !important;
  background: rgba(120, 197, 28, 0.1);
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  color: var(--green-500) !important;
  font-weight: 600;
  background: rgba(120, 197, 28, 0.15);
}

/* Logo */
.logo-hang-container {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translate(0, -50%);
  z-index: 1050;
  width: 150px;
  height: 150px;
  box-shadow: var(--shadow-md);
  background: var(--white);
  padding: 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--green-300);
}

.logo-hang-container:hover {
  transform: translate(0, -50%) scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-500);
}

.logo-hang-container img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  border: none;
  border-radius: 14px;
  padding: 16px 38px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  gap: 10px;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Primary Button */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 40px rgba(120, 197, 28, 0.6);
  color: var(--white);
}

/* Accent Button */
.btn-accent {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(255, 112, 67, 0.4);
}

.btn-accent:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 112, 67, 0.6);
  color: var(--white);
}

/* Outline Buttons */
.btn-outline-primary {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-500);
  box-shadow: var(--shadow-sm);
}

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-3px);
  border-color: transparent;
}

/* Button Sizes */
.btn-lg {
  padding: 18px 46px;
  font-size: 1.15rem;
  border-radius: 16px;
}

.btn-sm {
  padding: 12px 28px;
  font-size: 0.95rem;
  border-radius: 12px;
}

.btn-black {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-black:hover {
  background: transparent;
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding-top: 150px;
  background: var(--white);
  position: relative;
}

.hero-full-bleed {
  min-height: 800px;
  height: 100vh;
  max-height: 1000px;
  position: relative;
  padding: 0;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content-overlay {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 50px;
}

.hero-text-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 4rem;
  box-shadow: var(--shadow-lg);
  border-radius: 24px;
  border: 1px solid rgba(200, 241, 105, 0.3);
}

.hero-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CARDS ===== */
.card-custom {
  border: none;
  border-radius: 20px;
  transition: all 0.4s ease;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-300);
  overflow: hidden;
}

.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-500);
}

.card-img-top {
  border-radius: 20px 20px 0 0;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-custom:hover .card-img-top {
  transform: scale(1.08);
}

.card-body {
  padding: 2.5rem;
}

.card-title {
  color: var(--green-900);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card-text {
  color: var(--gray-dark);
  line-height: 1.7;
}

/* ===== SECTIONS ===== */
.section-padding {
  padding: 120px 0;
}

/* Background Utilities */
.bg-mint { background: var(--gradient-subtle); }
.bg-primary { background: var(--gradient-primary); }
.bg-deep { background: var(--gradient-deep); }

.bg-light-custom { background: var(--green-100); }
.bg-dark-custom { 
  background: var(--green-900); 
  color: var(--white);
}

/* ===== FOOTER STYLES ===== */
.footer {
  background: var(--gradient-deep);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
  z-index: 1;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><circle cx="50" cy="50" r="2" fill="white"/></svg>');
  background-size: 50px 50px;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
}

/* Footer Widgets */
.footer-widget {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--green-300);
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}

.footer-text {
  color: var(--green-300);
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Footer Navigation */
.footer-nav .footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav .footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-nav .footer-menu li:last-child {
  margin-bottom: 0;
}

.footer-nav .footer-menu a {
  color: var(--green-300);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
  display: inline-block;
  font-weight: 500;
}

.footer-nav .footer-menu a:hover {
  color: var(--white);
  transform: translateX(8px);
}

.footer-nav .footer-menu a::before {
  content: '›';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--green-500);
}

.footer-nav .footer-menu a:hover::before {
  opacity: 1;
  left: -12px;
}

/* Contact Info */
.footer-contact .contact-item {
  margin-bottom: 1rem;
}

.footer-contact .contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-icon i {
  color: var(--green-500);
  font-size: 1rem;
}

.contact-item:hover .contact-icon {
  background: var(--green-500);
  transform: scale(1.1);
}

.contact-item:hover .contact-icon i {
  color: var(--white);
}

.contact-info span {
  color: var(--green-300);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item:hover .contact-info span {
  color: var(--white);
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--green-500);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(120, 197, 28, 0.3);
  border-color: transparent;
}

/* Footer Divider */
.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-500), transparent);
  margin: 3rem 0 2rem;
  opacity: 0.3;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: var(--green-300);
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-link {
  color: var(--green-300) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--white) !important;
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
      padding: 60px 0 20px;
  }
  
  .footer-widget {
      margin-bottom: 2.5rem;
      text-align: center;
  }
  
  .footer-title::after {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .footer-nav .footer-menu a:hover {
      transform: translateX(5px);
  }
  
  .footer-social {
      justify-content: center;
  }
  
  .footer-contact .contact-item {
      justify-content: center;
      text-align: center;
  }
  
  .contact-icon {
      margin-right: 0.75rem;
  }
}

@media (max-width: 576px) {
  .footer {
      padding: 50px 0 20px;
  }
  
  .footer-title {
      font-size: 1.1rem;
  }
  
  .footer-text {
      font-size: 0.9rem;
  }
  
  .footer-copyright {
      font-size: 0.8rem;
  }
  
  .social-link {
      width: 40px;
      height: 40px;
  }
  
  .contact-icon {
      width: 35px;
      height: 35px;
      margin-right: 0.5rem;
  }
  
  .contact-icon i {
      font-size: 0.9rem;
  }
}

/* Animation voor footer items */
@keyframes slideInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.footer-widget {
  animation: slideInUp 0.6s ease-out;
}

.footer-widget:nth-child(1) { animation-delay: 0.1s; }
.footer-widget:nth-child(2) { animation-delay: 0.2s; }
.footer-widget:nth-child(3) { animation-delay: 0.3s; }

/* ===== FORM STYLES ===== */
.form-control {
  border: 2px solid var(--green-300);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  background: var(--white);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.form-control:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(120, 197, 28, 0.1);
  transform: translateY(-2px);
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--green-700);
}

/* ===== PAGE SPECIFIC STYLES ===== */

/* Home Page */
.home-hero .hero-text-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200, 241, 105, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(120, 197, 28, 0.3);
}

/* About Section */
.home-about {
  background: linear-gradient(135deg, var(--green-100) 0%, transparent 100%);
}

.about-content {
  padding: 2rem 0;
}

.section-badge {
  display: inline-block;
  background: rgba(120, 197, 28, 0.1);
  color: var(--green-500);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.about-text {
  font-size: 1.1rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 0.75rem;
  border: 1px solid var(--green-300);
}

.about-feature-icon {
  color: var(--green-500);
  font-size: 1.25rem;
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

.about-feature span {
  font-weight: 500;
  color: var(--green-700);
}

.btn-about {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-about:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(120, 197, 28, 0.3);
}

.about-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green-500);
  opacity: 0.1;
}

/* Services Section */
.home-services {
  background: var(--white);
}

.service-card {
  border: none;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-header {
  overflow: hidden;
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.1);
}

.service-card .card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 1rem;
}

.service-card-text {
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  align-self: flex-start;
}

.service-card-btn:hover {
  transform: translateX(5px);
}

/* Contact Page */
.contact-page {
  background: linear-gradient(135deg, var(--green-100) 0%, transparent 100%);
  margin-top: 100px;
}

.contact-header {
  padding: 2rem 0;
  text-align: center;
}

.contact-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-card {
  border: none;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  overflow: hidden;
  height: 100%;
}

.contact-card .card-body {
  padding: 3rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form .form-control {
  border: 2px solid var(--green-300);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.contact-form .form-control:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(120, 197, 28, 0.1);
  background: var(--green-100);
  transform: translateY(-2px);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--green-300);
}

.contact-detail {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--green-100);
}

.contact-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-detail h5 {
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.contact-detail h5::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin-right: 0.75rem;
}

.contact-detail p {
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1rem;
}

.contact-submit {
  margin-top: 2rem;
}

.contact-submit .btn {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  width: 100%;
}

/* Inschrijven Page */
.inschrijven-page {
  background: linear-gradient(135deg, var(--green-100) 0%, transparent 100%);
  margin-top: 100px;
}

.inschrijven-header {
  padding: 2rem 0;
  text-align: center;
}

.inschrijven-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inschrijven-subtitle {
  font-size: 1.25rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.inschrijven-card {
  border: none;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  overflow: hidden;
}

.inschrijven-card .card-body {
  padding: 3rem;
}

.inschrijven-form .form-group {
  margin-bottom: 2rem;
}

.inschrijven-form .form-label {
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.inschrijven-form .form-control {
  border: 2px solid var(--green-300);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.inschrijven-form .form-control:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(120, 197, 28, 0.1);
  background: var(--green-100);
  transform: translateY(-2px);
}

.lijsten-selectie {
  margin-top: 0.5rem;
}

.lijst-option {
  margin: 0;
  padding: 1.5rem;
  background: var(--green-100);
  border-radius: 0.75rem;
  border: 2px solid var(--green-300);
  transition: all 0.3s ease;
}

.lijst-option:hover {
  border-color: var(--green-400);
  background: var(--green-100);
  transform: translateY(-2px);
}

.lijst-option .form-check-input {
  width: 1.3em;
  height: 1.3em;
  margin-top: 0.1em;
  border: 2px solid var(--green-300);
  cursor: pointer;
}

.lijst-option .form-check-input:checked {
  background-color: var(--green-500);
  border-color: var(--green-500);
}

.lijst-option .form-check-input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 0.2rem rgba(120, 197, 28, 0.25);
}

.lijst-option .form-check-label {
  color: var(--green-700);
  font-weight: 500;
  margin-left: 0.75rem;
  cursor: pointer;
  width: 100%;
}

.lijst-content {
  display: flex;
  flex-direction: column;
}

.lijst-title {
  font-weight: 700;
  color: var(--green-900);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.lijst-description {
  color: var(--green-600);
  font-size: 0.9rem;
  line-height: 1.4;
}

.inschrijven-submit {
  margin-top: 2rem;
}

.inschrijven-submit .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

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

.form-label.required::after {
  content: " *";
  color: var(--orange-500);
}

/* Organisatie Page */
.organisation-page {
  background: linear-gradient(135deg, var(--green-100) 0%, transparent 100%);
  margin-top: 100px;
}

.page-header {
  padding: 2rem 0;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.organisation-badge {
  display: inline-block;
  background: rgba(120, 197, 28, 0.1);
  color: var(--green-500);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.organisation-intro-card {
  border: none;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  height: 100%;
}

.organisation-intro-card .card-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.organisation-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--green-900);
}

.organisation-lead {
  font-size: 1.25rem;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.organisation-text {
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.organisation-features {
  margin-top: auto;
}

.organisation-feature-item {
  display: flex;
  align-items: center;
}

.organisation-feature-icon {
  color: var(--green-500);
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

.organisation-feature-text {
  color: var(--gray-dark);
  font-size: 0.875rem;
}

.organisation-image-wrapper {
  position: relative;
  height: 100%;
}

.organisation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.organisation-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green-500);
  opacity: 0.1;
  border-radius: 1.5rem;
}

.organisation-collaboration-section {
  background: var(--gradient-subtle);
  border-radius: 1.5rem;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.organisation-collaboration-content {
  position: relative;
  z-index: 2;
}

.organisation-collaboration-header {
  text-align: center;
  margin-bottom: 3rem;
}

.organisation-collaboration-icon {
  font-size: 3rem;
  color: var(--green-500);
  margin-bottom: 1rem;
}

.organisation-collaboration-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-900);
}

.organisation-feature-card {
  display: flex;
  align-items: flex-start;
}

.organisation-feature-check {
  color: var(--green-700);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.organisation-feature-content {
  flex: 1;
}

.organisation-feature-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--green-900);
}

.organisation-feature-description {
  color: var(--gray-dark);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.organisation-board-header {
  margin-bottom: 3rem;
}

.organisation-section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0;
}

.board-member-card {
  border: none;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-md);
  background: var(--white);
  height: 100%;
  transition: all 0.3s ease;
}

.board-member-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.board-member-card .card-body {
  padding: 2.5rem;
}

.board-member-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(120, 197, 28, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.board-member-icon i {
  font-size: 2rem;
  color: var(--green-500);
}

.board-member-name {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--green-900);
}

.board-member-role {
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.board-member-description {
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.organisation-team-card {
  border: none;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: var(--white);
}

.organisation-team-card .card-body {
  padding: 0;
}

.organisation-team-sidebar {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

.organisation-team-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.organisation-team-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.organisation-team-description {
  opacity: 0.9;
  margin-bottom: 2rem;
  flex: 1;
}

.organisation-team-features {
  margin-top: auto;
}

.organisation-team-feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.organisation-team-feature-icon {
  color: var(--orange-500);
  margin-right: 0.75rem;
}

.organisation-team-main {
  padding: 3rem;
}

.team-role-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--green-300);
  border-radius: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  height: 100%;
}

.team-role-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-500);
}

.team-role-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(120, 197, 28, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.team-role-icon i {
  font-size: 1.5rem;
  color: var(--green-500);
}

.team-role-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--green-900);
}

.team-role-description {
  color: var(--gray-dark);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.organisation-cta-section {
  background: var(--gradient-deep);
  color: var(--white);
  border-radius: 1.5rem;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.organisation-cta-content {
  position: relative;
  z-index: 2;
}

.organisation-cta-header {
  margin-bottom: 2rem;
}

.organisation-cta-icon {
  font-size: 3rem;
  color: var(--orange-500);
  margin-bottom: 1rem;
}

.organisation-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.organisation-cta-text {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.organisation-cta-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.organisation-cta-feature {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
}

.organisation-cta-feature-icon {
  color: var(--orange-500);
  margin-right: 0.5rem;
}

/* Prijzen Page */
.pricing-page {
  background: linear-gradient(135deg, var(--green-100) 0%, transparent 100%);
  margin-top: 100px;
}

.calculator-card {
  border: none;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.calculator-card .card-body {
  padding: 3rem;
}

.calculator-header {
  padding: 0 2rem;
}

.calculator-icon {
  font-size: 3rem;
  color: var(--green-500);
  margin-bottom: 1.5rem;
}

.calculator-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 1rem;
}

.calculator-subtitle {
  font-size: 1.1rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.calculator-form .form-group {
  margin-bottom: 1.5rem;
}

.calculator-form .form-label {
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 0.5rem;
}

.calculator-form .form-control,
.calculator-form .form-select {
  border: 2px solid var(--green-300);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.calculator-form .form-control:focus,
.calculator-form .form-select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(120, 197, 28, 0.1);
  background: var(--green-100);
}

.calculator-result {
  background: var(--green-100) !important;
  border: 1px solid var(--green-300);
  border-radius: 1rem;
}

.result-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-700);
}

.result-amount {
  color: var(--green-700);
  margin: 0.5rem 0;
}

.result-note {
  font-size: 0.875rem;
}

.benefits-section {
  background: var(--gradient-subtle) !important;
}

.benefits-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-900);
}

.benefits-list {
  margin-top: 2rem;
}

.benefit-item {
  padding: 1rem 0;
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  background: var(--white);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 1.25rem;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 0.25rem;
}

.benefit-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-dark);
  margin-bottom: 0;
}

.benefits-visual {
  opacity: 0.3;
}

.benefits-visual i {
  font-size: 8rem;
  color: var(--green-500);
}

.pricing-cta-section {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 4rem;
  box-shadow: var(--shadow-md);
}

.pricing-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-900);
}

.pricing-cta-text {
  font-size: 1.2rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.pricing-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* 404 Page */
.error-404 {
  background: linear-gradient(135deg, var(--green-100) 0%, transparent 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  margin-top: 0;
}

.error-code {
  margin-bottom: 3rem;
  position: relative;
}

.error-code h1 {
  font-size: clamp(8rem, 20vw, 15rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.error-404 h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 1.5rem;
}

.error-404 .lead {
  font-size: 1.25rem;
  color: var(--gray-dark);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.error-404 .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(120, 197, 28, 0.3);
}

.error-search {
  max-width: 500px;
  margin: 2rem auto 3rem;
}

.error-search .search-form {
  position: relative;
}

.error-search .search-field {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--green-300);
  border-radius: 50px;
  font-size: 1rem;
  background: var(--white);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.error-search .search-field:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(120, 197, 28, 0.1);
  transform: translateY(-2px);
}

.error-search .search-submit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-primary);
  border: none;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-search .search-submit:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 5px 15px rgba(120, 197, 28, 0.3);
}

.error-quick-links {
  margin-top: 3rem;
}

.error-quick-links h3 {
  font-size: 1.25rem;
  color: var(--green-700);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.quick-link {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--green-700);
  border: 1px solid var(--green-300);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.quick-link:hover {
  transform: translateY(-5px);
  border-color: var(--green-500);
  box-shadow: var(--shadow-md);
  color: var(--green-900);
  text-decoration: none;
}

.quick-link i {
  font-size: 2rem;
  color: var(--green-500);
  margin-bottom: 0.75rem;
  display: block;
}

.quick-link span {
  font-weight: 600;
  display: block;
}

/* Search Page */
.search-results {
  margin-top: 2rem;
}

.search-result-item {
  border-bottom: 1px solid var(--green-300);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.search-result-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.search-excerpt {
  color: var(--gray-dark);
  line-height: 1.6;
}

.search-pagination {
  margin-top: 3rem;
}

.no-results {
  padding: 3rem 0;
}

/* Blog/Index Page */
.page-content {
  line-height: 1.7;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content h2, 
.page-content h3, 
.page-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* ===== UTILITY CLASSES ===== */
.text-balance { text-wrap: balance; }
.shadow-custom { box-shadow: var(--shadow-lg); }
.border-custom { border: 1px solid var(--green-300); }

/* Color Utilities */
.text-primary { color: var(--green-500) !important; }
.text-accent { color: var(--orange-500) !important; }
.bg-primary { background: var(--gradient-primary) !important; }

/* Gradient text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Margin utilities */
.mb-6 { margin-bottom: 4rem; }
.mb-8 { margin-bottom: 6rem; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .site-header {
    padding: 1rem 0;
  }
  
  .logo-hang-container {
    width: 120px;
    height: 120px;
    left: 20px;
  }
  
  .hero-text-box {
    padding: 2.5rem;
    margin: 1rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .navbar-nav .nav-link {
    margin: 0.25rem 0;
    text-align: center;
  }

  .home-hero .hero-text-box {
    padding: 2rem;
    margin: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-hero {
    text-align: center;
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-features {
    gap: 0.75rem;
  }
  
  .about-feature {
    padding: 0.5rem;
  }

  .organisation-team-sidebar,
  .organisation-team-main {
    padding: 2rem;
  }

  .organisation-collaboration-section {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 120px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  
  h2 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .card-body {
    padding: 2rem;
  }
  
  .logo-hang-container {
    width: 100px;
    height: 100px;
    left: 15px;
  }
  
  .hero-text-box {
    padding: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card .card-body {
    padding: 1.5rem;
  }

  .contact-card .card-body,
  .inschrijven-card .card-body,
  .calculator-card .card-body {
    padding: 2rem;
  }

  .organisation-intro-card .card-body {
    padding: 2rem;
  }

  .organisation-collaboration-section {
    padding: 2rem;
  }

  .organisation-cta-section {
    padding: 3rem;
  }
}

@media (max-width: 576px) {
  .logo-hang-container {
    width: 80px;
    height: 80px;
    left: 10px;
  }
  
  .hero-text-box {
    padding: 1.5rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .footer {
    padding: 60px 0 30px;
  }
  
  .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
  
  .btn-lg {
    padding: 12px 30px;
  }
  
  .home-hero .hero-text-box {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .service-card .card-body {
    padding: 1.5rem;
  }

  .contact-card .card-body,
  .inschrijven-card .card-body,
  .calculator-card .card-body {
    padding: 1.5rem;
  }

  .organisation-intro-card .card-body {
    padding: 1.5rem;
  }

  .organisation-collaboration-section,
  .organisation-cta-section {
    padding: 1.5rem;
  }

  .error-code h1 {
    font-size: clamp(6rem, 15vw, 8rem);
  }
  
  .error-404 .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .error-404 .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .quick-link {
    padding: 1.25rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== VACATURE SECTION ===== */
.vacature-section {
  background: var(--gradient-deep);
  position: relative;
  color: var(--white);
}

.vacature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><circle cx="50" cy="50" r="2" fill="white"/></svg>');
  background-size: 50px 50px;
  pointer-events: none;
}

.vacature-content {
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.vacature-content.text-white {
  color: var(--white) !important;
}

.vacature-organization {
  position: relative;
}

.vacature-divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin-top: 1rem;
}

.vacature-highlight .badge {
  box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3);
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--gradient-accent) !important;
  border: none;
}

.vacature-benefits .benefit-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9) !important;
}

.vacature-benefits .d-flex:hover .benefit-icon {
  background: var(--gradient-primary) !important;
  transform: scale(1.1);
}

.vacature-benefits .d-flex:hover .benefit-icon i {
  color: var(--white) !important;
}

.vacature-benefits span {
  color: var(--white) !important;
}

.vacature-image-wrapper {
  position: relative;
}

.vacature-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: all 0.4s ease;
  border: 3px solid var(--green-300);
}

.vacature-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
  border-color: var(--green-500);
}

.vacature-image-overlay {
  background: linear-gradient(45deg, rgba(120, 197, 28, 0.1) 0%, rgba(42, 111, 43, 0.05) 100%);
  pointer-events: none;
}

.vacature-floating-card {
  max-width: 250px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--green-300);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95) !important;
}

.vacature-floating-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

.floating-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.vacature-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.vacature-actions .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.vacature-actions .btn:hover {
  transform: translateY(-2px);
}

.vacature-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.vacature-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

/* Zorg dat alle tekst goed zichtbaar is */
.vacature-content h1,
.vacature-content h2,
.vacature-content h3,
.vacature-content h4,
.vacature-content h5,
.vacature-content h6,
.vacature-content p,
.vacature-content span:not(.benefit-icon i) {
  color: var(--white) !important;
}

.vacature-content .text-white-50 {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Responsive Design voor Vacature Sectie */
@media (max-width: 992px) {
  .vacature-image {
      height: 400px;
  }
  
  .vacature-content {
      text-align: center;
  }
  
  .vacature-divider {
      margin-left: auto;
      margin-right: auto;
  }
  
  .vacature-benefits .d-flex {
      justify-content: center;
  }
  
  .vacature-actions {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .vacature-section {
      padding: 4rem 0;
  }
  
  .vacature-content h2 {
      font-size: 2.5rem !important;
  }
  
  .vacature-organization h3 {
      font-size: 1.75rem !important;
  }
  
  .vacature-image {
      height: 350px;
  }
  
  .vacature-floating-card {
      max-width: 200px;
      padding: 1.5rem;
  }
  
  .vacature-actions {
      flex-direction: column;
      align-items: center;
  }
  
  .vacature-actions .btn {
      width: 100%;
      max-width: 280px;
      margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .vacature-content h2 {
      font-size: 2rem !important;
  }
  
  .vacature-organization h3 {
      font-size: 1.5rem !important;
  }
  
  .vacature-image {
      height: 300px;
  }
  
  .vacature-floating-card {
      position: relative !important;
      margin: 1rem 0 !important;
      max-width: 100%;
  }
  
  .benefit-icon {
      width: 40px !important;
      height: 40px !important;
  }
  
  .benefit-icon i {
      font-size: 1rem !important;
  }
}

/* Animation voor vacature sectie */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.vacature-content > * {
  animation: fadeInUp 0.6s ease-out;
}

.vacature-content > *:nth-child(1) { animation-delay: 0.1s; }
.vacature-content > *:nth-child(2) { animation-delay: 0.2s; }
.vacature-content > *:nth-child(3) { animation-delay: 0.3s; }
.vacature-content > *:nth-child(4) { animation-delay: 0.4s; }
.vacature-content > *:nth-child(5) { animation-delay: 0.5s; }
.vacature-content > *:nth-child(6) { animation-delay: 0.6s; }