/* ===== VARIABLES ===== */
:root {
  /* Logo kleuren */
  --bordeaux: #8B1A1A;
  --bordeaux-light: #a82525;
  --bordeaux-dark: #6d1414;
  --donkerbruin: #2D2A26;
  --groen: #5B8C3B;
  --groen-light: #6da048;
  --groen-dark: #4a7830;
  --olijf: #9B8B3D;
  --olijf-light: #b8a54a;
  
  /* Warme tinten */
  --warm-white: #fffcf8;
  --warm-cream: #fdf8f2;
  --warm-sand: #f7f1e8;
  --warm-beige: #efe8dc;
  --warm-taupe: #d9cfc0;
  
  /* Tekst */
  --text-dark: #2D2A26;
  --text-body: #4a4640;
  --text-muted: #7d756a;
  --text-light: #a39a8c;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ===== UPLOAD ZONES ===== */
.upload-zone {
  position: relative;
  border: 2px dashed var(--warm-taupe);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,252,248,0.8), rgba(253,248,242,0.9));
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.upload-zone:hover {
  border-color: var(--groen);
  background: linear-gradient(135deg, rgba(91,140,59,0.05), rgba(91,140,59,0.08));
  transform: scale(1.01);
}

.upload-zone.has-image {
  border: 2px solid var(--warm-beige);
  background: white;
}

.upload-zone.has-image:hover {
  transform: none;
  border-color: var(--groen);
}

.upload-zone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 4px;
}

/* Specifieke stijlen voor verschillende upload types */
.logo-upload img,
.footer-logo img {
  object-fit: contain;
  padding: 2px;
}

.cert-upload img,
.cert-card-logo img {
  object-fit: contain;
  padding: 6px;
}

/* Logo zones met transparante achtergrond */
.logo-upload.has-image {
  background: transparent;
  border: none;
}

.footer-logo.has-image {
  background: transparent;
  border: none;
}

.hero-upload img,
.service-upload img,
.about-upload img,
.content-image img {
  object-fit: contain;
  padding: 8px;
  background: white;
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.upload-label {
  text-align: center;
  z-index: 5;
  padding: 20px;
}

.upload-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
}

.upload-icon.green { background: linear-gradient(135deg, var(--groen), var(--groen-dark)); color: white; }
.upload-icon.red { background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark)); color: white; }
.upload-icon.gold { background: linear-gradient(135deg, var(--olijf), #8a7a35); color: white; }

.upload-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.upload-hint {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(139,26,26,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,26,26,0.35);
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--warm-taupe);
}

.btn-secondary:hover {
  border-color: var(--groen);
  color: var(--groen);
}

.btn-outline {
  background: transparent;
  color: var(--bordeaux);
  border: 2px solid var(--bordeaux);
}

.btn-outline:hover {
  background: var(--bordeaux);
  color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
  filter: brightness(0) invert(1);
}

.btn-whatsapp:hover .btn-icon {
  filter: brightness(0) invert(1);
}

.btn-white {
  background: white;
  color: var(--bordeaux);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}

/* ===== HEADER ===== */
.header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--warm-beige);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 6px;
  padding: 4px 8px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 15px;
  color: var(--text-body);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--bordeaux);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bordeaux);
  border-radius: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.phone-number a {
  color: inherit;
  text-decoration: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 20px 48px;
  background: var(--warm-cream);
  border-top: 1px solid var(--warm-beige);
}

.mobile-nav a {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-body);
  border-bottom: 1px solid var(--warm-beige);
}

.mobile-nav a.active {
  color: var(--bordeaux);
  font-weight: 600;
}

.mobile-nav .mobile-phone {
  margin-top: 12px;
  font-weight: 600;
  color: var(--bordeaux);
  border: none;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--warm-cream) 50%, var(--warm-sand) 100%);
}

.hero-content {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  width: fit-content;
  margin-bottom: 28px;
}

.hero-badge .stars {
  color: var(--olijf);
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-badge .rating {
  font-weight: 700;
  color: var(--text-dark);
}

.hero-badge .count {
  color: var(--text-muted);
  font-size: 14px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--groen);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--bordeaux);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(139,26,26,0.15);
  z-index: -1;
  border-radius: 4px;
}

