/* Basisstijl */
html {
  scroll-behavior: smooth;
}

:root {
  --primary-green: #00d4aa;    /* Helder groen van BuildBase */
  --primary-teal: #00b8a9;     /* Teal van BuildBase */
  --primary-gradient: linear-gradient(135deg, #00d4aa 0%, #00b8a9 100%); /* BuildBase gradient */
  --secondary-gradient: linear-gradient(135deg, #00b8a9 0%, #008f8f 100%); /* Strouwi gradient */
  --accent-green: #00e6b8;     /* Lichter groen voor accenten */
  --accent-teal: #00a8a8;      /* Donkerder teal voor accenten */
  --neutral-light: #f8fafc;    /* Zeer lichtgrijs */
  --neutral-dark: #1a202c;      /* Donkere tekstkleur */
  --success: #00d4aa;          /* Groen voor success states */
  --warning: #f6ad55;          /* Oranje voor warnings */
  --error: #f56565;            /* Rood voor errors */
  --glass-bg: rgba(0, 212, 170, 0.1);
  --glass-border: rgba(0, 212, 170, 0.2);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--neutral-dark);
  line-height: 1.7;
  background-color: var(--neutral-light);
}

h1, h2, h3, h4 {
  font-weight: 700;
  margin-top: 0;
  letter-spacing: -0.025em;
}

h1 { 
  font-size: clamp(2rem, 5vw, 3.5rem); 
  line-height: 1.1; 
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 { 
  font-size: clamp(1.5rem, 4vw, 2.5rem); 
  margin-bottom: 1rem; 
  color: var(--neutral-dark);
}

h3 { 
  font-size: clamp(1.25rem, 3vw, 1.75rem); 
  margin: 1rem 0 0.5rem; 
  color: var(--primary-teal);
}

h4 { 
  font-size: clamp(1rem, 2vw, 1.25rem); 
  margin: 0.75rem 0 0.25rem; 
  color: var(--neutral-dark);
}

p {
  margin: 0.75rem 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

ul {
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}

li {
  margin: 0.5rem 0;
  line-height: 1.6;
}

/* Container voor centrering */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header / Navigatie */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

nav ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.menu li a {
  text-decoration: none;
  color: var(--neutral-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.menu li a:hover {
  background: rgba(0, 212, 170, 0.1);
  transform: translateY(-2px);
}

.menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-teal);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.menu li a:hover::after {
  width: 80%;
}

.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--neutral-dark);
  cursor: pointer;
  display: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(0, 212, 170, 0.1);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Header-stijl aangepast na scroll */
header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: var(--shadow-lg);
}

header.scrolled .logo,
header.scrolled .menu li a,
header.scrolled .menu-toggle {
  color: var(--neutral-dark);
}

header.scrolled .menu li a:hover {
  background: rgba(0, 212, 170, 0.15);
}

/* Mobiele navigatie */
@media (max-width: 768px) {
  nav ul.menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    border-radius: 1rem;
    width: 250px;
    text-align: right;
    border: 1px solid var(--glass-border);
  }
  
  nav ul.menu.open {
    display: flex;
    animation: slideIn 0.3s ease-out;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .menu li {
    margin: 0.5rem 0;
  }
  
  .menu li a {
    color: var(--neutral-dark);
    font-weight: 600;
    display: block;
    padding: 0.75rem 1rem;
  }
  
  .menu-toggle {
    display: block;
  }
}

/* Hero sectie */
#hero {
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: url('resources/strouwi_glabbeek.jpeg') center center/cover no-repeat;
}
#hero > * {
  position: relative;
  z-index: 3;
}

.hero-content {
  padding: 7rem 0 6rem 0;
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content .subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: var(--primary-gradient);
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 2rem;
  font-weight: 600;
  border: 2px solid var(--primary-green);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: var(--secondary-gradient);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-teal);
}

/* Highlights sectie */
#highlights {
  background: #fff;
  padding: 4rem 0;
}

.highlights-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.highlight-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.highlight-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.highlight-item h3 {
  color: var(--primary-teal);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.highlight-item p {
  color: var(--neutral-dark);
  line-height: 1.7;
}

/* Over ons sectie */
#about {
  background: var(--neutral-light);
  padding: 4rem 0;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  margin-bottom: 2rem;
  color: var(--neutral-dark);
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--neutral-dark);
}

