body{font-family:Arial,Helvetica,sans-serif;background:#000;color:#fff}
.contact-link{color:#09fc32;font-weight:700;text-decoration:none}
.popup-overlay{position:fixed;inset:0;background:rgba(0,0,0,.85);display:none;align-items:center;justify-content:center;z-index:99999}
.popup{background:#0b0b0b;border-radius:14px;padding:25px;width:100%;max-width:420px;box-shadow:0 0 40px rgba(0,255,80,.25)}
.popup h2{margin-top:0;color:#09fc32;text-align:center}
.popup input,.popup textarea{width:100%;padding:12px;margin-bottom:12px;border-radius:8px;border:1px solid #222;background:#000;color:#fff}
.popup textarea{min-height:120px}
.popup button{width:100%;padding:14px;background:#09fc32;color:#000;border:none;border-radius:8px;font-size:16px;font-weight:700;cursor:pointer}
.popup button:hover{background:#00c853}
.popup-close{position:absolute;top:10px;right:15px;background:none;border:none;color:#fff;font-size:26px;cursor:pointer}
.form-status{margin-top:10px;font-size:14px;text-align:center}
.form-status.ok{color:#09fc32}
.form-status.error{color:#ff4757}
/* === SUCCES ANIMATIE === */
.success-check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #09fc32;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    animation: popIn 0.4s ease;
}

.success-check::after {
    content: '✔';
    font-size: 32px;
    color: #000;
}

@keyframes popIn {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.captcha {
    margin-bottom: 12px;
    font-size: 14px;
}

.captcha label {
    display: block;
    margin-bottom: 6px;
    color: #09fc32;
}
.popup select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #222;
    background: #000;
    color: #fff;
    font-size: 14px;
}

.popup select option {
    background: #000;
    color: #fff;
}
.popup {
    position: relative;
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: #09fc32;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.popup-close:hover {
    color: #00c853;
    transform: scale(1.1);
}


.popup input,
.popup textarea,
.popup select {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #1f1f1f;
    background: linear-gradient(180deg, #050505, #0c0c0c);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-shadow: inset 0 0 10px rgba(0,0,0,.8);
}

.popup input::placeholder,
.popup textarea::placeholder {
    color: #777;
}

.popup input:focus,
.popup textarea:focus,
.popup select:focus {
    border-color: #09fc32;
    box-shadow: 0 0 0 2px rgba(9,252,50,.25);
}
.popup select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #09fc32 50%),
        linear-gradient(135deg, #09fc32 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
}
.captcha {
    margin: 16px 0;
    font-size: 14px;
    color: #09fc32;
}

.captcha input {
    margin-top: 8px;
}
/* =========================
   COMPACT FORM STYLING
   ========================= */

.popup {
    max-width: 420px;
    padding: 20px;
}

.popup h2 {
    font-size: 18px;
    margin-bottom: 14px;
}

/* Inputs / textarea / select */
.popup input,
.popup textarea,
.popup select {
    padding: 10px 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #1f1f1f;
    background: linear-gradient(180deg, #050505, #0c0c0c);
    color: #fff;
}

/* Tekstveld minder hoog */
.popup textarea {
    min-height: 90px;
    resize: vertical;
}

/* Dropdown pijl kleiner */
.popup select {
    background-position:
        calc(100% - 16px) 50%,
        calc(100% - 12px) 50%;
    background-size: 5px 5px;
}

/* Bestand upload compacter */
.popup input[type="file"] {
    font-size: 13px;
    padding: 6px;
}

/* Captcha compacter */
.captcha {
    margin: 10px 0;
    font-size: 13px;
}

.captcha input {
    margin-top: 6px;
}

/* Verzendknop */
.popup button[type="submit"] {
    padding: 12px;
    font-size: 15px;
    border-radius: 8px;
}

/* Kruisje iets kleiner */
.popup-close {
    top: 10px;
    right: 12px;
    font-size: 22px;
}
/* =========================
   ULTRA COMPACT POPUP FIX
   ========================= */

.popup {
    max-width: 380px !important;
    padding: 14px !important;
}

.popup h2 {
    font-size: 16px !important;
    margin-bottom: 10px !important;
}

/* ALLE velden */
.popup input,
.popup textarea,
.popup select {
    padding: 8px 10px !important;
    margin-bottom: 8px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
}

/* Berichtveld */
.popup textarea {
    min-height: 70px !important;
}

/* Bestand upload */
.popup input[type="file"] {
    padding: 4px !important;
    font-size: 12px !important;
}

/* Captcha */
.captcha {
    margin: 8px 0 !important;
    font-size: 12px !important;
}

.captcha input {
    margin-top: 4px !important;
}

/* Verzendknop */
.popup button[type="submit"] {
    padding: 10px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
}

/* Succes animatie kleiner */
.success-check {
    width: 44px !important;
    height: 44px !important;
}

.success-check::after {
    font-size: 22px !important;
}

/* Kruisje */
.popup-close {
    top: 8px !important;
    right: 10px !important;
    font-size: 20px !important;
}
/* =========================
   POPUP CLOSE BUTTON FIX
   ========================= */

.popup-close {
    position: absolute !important;
    top: 10px !important;
    right: 12px !important;

    width: 28px !important;
    height: 28px !important;

    background: transparent !important;
    border: none !important;
    border-radius: 50% !important;

    color: #09fc32 !important;
    font-size: 20px !important;
    font-weight: bold !important;
    line-height: 1 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    cursor: pointer !important;
    z-index: 10 !important;
}

.popup-close:hover {
    background: rgba(9,252,50,0.15) !important;
    transform: scale(1.05) !important;
}

.popup-close:active {
    transform: scale(0.95) !important;
}
