/* ────────────────────────────────────────────────
   Schulten Media Theme — theme.css
   Gebaseerd op schultenmedia.nl — Poppins + Source Sans 3
──────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Source+Sans+3:wght@400;500;600&display=swap');

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

:root {
  --navy:   #00002C;
  --navy2:  #000048;
  --blue:   #050e30;
  --cyan:   #4CC4FF;
  --cyan2:  #14B2FF;
  --cyan3:  #2c93c6;
  --white:  #ffffff;
  --gray:   #f3f4f6;
  --gray2:  #E4E7EB;
  --text:   #050e30;
  --muted:  #6b7280;
  --radius: 14px;
}

body { font-family: 'Source Sans 3', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; letter-spacing: -0.02em; }

.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan3); margin-bottom: 12px; display: block;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.7; margin-bottom: 60px; }
.section-title.light { color: var(--white); }
.section-label.light { color: var(--cyan); }
.section-sub.light { color: rgba(255,255,255,0.6); }

/* ── LAYOUT ── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
section { padding: 100px 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 60px; }

@media (max-width: 900px) {
  .wrap, .section-inner { padding: 0 24px; }
  section { padding: 64px 0; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem; padding: 14px 28px;
  border-radius: 10px; transition: all 0.2s; cursor: pointer;
}
.btn-primary { background: var(--cyan); color: var(--navy); }
.btn-primary:hover { background: #38c8f5; transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.2); color: var(--white); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--blue); }
.btn-outline { border: 1.5px solid var(--gray2); color: var(--navy); }
.btn-outline:hover { border-color: var(--cyan3); color: var(--cyan3); }
.btn-link { color: var(--cyan3); font-weight: 600; font-size: 0.85rem; }
.btn-link svg { width: 14px; height: 14px; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0,0,44,0.97); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  border-bottom: 1px solid rgba(76,196,255,0.12);
}
.nav-logo { height: 36px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
  background: var(--cyan); color: var(--navy) !important; font-weight: 700 !important;
  padding: 10px 22px; border-radius: 8px;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO BLOCK ── */
.hero-block {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding: 120px 60px 80px;
}
.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 800px; height: 800px;
  background: radial-gradient(circle at 60% 40%, rgba(76,196,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(76,196,255,1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(76,196,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { max-width: 700px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(76,196,255,0.1); border: 1px solid rgba(76,196,255,0.25);
  color: var(--cyan); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: sm-pulse 2s infinite; }
@keyframes sm-pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-block h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 800; color: var(--white); margin-bottom: 24px; line-height: 1.05; }
.hero-block h1 .accent { color: var(--cyan); }
.hero-block p { font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat-num { font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-num .accent { color: var(--cyan); }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ── TEXT BLOCK ── */
.text-block { background: var(--white); }
.text-block.bg-gray { background: var(--gray); }
.text-block.bg-navy { background: var(--navy); }
.text-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.text-block h2 { margin-bottom: 20px; }
.text-block .content { font-size: 1.05rem; color: var(--muted); line-height: 1.8; }
.text-block.bg-navy h2 { color: var(--white); }
.text-block.bg-navy .content { color: rgba(255,255,255,0.6); }
.text-block .btn-wrap { margin-top: 32px; }

/* ── TEXT+IMAGE BLOCK ── */
.text-image-block { background: var(--white); }
.text-image-block.bg-gray { background: var(--gray); }
.text-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.text-image-grid.reverse .text-image-img { order: -1; }
.text-image-img { border-radius: var(--radius); overflow: hidden; }
.text-image-img img { width: 100%; height: 400px; object-fit: cover; }
.text-image-img .placeholder {
  height: 400px; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.15); font-family: 'Poppins',sans-serif; font-size: 2rem; font-weight: 800;
}
.text-col h2 { margin-bottom: 20px; }
.text-col .content { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.text-col .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.text-col .tags span { font-size: 0.75rem; font-weight: 600; border: 1px solid var(--gray2); border-radius: 100px; padding: 4px 12px; color: var(--muted); }

/* ── SERVICES BLOCK ── */
.services-block { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--gray2); border-radius: var(--radius); overflow: hidden; }
.service-card { background: var(--white); padding: 40px 36px; transition: all 0.25s; }
.service-card:hover { background: var(--navy); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.6); }
.service-card:hover .service-icon { background: rgba(76,196,255,0.15); color: var(--cyan); }
.service-card:hover .service-tags span { border-color: rgba(76,196,255,0.3); color: rgba(76,196,255,0.8); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--gray); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--navy); transition: all 0.25s; }
.service-title { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; transition: color 0.25s; }
.service-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; transition: color 0.25s; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags span { font-size: 0.72rem; font-weight: 600; color: var(--muted); border: 1px solid var(--gray2); border-radius: 100px; padding: 3px 10px; transition: all 0.25s; }

/* ── STATS BLOCK ── */
.stats-block { background: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num .accent { color: var(--cyan); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 6px; }

/* ── CTA BLOCK ── */
.cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, #0a2a4a 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(76,196,255,0.15) 0%, transparent 65%);
}
.cta-block h2 { color: var(--white); margin-bottom: 16px; }
.cta-block p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-meta { display: flex; align-items: center; justify-content: center; gap: 40px; margin-top: 36px; position: relative; z-index: 1; }
.cta-meta-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.cta-meta-item svg { color: var(--cyan); width: 14px; height: 14px; }

/* ── GALLERY BLOCK ── */
.gallery-block { background: var(--gray); }
.gallery-grid { display: grid; gap: 16px; }
.gallery-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.gallery-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.gallery-grid.cols-4 { grid-template-columns: repeat(4,1fr); }
.gallery-item { border-radius: 12px; overflow: hidden; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.04); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy); padding: 60px 60px 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 32px; margin-bottom: 16px; display: block; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.4); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ── CONTACT BLOCK ── */
.contact-block { background: var(--gray); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--cyan); }
.contact-label { font-size: 0.72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-val { font-size: 0.92rem; color: var(--navy); font-weight: 500; margin-top: 2px; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 40px; border: 1px solid var(--gray2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 1.5px solid var(--gray2); border-radius: 8px; padding: 11px 14px;
  font-family: 'Source Sans 3', sans-serif; font-size: 0.87rem; color: var(--navy);
  background: var(--gray); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--cyan3); background: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white); font-weight: 700; font-size: 0.9rem;
  padding: 14px; border-radius: 10px; border: none; cursor: pointer; font-family: 'Source Sans 3', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.2s;
}
.form-submit:hover { background: var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-block { padding: 100px 24px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .text-image-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid.cols-3, .gallery-grid.cols-4 { grid-template-columns: repeat(2,1fr); }
}

/* ── HERO SPLIT LAYOUT ── */
.hero-block--split { min-height: 100vh; padding: 0; }
.hero-split-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; min-height: 100vh;
}
.hero-split--reverse .hero-content--split { order: 2; }
.hero-split--reverse .hero-split-img { order: 1; }
.hero-content--split { max-width: 100%; }
.hero-split-img img {
  width: 100%; height: 560px; object-fit: cover;
  border-radius: 20px; display: block;
}
.hero-split-placeholder {
  width: 100%; height: 560px; border-radius: 20px;
  background: rgba(255,255,255,0.06);
}
.hero-text { font-size: 1.1rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
@media (max-width: 900px) {
  .hero-split-inner { grid-template-columns: 1fr; gap: 40px; padding: 120px 24px 60px; min-height: auto; }
  .hero-split--reverse .hero-content--split,
  .hero-split--reverse .hero-split-img { order: unset; }
  .hero-split-img img, .hero-split-placeholder { height: 300px; }
}