.hero-text {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.stat-item:nth-child(1) .stat-number { color: var(--bordeaux); }
.stat-item:nth-child(2) .stat-number { color: var(--groen); }
.stat-item:nth-child(3) .stat-number { color: var(--olijf); }

.stat-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  bottom: 10%;
  left: 20%;
  background: linear-gradient(135deg, var(--groen) 0%, var(--olijf) 100%);
  border-radius: 32px 0 0 32px;
  opacity: 0.9;
}

.hero-upload {
  position: relative;
  width: 90%;
  height: 420px;
  border-radius: 24px;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-upload .upload-icon {
  width: 72px;
  height: 72px;
  font-size: 32px;
}

/* ===== CERTIFICATIONS ===== */
.certifications {
  background: var(--donkerbruin);
  padding: 28px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cert-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.cert-placeholder {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.cert-upload {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
}

.cert-upload:hover {
  border-color: var(--olijf);
  background: rgba(255,255,255,0.12);
}

.cert-upload .upload-hint {
  font-size: 8px;
  color: rgba(255,255,255,0.5);
}

.cert-name {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.cert-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--groen);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text-dark);
}

/* ===== SERVICES ===== */
.services {
  padding: 96px 48px;
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--warm-beige);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--bordeaux), var(--bordeaux-light)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--groen), var(--groen-light)); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--olijf), var(--olijf-light)); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-upload {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.service-upload img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  background: white;
  z-index: 1;
}

.service-card:nth-child(1) .service-upload { background: linear-gradient(135deg, #fde8e8, #fbd5d5); }
.service-card:nth-child(2) .service-upload { background: linear-gradient(135deg, #e6f4ea, #d4edda); }
.service-card:nth-child(3) .service-upload { background: linear-gradient(135deg, #f9f5e8, #f0e9d6); }

.service-upload .upload-icon {
  width: 48px;
  height: 48px;
  font-size: 22px;
  background: rgba(255,255,255,0.9);
  color: var(--text-dark);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.service-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--warm-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bordeaux);
  font-size: 16px;
  transition: all 0.2s;
}

.service-card:hover .service-arrow {
  background: var(--bordeaux);
  color: white;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--warm-cream);
  overflow: hidden;
}

.about-visual {
  position: relative;
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 40%;
  bottom: 0;
  background: linear-gradient(180deg, var(--groen) 0%, var(--groen-dark) 100%);
  opacity: 0.1;
}

.about-upload {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 480px;
  border-radius: 24px;
  z-index: 2;
}

.about-upload .upload-icon {
  width: 80px;
  height: 80px;
  font-size: 36px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bordeaux);
  color: white;
  padding: 24px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(139,26,26,0.35);
  z-index: 10;
}

.about-badge-number {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 13px;
  margin-top: 4px;
  opacity: 0.9;
}

.about-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-eyebrow,
.about-content .section-title {
  text-align: left;
}

.about-content .section-title {
  margin-bottom: 28px;
}

.about-text {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--warm-beige);
}

.feature-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.about-feature:nth-child(1) .feature-check { background: rgba(91,140,59,0.15); color: var(--groen); }
.about-feature:nth-child(2) .feature-check { background: rgba(139,26,26,0.12); color: var(--bordeaux); }
.about-feature:nth-child(3) .feature-check { background: rgba(155,139,61,0.15); color: var(--olijf); }

.about-feature span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-dark) 100%);
  padding: 88px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: '';
  position: absolute;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta::before {
  width: 600px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta::after {
  width: 400px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--donkerbruin);
  padding: 64px 48px 32px;
}

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

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Footer logo styling handled by .footer-logo-img */

.footer-company {
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.footer-column a,
.footer-column p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--olijf);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-size: 20px;
  transition: transform 0.2s;
}

.footer-social a:hover {
  transform: scale(1.2);
}

.social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-sand) 100%);
  padding: 80px 48px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 80px 48px;
}

.content-section:nth-child(even) {
  background: var(--warm-cream);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
}

