/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'nunito', sans-serif;
  overflow-x: hidden;
  background: linear-gradient(135deg, #eefdf6, #f4fbff);
}

/* Header & Navigation */
.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 8%;
  background: rgba(213, 250, 247, 0.873);
  backdrop-filter: blur(5px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo img {
  width: 240px;
  height: 50px;
}

/* Desktop Navigation */



/* Toon navigatie standaard op desktop */




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

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #6ec5f9;
}

.nav-logo {
  display: none;

}

/* Buttons */
.btn-appointment {
  background: #6ec5f9;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-appointment:hover {
  transform: scale(1.05);
}

.btn-blue {
  background: #6ec5f9;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-blue:hover {
  transform: scale(1.05);
}

.btn-white {
  background: white;
  color: #333;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-white:hover {
  background: #b9e5c4;
  color: white;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger Active State */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 8%;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #c6e6f7, #d4f0c1);
}

.hero-text {
  max-width: 50%;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.hero-text h1 span {
  color: #6ec5f9;
}

.hero-text p {
  margin: 1rem 0 2rem;
  font-size: 1.1rem;
  color: #555;
}

.btns {
  display: flex;
  gap: 1rem;
}

/* Hero Image */
.hero-img {
  max-width: 40%;
  animation: float 6s ease-in-out infinite;
}

.hero-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(1.4deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Bubbles Animation */
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  background: rgba(63, 237, 243, 0.4);
  animation: bubbleMove 12s ease-in-out infinite alternate;
}

.bubble1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 5%;
  background: rgba(62, 236, 152, 0.4);
}

.bubble2 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  right: 10%;
  animation-duration: 15s;
  background: rgba(152, 85, 247, 0.4);
}

.bubble3 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  left: 20%;
  animation-duration: 18s;
}

.bubble4 {
  width: 60px;
  height: 60px;
  top: 25%;
  right: 25%;
  animation-duration: 10s;
  background: rgba(243, 159, 63, 0.4);
}

.bubble5 {
  width: 90px;
  height: 90px;
  top: 10%;
  right: 5%;
  animation-duration: 14s;
  background: rgba(243, 231, 63, 0.4);
}

.bubble6 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  left: 35%;
  animation-duration: 11s;
  background: rgba(243, 63, 63, 0.4);
}

@keyframes bubbleMove {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

/* Mouse Scroll Indicator */
.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #6ec5f9;
  border-radius: 12px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.mouse::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #6ec5f9;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 18px;
    opacity: 0.5;
  }
  100% {
    top: 8px;
    opacity: 1;
  }
}

/* Services Section */
.services {
  padding: 5rem 8%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Service Icons */
.icon-wrap {
  font-size: 2rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: floatIcon 4s ease-in-out infinite;
}

.icon-wrap img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

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

/* Service Typography */
.service-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-width: 90%;
  margin: 0 auto;
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Kernwaarden Section */
.kernwaarden {
  background: linear-gradient(135deg, #c6e6f7, #d4f0c1);
  border-radius: 20px;
  padding: 50px 30px;
  margin: 40px auto;
  max-width: 1200px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.kernwaarden h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #111827;
}

.kernwaarden-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.kernwaarde {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  text-align: center;
}

.kernwaarde .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.kernwaarde .icon img, 
.kernwaarde .icon svg {
  width: 40px;
  height: 40px;
}

.kernwaarde h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111827;
}

.kernwaarde p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #2d3241;
  color: #d1d5db;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 300px;
  margin: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 180px;
  height: 70px;
}

.footer-logo h3 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
}

.footer-logo p {
  margin: 0;
  font-size: 14px;
  color: #9ca3af;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}

.footer-column h4 {
  color: #ffffff;
  margin-bottom: 10px;
  margin-top: 20px;
}

.footer-column p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #9ca3af;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

hr {
  border: 0;
  border-top: 1px solid #444;
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  color: #9ca3af;
  max-width: 1200px;
  margin: 0 auto;
}



/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    padding-top: 5rem;
    transition: left 0.4s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  }

  .nav-logo { 
    display: block; 
    flex-direction: column;
    align-items: flex-start;
    width: 190px;
    margin-top: -3rem;

  } 

  .nav-menu.active {
    left: 0;

  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2rem;
    gap: 1.5rem;
    background-color: white;
    padding-bottom: 2rem;
  }
  .nav-menu ul li {
    font-size: 1.2rem;
    border-bottom: #899BFF 1px solid;
    width: 100%;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    margin-left: -1rem;

  }
}

/* -------------------- Team Page -------------------- */
/* Small Hero Section */
.small-hero {
  height: 40vh;
  background: linear-gradient(135deg, #c6e6f7, #d4f0c1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.small-hero h1 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.small-hero p {
  font-size: 1.1rem;
  color: #555;
}

/* Team Section */
.team {
  padding: 5rem 8%;
}

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

/* Team Cards */
.team-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatCard 6s ease-in-out infinite;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Floating Animation */
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Team Photos */
.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #6ec5f9;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Team Text Content */
.team-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.team-card .role {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6ec5f9;
  margin-bottom: 0.8rem;
}

.team-card .bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative; 
  background: white;
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  animation: scaleUp 0.3s ease;
}

