/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #4a90c2;
  --primary-dark: #3a7aa8;
  --primary-light: #e8f4fc;
  --foreground: #2d3748;
  --muted: #64748b;
  --background: #ffffff;
  --secondary: #f1f5f9;
  --border: #e2e8f0;
  --radius: 0.625rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.top-bar-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  transition: opacity 0.2s;
}

.top-bar-link:hover {
  opacity: 0.8;
}

.top-bar-link svg {
  flex-shrink: 0;
}

.opening-hours {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .top-bar-left {
    width: 100%;
    justify-content: center;
    gap: 1.5rem;
  }

  .top-bar-right {
    width: 100%;
    text-align: center;
  }

  .top-bar-link {
    font-size: 0.75rem;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav {
  display: none;
  gap: 2rem;
}

.nav a {
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.header-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  
  .header-cta {
    display: block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  padding: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--primary);
  background-color: var(--primary-light);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 1rem;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--background) 100%);
}

.hero-container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  position: relative;
  height: 300px;
  background-color: var(--secondary);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }
  
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-image {
    height: 400px;
  }
}

/* Section */
.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--muted);
  margin-top: 1rem;
}

/* Cards */
.card {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 100%;
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
}

.card-icon svg {
  width: 5rem;
  height: 5rem;
  color: var(--primary);
  opacity: 0.3;
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--muted);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.card-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.grid > * {
  height: 100%;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Klachten Icons Grid */
.klachten-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .klachten-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .klachten-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .klachten-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.klacht-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--background);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

@media (min-width: 768px) {
  .klacht-item {
    gap: 1rem;
    padding: 2.5rem 2rem;
  }
}

.klacht-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.klacht-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .klacht-icon {
    width: 4rem;
    height: 4rem;
  }
}

.klacht-icon svg,
.klacht-icon img {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .klacht-icon svg,
  .klacht-icon img {
    width: 2rem;
    height: 2rem;
  }
}

.klacht-item span {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .klacht-item span {
    font-size: 0.95rem;
  }
}

/* USPs */
.usps {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .usps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.usp {
  text-align: center;
  padding: 2rem;
}

.usp-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
}

.usp-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.usp h3 {
  margin-bottom: 0.5rem;
}

.usp p {
  color: var(--muted);
}

/* Quote */
.quote-section {
  background-color: transparent;
  color: inherit;
  padding: 4rem 0;
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.5rem;
  opacity: 0.5;
}

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.quote-author {
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.cta-section h2 {
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-outline {
  border-color: white;
  color: white;
}

.cta-section .btn-outline:hover {
  background-color: white;
  color: var(--primary);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-section a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-credit {
  font-size: 0.8rem;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-credit a:hover {
  color: white;
  text-decoration: underline;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--background) 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Behandeling Detail Card */
.behandeling-card {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.behandeling-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.behandeling-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.behandeling-content {
  padding: 1.5rem;
}

.behandeling-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.behandeling-card h3 svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.behandeling-card p {
  color: var(--muted);
}

/* Card Image */
.card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

/* Behandeling Image */
.behandeling-image {
  position: relative;
}

.behandeling-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.behandeling-image img {
  transition: transform 0.3s ease;
}

.behandeling-card:hover .behandeling-image img {
  transform: scale(1.05);
}

/* Behandeling detail component */
.behandeling-detail-section {
  padding-top: 3rem;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.detail-back-link:hover {
  color: var(--primary-dark);
}

.behandeling-detail-component {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.behandeling-detail-image {
  min-height: 220px;
  max-height: 420px;
  overflow: hidden;
}

.behandeling-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.behandeling-detail-content {
  padding: 1.5rem;
}

.behandeling-detail-content h2 {
  margin-bottom: 1rem;
}

.behandeling-detail-content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.behandeling-detail-content p:last-child {
  margin-bottom: 0;
}

.behandeling-detail-content .detail-intro {
  color: var(--foreground);
  font-weight: 500;
}

@media (min-width: 900px) {
  .behandeling-detail-component {
    grid-template-columns: 1fr 1fr;
  }

  .behandeling-detail-image {
    min-height: 100%;
    max-height: none;
  }

  .behandeling-detail-content {
    padding: 2rem;
  }
}

/* Info Box */
.info-box {
  background-color: var(--primary-light);
  border-radius: var(--radius);
  padding: 2rem;
}

.info-box h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.info-box p {
  color: var(--foreground);
}

/* Tarief Card */
.tarief-card {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}

.tarief-card h3 {
  margin-bottom: 1rem;
}

.tarief-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.tarief-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.tarief-card p {
  color: var(--muted);
}

/* Team Card */
.team-card {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.team-image {
  height: 20rem;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar {
  width: 6rem;
  height: 6rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  opacity: 0.4;
}

.team-content {
  padding: 1.5rem;
}

.team-content h3 {
  margin-bottom: 0.25rem;
}

.team-content .role {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-content p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Reviews */
.review-card {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24;
  fill: #fbbf24;
}

.review-card p {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--foreground);
}

/* Contact Form */
.contact-form {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Contact Info */
.contact-info-card {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-info-content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-content p,
.contact-info-content a {
  color: var(--muted);
}

.contact-info-content a:hover {
  color: var(--primary);
}

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Two Column Layout */
.two-col {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* List */
.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.check-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Hours Table */
.hours-table {
  width: 100%;
}

.hours-table tr {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child {
  border-bottom: none;
}

/* Afspraak Options */
.afspraak-options {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .afspraak-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.afspraak-option {
  background: var(--background);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s;
}

.afspraak-option:hover {
  border-color: var(--primary);
}

.afspraak-option-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.afspraak-option-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.afspraak-option h3 {
  margin-bottom: 0.5rem;
}

.afspraak-option p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Placeholder Image */
.placeholder-image {
  background-color: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted);
}

.placeholder-image svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-8 { margin-top: 4rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Info Cards (Behandelingen page) */
.info-card {
  background: var(--background);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.info-card-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.info-card-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.info-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* Tarief Table */
.tarief-table {
  max-width: 700px;
  margin: 0 auto;
  background: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.tarief-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 0.25rem;
}

.tarief-row:last-child {
  border-bottom: none;
}

.tarief-row:nth-child(even) {
  background: var(--secondary);
}

.tarief-name {
  font-weight: 600;
  color: var(--foreground);
  flex: 1;
  min-width: 120px;
}

.tarief-details {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.tarief-duration {
  color: var(--muted);
  font-size: 0.9rem;
  min-width: 70px;
  text-align: right;
  margin-left: 1rem;
}

.tarief-price {
  font-weight: 700;
  color: var(--primary);
  min-width: 80px;
  text-align: right;
  white-space: nowrap;
}

/* Mobile: stack tarief items vertically */
@media (max-width: 480px) {
  .tarief-table {
    margin: 0 -0.5rem;
    width: calc(100% + 1rem);
    max-width: none;
    border-radius: 0;
  }
  
  .tarief-row {
    padding: 1rem 1rem;
  }
  
  .tarief-name {
    flex: 1;
  }
  
  .tarief-details {
    gap: 1.5rem;
  }
  
  .tarief-price {
    font-size: 1rem;
  }
}

/* Praktijk Image */
.praktijk-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.praktijk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Detail */
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-detail h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  color: var(--muted);
}

.contact-detail a {
  color: var(--primary);
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* Contact Form Simple */
.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-simple .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .contact-form-simple .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form-simple .btn {
  width: 100%;
}
