:root {
  --accent-1: #0060F0;
  --accent-2: #7C3AED;
  --bg-light: #ffffff;
  --bg-alt: #f5f7ff;
  --bg-alt2: #eef1ff;
  --text-dark: #1E293B;
  --muted: #64748B;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(0,0,0,0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  scroll-behavior: smooth;
}
a { color: var(--accent-1); text-decoration: none; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.logo-badge {
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-badge img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.logo-badge:hover { transform: scale(1.08); }
.site-title { font-size: 2.8rem; font-weight: 700; }
.site-sub { font-size: 1.2rem; color: rgba(255,255,255,0.9); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border-radius: var(--radius); background: linear-gradient(90deg, var(--accent-1), var(--accent-2)); color: #fff; font-weight: 600; transition: 0.3s; }
.btn:hover { opacity: 0.9; transform: scale(1.02); }
.highlight-btn { background: rgba(255,255,255,0.15); color: #fff; font-weight: 700; padding: 14px 26px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.25); }
.highlight-btn:hover { background: rgba(255,255,255,0.25); }

/* NAVIGATION */
.topnav { position: fixed; top: 0; right: -250px; width: 250px; height: 100vh; background: rgba(0,0,0,0.75); backdrop-filter: blur(10px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transition: right 0.3s ease; z-index: 9; }
.topnav.open { right: 0; }
.topnav a { color: #fff; font-size: 1.2rem; }
.hamburger { position: fixed; top: 20px; right: 20px; width: 30px; height: 22px; display: flex; flex-direction: column; justify-content: space-between; background: none; border: none; cursor: pointer; z-index: 10; }
.hamburger span { width: 100%; height: 4px; background: #fff; border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media (min-width:769px) { .hamburger { display: none; } .topnav { position: absolute; top: 20px; right: 50%; transform: translateX(50%); width: auto; height: auto; background: transparent; flex-direction: row; gap: 2rem; } }

/* SECTIONS */
section { padding: 60px 0; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.05); }
section:nth-of-type(even){ background: var(--bg-alt); }
section:nth-of-type(odd){ background: var(--bg-alt2); }
h2 { color: var(--accent-1); font-size: 1.8rem; margin-bottom: 15px; }
p.lead { color: var(--muted); max-width: 750px; margin: 0 auto 30px; font-size:1.05rem; }
.over-grid { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.over-ons-icon { width: 65px; height: 65px; color: var(--accent-2); }

/* DIENSTEN */
.diensten-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 25px; justify-items: center; }
.dienst { background: #fff; padding: 25px; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform 0.3s; text-align: center; max-width: 280px; }
.dienst:hover { transform: translateY(-5px); }
.dienst i { width: 36px; height: 36px; color: var(--accent-2); margin-bottom: 10px; }

/* PORTFOLIO */
.portfolio-scroll { display: flex; overflow-x: auto; gap: 20px; padding-bottom: 10px; }
.portfolio-item { flex: 0 0 auto; width: 280px; border-radius: var(--radius); overflow: hidden; background: #f9f9fb; padding: 8px; box-shadow: 0 6px 20px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.portfolio-item:hover { transform: scale(1.03); box-shadow: 0 12px 25px rgba(0,0,0,0.12); }
.portfolio-item img { width: 100%; height: 180px; object-fit: cover; display: block; border-radius: var(--radius); background: #fff; }
.portfolio-meta { text-align: left; padding: 10px 0; }
.portfolio-meta h4 { margin: 0 0 5px; color: var(--accent-2); }
.portfolio-meta p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* PRIJZEN */
#prijzen .over-ons-icon { width: 58px; height: 58px; }

/* CONTACT */
.contact-card-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  gap: 30px;
}

.contact-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-item:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.1);
  padding-right: 20px;
}

.contact-item i {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.contact-item p:first-child {
  font-weight: 500;
  color: var(--accent-2);
  font-size: 1.1rem;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact-card-compact {
    flex-direction: column;
  }
  .contact-item:not(:last-child) {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 20px;
  }
}
/* FOOTER */
footer { background: linear-gradient(90deg, var(--accent-1), var(--accent-2)); color: #fff; text-align: center; padding: 25px 0; font-size: 0.9rem; }

/* SCROLL ANIMATIE */
[data-animate] { opacity:0; transform:translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
[data-animate].visible { opacity:1; transform:translateY(0); }