/* IT Live Unified Template CSS v2.0 */
/* Alle kleuren via CSS custom properties — worden ingesteld vanuit data/site.json */
:root {
  --primary:   #1e3a8a;
  --secondary: #f97316;
  --text:      #1a202c;
  --text-muted:#64748b;
  --bg:        #ffffff;
  --surface:   #f8fafc;
  --border:    #e2e8f0;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --max-w:     1200px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* Buttons */
.btn-primary { display: inline-block; background: var(--primary); color: #fff; padding: .75rem 1.75rem; border-radius: var(--radius); font-weight: 700; font-size: .95rem; transition: opacity .2s; border: 2px solid transparent; cursor: pointer; }
.btn-primary:hover { opacity: .9; text-decoration: none; }
.btn-outline { display: inline-block; background: transparent; color: var(--primary); padding: .75rem 1.75rem; border-radius: var(--radius); font-weight: 700; font-size: .95rem; border: 2px solid var(--primary); transition: background .2s, color .2s; cursor: pointer; }
.btn-outline:hover { background: var(--primary); color: #fff; text-decoration: none; }

/* Header */
#site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.nav-inner { display: flex; align-items: center; gap: 1rem; padding: .85rem 1.25rem; }
.logo { font-size: 1.15rem; font-weight: 900; color: var(--primary); display: flex; align-items: center; gap: .5rem; }
.logo i { font-size: 1.3rem; }
.site-nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.site-nav a { padding: .5rem .85rem; border-radius: 8px; font-size: .9rem; font-weight: 600; color: var(--text); transition: background .15s; }
.site-nav a:hover, .site-nav a.active { background: color-mix(in srgb, var(--primary) 10%, transparent); color: var(--primary); text-decoration: none; }
.site-nav .nav-cta { background: var(--primary); color: #fff; margin-left: .5rem; }
.site-nav .nav-cta:hover { opacity: .9; background: var(--primary); color: #fff; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* Hero */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.35); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: #fff; padding: 4rem 0; }
.hero-label { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 20px; padding: .3rem .9rem; font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.15; max-width: 700px; margin-bottom: 1rem; }
.hero-content p { font-size: 1.1rem; max-width: 580px; opacity: .9; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-contact-bar { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: .9rem; }
.hero-contact-bar a { color: rgba(255,255,255,.9); display: flex; align-items: center; gap: .4rem; }
.hero-contact-bar a:hover { color: #fff; text-decoration: none; }

/* USP balk */
.usp-bar { background: var(--primary); color: #fff; padding: 1rem 0; }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: .5rem; }
.usp { display: flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 600; padding: .5rem; }
.usp i { font-size: 1.1rem; opacity: .85; }

/* Services */
.services-section { padding: 5rem 0; background: var(--surface); }
.section-title { font-size: 1.75rem; font-weight: 900; text-align: center; margin-bottom: 2.5rem; color: var(--text); }
.section-title::after { content: ''; display: block; width: 50px; height: 4px; background: var(--primary); border-radius: 2px; margin: .5rem auto 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.service-icon { width: 54px; height: 54px; border-radius: 12px; background: color-mix(in srgb, var(--primary) 12%, transparent); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--primary); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .5rem; color: var(--text); }
.service-card p { font-size: .87rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.card-link { font-size: .85rem; font-weight: 700; color: var(--primary); }

/* About teaser */
.about-teaser { padding: 5rem 0; }
.about-inner { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.about-text h2 { font-size: 1.75rem; font-weight: 900; margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.75; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.check-list li::before { content: '✓ '; color: var(--primary); font-weight: 800; }
.about-cta-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); }
.about-cta-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .5rem; }
.about-cta-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* Footer */
#site-footer { background: #0f172a; color: #94a3b8; padding: 3rem 0 0; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 2rem; padding-bottom: 2rem; }
.footer-logo { font-size: 1.1rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.footer-col h4 { color: #fff; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.footer-col p, .footer-col a { font-size: .85rem; color: #94a3b8; line-height: 1.8; display: block; }
.footer-col a:hover { color: #fff; }
.social-links { display: flex; gap: .75rem; margin-top: .25rem; }
.social-links a { font-size: 1.25rem; color: #64748b; transition: color .15s; }
.social-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 1rem 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .8rem; }
.footer-bottom a { color: #64748b; }
.footer-bottom a:hover { color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; margin-left: auto; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 1rem; z-index: 200; }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: .75rem 1rem; }
  .hero { min-height: 60vh; }
  .hero-content h1 { font-size: 1.8rem; }
  .about-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== Verhuisvergelijken — platform overrides ===== */

/* Search hero */
.vv-search-hero { background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%); padding: 5rem 0 6rem; color: #fff; position: relative; overflow: hidden; }
.vv-search-hero h1 { color: #fff; font-size: 2.6rem; line-height: 1.15; max-width: 800px; margin-bottom: 1rem; font-weight: 800; }
.vv-search-hero .lead { font-size: 1.15rem; opacity: .92; max-width: 700px; margin-bottom: 2.5rem; }

.vv-searchbar { background: #fff; padding: 1rem; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,.18); display: grid; grid-template-columns: 1.6fr 1fr 1fr auto; gap: .5rem; max-width: 900px; }
.vv-searchbar input, .vv-searchbar select { padding: .9rem 1rem; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 1rem; font-family: inherit; background: #fff; color: var(--text); }
.vv-searchbar input:focus, .vv-searchbar select:focus { outline: 2px solid var(--primary); outline-offset: -1px; }
.vv-searchbar button { background: var(--secondary); color: #fff; border: none; padding: .9rem 2rem; border-radius: 10px; font-weight: 800; font-size: 1rem; cursor: pointer; transition: opacity .2s; }
.vv-searchbar button:hover { opacity: .9; }
@media (max-width: 768px) {
  .vv-searchbar { grid-template-columns: 1fr; }
  .vv-search-hero h1 { font-size: 1.85rem; }
}

/* Stats bar */
.vv-stats { display: flex; flex-wrap: wrap; gap: 2rem 4rem; justify-content: center; padding: 2.5rem 1rem; background: #fff; border-bottom: 1px solid var(--border); }
.vv-stat { text-align: center; }
.vv-stat-value { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.vv-stat-label { font-size: .82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; margin-top: .35rem; }

/* Mover card */
.mover-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.5rem; }
.mover-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; transition: transform .15s, box-shadow .15s; display: flex; flex-direction: column; position: relative; }
.mover-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.09); }
.mover-card.featured { border: 2px solid var(--secondary); }
.mover-card .badge-featured { position: absolute; top: -10px; right: 14px; background: var(--secondary); color: #fff; font-size: .72rem; font-weight: 800; padding: .25rem .75rem; border-radius: 999px; letter-spacing: .04em; }
.mover-card h3 { color: var(--text); font-size: 1.2rem; margin-bottom: .25rem; }
.mover-card .mover-location { color: var(--text-muted); font-size: .88rem; display: flex; align-items: center; gap: .35rem; margin-bottom: .75rem; }
.mover-card .mover-location .flag { font-size: 1rem; }
.mover-card .rating-row { display: flex; align-items: center; gap: .5rem; margin-bottom: .85rem; color: #f59e0b; font-size: .92rem; }
.mover-card .rating-row .count { color: var(--text-muted); font-weight: 600; }
.mover-card .mover-desc { font-size: .9rem; color: var(--text-muted); margin: .5rem 0 1rem; flex: 1; line-height: 1.5; }
.mover-card .tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1rem; }
.mover-card .tag { background: #f1f5f9; color: #475569; font-size: .72rem; padding: .25rem .65rem; border-radius: 999px; font-weight: 600; }
.mover-card .tag.cert { background: #ecfdf5; color: #047857; }
.mover-card .tag.intl { background: #eff6ff; color: #1d4ed8; }
.mover-card .actions { display: flex; gap: .5rem; margin-top: auto; }
.mover-card .actions .btn-primary, .mover-card .actions .btn-outline { padding: .6rem 1rem; font-size: .85rem; flex: 1; text-align: center; }

/* Filter sidebar */
.vv-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; padding: 2.5rem 0; }
.vv-filters { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; height: fit-content; position: sticky; top: 80px; }
.vv-filters h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.vv-filter-group { margin-bottom: 1.5rem; }
.vv-filter-group label { display: flex; align-items: center; gap: .5rem; padding: .35rem 0; font-size: .9rem; cursor: pointer; }
.vv-filter-group input[type="text"], .vv-filter-group select { width: 100%; padding: .55rem .75rem; border: 1px solid var(--border); border-radius: 8px; font-size: .9rem; }
.vv-filter-group input[type="checkbox"] { accent-color: var(--primary); }
@media (max-width: 900px) {
  .vv-layout { grid-template-columns: 1fr; }
  .vv-filters { position: static; }
}

/* Results header */
.vv-results-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.vv-results-count { font-size: .95rem; color: var(--text-muted); }
.vv-results-count strong { color: var(--text); font-size: 1rem; }
.vv-sort { padding: .55rem .85rem; border: 1px solid var(--border); border-radius: 8px; font-size: .9rem; }

/* Mover detail page */
.mover-hero { background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%); color: #fff; padding: 4rem 0 6rem; }
.mover-hero h1 { color: #fff; font-size: 2.2rem; margin-bottom: .5rem; }
.mover-hero .meta { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: .95rem; opacity: .9; margin-bottom: 1rem; }
.mover-hero .actions { margin-top: 1.5rem; display: flex; gap: .75rem; flex-wrap: wrap; }
.mover-hero .actions .btn-primary { background: var(--secondary); }
.mover-hero .actions .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.mover-hero .actions .btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; }

.mover-detail { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; margin-top: -3rem; position: relative; z-index: 1; }
.mover-detail .panel { background: #fff; border-radius: 14px; padding: 2rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.mover-detail h2 { color: var(--text); font-size: 1.35rem; margin-bottom: 1rem; }
@media (max-width: 900px) { .mover-detail { grid-template-columns: 1fr; } }

.review-item { padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.review-item:last-child { border-bottom: none; }
.review-item .review-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .5rem; }
.review-item .reviewer { font-weight: 700; color: var(--text); }
.review-item .review-meta { font-size: .82rem; color: var(--text-muted); }
.review-item .review-stars { color: #f59e0b; font-size: .85rem; margin-bottom: .35rem; }
.review-item h4 { color: var(--text); font-size: 1rem; margin-bottom: .35rem; }
.review-item p { font-size: .92rem; color: var(--text-muted); line-height: 1.6; }

/* Quote form steps */
.quote-form { background: #fff; padding: 2rem; border-radius: 14px; box-shadow: var(--shadow); max-width: 760px; margin: 0 auto; }
.quote-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.quote-form label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .92rem; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: 10px; font-size: .95rem; font-family: inherit; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: 2px solid var(--primary); outline-offset: -1px; border-color: var(--primary); }
@media (max-width: 600px) { .quote-form .form-row { grid-template-columns: 1fr; } }

/* Hero — main override (full-bleed image-style) */
.hero-bg, .hero-overlay { display: none !important; }
.hero { background: transparent !important; padding: 0 !important; min-height: 0 !important; }

/* Footer adjust */
#site-footer { background: #0f172a; color: #cbd5e1; padding: 3rem 0 1rem; margin-top: 4rem; }
#site-footer .footer-logo { color: #fff; }
#site-footer .footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
#site-footer .footer-col a { color: #cbd5e1; text-decoration: none; display: block; padding: .25rem 0; font-size: .9rem; }
#site-footer .footer-col a:hover { color: var(--secondary); }
#site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.5rem; font-size: .82rem; }
#site-footer .footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