.modal h2 {
  color: #333;
  margin-bottom: 1rem;
}

.modal p {
  color: #555;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.5;
}

.modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  transition: color 0.2s ease;
}

.modal .close:hover {
  color: #6ec5f9;
}

/* Modal Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}

/* Modal Photo */
.modal-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #6ec5f9;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  animation: zoomIn 0.6s ease forwards;
}

.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Zoom-in Animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* -------------------- Aanpak Section -------------------- */
.aanpak {
  padding: 5rem 8%;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.aanpak h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #333;
}

.aanpak-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #f9fafb;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  line-height: 1.7;
  color: #444;
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.aanpak-container p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.aanpak-container ul {
  margin: 1rem 0 2rem 1.5rem;
  padding: 0;
}

.aanpak-container ul li {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  color: #333;
  list-style: disc;
}

.aanpak-container strong {
  color: #6ec5f9;
}

.aanpak-container h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.2rem;
}

.aanpak-container h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #444;
  margin: 1.5rem 0 1rem;
}

.aanpak-container .highlight {
  background: #e6f6ff;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  display: inline-block;
  font-weight: 500;
  color: #333;
}

/* Background bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  background: rgba(110, 197, 249, 0.3);
  animation: bubbleMove 12s ease-in-out infinite alternate;
  z-index: 1;
}

.bubble1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
}

.bubble2 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  right: 10%;
  animation-duration: 15s;
}

.bubble3 {
  width: 100px;
  height: 100px;
  bottom: 5%;
  left: 25%;
  animation-duration: 18s;
}

@keyframes bubbleMove {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

/* Price Table */
.price-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}

.price-item {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}

.price-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
}

.price-item p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.8rem;
}

.price-item .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6ec5f9;
  display: block;
  margin-bottom: 0.4rem;
}

.price-item small {
  font-size: 0.85rem;
  color: #999;
}

/* -------------------- Contact Section -------------------- */
.contact-container { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 2rem; 
  max-width: 1200px; 
  margin: 0 auto; 
} 
/* Form card */ 
.form-card { 
  background: #fff; 
  border-radius: 20px; 
  padding: 2rem; 
  box-shadow: 0 8px 24px rgba(0,0,0,0.06); 
  margin-top: 4rem; 
} 

.form-card h2 { 
  font-size: 1.5rem; 
  margin-bottom: 0.5rem; 
  color: #222; 
} 

.form-card p { 
  font-size: 0.95rem; 
  color: #555; 
  margin-bottom: 1.5rem; 
} 

.form-group { 
  display: flex; 
  gap: 1rem; 
  margin-bottom: 1rem; 
} 

.form-group input {
  flex: 1; 
} 

.form-card input, .form-card textarea { 
  width: 100%; 
  padding: 0.9rem 1rem; 
  border: 1px solid #ddd; 
  border-radius: 12px; 
  font-size: 0.95rem; 
  margin-bottom: 1rem; 
} 
  
.form-card textarea { 
  resize: none;   
  height: 120px; 
} 
  
.form-card button { 
  width: 100%; 
  padding: 1rem; 
  background: #6ec5f9; 
  border: none; 
  color: white; 
  font-weight: bold; 
  font-size: 1rem; 
  border-radius: 12px; 
  cursor: pointer; 
  transition: background 0.3s ease; 
} 
  
.form-card button:hover { 
  background: #4caee0; 
} 
    
.form-card small { 
  display: block;
  margin-top: 1rem; 
  font-size: 0.8rem; 
  color: #777; 
} 
       /* Info card */ 
.info-card {     
  background: #fff;     
  border-radius: 20px;     
  padding: 2rem;     
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);     
  margin-top: 4rem;       
} 
      
.info-card h2 {    
  font-size: 1.3rem;   
  margin-bottom: 1.5rem;  
  color: #222; 
} 
      
      
.info-item {    
  display: flex;     
  gap: 1rem;     
  align-items: flex-start;        
  margin-bottom: 1.5rem;       
  font-size: 0.95rem;       
  color: #444; 
      
} 

.info-item .icon { 
  width: 48px; 
  height: 48px; 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  background: #f5f5f5; /* default background */ 
  box-shadow: 0 2px 6px rgba(0,0,0,0.05); 
  } 
  
.info-item .icon img { 
  width: 24px; 
  height: 24px; 
} 
      
      

/* Give each icon its own background color */ 
.info-item:nth-child(1) .icon { 
  background: #e6f4ff; /* blauwachtig voor locatie */ 
} 
      
.info-item:nth-child(2) .icon {       
  background: #ffecec; /* lichtroze voor telefoon */ 
} 
      
      
.info-item:nth-child(3) .icon { 
  background: #fff9e6; /* lichtgeel voor e-mail */ 
}
       
