/* FLEX Loodgieters - Custom Stylesheet */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #003049;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #003049 0%, #D62828 100%);
  color: #fff;
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  gap: 0.7em;
}
.logo-img {
  height: 48px;
  background: #fff;
  border-radius: 8px;
  padding: 2px 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo .loodgieters { color: #fff; }
.logo .flex {
  color: #D62828;
  background: #fff;
  padding: 0.2em 0.4em;
  border-radius: 6px;
  margin-left: 0.3em;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5em 1em;
  border-radius: 8px;
  transition: all 0.3s;
}
nav a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,48,73,0.8), rgba(214,40,40,0.7)), url('slide_1.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, rgba(0,48,73,0.9) 0%, rgba(214,40,40,0.8) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #D62828;
  color: #fff;
  padding: 18px 36px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(214,40,40,0.3);
}
.cta-button:hover {
  background: #B91C1C;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(214,40,40,0.4);
}
.cta-button.secondary {
  background: transparent;
  border: 3px solid #fff;
  color: #fff;
}
.cta-button.secondary:hover {
  background: #fff;
  color: #003049;
}

/* Services Section */
.services {
  padding: 120px 0;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.section-title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 4rem;
  color: #003049;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #003049, #D62828);
  border-radius: 2px;
}

/* Advanced Slider */
.services-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.slider-container {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
  min-width: 100%;
  background: white;
  padding: 4rem;
  position: relative;
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.slide-image {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.slide-image:hover img {
  transform: scale(1.05);
}

.slide-text h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #003049;
}

.slide-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

.slide-features {
  list-style: none;
  margin-bottom: 2rem;
}

.slide-features li {
  padding: 0.8rem 0;
  color: #003049;
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.slide-features li::before {
  content: '✓';
  color: #D62828;
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.2rem;
  background: rgba(214,40,40,0.1);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #D62828;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(214,40,40,0.3);
}

.slide-cta:hover {
  background: #B91C1C;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(214,40,40,0.4);
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,48,73,0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: #D62828;
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: #003049;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 10;
}

.slider-arrow:hover {
  background: #D62828;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

/* About Section */
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, #003049 0%, #1A4B6B 100%);
  color: white;
}

.about-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

.about-text-block {
  flex: 1 1 0;
  min-width: 300px;
  max-width: 500px;
  text-align: left;
  margin: 0 auto;
}

.about-img-block {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-img-block img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  margin-bottom: 1rem;
  animation: fadeInZoom 1.2s 0.2s forwards;
  opacity: 0;
  transform: scale(0.95);
}

.about-img-block .about-caption {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}

.certification-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.cert-badge {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(214,40,40,0.18);
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: all 0.3s;
  padding: 1.2rem 0.5rem;
}

.cert-badge:hover {
  background: rgba(255,255,255,0.15);
  border-color: #D62828;
  transform: translateY(-5px) scale(1.03);
}

.cert-icon { 
  font-size: 2.1rem; 
  color: #D62828; 
  margin-bottom: 0.2rem; 
}
.cert-title { 
  font-weight: 700; 
  font-size: 1.08rem; 
  color: #fff; 
}
.cert-desc { 
  font-size: 0.95rem; 
  color: rgba(255,255,255,0.85); 
}

/* Reviews Section */
.reviews {
  padding: 120px 0;
  background: #F8F9FA;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.review-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-left: 5px solid #D62828;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 4rem;
  color: #D62828;
  font-family: serif;
  opacity: 0.3;
}

.stars {
  color: #D62828;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 2rem;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
}

.reviewer {
  font-weight: 700;
  color: #003049;
  font-size: 1.1rem;
}

.reviewer-location {
  color: #D62828;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, #003049 0%, #1A4B6B 100%);
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  min-width: 0;
}

.contact-form h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: white;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.9);
  color: #003049;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(214,40,40,0.2);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #D62828;
  color: white;
  padding: 18px 36px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  font-size: 1.1rem;
}

