/* ═══════════════════════════════════════════════════════
   PoortHerlakken.be — Hoofd-CSS
   Brandkleuren via CSS-variabelen (instelbaar via Customizer)
   ═══════════════════════════════════════════════════════ */

:root {
    --plh-red:       #E8001C;
    --plh-red-dark:  #B80016;
    --plh-dark:      #111111;
    --plh-dark2:     #1a1a1a;
    --plh-dark3:     #222222;
    --plh-steel:     #2e2e2e;
    --plh-grey:      #6b7280;
    --plh-muted:     #9a9a9a;
    --plh-text:      #e8e8e8;
    --plh-white:     #ffffff;
}

/* ── GLOBAAL ── */
body { background: var(--plh-dark); color: var(--plh-text); }

/* ── KNOPPEN ── */
.plh-btn-primary {
    display: inline-block;
    background: var(--plh-red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 13px 28px;
    border: none;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}
.plh-btn-primary:hover { background: var(--plh-red-dark); color: #fff; }

.plh-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--plh-text);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,.25);
    cursor: pointer;
    transition: border-color .2s, color .2s;
    text-decoration: none;
}
.plh-btn-outline:hover { border-color: var(--plh-red); color: var(--plh-red); }

.plh-btn-white {
    display: inline-block;
    background: #fff;
    color: var(--plh-red);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}
.plh-btn-white:hover { background: #f0f0f0; color: var(--plh-red); }

/* ── DIVIDER ── */
.plh-divider { width: 48px; height: 3px; background: var(--plh-red); margin: 16px 0 28px; }

/* ── LABEL ── */
.plh-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--plh-red);
    display: block;
    margin-bottom: 10px;
}

/* ── WHATSAPP STICKY ── */
.plh-whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
    transition: transform .2s, box-shadow .2s;
}
.plh-whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,.6); color: #fff; }

/* ── STATS BAR ── */
.plh-stats-bar {
    background: var(--plh-red);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.plh-stat-item {
    padding: 22px 28px;
    border-right: 1px solid rgba(255,255,255,.15);
    text-align: center;
}
.plh-stat-item:last-child { border-right: none; }
.plh-stat-number { font-family: 'Barlow Condensed', sans-serif; font-size: 38px; font-weight: 800; color: #fff; display: block; line-height: 1; }
.plh-stat-label  { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.7); margin-top: 4px; display: block; }

/* ── USP CARDS ── */
.plh-usp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.05); }
.plh-usp-card { background: var(--plh-dark2); padding: 32px 28px; border-top: 3px solid transparent; transition: all .2s; }
.plh-usp-card:hover { background: var(--plh-dark3); border-top-color: var(--plh-red); }
.plh-usp-icon { width: 44px; height: 44px; background: rgba(232,0,28,.1); border: 1px solid rgba(232,0,28,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; color: var(--plh-red); }
.plh-usp-title { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.plh-usp-desc  { font-size: 13px; color: var(--plh-muted); line-height: 1.65; }

/* ── SERVICES ── */
.plh-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.05); }
.plh-service-card { background: var(--plh-dark2); padding: 36px 32px; position: relative; overflow: hidden; transition: background .2s; }
.plh-service-card:hover { background: var(--plh-dark3); }
.plh-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--plh-red); opacity: 0; transition: opacity .2s; }
.plh-service-card:hover::before { opacity: 1; }
.plh-service-num { font-family: 'Barlow Condensed', sans-serif; font-size: 72px; font-weight: 800; color: rgba(255,255,255,.025); position: absolute; top: 8px; right: 16px; line-height: 1; }
.plh-service-title { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; text-transform: uppercase; color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.plh-service-desc  { font-size: 13px; color: var(--plh-muted); line-height: 1.65; margin-bottom: 16px; }

/* ── TAGS ── */
.plh-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.plh-tag  { font-size: 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; background: rgba(232,0,28,.08); border: 1px solid rgba(232,0,28,.2); color: var(--plh-red); }

/* ── STAPPEN ── */
.plh-steps { display: flex; flex-direction: column; }
.plh-step { display: grid; grid-template-columns: 64px 1fr; border-bottom: 1px solid rgba(255,255,255,.06); padding: 24px 0; align-items: start; }
.plh-step-num   { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 800; color: rgba(232,0,28,.18); line-height: 1; }
.plh-step-title { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 5px; }
.plh-step-desc  { font-size: 13px; color: var(--plh-muted); }

/* ── REVIEWS ── */
.plh-review-card { background: var(--plh-dark3); border: 1px solid rgba(255,255,255,.06); border-left: 3px solid var(--plh-red); padding: 22px 24px; margin-bottom: 12px; }
.plh-review-stars{ color: var(--plh-red); font-size: 14px; margin-bottom: 8px; letter-spacing: 2px; }
.plh-review-text { font-size: 13px; color: var(--plh-muted); line-height: 1.65; margin-bottom: 10px; font-style: italic; }
.plh-review-name { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--plh-text); }