/* Waarden sectie */
#values {
  background: #fff;
  padding: 4rem 0;
}

.values-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.values-content h2 {
  margin-bottom: 2rem;
  color: var(--neutral-dark);
}

.values-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--neutral-dark);
}

/* Diensten sectie */
#services {
  background: var(--neutral-light);
  padding: 4rem 0;
}

.services-content h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--neutral-dark);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-gradient);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.service-item h3 {
  color: var(--primary-teal);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-item ul {
  list-style: none;
  padding: 0;
}

.service-item li {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.service-item li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* BuildBase subsectie */
.buildbase-section {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--primary-gradient);
  border-radius: 1rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.buildbase-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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.buildbase-section h3 {
  color: #fff;
  margin-top: 0;
  font-size: 1.75rem;
  position: relative;
  z-index: 2;
}

.buildbase-section p {
  position: relative;
  z-index: 2;
  line-height: 1.8;
}

.buildbase-section a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.buildbase-section a:hover {
  text-decoration: underline;
}

/* Join us sectie */
#join {
  background: var(--secondary-gradient);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

#join::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

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

.join-content h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.join-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.join-content .cta-button {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.join-content .cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Team sectie */
#team {
  background: #fff;
  padding: 6rem 0;
}

.team-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.team-content p {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.team-member {
  text-align: center;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 280px !important;
  max-height: 280px !important;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-green);
  transition: all 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
  border-color: var(--primary-teal);
}

.team-member h4 {
  margin: 0.5rem 0 0.25rem;
  color: var(--neutral-dark);
  font-size: 1.1rem;
}

.team-member p {
  margin: 0;
  color: var(--primary-teal);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  height: 2.4rem;
  max-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  word-wrap: break-word;
  white-space: nowrap;
}

/* Vacature sectie */
#jobs {
  background: var(--neutral-light);
  padding: 4rem 0;
}

.jobs-content h3 {
  margin-top: 0.5rem;
  color: var(--primary-teal);
  font-size: 1.75rem;
}

.job-details {
  margin-top: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.job-details h4 {
  margin-top: 1.5rem;
  color: var(--primary-teal);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.job-details ul {
  list-style: none;
  padding: 0;
}

.job-details li {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.job-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Contact sectie */
#contact {
  background: #fff;
  padding: 4rem 0;
}

.contact-content p {
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--neutral-dark);
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  font: inherit;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  background: #fff;
  font-size: 1rem;
}

.contact-form input:focus, 
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

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

.contact-form .cta-button {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  background: var(--primary-gradient);
  border: none;
  color: #fff;
}

.contact-form .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
  background: #f8fafc; /* veel lichter */
  color: #1a202c;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #e0e0e0;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-content .logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-content .logo-container a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-content .logo-container a:hover {
  transform: scale(1.02);
}

.footer-content .logo-container a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.2);
  border-radius: 8px;
}

.footer-content .logo-img {
  background: #fff;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
  border-radius: 8px;
  padding: 2px;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-content .company-name {
  font-size: 1.2rem;
  font-weight: 600;
}
.footer-copyright {
  color: #1a202c;
  font-size: 1rem;
  opacity: 0.85;
}
@media (max-width: 600px) {
  .footer-content .logo-container {
    gap: 6px;
  }
  
  .footer-content .logo-container a {
    gap: 6px;
  }
  
  .footer-content .logo-img {
    width: 28px;
    height: 28px;
  }
  
  .footer-content .company-name {
    font-size: 1rem;
  }
  
  .footer-copyright {
    font-size: 0.95rem;
  }
}

/* Scroll animaties */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 4px 24px 0 rgba(0,212,170,0.07);
}

/* Form focus states */
.contact-form div.focused label {
  color: var(--primary-green);
}

