/* --- Custom Mega Luxe CSS for Carlo Gielissen --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary-color: #1B7FBF; /* Carlo Blauw (logo) */
  --primary-dark: #155f91;
  --primary-light: #e8f2fa;
  --secondary-color: #1e2a38; /* Donker blauwgrijs */
  --bg-color: #f7f9fb; /* Licht blauwgrijs */
  --text-color: #2d3748;
  --header-bg: rgba(30, 42, 56, 0.97);
  --glass-bg: rgba(255, 255, 255, 0.92);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--secondary-color);
  font-weight: 600;
}

/* Navbar */
.navbar {
  background-color: var(--header-bg) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 2px solid var(--primary-color);
}
.navbar-brand img {
  height: 50px;
  transition: transform 0.3s ease;
}
.navbar-brand img:hover {
  transform: scale(1.05);
}
.nav-link {
  color: #fff !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-left: 1rem;
  transition: color 0.3s;
}
.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Hero & General Sections */
.display-4, .display-5 {
  color: var(--secondary-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.display-4::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 25%;
}

.text-gold {
  color: var(--primary-color);
}

.bg-secondary-dark {
  background-color: var(--secondary-color);
  color: #fff;
}
.bg-secondary-dark h2 {
  color: var(--primary-color);
}

/* Cards */
.card {
  border: none;
  background: var(--glass-bg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 12px;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.card-title {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-success {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  border-radius: 0;
  padding: 12px 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover, .btn-success:hover {
  background-color: #fff;
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(27, 127, 191, 0.4);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 0;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Images */
.rounded.shadow {
  border-radius: 12px !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
  transition: transform 0.5s ease;
}
.rounded.shadow:hover {
  transform: scale(1.02);
}

/* Footer */
footer {
  background-color: var(--secondary-color) !important;
  color: #ccc !important;
  border-top: 3px solid var(--primary-color);
}
footer a {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--primary-color) !important;
}
.footer-heading {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}
.footer-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-links a {
  font-size: 0.88rem;
}
.footer-contact li {
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  color: #fff;
  padding: 1.5rem;
  z-index: 1050;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
  border-top: 1px solid var(--primary-color);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}
.cookie-popup.show {
  transform: translateY(0);
}
.cookie-popup p {
  margin: 0;
  font-size: 0.95rem;
}
.cookie-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 8px 20px;
  margin-left: 15px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-btn:hover {
  background: #fff;
  color: var(--primary-color);
}

/* ═══════════════════════════════════════════════════════════
   SEO PAGINA STIJLEN
   ═══════════════════════════════════════════════════════════ */

/* Breadcrumb */
.seo-breadcrumb {
  background: #eef3f8;
  padding: 0.75rem 0;
  border-bottom: 1px solid #d4e3f0;
}
.seo-breadcrumb .breadcrumb {
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}
.seo-breadcrumb .breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}
.seo-breadcrumb .breadcrumb-item.active {
  color: var(--text-color);
}

/* Hero */
.seo-hero {
  background: linear-gradient(135deg, #1e2a38 0%, #152233 50%, #1a3050 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seo-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(27,127,191,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.seo-hero-badge {
  display: inline-block;
  background: rgba(27,127,191,0.15);
  border: 1px solid rgba(27,127,191,0.4);
  color: var(--primary-color);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}
.seo-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.seo-hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.seo-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.seo-hero-ctas .btn-outline-light {
  border-radius: 0;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.seo-hero-ctas .btn-outline-light:hover {
  background: #fff;
  color: var(--secondary-color);
}

/* Trust bar */
.seo-trust-bar {
  background: var(--primary-color);
  padding: 1.5rem 0;
}
.seo-trust-item {
  padding: 0.5rem;
}
.seo-trust-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.seo-trust-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content sections */
.seo-content-section {
  padding: 5rem 0;
}
.seo-section-alt {
  background: #eef3f8;
}
.seo-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.seo-section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}
.text-center .seo-section-heading::after {
  left: 50%;
  transform: translateX(-50%);
}
.seo-section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}
.seo-section-img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Benefits */
.seo-benefits {
  padding: 5rem 0;
  background: #fff;
}
.seo-benefit-card {
  background: var(--bg-color);
  border: 1px solid #d4e3f0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.seo-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.seo-benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.2rem;
}
.seo-benefit-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--secondary-color);
  margin-bottom: 0.6rem;
}
.seo-benefit-desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* FAQ */
.seo-faq {
  padding: 5rem 0;
  background: #eef3f8;
}
.seo-faq-item {
  border: none;
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.seo-faq-item .accordion-button {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--secondary-color);
  background: #fff;
  padding: 1.2rem 1.5rem;
  border: none;
}
.seo-faq-item .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--primary-color);
  box-shadow: none;
}
.seo-faq-item .accordion-button::after {
  filter: none;
}
.seo-faq-item .accordion-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
  padding: 0 1.5rem 1.2rem;
}

