/* ============================================================
   GOUDWAARD.NL — Hoofdstijlblad
   Kleurenschema: Navy Blue (#0a1628) + Goud (#c9a84c)
   ============================================================ */

/* ---- Reset & Basis ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0a1628;
  --navy-mid:    #122040;
  --navy-light:  #1a2f5a;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dark:   #a07830;
  --white:       #ffffff;
  --off-white:   #f8f6f1;
  --grey-light:  #f0ede6;
  --grey-mid:    #d4cfc4;
  --grey-text:   #666666;
  --text-dark:   #1a1a1a;
  --text-body:   #333333;
  --success:     #2e7d32;
  --font-main:   'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
  --font-heading:'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 2px 16px rgba(10,22,40,0.10);
  --shadow-lg:   0 8px 40px rgba(10,22,40,0.18);
  --transition:  0.25s ease;
  --max-width:   1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typografie ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ---- Knoppen ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ---- Topbalk ---- */
.topbar {
  background: var(--navy);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--navy-light);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-prices {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-price-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.topbar-price-item .metal-name {
  color: var(--grey-mid);
  font-size: 0.8rem;
}
.topbar-price-item .metal-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}
.topbar-price-item .price-change {
  font-size: 0.75rem;
  padding: 1px 5px;
  border-radius: 3px;
}
.price-change.up { background: rgba(46,125,50,0.3); color: #81c784; }
.price-change.down { background: rgba(198,40,40,0.3); color: #ef9a9a; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.82rem;
}
.topbar-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-contact a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
}
.topbar-contact a:hover { color: var(--gold); }

/* ---- Header / Navigatie ---- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(10,22,40,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 28px; height: 28px; }
.logo-text { line-height: 1.2; }
.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.logo-text .brand-tagline {
  font-size: 0.75rem;
  color: var(--grey-text);
  display: block;
}

/* Logo afbeelding */
.logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  /* Logo heeft witte achtergrond — toon op navy header */
  filter: brightness(0) invert(1);
}
.logo-img--mobile {
  height: 44px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Navigatie */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 10px 14px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: var(--off-white);
  color: var(--gold-dark);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  border: 1px solid var(--grey-light);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--text-body);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--grey-light);
  transition: all var(--transition);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--off-white); color: var(--gold-dark); padding-left: 22px; }

.nav-cta { margin-left: 12px; }

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobiel menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 2000;
  overflow-y: auto;
  padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--navy-light);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-sub {
  padding-left: 16px;
  font-size: 0.95rem;
  color: var(--grey-mid);
}
.mobile-nav .mobile-sub:hover { color: var(--gold-light); }
.mobile-menu-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- Hero Sectie ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a6e 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.hero-trust-item svg { color: var(--gold); width: 18px; height: 18px; }