.content-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content-text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-text ul {
  list-style: none;
  margin: 24px 0;
}

.content-text ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-body);
  border-bottom: 1px solid var(--warm-beige);
}

.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--groen);
  font-weight: bold;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 80px 48px;
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.contact-info p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--warm-sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-item-text {
  font-size: 15px;
  color: var(--text-dark);
}

.contact-item-text a {
  color: var(--bordeaux);
  text-decoration: none;
}

.contact-item-text a:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--warm-beige);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--warm-beige);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}

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

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

.form-submit {
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero,
  .about-preview,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    min-height: 400px;
  }
  
  .hero-visual::before {
    left: 10%;
    right: 10%;
    border-radius: 24px;
  }
  
  .certifications {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .cert-divider {
    display: none;
  }
  
  .about-visual::before {
    display: none;
  }
  
  .content-grid.reverse {
    direction: ltr;
  }
  
  .footer-main {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 16px 24px;
  }
  
  .nav-links,
  .header-right {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-nav.active {
    display: flex;
  }
  
  .hero-content {
    padding: 48px 24px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .services {
    padding: 64px 24px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    padding: 48px 24px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .cta {
    padding: 64px 24px;
  }
  
  .cta-title {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer {
    padding: 48px 24px 24px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .page-header {
    padding: 48px 24px;
  }
  
  .page-header h1 {
    font-size: 36px;
  }
  
  .content-section {
    padding: 48px 24px;
  }
  
  .contact-form {
    padding: 24px;
  }
}

/* ===== PROJECT GALLERY ===== */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.gallery-item.has-image {
  border: 1px solid var(--warm-beige);
  background: white;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.gallery-item .upload-label {
  padding: 20px;
}

.gallery-item .upload-icon {
  width: 48px;
  height: 48px;
  font-size: 20px;
}

@media (max-width: 900px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .project-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .gallery-item {
    aspect-ratio: 16 / 10;
  }
}

/* ===== PROJECTS CAROUSEL ===== */
.projects-section {
  padding: 80px 48px;
  background: var(--warm-cream);
}

.projects-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.projects-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
}

.projects-carousel::-webkit-scrollbar {
  display: none;
}

.project-slide {
  flex: 0 0 280px;
}

.project-upload {
  width: 280px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px dashed var(--warm-taupe);
  background: white;
  transition: all 0.3s;
}

.project-upload:hover {
  border-color: var(--groen);
  background: rgba(91, 140, 59, 0.03);
}

.project-upload.has-image {
  border: 1px solid var(--warm-beige);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background: white;
}

.project-upload.has-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.project-upload img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.projects-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--warm-beige);
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.projects-nav:hover {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: white;
}

.projects-prev {
  left: 0;
}

.projects-next {
  right: 0;
}

.projects-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.projects-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm-taupe);
  cursor: pointer;
  transition: all 0.2s;
}

.projects-dot.active {
  background: var(--bordeaux);
}

@media (max-width: 900px) {
  .projects-section {
    padding: 64px 24px;
  }
  
  .projects-carousel-wrapper {
    padding: 0 40px;
  }
}

@media (max-width: 600px) {
  .projects-carousel-wrapper {
    padding: 0;
  }
  
  .projects-nav {
    display: none;
  }
  
  .projects-carousel {
    padding: 10px 24px;
  }
  
  .project-slide {
    flex: 0 0 250px;
  }
  
  .project-upload {
    width: 250px;
    height: 180px;
  }
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 96px 48px;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--warm-cream) 100%);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Stats Row */
.reviews-stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.reviews-score-card {
  background: white;
  border-radius: 20px;
  padding: 32px 48px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid var(--warm-beige);
}

.reviews-score-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--bordeaux);
  line-height: 1;
}

.reviews-score-stars {
  font-size: 24px;
  color: var(--olijf);
  letter-spacing: 4px;
  margin: 8px 0;
}

.reviews-score-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.reviews-score-count {
  font-size: 13px;
  color: var(--text-muted);
}

.reviews-platforms {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--warm-beige);
  transition: all 0.3s ease;
  min-width: 220px;
}