/* Related services */
.seo-related {
  padding: 4rem 0;
  background: #fff;
}
.seo-related-link {
  display: block;
  background: var(--bg-color);
  border: 1px solid #d4e3f0;
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
  text-decoration: none;
  color: var(--secondary-color);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.seo-related-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.seo-related-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* CTA section */
.seo-cta {
  background: linear-gradient(135deg, #1e2a38 0%, #1a3050 100%);
  padding: 5rem 0;
  color: #fff;
}
.seo-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 1rem;
}
.seo-cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }
  .display-4::after {
    display: none;
  }
  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }
  .cookie-btn {
    margin-top: 15px;
    margin-left: 0;
    width: 100%;
  }
  /* SEO pagina responsive */
  .seo-hero {
    padding: 3rem 0 2.5rem;
  }
  .seo-hero-title {
    font-size: 2rem;
  }
  .seo-hero-lead {
    font-size: 1rem;
  }
  .seo-trust-number {
    font-size: 1.3rem;
  }
  .seo-trust-label {
    font-size: 0.7rem;
  }
  .seo-content-section {
    padding: 3rem 0;
  }
  .seo-section-heading {
    font-size: 1.6rem;
  }
  .seo-benefits {
    padding: 3rem 0;
  }
  .seo-faq {
    padding: 3rem 0;
  }
  .seo-cta {
    padding: 3rem 0;
  }
  .seo-cta-title {
    font-size: 1.8rem;
  }
  .seo-hero-ctas .btn {
    width: 100%;
  }
  /* Over pagina responsive */
  .about-hero { padding: 3rem 0 2rem; }
  .about-hero-title { font-size: 2rem; }
  .about-photo { max-width: 220px; }
  .about-chapter { flex-direction: column; align-items: flex-start; }
  .about-chapter-icon { margin-bottom: 0.5rem; }
  .about-story { padding: 3rem 0; }
  .about-values { padding: 3rem 0; }
  .about-cta { padding: 3rem 0; }
  .about-cta h2 { font-size: 1.6rem; }
  .about-cta-buttons { flex-direction: column; }
  .about-cta-buttons .btn { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   OVER PAGINA
   ═══════════════════════════════════════════════════════════ */

.about-hero {
  background: linear-gradient(135deg, #1e2a38 0%, #152233 50%, #1a3050 100%);
  padding: 5rem 0 4rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at bottom left, rgba(27,127,191,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.about-photo-wrapper {
  position: relative;
  display: inline-block;
}
.about-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  border: 3px solid rgba(27,127,191,0.4);
}
.about-badge {
  display: inline-block;
  background: rgba(27,127,191,0.15);
  border: 1px solid rgba(27,127,191,0.4);
  color: var(--primary-color);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}
.about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.about-hero-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}
.about-hero-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 550px;
}

/* Verhaal tijdlijn */
.about-story {
  padding: 5rem 0;
  background: var(--bg-color);
}
.about-chapter {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #d4e3f0;
}
.about-chapter:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.about-chapter-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(27,127,191,0.3);
}
.about-chapter-content {
  flex: 1;
}
.about-chapter-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 0.6rem;
}
.about-chapter-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* Kernwaarden */
.about-values {
  padding: 5rem 0;
  background: #eef3f8;
}
.about-value-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #d4e3f0;
}
.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.about-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.2rem;
}
.about-value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}
.about-value-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* CTA sectie */
.about-cta {
  background: linear-gradient(135deg, #1e2a38 0%, #1a3050 100%);
  padding: 5rem 0;
  color: #fff;
}
.about-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.about-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}
.about-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.about-cta-buttons .btn-outline-light {
  border-radius: 0;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.about-cta-buttons .btn-outline-light:hover {
  background: #fff;
  color: var(--secondary-color);
}

/* ═══════════════════════════════════════════════════════════
   GALERIJ PAGINA
   ═══════════════════════════════════════════════════════════ */

.gallery-hero {
  background: linear-gradient(135deg, #1e2a38 0%, #152233 50%, #1a3050 100%);
  padding: 4.5rem 0 3.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gallery-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top center, rgba(27,127,191,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.gallery-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.gallery-hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.gallery-section {
  padding: 4rem 0 3rem;
  background: var(--bg-color);
}
.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}
.gallery-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 56, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}
.gallery-card:hover .gallery-card-overlay {
  background: rgba(30, 42, 56, 0.35);
}
.gallery-zoom-icon {
  font-size: 1.8rem;
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-card:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Pagination */
.gallery-pagination .page-link {
  color: var(--secondary-color);
  border-color: #d4e3f0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  transition: all 0.2s;
}
.gallery-pagination .page-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.gallery-pagination .page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.gallery-pagination .page-item.disabled .page-link {
  color: #aab;
  background: #f0f0f0;
}

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 15, 25, 0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.gallery-lightbox.active {
  display: flex;
}
.gallery-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
}
.gallery-lightbox-close:hover {
  opacity: 1;
}
.gallery-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.gallery-lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-transform: capitalize;
}

/* Galerij responsive */
@media (max-width: 768px) {
  .gallery-hero { padding: 3rem 0 2rem; }
  .gallery-hero-title { font-size: 2rem; }
  .gallery-hero-lead { font-size: 0.95rem; }
  .gallery-section { padding: 2rem 0; }
  .gallery-lightbox-img { max-width: 95vw; max-height: 70vh; }
  .gallery-lightbox-close { top: 1rem; right: 1rem; font-size: 2rem; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGINA
   ═══════════════════════════════════════════════════════════ */

.contact-hero {
  background: linear-gradient(135deg, #1e2a38 0%, #152233 50%, #1a3050 100%);
  padding: 4.5rem 0 3.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at bottom right, rgba(27,127,191,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.contact-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.contact-hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contact kaarten */
.contact-cards-section {
  padding: 4rem 0 2rem;
  background: var(--bg-color);
}
.contact-card {
  background: #fff;
  border: 1px solid #d4e3f0;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}
.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.2rem;
}
.contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 0.6rem;
}
.contact-card-text {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.contact-card-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  transition: all 0.25s ease;
}
.contact-card-link:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Bedrijfsinfo -->  */
.contact-info-section {
  padding: 3rem 0 4rem;
  background: var(--bg-color);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d4e3f0;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.contact-info-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}
.contact-info-block p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
}
.contact-info-table {
  width: 100%;
  font-size: 0.92rem;
}
.contact-info-table td {
  padding: 0.4rem 0;
  color: #555;
  vertical-align: top;
}
.contact-info-table td:first-child {
  font-weight: 600;
  color: var(--secondary-color);
  padding-right: 1rem;
  white-space: nowrap;
  width: 1%;
}

/* Locatie tags */
.contact-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.contact-location-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(27,127,191,0.2);
}

/* Maps -->  */
.contact-map-section {
  padding: 0 0 4rem;
  background: var(--bg-color);
}
.contact-map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid #d4e3f0;
}

/* Contact responsive */
@media (max-width: 768px) {
  .contact-hero { padding: 3rem 0 2rem; }
  .contact-hero-title { font-size: 2rem; }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .contact-info-table td:first-child { white-space: normal; }
}