.submit-btn:hover {
  background: #B91C1C;
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-icon {
  font-size: 2rem;
  color: #D62828;
  background: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-details p {
  color: rgba(255,255,255,0.8);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #25D366;
  color: white;
  padding: 18px 36px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s;
  margin-top: 2rem;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
  width: 100%;
  justify-content: center;
}

/* WhatsApp & Scroll-to-top knoppen */
.floating-whatsapp, .scroll-top-btn {
  position: fixed !important;
  bottom: 24px !important;
  z-index: 3000 !important;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
  font-size: 1.7rem;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
}

.floating-whatsapp {
  right: 24px !important;
  background: #25D366;
  animation: whatsappPulse 2s infinite;
  z-index: 3001 !important;
}

.floating-whatsapp:active, .floating-whatsapp:focus, .floating-whatsapp:hover {
  background: #128C7E;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  transform: scale(1.08);
  text-decoration: none !important;
}

.scroll-top-btn {
  left: 24px !important;
  background: #003049;
  box-shadow: 0 4px 16px rgba(0,48,73,0.18);
  font-size: 1.5rem;
  opacity: 0;
  pointer-events: none;
  border: none;
  outline: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  animation: fadeInUp 0.7s;
}

/* Modal styles */
#offerteModal .modal-content {
  border-radius: 1.2rem;
  box-shadow: 0 8px 40px rgba(214,40,40,0.12);
  border: none;
  background: #fff;
}

#offerteModal .modal-header {
  background: #D62828;
  color: #fff;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
  border-bottom: none;
  padding-top: 2rem;
  padding-bottom: 1.2rem;
  text-align: center;
  justify-content: center;
}

#offerteModal .modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  width: 100%;
}

#offerteModal .modal-body {
  padding: 2.2rem 1.5rem 2rem 1.5rem;
}

#offerteModal .form-label {
  font-weight: 600;
  color: #003049;
}

#offerteModal .form-control, #offerteModal textarea {
  border-radius: 0.7rem;
  border: 1.5px solid #e0e0e0;
  font-size: 1.1rem;
}

#offerteModal .btn-primary, #offerteModal .btn-outline-secondary {
  border-radius: 0.7rem;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 2px 8px rgba(214,40,40,0.08);
  transition: background 0.2s, color 0.2s;
}

#offerteModal .btn-primary {
  background: #D62828;
  border: none;
}

#offerteModal .btn-primary:hover, #offerteModal .btn-primary:focus {
  background: #b91c1c;
  color: #fff;
}

#offerteModal .btn-outline-secondary {
  border: 1.5px solid #D62828;
  color: #D62828;
  background: #fff;
}

#offerteModal .btn-outline-secondary:hover, #offerteModal .btn-outline-secondary:focus {
  background: #D62828;
  color: #fff;
}

#offerteModal .display-3 {
  color: #D62828 !important;
}

#offerteModal .modal-footer {
  border-bottom-left-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
}

