/* =====================
   LAYOUT
   ===================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* =====================
   HERO
   ===================== */
.hero-section {
  display: flex;
  height: 50vh;
  max-height: 50vh;
  overflow: hidden;
}

.hero-content {
  flex: 0 0 44%;
  padding: 36px 48px 36px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0.5) 20%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-tag {
  display: inline-block;
  color: #f97316;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 46px;
  font-weight: 900;
  color: #111827;
  line-height: 1.18;
  margin-bottom: 22px;
}

.hero-highlight { color: #f97316; }

.hero-sub {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #22c55e;
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-wa:hover { background: #16a34a; transform: translateY(-1px); }

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #d1d5db;
  color: #374151;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  background: white;
  transition: border-color .2s, background .2s;
}
.btn-outline-hero:hover { border-color: #9ca3af; background: #f9fafb; }

.hero-float-card {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: white;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  z-index: 2;
}

.hero-float-icon {
  width: 44px;
  height: 44px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

/* =====================
   TRUST BADGES
   ===================== */
.trust-section {
  background: white;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  padding: 24px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 48px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: #e5e7eb;
  flex-shrink: 0;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.trust-icon-orange { background: #f97316; }
.trust-icon-blue   { background: #3b82f6; }
.trust-icon-teal   { background: #14b8a6; }

.trust-title { font-weight: 700; font-size: 14px; color: #111827; line-height: 1.3; }
.trust-sub   { font-size: 13px; color: #6b7280; margin-top: 2px; }

/* =====================
   SERVICES
   ===================== */
.services-section {
  padding: 80px 0;
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: box-shadow .3s, transform .3s;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.service-card-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.icon-orange { background: #f97316; }
.icon-blue   { background: #3b82f6; }
.icon-indigo { background: #4f46e5; }

.service-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
  margin-top: 4px;
}


.service-card-desc {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.service-card-list li {
  font-size: 13px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.service-card-img-wrap {
  width: 140px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}


.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  align-self: flex-start;
  margin-top: auto;
}
.service-card-btn:hover { opacity: .85; transform: translateX(2px); }
.btn-orange { background: #f97316; color: white; }
.btn-blue   { background: #3b82f6; color: white; }

/* =====================
   ZO WERKT HET
   ===================== */
.steps-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: 56px;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 210px;
  flex-shrink: 0;
}

.step-icon-wrap {
  position: relative;
  margin-bottom: 18px;
}

.step-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e5e7eb;
  background: #f9fafb;
}

.step-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: #f97316;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(249,115,22,.4);
}

.step-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 30px;
  color: #d1d5db;
  flex-shrink: 0;
  margin: 0 12px;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
  line-height: 1.35;
}

.step-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
  padding: 0 8px;
}

/* =====================
   ONZE PROJECTEN
   ===================== */
.projects-section {
  padding: 72px 0;
  background: #f8fafc;
}

.projects-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.projects-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
}

.projects-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3b82f6;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.projects-all-link:hover { text-decoration: underline; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.project-card {
  border-radius: 10px;
  overflow: hidden;
  background: white;
  border: 1px solid #e5e7eb;
  transition: box-shadow .25s, transform .25s;
}
.project-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-2px);
}

.project-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.project-card:hover .project-img img { transform: scale(1.06); }

.project-info {
  padding: 10px 12px 12px;
}
.project-title {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}
.project-sub {
  font-size: 12px;
  color: #6b7280;
}

/* =====================
   REVIEWS + INSTAGRAM
   ===================== */
.social-section {
  padding: 80px 0;
  background: white;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.social-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
}

.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.review-card {
  background: #f9fafb;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 14px;
}

.review-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 12.5px;
  color: #374151;
  line-height: 1.55;
  margin-bottom: 10px;
  font-style: italic;
}

.review-author {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
}

.google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.google-link:hover { text-decoration: underline; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.insta-photo {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}
.insta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.insta-photo:hover img { transform: scale(1.07); }

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #db2777;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.insta-link:hover { text-decoration: underline; }

/* =====================
   USP ROW
   ===================== */
.usp-section {
  padding: 48px 0;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.usp-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.usp-orange { background: #f97316; }
.usp-blue   { background: #3b82f6; }

.usp-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.usp-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* =====================
   WERKGEBIED / VRAGEN / NOTICE
   ===================== */
.info-section {
  padding: 64px 0;
  background: white;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.info-block-title {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.werkgebied-intro {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
}

.werkgebied-cities {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 10px;
}

.text-link {
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}
.text-link:hover { text-decoration: underline; }

.nl-map {
  max-width: 130px;
}
.nl-map svg { width: 100%; height: auto; }

.vragen-sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 14px;
}

.vragen-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vragen-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}

.check-green {
  width: 20px;
  height: 20px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.notice-box {
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 12px;
  padding: 18px 22px;
}

.notice-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #ea580c;
  margin-bottom: 14px;
}

.notice-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice-items li {
  font-size: 14px;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.notice-items li::before {
  content: '→';
  color: #f97316;
  font-weight: 700;
  flex-shrink: 0;
}

/* =====================
   WHATSAPP FLOAT
   ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #22c55e;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(34,197,94,.4);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(34,197,94,.5);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .hero-section { flex-direction: column; min-height: auto; }
  .hero-content { flex: none; padding: 48px 24px; }
  .hero-image { height: 280px; }
  .hero-title { font-size: 32px; }

  .trust-section { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .trust-item { padding: 0; }
  .trust-divider { width: 60px; height: 1px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-img-wrap { width: 90px; }

  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 8px 0; padding-top: 0; }

  .projects-grid { grid-template-columns: repeat(2, 1fr); }

  .social-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-row { grid-template-columns: 1fr; }

  .usp-grid { grid-template-columns: repeat(2, 1fr); }

  .info-grid { grid-template-columns: 1fr; gap: 32px; }

  .section-title { font-size: 26px; margin-bottom: 36px; }
}

@media (max-width: 640px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
  .hero-content { padding: 40px 20px; }
  .reviews-row { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