.contact-form input.valid,
.contact-form textarea.valid {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

.contact-form input.invalid,
.contact-form textarea.invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* Form message styling */
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.form-message.success {
  background-color: rgba(0, 212, 170, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
}

.form-message.error {
  background-color: rgba(245, 101, 101, 0.1);
  border: 1px solid var(--error);
  color: var(--error);
}

/* Loading states */
.cta-button.loading {
  position: relative;
  color: transparent;
}

.cta-button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Parallax effect */
#hero {
  transform: translateZ(0);
  will-change: transform;
}

/* Hover effects voor team members */
.team-member {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Responsive verbeteringen */
@media (max-width: 1024px) {
  .container {
    width: 95%;
  }
  
  .service-list {
    grid-template-columns: 1fr;
  }
  
  .highlights-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-content {
    padding: 6rem 0 3rem 0;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  
  .team-member {
    height: 280px !important;
    max-height: 280px !important;
  }
  
  .team-member p {
    height: 2rem !important;
    max-height: 2rem !important;
    font-size: 0.85rem;
    word-wrap: break-word;
    white-space: nowrap;
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-content .subtitle {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* Nieuwe animatie effecten */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(0, 212, 170, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.8), 0 0 30px rgba(0, 212, 170, 0.6);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  0%, 50% {
    border-color: transparent;
  }
  51%, 100% {
    border-color: var(--primary-green);
  }
}

/* Animaties toepassen */
.hero-content h1 {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-content .subtitle {
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-content .cta-button {
  animation: scaleIn 1s ease-out 1.1s both;
}

.highlight-item {
  animation: fadeInUp 0.8s ease-out both;
}

.highlight-item:nth-child(1) { animation-delay: 0.1s; }
.highlight-item:nth-child(2) { animation-delay: 0.3s; }
.highlight-item:nth-child(3) { animation-delay: 0.5s; }

.service-item {
  animation: fadeInLeft 0.8s ease-out both;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.3s; }
.service-item:nth-child(3) { animation-delay: 0.5s; }

.team-member {
  animation: scaleIn 0.6s ease-out both;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 280px !important;
  max-height: 280px !important;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }
.team-member:nth-child(5) { animation-delay: 0.5s; }
.team-member:nth-child(6) { animation-delay: 0.6s; }
.team-member:nth-child(7) { animation-delay: 0.7s; }
.team-member:nth-child(8) { animation-delay: 0.8s; }
.team-member:nth-child(9) { animation-delay: 0.9s; }

/* Hover animaties */
.cta-button:hover {
  /* animation: pulse 0.6s ease-in-out; */
}

/* Team member hover effecten - vloeiende overgangen zonder animatie */
.team-member {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 280px !important;
  max-height: 280px !important;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-member:hover img {
  transform: scale(1.05);
  border-color: var(--primary-teal);
}

.highlight-item:hover {
  animation: glow 1s ease-in-out infinite;
}

/* Typing effect voor hero titel */
.typing-effect {
  overflow: hidden;
  border-right: 3px solid var(--primary-green);
  white-space: nowrap;
  animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
}

/* Staggered animaties voor lijsten */
.service-item li {
  opacity: 0;
  animation: fadeInLeft 0.5s ease-out forwards;
}

.service-item li:nth-child(1) { animation-delay: 0.1s; }
.service-item li:nth-child(2) { animation-delay: 0.2s; }
.service-item li:nth-child(3) { animation-delay: 0.3s; }

.job-details li {
  opacity: 0;
  animation: fadeInRight 0.5s ease-out forwards;
}

.job-details li:nth-child(1) { animation-delay: 0.1s; }
.job-details li:nth-child(2) { animation-delay: 0.2s; }
.job-details li:nth-child(3) { animation-delay: 0.3s; }
.job-details li:nth-child(4) { animation-delay: 0.4s; }
.job-details li:nth-child(5) { animation-delay: 0.5s; }
.job-details li:nth-child(6) { animation-delay: 0.6s; }
.job-details li:nth-child(7) { animation-delay: 0.7s; }

/* Parallax scroll effecten */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Smooth transitions voor alle elementen */
* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reveal animaties */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Counter animaties */
.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-teal);
  text-align: center;
}

.counter-container {
  text-align: center;
  margin: 2rem 0;
}

.counter-label {
  font-size: 1rem;
  color: var(--neutral-dark);
  margin-top: 0.5rem;
}

/* Loading animatie voor afbeeldingen */
.image-loading {
  position: relative;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Bounce effect voor CTA buttons */
.cta-button.bounce {
  animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    transform: translate3d(0,-30px,0);
  }
  70% {
    transform: translate3d(0,-15px,0);
  }
  90% {
    transform: translate3d(0,-4px,0);
  }
}

/* Shake effect voor error states */
.shake {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

/* Fade in effect voor modals/overlays */
.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slide in effect voor sidebars */
.slide-in {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Rotate effect voor icons */
.rotate {
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Scale effect voor hover states */
.scale-on-hover:hover {
  transform: scale(1.05);
}

/* Gradient animatie voor backgrounds */
.gradient-animation {
  background: linear-gradient(-45deg, var(--primary-green), var(--primary-teal), var(--accent-green), var(--accent-teal));
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* --- LEESBAARHEID --- */
html {
  font-size: 18px;
}
body {
  line-height: 1.8;
}
p, .contact-content p, .about-content p, .values-content p, .team-content p {
  font-size: 1.12rem;
  color: #222;
  line-height: 1.8;
}
ul, li {
  font-size: 1.12rem;
}
section {
  margin: 0 0 4rem 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 2rem;
}
h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 1.5rem 0 1rem;
}
h4 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin: 1rem 0 0.5rem;
}

/* Cards/boxes leesbaarheid */
.highlight-item, .service-item, .job-details, .team-member, .contact-form {
  color: #222;
  background: #fff;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  border-radius: 1.2rem;
}

/* Extra witruimte tussen secties op mobiel */
@media (max-width: 768px) {
  html {
    font-size: 19px;
  }
  .container {
    padding: 0 0.5rem;
  }
  section {
    margin: 0 0 3rem 0;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  p, ul, li {
    font-size: 1.15rem;
  }
}

/* Subtielere animaties */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Logo container en afbeelding in navbar en footer */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo link styling */
.logo-container a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container a:hover {
  transform: scale(1.02);
}

.logo-container a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.2);
  border-radius: 8px;
}

.logo-img {
  height: 38px;
  width: auto;
  vertical-align: middle;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);
  background: #fff;
  object-fit: contain;
}

.company-name {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .logo-container {
    gap: 8px;
  }
  
  .logo-container a {
    gap: 8px;
  }
  
  .logo-img {
    height: 28px;
  }
  
  .company-name {
    font-size: 1.2rem;
  }
}

/* Groot logo in hero-sectie */
.hero-logo {
  display: block;
  margin: 0 auto 2rem auto;
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  background: #fff;
  object-fit: contain;
}
@media (max-width: 600px) {
  .hero-logo {
    max-width: 120px;
    margin-bottom: 1.2rem;
  }
}

/* Wat doen we? kaders */
.watdoenwe-kaders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 2rem 0;
}

.watdoenwe-kader {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.watdoenwe-kader:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.watdoenwe-kader h3 {
  color: var(--primary-teal);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.watdoenwe-kader p {
  color: var(--neutral-dark);
  line-height: 1.7;
}

/* Wat doen we? detailblokken visueel verbinden met kaders */
.watdoenwe-verdieping {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  margin-top: -1.5rem; /* optisch dichter bij de kaders */
}

.watdoenwe-detail {
  background: #f4fdfb;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 4px 16px 0 rgba(0,212,170,0.07);
  border-top: 3px solid var(--primary-teal);
  padding: 1.5rem 2rem 2rem 2rem;
  min-height: 180px;
  position: relative;
  top: -8px;
  transition: box-shadow 0.3s, border-color 0.3s;
}

/* Visuele lijn tussen kader en detail */
.watdoenwe-kader::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-teal);
  margin: 1rem auto 0 auto;
  border-radius: 2px;
  opacity: 0.25;
}

/* Hover: bovenste en onderste blok samen highlighten */
.watdoenwe-kader:hover,
.watdoenwe-detail:hover,
.watdoenwe-kader:focus-within,
.watdoenwe-detail:focus-within {
  box-shadow: 0 8px 32px 0 rgba(0,212,170,0.18);
  border-color: var(--primary-green);
  z-index: 2;
}

@media (max-width: 768px) {
  .watdoenwe-verdieping {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .watdoenwe-detail {
    top: 0;
    border-radius: 1rem;
  }
}

/* Alle tekst niet-cursief */
body, p, h1, h2, h3, h4, h5, h6, em, i, .no-italic, * {
  font-style: normal !important;
}

/* --- Nieuwe onepager secties --- */

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 2rem 0;
}

.dienst-kader {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.dienst-kader:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.dienst-kader h3 {
  color: var(--primary-teal);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.dienst-kader p {
  color: var(--neutral-dark);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.dienst-link {
  display: inline-block;
  color: var(--primary-teal);
  font-weight: 600;
  text-decoration: underline;
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.dienst-link:hover {
  color: var(--primary-green);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 2rem 0;
}
.case-teaser {
  background: #f4fdfb;
  border-radius: 1rem;
  box-shadow: 0 2px 8px 0 rgba(0,212,170,0.07);
  border-left: 4px solid var(--primary-teal);
  padding: 1.5rem 2rem;
  min-height: 120px;
  position: relative;
  font-size: 1.05rem;
}
.case-teaser blockquote {
  margin: 0 0 0.5rem 0;
  font-style: italic;
  color: #222;
}
.case-teaser cite {
  font-size: 0.95rem;
  color: var(--primary-teal);
}

.cases-content .cta-link {
  display: inline-block;
  margin-top: 1.2rem;
}

.team-content .cta-link {
  display: inline-block;
  margin-top: 1.2rem;
  text-align: left;
  align-self: flex-start;
}

.vacatures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 2rem 0;
}
.vacature-teaser {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.vacature-teaser:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.vacature-teaser h3 {
  color: var(--primary-teal);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}
.vacature-teaser p {
  color: var(--neutral-dark);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.vacature-link {
  display: inline-block;
  color: var(--primary-teal);
  font-weight: 600;
  text-decoration: underline;
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.vacature-link:hover {
  color: var(--primary-green);
}

.cta-link {
  color: var(--primary-teal);
  font-weight: 600;
  text-decoration: underline;
  margin-left: 1.5rem;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.cta-link:hover {
  color: var(--primary-green);
}

/* Spacing tussen secties verbeteren */
section {
  margin: 0 0 4.5rem 0;
}

@media (max-width: 768px) {
  .diensten-grid, .cases-grid, .vacatures-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  section {
    margin: 0 0 2.5rem 0;
  }
}

/* --- Strouwi hero --- */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('resources/strouwi_glabbeek.jpeg') center center/cover no-repeat;
  box-shadow: 0 8px 32px 0 rgba(0,212,170,0.10);
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  padding: 6rem 1.5rem 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-title {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 1.1rem 0;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6), 0 2px 12px rgba(0,0,0,0.4);
}
.hero-sub {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 2.2rem;
  max-width: 520px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
}
.cta-button {
  background: var(--primary-green);
  color: #fff;
  font-size: 1.13rem;
  font-weight: 700;
  padding: 1.1rem 2.2rem;
  border-radius: 2.2rem;
  border: none;
  box-shadow: 0 4px 24px 0 rgba(0,212,170,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.2rem;
}
.cta-button:hover {
  background: var(--primary-teal);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(0,212,170,0.18);
}
@media (max-width: 700px) {
  .hero-content {
    padding: 2.5rem 1rem 2.5rem 1rem;
    max-width: 98vw;
  }
  .hero-title {
    font-size: 1.3rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
}

/* Specifieke stijl voor de tekstsectie op de Java Consultancy pagina */
.java-consultancy-dark-section {
  background: #fff !important;
  color: #23272f !important;
}
.java-consultancy-dark-section p,
.java-consultancy-dark-section h2,
.java-consultancy-dark-section ul,
.java-consultancy-dark-section li,
.java-consultancy-dark-section a {
  color: #23272f !important;
}

/* Specifieke stijl voor de content-sectie op de Java Consultancy pagina */
.java-consultancy-content-section {
  background: #fff;
  color: #23272f;
}
.java-consultancy-content-section p,
.java-consultancy-content-section h2,
.java-consultancy-content-section ul,
.java-consultancy-content-section li,
.java-consultancy-content-section a {
  color: #23272f;
}

/* Styling voor blokken op de Java Consultancy pagina */
.jc-intro-block {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 2.5rem 2rem 2rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  position: relative;
  border-left: 5px solid var(--primary-teal);
}
.jc-intro-block p:first-child {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 1.3rem;
}
.jc-intro-block p:not(:first-child) {
  color: #4a5568;
  font-size: 1.08rem;
  margin-bottom: 1.1rem;
}

.jc-aanpak-block, .jc-waarom-block {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
  border: 1px solid #e0e0e0;
}
.jc-aanpak-block h2, .jc-waarom-block h2 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: var(--primary-teal);
}
.jc-aanpak-list, .jc-waarom-list {
  padding-left: 1.2rem;
  margin: 0;
}
.jc-aanpak-list li, .jc-waarom-list li {
  margin-bottom: 0.7rem;
  padding-left: 1.2rem;
  position: relative;
}
.jc-aanpak-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}
.jc-waarom-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-weight: bold;
}

.jc-cta-block {
  text-align: center;
  margin-top: 2.5rem;
}
.jc-cta-block .cta-button {
  font-size: 1.15rem;
  padding: 1.1rem 2.5rem;
}

/* Vacatures section with gradient background */
#vacatures {
  background: linear-gradient(90deg, #00d4aa 0%, #00b8a9 50%, #008f8f 100%);
  padding: 4rem 0;
  margin: 4rem 0;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.4);
}

#vacatures .container {
  position: relative;
  z-index: 1;
}

#vacatures h2,
#vacatures p {
  color: white;
}

#vacatures .vacature-teaser {
  /* Reverted to original styling - no gradient or glassmorphism */
}

#vacatures .vacature-teaser h3 {
  color: var(--primary-teal);
}

#vacatures .vacature-teaser p {
  color: var(--neutral-dark);
}

#vacatures .vacature-link {
  color: var(--primary-teal);
  text-decoration: underline;
}

#vacatures .vacature-link:hover {
  color: var(--primary-green);
}

#vacatures .cta-link {
  color: white;
}

#vacatures .cta-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  #vacatures {
    padding: 3rem 0;
    margin: 3rem 0;
  }
}

