/* ==========================================================================
   Contact Form 7 – Custom Styling für FairKEP Design
   ========================================================================== */

/* Input-Felder */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--bg-light);
}

.wpcf7 input:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: var(--accent-lime);
    background: white;
    box-shadow: 0 0 0 4px rgba(154, 205, 50, 0.15);
}

.wpcf7 input::placeholder {
    color: #94a3b8;
}

/* Submit-Button */
.wpcf7 .btn-submit,
.wpcf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--accent-lime);
    border: none;
    border-radius: 8px;
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.wpcf7 .btn-submit:hover,
.wpcf7 input[type="submit"]:hover {
    background: var(--accent-lime-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(154, 205, 50, 0.3);
}

/* Validierungsmeldungen */
.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.wpcf7-response-output {
    border-color: var(--accent-lime) !important;
    border-radius: var(--radius-sm);
    padding: 1rem !important;
    margin: 1rem 0 !important;
}

/* Checkbox-Styling */
.wpcf7 .checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent-lime);
    cursor: pointer;
    flex-shrink: 0;
}

/* Form-Hint */
.wpcf7 .form-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
