*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Segoe UI', sans-serif; color: #222; width: 100%; }
img, video, iframe, table { max-width: 100%; }

/* NAV */
nav {
  position: sticky; top: 0; width: 100%; background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 999;
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; flex-wrap: nowrap; box-sizing: border-box;
}
.nav-left {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; min-width: 0; gap: 12px;
}
nav .logo {
  font-size: clamp(0.75rem, 3.5vw, 1.1rem); font-weight: 700;
  color: #f5a623; letter-spacing: 0.5px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; flex: 1;
}
nav ul { list-style: none; display: flex; gap: 24px; flex-shrink: 0; }
nav ul li a {
  text-decoration: none; color: #333; font-weight: 500;
  font-size: 0.9rem; transition: color 0.2s;
}
nav ul li a:hover { color: #f5a623; }
nav .contact-info { font-size: 0.8rem; color: #555; text-align: right; flex-shrink: 0; }
nav .contact-info a { color: #f5a623; text-decoration: none; }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px; flex-shrink: 0; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: #1a1a2e; border-radius: 3px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 24px; text-decoration: none; color: #333;
  font-weight: 500; font-size: 0.95rem; border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: #fff8ee; color: #f5a623; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; color: #fff;
  padding: 60px 20px; position: relative; overflow: hidden;
  width: 100%; box-sizing: border-box;
}
.hero::before {
  content: '⚡'; font-size: 140px; opacity: 0.05;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); pointer-events: none;
}
.hero h1 {
  font-size: clamp(1rem, 5.5vw, 2.4rem); font-weight: 800; margin-bottom: 10px;
  overflow-wrap: break-word; word-break: break-word; width: 100%; hyphens: auto;
}
.hero h1 span { color: #f5a623; }
.hero p {
  font-size: clamp(0.78rem, 3.5vw, 1rem); color: #aac; margin-bottom: 22px;
  width: 100%; max-width: 520px; overflow-wrap: break-word; word-break: break-word;
}
.hero .btn {
  background: #f5a623; color: #fff; padding: 11px 20px;
  border: none; border-radius: 4px;
  font-size: clamp(0.78rem, 3.5vw, 0.9rem); font-weight: 700;
  cursor: pointer; text-decoration: none; transition: background 0.2s;
  white-space: normal; word-break: break-word;
  max-width: 90%; display: inline-block; text-align: center;
}
.hero .btn:hover { background: #e09414; }

/* SECTIONS */
section { padding: 50px 40px; width: 100%; overflow-x: hidden; }
section h2 {
  font-size: clamp(1.1rem, 3vw, 1.8rem); font-weight: 800; margin-bottom: 8px;
  color: #1a1a2e; position: relative; display: inline-block;
  overflow-wrap: break-word; word-break: break-word; max-width: 100%;
}
section h2::after {
  content: ''; display: block; height: 3px; background: #f5a623;
  margin-top: 6px; border-radius: 2px;
}
.subtitle { color: #888; margin-bottom: 30px; font-size: 0.9rem; }

/* OVER ONS */
.over { background: #f9f9f9; }
.over .inner { display: flex; gap: 40px; align-items: center; max-width: 1000px; margin: 0 auto; }
.over .tekst { flex: 1; min-width: 0; }
.over .tekst h2 { margin-bottom: 14px; }
.over .tekst p { color: #555; line-height: 1.7; font-size: 0.92rem; }
.over .icoon { flex: 0 0 120px; font-size: 80px; text-align: center; }

/* WELKOM */
.welkom { background: #fff; text-align: center; }
.welkom .inner { max-width: 750px; margin: 0 auto; }
.welkom p { color: #555; line-height: 1.7; font-size: 0.92rem; }

/* DIENSTEN */
.diensten { background: #f9f9f9; }
.diensten .inner { max-width: 1000px; margin: 0 auto; }
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 26px;
}
.card {
  background: #fff; border-radius: 6px; padding: 22px 18px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s; border-top: 3px solid #f5a623;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.11); }
.card .icon { font-size: 2rem; margin-bottom: 10px; }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.card p { color: #666; font-size: 0.85rem; line-height: 1.6; }
.card a { display: inline-block; margin-top: 12px; color: #f5a623; font-weight: 600; text-decoration: none; font-size: 0.85rem; }
.card a:hover { text-decoration: underline; }

/* OFFERTE */
.offerte { background: #1a1a2e; color: #fff; text-align: center; }
.offerte h2 { color: #fff; }
.offerte h2::after { background: #f5a623; }
.offerte .subtitle { color: #aac; }
.offerte .inner { max-width: 560px; margin: 0 auto; }
.offerte form { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.offerte input, .offerte textarea {
  padding: 11px 14px; border: 1px solid #333; border-radius: 4px;
  background: #16213e; color: #fff; font-size: 0.9rem; font-family: inherit; width: 100%;
}
.offerte input::placeholder, .offerte textarea::placeholder { color: #778; }
.offerte textarea { height: 100px; resize: vertical; }
.offerte button {
  background: #f5a623; color: #fff; border: none; padding: 12px;
  border-radius: 4px; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background 0.2s;
}
.offerte button:hover { background: #e09414; }

/* KAART */
.kaart { background: #f9f9f9; }
.kaart .inner { max-width: 1000px; margin: 0 auto; }
.kaart iframe { width: 100%; height: 340px; border: none; border-radius: 8px; margin-top: 20px; display: block; }

/* CONTACT */
.contact { background: #fff; }
.contact .inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: row; gap: 40px; align-items: flex-start;
}
.contact .info { flex: 1; min-width: 0; }
.contact .info h2 { margin-bottom: 14px; }
.contact .info p { color: #555; line-height: 1.7; margin-bottom: 16px; font-size: 0.92rem; }
.contact .info .detail {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; color: #444; font-size: 0.9rem;
}
.contact .info .detail .ic { font-size: 1.2rem; flex-shrink: 0; }
.contact .info .detail a { color: #f5a623; text-decoration: none; word-break: break-word; }
.contact .form-side { flex: 1; min-width: 0; }
.contact form { display: flex; flex-direction: column; gap: 10px; }
.contact input, .contact textarea {
  padding: 11px 12px; border: 1px solid #ddd; border-radius: 4px;
  font-size: 0.9rem; font-family: inherit; color: #333; width: 100%;
}
.contact textarea { height: 100px; resize: vertical; }
.contact button {
  background: #f5a623; color: #fff; border: none; padding: 12px;
  border-radius: 4px; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background 0.2s;
}
.contact button:hover { background: #e09414; }

/* FOOTER */
footer {
  background: #0f0f1a; color: #888; text-align: center;
  padding: 22px 20px; font-size: 0.8rem;
}
footer strong { color: #f5a623; }
footer p { margin-top: 5px; }

/* RESPONSIVE — tablet */
@media (max-width: 900px) {
  nav { padding: 12px 24px; }
  nav .contact-info { display: none; }
  section { padding: 40px 24px; }
  .over .inner, .contact .inner { gap: 24px; }
}

/* RESPONSIVE — mobile */
@media (max-width: 620px) {
  nav { padding: 10px 12px; position: relative; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 40px 16px; }
  .hero h1 { font-size: clamp(1.1rem, 8vw, 1.8rem); }
  .hero p { font-size: clamp(0.78rem, 4vw, 0.95rem); }
  section { padding: 32px 12px; }
  .over .inner { flex-direction: column; }
  .over .icoon { font-size: 60px; flex: none; }
  .contact .inner { display: block; }
  .contact .info, .contact .form-side { width: 100%; }
  .contact .form-side { margin-top: 24px; }
  .contact input, .contact textarea, .contact button { width: 100%; box-sizing: border-box; }
  .cards { grid-template-columns: 1fr; gap: 12px; }
}

/* RESPONSIVE — tiny (320px) */
@media (max-width: 360px) {
  nav { padding: 8px 10px; }
  nav .logo { font-size: 0.78rem; }
  section { padding: 26px 10px; }
  .hero { padding: 34px 14px; }
  .hero h1 { font-size: 1.1rem; }
  .hero p { font-size: 0.78rem; }
  .card { padding: 14px 12px; }
  footer { font-size: 0.72rem; padding: 18px 10px; word-break: break-word; }
}