.info-item:nth-child(4) 
.icon { 
  background: #f3f9f3; /* lichtgroen voor tijd */ 
} /* Google Maps */ 
      
.map-container { 
  margin-top: 2rem; 
  max-width: 1200px; 
  margin-left: auto; 
  margin-right: auto; 
  border-radius: 20px; 
  overflow: hidden; 
  box-shadow: 0 8px 24px rgba(0,0,0,0.06); 
} 
      
.map-container iframe { 
  width: 100%; 
  height: 400px; 
  border: none; 
}

/* -------------------- Responsiveness -------------------- */
@media (max-width: 768px) {
  .hero-img {
    max-width: 80%;
    margin: 2rem auto;
  }
  .services-grid,
  .team-grid,
  .price-tables,
  .contact-container {
    grid-template-columns: 1fr;
  }
  .btns {
    flex-direction: column;
    align-items: center;
  }
  .btns button {
    width: 100%;
    max-width: 250px;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

  /* Info card */ 
  .info-card { 
    background: #fff; 
    border-radius: 20px; 
    padding: 2rem; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.06); 
    margin-top: 4rem; 
  } 
  
  .info-card h2 { 
    font-size: 1.3rem; 
    margin-bottom: 1.5rem; 
    color: #222; 
  } 
  
  .info-item { 
    display: flex; 
    gap: 1rem; 
    align-items: flex-start; 
    margin-bottom: 1.5rem; 
    font-size: 0.95rem; 
    color: #444; 
  } 
  
  .info-item .icon { 
    width: 48px; 
    height: 48px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    background: #f5f5f5; /* default background */ 
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); 
  } 
  
  .info-item .icon img { 
    width: 24px; 
    height: 24px; 
  } 

  /* Give each icon its own background color */ 
  .info-item:nth-child(1) .icon { 
    background: #e6f4ff; /* blauwachtig voor locatie */ 
  } 
  .info-item:nth-child(2) .icon { 
    background: #ffecec; /* lichtroze voor telefoon */ 
  } 
  .info-item:nth-child(3) .icon { 
    background: #fff9e6; /* lichtgeel voor e-mail */ 
  } 
  .info-item:nth-child(4) .icon { 
    background: #f3f9f3; /* lichtgroen voor tijd */ 
  } /* Google Maps */ 

  .map-container { 
    margin-top: 2rem; 
    max-width: 1200px; 
    margin-left: auto; 
    margin-right: auto; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.06); 
  } 
  
  .map-container iframe { 
    width: 100%; 
    height: 400px; 
    border: none; 
  } 
  
  
  @media (max-width: 1024px) { 
    .hero { 
      flex-direction: column; 
      text-align: center; 
      padding: 3rem 5%; 
    } 
    
    .hero-text { 
      max-width: 100%; 
      margin-bottom: 2rem; 
    } .hero-img { 
      max-width: 70%; 
    } .hero-text h1 { 
      font-size: 2.5rem; 
    } .hero-text p { 
      font-size: 1rem; 
    } 
  } 
  
  /* Phones */ 
  @media (max-width: 768px) { 
    /* Navbar */ 
    .logo img { 
      width: 180px; 
      height: auto; 
    } 


    
    .nav-menu {

      padding-top: 6rem;
    }
    
      /* Hero */ 
    .hero { 
      padding: 2.5rem 1.5rem; 
      min-height: auto; 
    } 
    .hero-text h1 { 
      font-size: 2rem; 
      line-height: 1.3; 
    } 
    
    .btns { 
      flex-direction: column; 
      gap: 0.75rem; 
    } 
    
    .btns button { 
      width: 100%; 
    } 
    
    .hero-img { 
      max-width: 90%; 
    } 
    /* Services */ 
    .services { 
      padding: 3rem 5%; 
    } 
    .services-grid { 
      grid-template-columns: 1fr; 
    } 
    /* Kernwaarden */ 

    .kernwaarden { 
      border-radius: 0%;
      margin-bottom: 0%;
    }
    .kernwaarden-container { 
      flex-direction: column; 
      align-items: center; 
    } 
    
    .kernwaarde { 
      max-width: 100%; 

    } 
    /* Footer */ 


    .footer { 
      padding: 2rem 1.5rem; 
    }
    .footer-container { 
      flex-direction: column; 
      align-items: flex-start; 
      gap: 2rem; 
    } 
    .footer-column { 
      margin: 0; 
      min-width: 100%; 
    } 
    .footer-bottom { 
      flex-direction: column; 
      gap: 0.5rem; 
      text-align: center; 
    } 

    .form-card { 
      border-radius: 0%;
    }

    .info-card { 
      border-radius: 0%;
    }
  } 
  
  /* Very small phones */ 
  
  @media (max-width: 480px) { 
    .hero-text h1 { 
      font-size: 1.7rem; 
    } 
    .hero-text p { 
      font-size: 0.95rem; 
    } 
    .icon-wrap { 
      width: 54px; 
      height: 54px; 
      font-size: 1.6rem; 
    } 
    .service-card { 
      padding: 2rem 1.5rem; 
    } 
  }