/* Prijskaart in hero */
.hero-price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}
.price-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.3);
}
.price-table { width: 100%; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.price-row:last-child { border-bottom: none; }
.price-metal {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.metal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.metal-dot.goud { background: var(--gold); }
.metal-dot.zilver { background: #c0c0c0; }
.metal-dot.platina { background: #e5e4e2; }
.metal-dot.palladium { background: #b0c4de; }
.price-value {
  text-align: right;
}
.price-amount {
  display: block;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
.price-unit {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}
.price-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,168,76,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-update-time {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}
.price-guarantee {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---- Secties Algemeen ---- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

.section-header { margin-bottom: 48px; }
.section-header.text-center { text-align: center; }
.section-label {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  color: var(--grey-text);
  font-size: 1.05rem;
  max-width: 600px;
}
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* ---- Diensten Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  color: inherit;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--gold); }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { color: var(--grey-text); font-size: 0.95rem; margin-bottom: 16px; }
.service-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---- Prijstabel Sectie ---- */
.prices-section { background: var(--navy); color: var(--white); padding: 80px 0; }
.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.price-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.price-card-metal {
  color: var(--grey-mid);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.price-card-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.price-card-unit {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-bottom: 16px;
}
.price-card-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.price-card-sub strong { color: var(--gold-light); }

/* Prijstabel gedetailleerd */
.price-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-detail-table thead {
  background: var(--navy);
  color: var(--white);
}
.price-detail-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-detail-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.95rem;
}
.price-detail-table tr:last-child td { border-bottom: none; }
.price-detail-table tr:hover td { background: var(--off-white); }
.price-detail-table .price-col {
  font-weight: 700;
  color: var(--navy);
}

/* ---- USP / Trust Sectie ---- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.usp-item { text-align: center; }
.usp-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.usp-icon svg { width: 30px; height: 30px; color: var(--navy); }
.usp-item h4 { margin-bottom: 8px; color: var(--navy); }
.usp-item p { color: var(--grey-text); font-size: 0.92rem; }

/* ---- Google Reviews ---- */
.reviews-section { padding: 80px 0; background: var(--off-white); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.rating-score {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.rating-stars { color: #fbbc04; font-size: 1.3rem; letter-spacing: 2px; }
.rating-count { color: var(--grey-text); font-size: 0.9rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
}
.review-stars { color: #fbbc04; font-size: 1rem; margin-bottom: 12px; }
.review-text {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.review-date { color: var(--grey-text); font-size: 0.8rem; }

/* ---- Hoe het werkt ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.step-item { text-align: center; position: relative; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.step-item h4 { margin-bottom: 8px; }
.step-item p { color: var(--grey-text); font-size: 0.92rem; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Content Pagina Layout ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 700px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

.content-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.content-main { min-width: 0; }
.content-sidebar { position: sticky; top: 100px; }

/* Sidebar kaart */
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  margin-bottom: 24px;
}
.sidebar-card h4 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  font-size: 1rem;
}
.sidebar-price-list { display: flex; flex-direction: column; gap: 10px; }
.sidebar-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.9rem;
}
.sidebar-price-item:last-child { border-bottom: none; }
.sidebar-price-item .label { color: var(--grey-text); }
.sidebar-price-item .value { font-weight: 700; color: var(--navy); }

/* ---- Contactformulier ---- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--grey-text); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(10,22,40,0.05);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--off-white); color: var(--gold-dark); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--grey-light);
}
.faq-answer.open { display: block; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 320px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon svg { width: 22px; height: 22px; color: var(--gold); }
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: none;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; color: var(--white); }

/* ---- Inhoudsblokken ---- */
.content-block { margin-bottom: 48px; }
.content-block h2 { margin-bottom: 20px; }
.content-block h3 { margin-bottom: 14px; color: var(--navy); }
.content-block ul, .content-block ol {
  margin: 16px 0;
  padding-left: 24px;
}
.content-block ul { list-style: none; padding-left: 0; }
.content-block ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--text-body);
  font-size: 0.97rem;
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.content-block ol { list-style: decimal; }
.content-block ol li { padding: 6px 0; color: var(--text-body); }
.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}
.highlight-box h3 { color: var(--gold-light); margin-bottom: 12px; }
.highlight-box p { color: rgba(255,255,255,0.85); margin: 0; }
.info-box {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { margin: 0; font-size: 0.95rem; }

/* ---- Breadcrumb ---- */
.breadcrumb-bar {
  background: var(--off-white);
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-light);
}
.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-text);
}
.breadcrumb-bar a { color: var(--gold-dark); }
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar span { color: var(--grey-mid); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
}

@media (max-width: 768px) {
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 6px; }
  .topbar-prices { gap: 12px; }
  .topbar-right { gap: 12px; }
  .topbar-badge:not(:first-child) { display: none; }

  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-price-card { display: none; }
  .hero { padding: 60px 0 48px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { max-width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .whatsapp-float { display: block; }

  .cta-buttons { flex-direction: column; align-items: center; }

  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px; }
  .sidebar-card { padding: 20px; }
  .price-card-amount { font-size: 1.6rem; }
}

/* ---- Animaties ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease forwards; }

/* ---- Hulpklassen ---- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }
.gap-4 { gap: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