/* ── CTA BAND ── */
.plh-cta-band { background: var(--plh-red); padding: 56px 40px; text-align: center; }
.plh-cta-band h2 { font-size: 42px; color: #fff; margin-bottom: 10px; }
.plh-cta-band p  { color: rgba(255,255,255,.75); margin-bottom: 28px; font-size: 15px; }

/* ── FAQ ── */
.plh-faq-item { background: var(--plh-dark2); border: 1px solid rgba(255,255,255,.06); border-bottom: none; }
.plh-faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,.06); }
.plh-faq-q { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: #fff; transition: color .2s; }
.plh-faq-q:hover { color: var(--plh-red); }
.plh-faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; font-size: 13px; color: var(--plh-muted); line-height: 1.75; }
.plh-faq-a.open { max-height: 300px; padding: 0 24px 20px; }
.plh-faq-arrow { font-size: 22px; color: var(--plh-red); transition: transform .25s; }
.plh-faq-arrow.open { transform: rotate(45deg); }

/* ── FORMULIER ── */
.plh-form-input, .plh-form-select, .plh-form-textarea {
    background: var(--plh-dark3);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--plh-text);
    padding: 11px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}
.plh-form-input:focus, .plh-form-select:focus, .plh-form-textarea:focus { border-color: var(--plh-red); }
.plh-form-textarea { resize: vertical; min-height: 100px; }
.plh-form-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--plh-muted); display: block; margin-bottom: 6px; }

/* ── UPLOAD ── */
.plh-upload-area { background: var(--plh-dark3); border: 2px dashed rgba(232,0,28,.25); padding: 36px; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; }
.plh-upload-area:hover { border-color: var(--plh-red); background: rgba(232,0,28,.03); }

/* ── FILTER KNOPPEN (realisaties) ── */
.plh-filter-btn { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 8px 14px; background: var(--plh-dark3); border: 1px solid rgba(255,255,255,.1); color: var(--plh-muted); cursor: pointer; transition: all .15s; }
.plh-filter-btn:hover, .plh-filter-btn.active { border-color: var(--plh-red); color: var(--plh-red); background: rgba(232,0,28,.1); }

/* ── PROJECT CARD ── */
.plh-project-card { background: var(--plh-dark2); overflow: hidden; border-top: 3px solid transparent; transition: all .2s; }
.plh-project-card:hover { background: var(--plh-dark3); border-top-color: var(--plh-red); }

/* ── CONTACT ── */
.plh-contact-icon { width: 40px; height: 40px; background: rgba(232,0,28,.1); border: 1px solid rgba(232,0,28,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; color: var(--plh-red); }

/* ── FOOTER ── */
.plh-footer { background: #0d0d0d; border-top: 3px solid var(--plh-red); padding: 56px 40px 28px; }
.plh-footer-title { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--plh-red); margin-bottom: 16px; }

/* ── HIGHTLIGHT BOX ── */
.plh-hbox { background: var(--plh-dark3); border: 1px solid rgba(255,255,255,.06); border-left: 3px solid var(--plh-red); padding: 20px 24px; }
.plh-hbox-title { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--plh-red); margin-bottom: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .plh-stats-bar       { grid-template-columns: 1fr 1fr; }
    .plh-usp-grid        { grid-template-columns: 1fr; }
    .plh-services-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .plh-stats-bar { grid-template-columns: 1fr; }
    .plh-cta-band  { padding: 40px 20px; }
    .plh-cta-band h2 { font-size: 30px; }
}
