/* ===================================
   STUCADOOR NEDERLAND — STYLESHEET
   =================================== */

:root {
  --primary: #1a3c5e;
  --primary-dark: #122d47;
  --accent: #e8a020;
  --accent-dark: #c8891a;
  --text: #1a1a2e;
  --text-light: #5a6a7a;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --success: #22c55e;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(26,60,94,0.10);
  --shadow-lg: 0 8px 40px rgba(26,60,94,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

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

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

/* ===== HEADER ===== */
.header {
  background: var(--white);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span { color: var(--accent); }

.nav { display: flex; gap: 24px; }
.nav a { font-size: 0.9rem; font-weight: 600; color: var(--text); transition: color .2s; }
.nav a:hover { color: var(--primary); }

.btn-header {
  background: var(--accent);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background .2s;
}
.btn-header:hover { background: var(--accent-dark); color: var(--white); }

/* ===== HERO (homepage) ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0a1f35 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span { color: var(--accent); }

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.88;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.hero-badges span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-form {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.hero-form h2 { color: var(--primary); font-size: 1.3rem; margin-bottom: 6px; }
.hero-form p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }

/* ===== HERO INNER (stad pagina's) ===== */
.hero-inner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 48px 0 40px;
}

.hero-inner h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  margin: 12px 0 14px;
  letter-spacing: -0.5px;
}

.hero-inner .hero-sub {
  font-size: 1rem;
  opacity: 0.88;
  max-width: 640px;
  margin: 0 0 18px;
}

.hero-inner .hero-badges { justify-content: flex-start; margin-bottom: 0; }

.breadcrumb { font-size: 0.82rem; opacity: 0.7; margin-bottom: 8px; }
.breadcrumb a { color: var(--white); opacity: 0.7; }
.breadcrumb a:hover { opacity: 1; }

/* ===== PRIJZEN BAR ===== */
.prijzen-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.prijzen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.prijs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  border-right: 1px solid var(--border);
}

.prijs-item:last-child { border-right: none; }

.prijs-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.prijs-value { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-top: 4px; }

/* ===== USP BAR ===== */
.usp-bar {
  background: var(--accent);
  color: var(--white);
  padding: 14px 0;
}

.usp-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.usp-item { font-size: 0.9rem; font-weight: 700; }

/* ===== DIENSTEN SECTIE ===== */
.diensten-sectie {
  padding: 72px 0;
}

.diensten-sectie h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 48px;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.dienst-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow);
}

.dienst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.dienst-icon { font-size: 2.2rem; margin-bottom: 14px; }

.dienst-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.dienst-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }

.dienst-prijs { font-size: 0.82rem; font-weight: 700; color: var(--accent); margin-bottom: 16px; display: block; }

.btn-dienst {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background .2s;
}

.btn-dienst:hover { background: var(--accent); color: var(--white); }

/* ===== VOORDELEN ===== */
.voordelen-sectie {
  background: var(--primary);
  color: var(--white);
  padding: 72px 0;
}

.voordelen-sectie h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
}

.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.voordeel-item { text-align: center; }
.voordeel-icon { font-size: 2.5rem; margin-bottom: 14px; }
.voordeel-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.voordeel-item p { font-size: 0.88rem; opacity: 0.8; }

/* ===== STAPPEN ===== */
.stappen-sectie { padding: 72px 0; }

.stappen-sectie h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 48px;
}

.stappen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.stap { text-align: center; }

.stap-nr {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 16px;
}

.stap h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.stap p { font-size: 0.88rem; color: var(--text-light); }

.stappen-block { background: var(--bg); border-radius: var(--radius); padding: 32px; margin: 36px 0; border: 1px solid var(--border); }
.stappen-block h2 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 24px; }

/* ===== STEDEN SECTIE ===== */
.steden-sectie { padding: 72px 0; background: var(--bg); }

.steden-sectie h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 36px;
}

.steden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.stad-btn {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stad-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== REVIEWS ===== */
.reviews-sectie { padding: 72px 0; }

.reviews-sectie h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-size: 0.92rem; color: var(--text-light); margin-bottom: 16px; font-style: italic; }
.review-naam { font-weight: 700; font-size: 0.9rem; color: var(--primary); }
.review-stad { font-size: 0.8rem; color: var(--text-light); }

/* ===== CTA SECTIE ===== */
.cta-sectie {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}

.cta-sectie h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-sectie p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 28px; }