@media (max-width: 480px) {
  #vacatures {
    padding: 2rem 0;
    margin: 2rem 0;
  }
}

/* Case Review Styling */
.case-review {
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.case-review:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.case-review::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-gradient);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.review-header h3 {
  color: var(--primary-teal);
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.rating {
  display: flex;
  gap: 2px;
}

.star {
  color: #ffd700;
  font-size: 1.2rem;
}

.case-review blockquote {
  margin: 0 0 1.5rem 0;
  font-style: italic;
  color: var(--neutral-dark);
  line-height: 1.7;
  font-size: 1.05rem;
  position: relative;
  padding-left: 1.5rem;
}

.case-review blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--primary-teal);
  opacity: 0.3;
  font-family: serif;
}

.case-review cite {
  font-size: 1rem;
  color: var(--primary-teal);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--neutral-medium);
  margin-top: 1rem;
}

.google-icon {
  font-size: 1.1rem;
}

.cases-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--neutral-light);
  border-radius: 1rem;
}

.cases-cta h3 {
  color: var(--neutral-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.cases-cta p {
  color: var(--neutral-dark);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.review-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.review-links .cta-button {
  margin: 0;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
}

@media (max-width: 768px) {
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .review-links {
    flex-direction: column;
    align-items: center;
  }
  
  .cases-cta {
    padding: 2rem 1.5rem;
  }
}

/* Website Examples Styling */
.website-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.example-site {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.example-site:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.example-preview {
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.preview-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.example-site:hover .preview-image {
  transform: scale(1.05);
}

.example-site h3 {
  color: var(--primary-teal);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.example-site p {
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.example-link {
  display: inline-block;
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-green);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.example-link:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .website-examples {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .example-site {
    padding: 1.5rem;
  }
  
  .preview-image {
    height: 150px;
  }
}

/* Footer Links Styling */
.footer-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-link {
  color: var(--neutral-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-green);
}
