/* ============================================
   FietsVakwerk — Dark + Orange
   Playfair Display + Inter
   ============================================ */

:root {
  --bg:        #1a1a2e;
  --bg-light:  #22223a;
  --bg-card:   #2a2a44;
  --accent:    #ea580c;
  --accent-h:  #f97316;
  --text:      #e4e4ec;
  --text-muted:#9a9ab0;
  --white:     #ffffff;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(234,88,12,.35); }
.btn-outline { border-color: rgba(255,255,255,.3); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-nav { padding: 10px 24px; font-size: .85rem; }

/* --- BADGE --- */
.badge {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(234,88,12,.15); color: var(--accent);
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 18px 0; transition: var(--transition);
}
.navbar.scrolled { background: rgba(26,26,46,.95); backdrop-filter: blur(20px); padding: 12px 0; box-shadow: 0 2px 30px rgba(0,0,0,.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--text-muted); transition: var(--transition); }
.nav-links a:hover { color: var(--white); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }

/* --- HERO --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.92) 0%, rgba(26,26,46,.7) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 120px 0 80px; }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(2.8rem,6vw,4.5rem); font-weight: 800; line-height: 1.1; margin: 20px 0 24px; color: var(--white); }
.hero-content p { font-size: 1.15rem; color: var(--text-muted); max-width: 520px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll span { font-size: .75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* --- TICKER --- */
.ticker { overflow: hidden; background: var(--accent); padding: 14px 0; }
.ticker-track { display: flex; gap: 32px; white-space: nowrap; animation: tickerScroll 20s linear infinite; }
.ticker-track span { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 2px; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- SECTIONS --- */
.section { padding: 100px 0; }
.section-label {
  display: inline-block; font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 12px;
}
.section-title { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--white); margin-bottom: 48px; }

/* --- SERVICES --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 40px 32px;
  transition: var(--transition); border: 1px solid rgba(255,255,255,.05); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(234,88,12,.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(234,88,12,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--accent); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.65; }

/* --- OVER ONS --- */
.over-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.over-images { position: relative; }
.over-img-main img { border-radius: var(--radius-lg); }
.over-img-float { position: absolute; bottom: -30px; right: -30px; width: 45%; border-radius: var(--radius); overflow: hidden; border: 4px solid var(--bg); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.over-img-float img { border-radius: var(--radius); }
.over-text p { color: var(--text-muted); margin-bottom: 16px; font-size: .95rem; }
.over-stats { display: flex; gap: 40px; margin-top: 32px; }
.stat-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--accent); display: block; }
.stat-label { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

/* --- CAROUSEL --- */
.carousel { position: relative; overflow: hidden; padding: 0 24px; }
.carousel-track { display: flex; gap: 24px; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.carousel-slide { min-width: calc(33.333% - 16px); border-radius: var(--radius-lg); overflow: hidden; position: relative; flex-shrink: 0; }
.carousel-slide img { width: 100%; height: 320px; object-fit: cover; transition: transform .5s; }
.carousel-slide:hover img { transform: scale(1.05); }
.carousel-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(to top, rgba(26,26,46,.9), transparent); }
.carousel-caption h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--white); }
.carousel-caption p { font-size: .85rem; color: var(--text-muted); }
.carousel-controls { display: flex; justify-content: center; gap: 16px; margin-top: 32px; }
.carousel-btn { width: 50px; height: 50px; border-radius: 50%; border: 2px solid rgba(255,255,255,.15); background: transparent; color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.carousel-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(234,88,12,.1); }
.carousel-btn svg { width: 20px; height: 20px; }

/* --- TIMELINE / PROCES --- */
.proces { background: var(--bg-light); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.timeline-item { position: relative; padding-top: 24px; }
.timeline-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.08); }
.timeline-item::after { content: ''; position: absolute; top: -5px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.timeline-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: rgba(234,88,12,.2); margin-bottom: 8px; }
.timeline-content h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.timeline-content p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* --- TEAM --- */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.team-text .section-title { margin-bottom: 20px; }
.team-text p { color: var(--text-muted); margin-bottom: 28px; }
.team-img img { border-radius: var(--radius-lg); }

/* --- BLOG --- */
.blog { background: var(--bg-light); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); border: 1px solid rgba(255,255,255,.05); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-tag { display: inline-block; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); background: rgba(234,88,12,.1); padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; }
.blog-body h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--white); margin-bottom: 8px; line-height: 1.35; }
.blog-body p { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.blog-link { font-size: .85rem; font-weight: 600; color: var(--accent); transition: var(--transition); }
.blog-link:hover { color: var(--accent-h); }

/* --- CTA --- */
.cta { position: relative; padding: 120px 0; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.93), rgba(234,88,12,.15)); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); color: var(--white); margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 32px; }

/* --- FOOTER --- */
.footer { padding: 60px 0 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); max-width: 280px; }
.footer-col h4 { font-family: var(--font-head); font-size: 1rem; color: var(--white); margin-bottom: 16px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: .88rem; color: var(--text-muted); transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-col li:not(:has(a)) { font-size: .88rem; color: var(--text-muted); }
.footer-bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.06); text-align: center; }
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }

/* --- ANIMATIONS --- */
[data-animate] { opacity: 0; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--bg-light); flex-direction: column; align-items: flex-start;
    padding: 80px 32px 40px; gap: 20px; transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,.4);
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1rem; color: var(--text); }

  .hero-content { padding: 100px 0 60px; }
  .over-grid, .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .over-img-float { position: relative; bottom: auto; right: auto; width: 60%; margin-top: -40px; margin-left: auto; }
  .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .carousel-slide { min-width: calc(100% - 16px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .over-stats { gap: 24px; }
}