.btn-cta-white {
  display: inline-block;
  background: var(--white);
  color: var(--accent-dark);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1rem;
  margin: 6px;
  transition: all .2s;
}

.btn-cta-white:hover { background: var(--primary); color: var(--white); }

/* ===== MAIN CONTENT (stad pagina) ===== */
.main-content { padding: 52px 0; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.content-main { min-width: 0; }

.content-block h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 32px 0 14px;
}

.content-block h2:first-child { margin-top: 0; }

.content-block p { color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }

.voordelen-lijst { list-style: none; margin: 0 0 20px; }
.voordelen-lijst li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--text-light); }
.voordelen-lijst li:last-child { border-bottom: none; }
.voordelen-lijst li strong { color: var(--text); }

/* ===== FAQ ===== */
.faq-list { margin: 20px 0; }

.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }

.faq-vraag {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}

.faq-vraag::after { content: '+'; font-size: 1.2rem; flex-shrink: 0; }
.faq-vraag[aria-expanded="true"] { background: var(--primary); color: var(--white); }
.faq-vraag[aria-expanded="true"]::after { content: '−'; }

.faq-antwoord { display: none; padding: 16px 20px; background: var(--bg); }
.faq-antwoord p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.faq-antwoord.open { display: block; }

/* ===== RELATED ===== */
.related-steden, .other-diensten { margin: 32px 0; }
.related-steden h2, .other-diensten h2 { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 14px; }

.steden-links, .diensten-links { display: flex; flex-wrap: wrap; gap: 8px; }
.steden-links a, .diensten-links a, .stad-link {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
  transition: all .2s;
}
.steden-links a:hover, .diensten-links a:hover, .stad-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== STEDEN OVERZICHT (dienst pagina) ===== */
.steden-overzicht { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

/* ===== SIDEBAR / FORM ===== */
.sidebar { position: sticky; top: 90px; }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}

.form-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.form-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 18px; }

.offerte-form { display: flex; flex-direction: column; gap: 12px; }

.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--text); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.btn-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s;
  margin-top: 4px;
}

.btn-submit:hover { background: var(--accent-dark); }

.form-disclaimer { font-size: 0.78rem; color: var(--text-light); text-align: center; }

.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
}

.trust-card h4 { font-size: 0.95rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.trust-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.trust-card li { font-size: 0.87rem; color: var(--text-light); }

.btn-bel {
  display: block;
  background: var(--primary);
  color: var(--white);
  padding: 11px;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
  transition: background .2s;
}

.btn-bel:hover { background: var(--primary-dark); color: var(--white); }

/* ===== HOMEPAGE FORM ===== */
.home-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.home-form-grid .form-group:last-of-type { grid-column: span 2; }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform .2s;
}

.whatsapp-btn:hover { transform: scale(1.1); color: var(--white); }
.whatsapp-btn svg { width: 30px; height: 30px; }

.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 10px;
}

.sticky-bel, .sticky-offerte {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  display: block;
}

.sticky-bel { background: var(--primary); color: var(--white); }
.sticky-offerte { background: var(--accent); color: var(--white); }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 52px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.footer-col p { font-size: 0.88rem; line-height: 1.6; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-align: center; }

/* ===== BEDANKT PAGINA ===== */
.bedankt-sectie {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.bedankt-card {
  max-width: 500px;
  background: var(--white);
  border-radius: 16px;
  padding: 52px 40px;
  box-shadow: var(--shadow-lg);
}

.bedankt-icon { font-size: 4rem; margin-bottom: 20px; }
.bedankt-card h1 { font-size: 1.8rem; font-weight: 900; color: var(--primary); margin-bottom: 14px; }
.bedankt-card p { color: var(--text-light); margin-bottom: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .prijzen-grid { grid-template-columns: repeat(2, 1fr); }
  .prijs-item { border-right: none; border-bottom: 1px solid var(--border); }
  .prijs-item:nth-child(odd) { border-right: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hero { padding: 52px 0 40px; }
  .hero-form { padding: 24px 20px; }
  .home-form-grid { grid-template-columns: 1fr; }
  .home-form-grid .form-group:last-of-type { grid-column: span 1; }
  .sticky-cta-mobile { display: flex; }
  .whatsapp-btn { bottom: 80px; }
  body { padding-bottom: 70px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 12px 16px; }
  .logo { font-size: 1.2rem; }
  .btn-header { display: none; }
  .stappen-grid { grid-template-columns: 1fr; }
  .diensten-grid { grid-template-columns: 1fr; }
}
