/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: #E71D73;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1a1a1a;
}

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

h1, h2, h3, h4, h5, h6 {
  color: #1a1a1a;
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p {
  margin-bottom: 1rem;
  color: rgba(33, 32, 30, 0.80);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HEADER ===== */
.header {
  background: #f2f2f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e8e5e1;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 80px;
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a:not(.btn-aanmelden) {
  color: #8f8b88;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav a:not(.btn-aanmelden)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E71D73;
  transition: width 0.3s ease;
}

.nav a:not(.btn-aanmelden):hover,
.nav a:not(.btn-aanmelden).active {
  color: #E71D73;
}

.nav a:not(.btn-aanmelden):hover::after,
.nav a:not(.btn-aanmelden).active::after {
  width: 100%;
}

.btn-aanmelden {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #E71D73;
  color: #ffffff !important;
  padding: 0.8rem 2.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid #E71D73;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-aanmelden::after {
  display: none !important;
}

.btn-aanmelden:hover {
  background: transparent;
  color: #E71D73 !important;
}

.lang-switcher {
  position: relative;
  margin-left: 0.5rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid #e8e5e1;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.lang-toggle:hover {
  border-color: #E71D73;
  color: #E71D73;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid #e8e5e1;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  z-index: 1002;
  min-width: 130px;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.6rem 1rem;
  border: none;
  background: none;
  font-size: 0.9rem;
  font-family: inherit;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lang-option:hover {
  background: #f2f2f0;
}

.lang-option.active {
  color: #E71D73;
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.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 {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(231, 29, 115, 0.1);
  color: #E71D73;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(231, 29, 115, 0.2);
  transition: all 0.3s ease;
  cursor: default;
}

.hero-badge:hover {
  background: #E71D73;
  color: #ffffff;
  border-color: #E71D73;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(231, 29, 115, 0.3);
}

.hero .hero-badge,
.page-hero .hero-badge {
  background: rgba(255, 255, 255, 0.9);
  color: #E71D73;
  border-color: rgba(255, 255, 255, 0.9);
}

.hero .hero-badge:hover,
.page-hero .hero-badge:hover {
  background: #ffffff;
  color: #E71D73;
  border-color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero h1 span {
  color: #E71D73;
}

.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.hero-image {
  display: none;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: #f2f2f0;
}

.section-white {
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
}

/* ===== WELKOM SECTION ===== */
.welkom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.welkom-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
}

.welkom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.welkom-text h2 {
  margin-bottom: 1rem;
}

.welkom-text p {
  font-size: 1.05rem;
}

/* ===== FEATURES / DIENSTEN ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e8e5e1;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.section-alt .feature-card {
  background: #ffffff;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(231, 29, 115, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #E71D73;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  color: #ffffff;
  transition: all 0.4s ease;
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(231, 29, 115, 0.4);
}

.feature-card:hover .feature-icon::before {
  border-color: rgba(231, 29, 115, 0.3);
}

.feature-icon i {
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.15);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== DIENSTEN CARDS (2-col) ===== */
.diensten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.dienst-card {
  background: #ffffff;
  border: 1px solid #e8e5e1;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dienst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.dienst-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.dienst-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dienst-card-content {
  padding: 2rem;
}

.dienst-card-content h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.dienst-card-content p {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.btn-lees-meer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #E71D73;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.btn-lees-meer:hover {
  gap: 0.8rem;
  color: #1a1a1a;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 7rem 0 6rem;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
  color: #ffffff;
}

.page-hero .hero-badge {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.page-hero p {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* ===== ABOUT / OVER SECTION ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-block h2 {
  margin-bottom: 1.2rem;
}

.about-block p {
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-image-portrait {
  aspect-ratio: auto;
}

.about-image-portrait img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* ===== KRAAMZORG PAGE ===== */
.kraamzorg-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.kraamzorg-text h2 {
  margin-bottom: 1rem;
}

.kraamzorg-text p {
  font-size: 1.02rem;
  line-height: 1.8;
}

.kraamzorg-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
}

.kraamzorg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ===== TABS (Kraamzorg page) ===== */
.tabs-section {
  padding: 5rem 0;
  background: #f2f2f0;
}

.tabs-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: #ffffff;
  border: 1px solid #e8e5e1;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #8f8b88;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: #E71D73;
  color: #ffffff;
  border-color: #E71D73;
}

.tab-content {
  display: none;
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid #e8e5e1;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content h3 {
  margin-bottom: 1rem;
  color: #E71D73;
}

.tab-content p {
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ===== THUIS BEVALLEN PAGE ===== */
.thuis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.thuis-grid.reverse {
  direction: rtl;
}

.thuis-grid.reverse > * {
  direction: ltr;
}

.thuis-text h2 {
  margin-bottom: 1rem;
}

.thuis-text p {
  font-size: 1.02rem;
  line-height: 1.8;
}

.thuis-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
}

.thuis-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.voordelen-list {
  list-style: none;
  margin-top: 1.5rem;
}

.voordelen-list li {
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  color: rgba(33, 32, 30, 0.80);
}

.voordelen-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E71D73;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  background: #f2f2f0;
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(231, 29, 115, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #E71D73;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-item p {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-item small {
  font-size: 0.85rem;
  color: #8f8b88;
}

.contact-form {
  background: #ffffff;
  border: 1px solid #e8e5e1;
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-form h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e8e5e1;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #f2f2f0;
  color: #1a1a1a;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #E71D73;
  background: #ffffff;
}

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

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #E71D73;
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #E71D73;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-submit:hover {
  background: transparent;
  color: #E71D73;
}

/* ===== AANMELDEN FORM ===== */
.aanmelden-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e8e5e1;
  border-radius: 20px;
  padding: 3rem;
}

.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e8e5e1;
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
  padding-bottom: 0;
}

.form-section-title {
  font-size: 1.4rem;
  color: #E71D73;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #E71D73;
  display: inline-block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-row .flex-2 {
  grid-column: span 1;
  flex: 2;
}

.form-row .flex-1 {
  grid-column: span 1;
  flex: 1;
}

.aanmelden-form-wrapper .btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

[data-theme="dark"] .aanmelden-form-wrapper {
  background: #1e1e1e;
  border-color: #2a2a2a;
}

[data-theme="dark"] .form-section {
  border-bottom-color: #2a2a2a;
}

[data-theme="dark"] .form-section-title {
  color: #E71D73;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-row .form-group {
    margin-bottom: 1.2rem;
  }
  
  .aanmelden-form-wrapper {
    padding: 1.5rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: #8f8b88;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #21201e;
}

.footer h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer p {
  color: #8f8b88;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  color: #ccc9c8;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a {
  color: #ccc9c8;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #8f8b88;
}

.footer-bottom a {
  color: #ccc9c8;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.footer-credit {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.3rem;
}

.footer-credit a {
  color: #E71D73;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #ffffff;
}

.footer .btn-aanmelden {
  margin-top: 1rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== DARK MODE TOGGLE ===== */
.theme-toggle {
  background: none;
  border: 1px solid #e8e5e1;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #1a1a1a;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: #E71D73;
  color: #E71D73;
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ===== DARK MODE ===== */
[data-theme="dark"] body {
  background: #121212;
  color: #e0e0e0;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #f0f0f0;
}

[data-theme="dark"] p {
  color: rgba(224, 224, 224, 0.8);
}

[data-theme="dark"] a:hover {
  color: #f0f0f0;
}

[data-theme="dark"] .header {
  background: #1a1a1a;
  border-bottom-color: #2a2a2a;
}

[data-theme="dark"] .header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .nav a:not(.btn-aanmelden) {
  color: #a0a0a0;
}

[data-theme="dark"] .nav a:not(.btn-aanmelden):hover,
[data-theme="dark"] .nav a:not(.btn-aanmelden).active {
  color: #E71D73;
}

[data-theme="dark"] .lang-toggle {
  color: #e0e0e0;
  border-color: #333;
}

[data-theme="dark"] .lang-dropdown {
  background: #1e1e1e;
  border-color: #333;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .lang-option {
  color: #e0e0e0;
}

[data-theme="dark"] .lang-option:hover {
  background: #2a2a2a;
}

[data-theme="dark"] .theme-toggle {
  color: #e0e0e0;
  border-color: #333;
}

[data-theme="dark"] .hamburger span {
  background: #e0e0e0;
}

[data-theme="dark"] .hero::before {
  background: rgba(0,0,0,0.6);
}

[data-theme="dark"] .section-white {
  background: #121212;
}

[data-theme="dark"] .section-alt {
  background: #1a1a1a;
}

[data-theme="dark"] .feature-card {
  background: #1e1e1e;
  border-color: #2a2a2a;
}

[data-theme="dark"] .section-alt .feature-card {
  background: #1e1e1e;
}

[data-theme="dark"] .feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(231, 29, 115, 0.3);
}

[data-theme="dark"] .dienst-card {
  background: #1e1e1e;
  border-color: #2a2a2a;
}

[data-theme="dark"] .dienst-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .btn-lees-meer:hover {
  color: #f0f0f0;
}

[data-theme="dark"] .page-hero::before {
  background: rgba(0,0,0,0.6);
}

[data-theme="dark"] .tabs-section {
  background: #1a1a1a;
}

[data-theme="dark"] .tab-btn {
  background: #1e1e1e;
  border-color: #2a2a2a;
  color: #a0a0a0;
}

[data-theme="dark"] .tab-content {
  background: #1e1e1e;
  border-color: #2a2a2a;
}

[data-theme="dark"] .contact-info-card {
  background: #1a1a1a;
}

[data-theme="dark"] .contact-form {
  background: #1e1e1e;
  border-color: #2a2a2a;
}

[data-theme="dark"] .form-group label {
  color: #e0e0e0;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
  background: #252525;
  border-color: #333;
  color: #e0e0e0;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus,
[data-theme="dark"] .form-group select:focus {
  background: #1e1e1e;
  border-color: #E71D73;
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
  color: #666;
}

[data-theme="dark"] .contact-item small {
  color: #666;
}

[data-theme="dark"] .voordelen-list li {
  color: rgba(224, 224, 224, 0.8);
}

[data-theme="dark"] .footer {
  background: #0d0d0d;
}

[data-theme="dark"] .footer-grid {
  border-bottom-color: #1a1a1a;
}

[data-theme="dark"] .btn-aanmelden:hover {
  color: #E71D73 !important;
  background: rgba(231, 29, 115, 0.1);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.4s ease;
  text-decoration: none;
}

.whatsapp-float.cookie-active {
  bottom: 220px;
}

@media (max-width: 768px) {
  .whatsapp-float.cookie-active {
    bottom: 280px;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #f2f2f0;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.2rem;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 1.1rem;
  }

  .header .container {
    padding: 0 1rem;
    min-height: 60px;
  }

  .logo img {
    height: 40px;
  }

  .lang-switcher {
    margin-left: 0.3rem;
  }

  .lang-toggle {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
  }

  .theme-toggle {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    padding: 5rem 0;
  }

  .welkom-grid,
  .about-content,
  .kraamzorg-intro,
  .thuis-grid,
  .thuis-grid.reverse,
  .diensten-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .thuis-grid.reverse {
    direction: ltr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding: 3.5rem 0 3rem;
  }

  .hero {
    padding: 4rem 0;
  }

  .tabs-nav {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .feature-card {
    padding: 1.5rem 1.2rem;
  }

  .contact-form,
  .contact-info-card {
    padding: 1.5rem;
  }

  .tab-content {
    padding: 2rem 1.5rem;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
  color: #ffffff;
  padding: 1.2rem 2.5rem;
  z-index: 10000;
  border-radius: 16px;
  transform: translateY(calc(100% + 40px));
  transition: transform 0.4s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-icon {
  font-size: 1.6rem;
}

.cookie-header strong {
  font-size: 1.1rem;
  color: #ffffff;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-text a {
  color: #E71D73;
  text-decoration: underline;
}

.cookie-text a:hover {
  color: #ff4d94;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.cookie-decline-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  font-family: inherit;
  transition: color 0.2s;
}

.cookie-decline-link:hover {
  color: #ffffff;
}

.cookie-necessary,
.cookie-accept {
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  border: none;
  white-space: nowrap;
}

.cookie-necessary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-necessary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cookie-accept {
  background: #E71D73;
  color: #ffffff;
}

.cookie-accept:hover {
  background: #ff4d94;
}

@media (max-width: 768px) {
  .cookie-banner {
    position: fixed !important;
    bottom: 15px !important;
    left: 15px !important;
    right: 15px !important;
    width: auto !important;
    max-width: none !important;
    padding: 1.2rem;
    border-radius: 14px;
    z-index: 99999 !important;
    box-sizing: border-box;
    transform: translateY(calc(100% + 30px)) !important;
  }

  .cookie-banner.show {
    transform: translateY(0) !important;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    width: 100%;
  }

  .cookie-header {
    justify-content: center;
  }

  .cookie-header strong {
    font-size: 1rem;
  }

  .cookie-icon {
    font-size: 1.3rem;
  }

  .cookie-text {
    width: 100%;
  }

  .cookie-text p {
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cookie-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-decline-link {
    order: 3;
    font-size: 0.8rem;
    padding: 0.3rem;
  }

  .cookie-necessary {
    order: 2;
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    max-width: none;
  }

  .cookie-accept {
    order: 1;
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    max-width: none;
  }
}

/* ===== PRIVACY PAGE ===== */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  color: #E71D73;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.privacy-content p,
.privacy-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(33, 32, 30, 0.85);
}

.privacy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-content ul li {
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .privacy-content p,
[data-theme="dark"] .privacy-content li {
  color: rgba(224, 224, 224, 0.85);
}