.platform-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.platform-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.platform-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
}

.platform-logo.homedeal-bg {
  background: linear-gradient(135deg, #00a651, #008c44);
}

.platform-logo.google-bg {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.platform-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.platform-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.platform-rating {
  font-size: 13px;
  color: var(--olijf);
}

.platform-count {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.platform-arrow {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.platform-card:hover .platform-arrow {
  transform: translateX(4px);
  color: var(--bordeaux);
}

/* Reviews Carousel */
.reviews-carousel-container {
  position: relative;
  margin-bottom: 24px;
  padding: 0 50px;
}

.reviews-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--warm-beige);
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
}

.reviews-nav:hover {
  background: var(--bordeaux);
  color: white;
  border-color: var(--bordeaux);
}

.reviews-prev {
  left: 0;
}

.reviews-next {
  right: 0;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.reviews-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm-beige);
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-dots .dot.active {
  background: var(--bordeaux);
  transform: scale(1.2);
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--warm-beige);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--groen), var(--groen-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.review-stars {
  font-size: 13px;
  color: var(--olijf);
  letter-spacing: 1px;
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
  flex: 1;
}

.review-source {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 10px;
  background: var(--warm-sand);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  align-self: flex-start;
}

/* CTA */
.reviews-cta {
  text-align: center;
}

@media (max-width: 1024px) {
  .review-card {
    min-width: 280px;
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 64px 24px;
  }
  
  .reviews-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .reviews-score-card {
    padding: 24px 40px;
  }
  
  .reviews-score-number {
    font-size: 44px;
  }
  
  .reviews-platforms {
    width: 100%;
    max-width: 300px;
  }
  
  .reviews-carousel-container {
    padding: 0 40px;
  }
  
  .review-card {
    min-width: 260px;
    max-width: 260px;
  }
  
  .reviews-nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

/* ===== DYNAMIC QUESTIONS STYLING ===== */
.dynamic-questions {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid var(--bordeaux);
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.questions-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(139, 26, 26, 0.2);
}

.questions-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--bordeaux);
  margin: 0 0 8px 0;
}

.questions-hint {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.dynamic-questions .form-group {
  margin-bottom: 16px;
}

.dynamic-questions .form-group:last-child {
  margin-bottom: 0;
}

.dynamic-questions label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
  line-height: 1.4;
}

.dynamic-questions input,
.dynamic-questions select,
.dynamic-questions textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  background: white;
  box-sizing: border-box;
}

.dynamic-questions input:focus,
.dynamic-questions select:focus,
.dynamic-questions textarea:focus {
  border-color: var(--bordeaux);
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.1);
}

/* File upload zone in form */
.file-upload-zone {
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  position: relative;
}

.file-upload-zone:hover {
  border-color: var(--bordeaux);
  background: rgba(139, 26, 26, 0.02);
}

.file-upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-content {
  pointer-events: none;
}

.file-upload-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.file-upload-zone p {
  margin: 4px 0;
  color: var(--text-dark);
  font-size: 14px;
}

.file-upload-hint {
  color: var(--text-muted) !important;
  font-size: 12px !important;
}

.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.file-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.file-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-preview-item .remove-file {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile form improvements */
@media (max-width: 768px) {
  .dynamic-questions {
    padding: 16px;
    margin: 16px 0;
  }
  
  .questions-header h4 {
    font-size: 16px;
  }
  
  .questions-hint {
    font-size: 13px;
  }
  
  .dynamic-questions label {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .dynamic-questions input,
  .dynamic-questions select,
  .dynamic-questions textarea {
    padding: 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .file-upload-zone {
    padding: 20px 16px;
  }
  
  .file-upload-icon {
    font-size: 28px;
  }
  
  .file-preview-item {
    width: 70px;
    height: 70px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 1;
  }
}

/* ===== UPLOAD LOADING STATE ===== */
.upload-zone.uploading {
  pointer-events: none;
  opacity: 0.7;
}

.upload-zone.uploading::after {
  content: 'Uploaden...';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  font-weight: 600;
  color: var(--bordeaux);
  z-index: 100;
}