/* Animations */
@keyframes fadeInZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  }
  100% {
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade-in animation for sections */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
  
  .container {
    padding: 0 8px;
  }
  
  .header-content {
    flex-direction: row;
    gap: 0.5em;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .logo-img {
    height: 36px;
    padding: 1px 3px;
  }
  
  /* Header & Navigation */
  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, #003049 0%, #D62828 100%);
    transition: left 0.3s ease;
    z-index: 999;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 2rem;
  }

  nav li {
    margin: 1rem 0;
  }

  nav a {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
    border-radius: 8px;
    text-align: center;
  }

  /* Hero Section */
  .hero {
    padding: 120px 0 80px;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Slider */
  .services-slider {
    margin: 0 0px;
    border-radius: 10px;
    max-width: 100vw;
  }

  .slider-slide {
    padding: 1.2rem 0.5rem;
  }

  .slide-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .slide-image {
    height: 140px;
  }

  .slide-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .slide-text p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .slide-features li {
    font-size: 0.95rem;
    padding: 0.3rem 0;
  }

  .slide-cta {
    width: 100%;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.95rem;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .slider-arrow.prev {
    left: 2px;
  }

  .slider-arrow.next {
    right: 2px;
  }

  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img {
    height: 220px;
  }

  .about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .certification-badges {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 1.2rem;
  }

  .cert-badge {
    padding: 1rem;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .review-card {
    padding: 2rem 1.5rem;
  }

  /* Contact */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .contact-form h3 {
    font-size: 1.5rem;
  }

  .contact-item {
    padding: 1rem;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

  /* Floating buttons */
  .floating-whatsapp,
  .floating-call {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .floating-call {
    bottom: 90px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-section {
    margin-bottom: 1.2rem;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
  }
  
  .footer-section a, .footer-section p {
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    gap: 2rem;
    padding: 1.2rem 0;
  }
  
  .about-img-block {
    margin-bottom: 1.2rem;
  }
  
  .certification-badges {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 1.2rem;
  }
  
  .floating-whatsapp {
    display: flex !important;
  }
}

@media (max-width: 600px) {
  .floating-whatsapp, .scroll-top-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    right: 12px !important;
    left: 12px !important;
    bottom: 12px !important;
  }
  
  .floating-whatsapp { 
    right: 12px !important; 
  }
  
  .scroll-top-btn { 
    left: 12px !important; 
  }
}

@media (min-width: 901px) {
  html, body {
    font-size: 15px;
  }
  
  .container {
    max-width: 1100px;
    padding-left: 32px;
    padding-right: 32px;
  }
  
  .about-content {
    gap: 2rem;
    padding: 1.2rem 0;
  }
  
  .about-img-block img {
    width: 130px;
    height: 130px;
  }
  
  .hero {
    padding: 90px 0 60px;
  }
  
  .services {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .slide-content {
    gap: 1.5rem;
  }
  
  .slider-slide {
    padding: 1.5rem 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-section {
    margin-bottom: 0.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .contact {
    padding: 60px 0;
  }
  
  .contact-content {
    gap: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .map {
    margin-top: 1.5rem;
    height: 250px;
  }
  
  .floating-whatsapp {
    display: none !important;
  }
  
  /* Extra witruimte voor rust */
  .about-text-block p,
  .slide-text p,
  .review-text,
  .footer-section p {
    margin-bottom: 1.1rem;
  }
}

@media (max-width: 900px) {
  html, body {
    font-size: 14px;
  }
  
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .hero h1 {
    font-size: 1.7rem;
    word-break: break-word;
    white-space: normal;
  }
  
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    word-break: break-word;
    white-space: normal;
  }
  
  .about-content, .services, .contact, .reviews {
    padding: 1.2rem 0 !important;
    gap: 1rem !important;
  }
  
  .about-img-block img {
    width: 80px;
    height: 80px;
  }
  
  .footer-content {
    gap: 0.7rem;
    margin-bottom: 0.7rem;
  }
  
  .footer-section {
    margin-bottom: 0.3rem;
  }
  
  .review-card {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .map {
    margin-top: 0.7rem;
    height: 140px;
  }
  
  .floating-whatsapp {
    display: flex !important;
  }
}

/* Verberg scroll-to-top knop als modal open is */
body.modal-open .scroll-top-btn {
  display: none !important;
}

/* WhatsApp-knop altijd zichtbaar op mobiel */
@media (max-width: 900px) {
  .floating-whatsapp {
    display: flex !important;
    z-index: 9999 !important;
  }
}

/* WhatsApp-knop netjes in de hoek */
@media (max-width: 900px) {
  .floating-whatsapp {
    right: 8px !important;
    bottom: 8px !important;
  }
}

/* Hero/intro-sectie fullscreen en gecentreerd */
@media (max-width: 900px) {
  .hero, .hero .container {
    min-height: 90vh;
  }
} 