.header_1 {
    background-color: white !important;
    
}

/* ========================================
   CONTACT FORM 7 - KOMPLETNY CSS
   ======================================== */

/* Minimalne odstępy */
.wpcf7 label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}

.wpcf7 p {
    margin-bottom: 4px !important;
}

/* Układ dwukolumnowy dla imienia i nazwiska */
.form-row {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}

.form-col-half {
    flex: 1;
}

/* Responsywność - jedna kolumna na mobile */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Stylowanie pól input */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 0;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

/* Focus state dla input */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus {
    outline: none;
    border-color: #e52424;
    background-color: #fff;
}

/* Placeholder styling */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #999;
    opacity: 1;
}

/* Stylowanie textarea */
.wpcf7 textarea {
    width: 100%;
    min-height: 60px;
    padding: 8px 10px;
    margin-bottom: 0;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

/* Focus state dla textarea */
.wpcf7 textarea:focus {
    outline: none;
    border-color: #e52424;
    background-color: #fff;
}

/* Stylowanie przycisku submit */
.wpcf7 input[type="submit"] {
    background-color: #e52424;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Hover effect dla przycisku */
.wpcf7 input[type="submit"]:hover {
    background-color: #c91f1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Active state dla przycisku */
.wpcf7 input[type="submit"]:active {
    background-color: #a81919;
    transform: translateY(0);
    box-shadow: none;
}

/* Stylowanie komunikatów walidacji */
.wpcf7-not-valid-tip {
    font-size: 12px;
    color: #dc3232;
    margin-top: 2px;
    display: block;
}

/* Czerwona ramka dla pól z błędami */
.wpcf7-not-valid {
    border-color: #dc3232 !important;
}

/* Komunikat sukcesu */
.wpcf7-response-output {
    margin: 10px 0 0 0 !important;
    padding: 10px !important;
    border: 1px solid #46b450 !important;
    background-color: #f7fcf7 !important;
    color: #46b450 !important;
    font-size: 14px;
}

/* Komunikat błędu */
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    margin: 10px 0 0 0 !important;
    padding: 10px !important;
    border: 1px solid #dc3232 !important;
    background-color: #fef7f7 !important;
    color: #dc3232 !important;
    font-size: 14px;
}

/* Spinner podczas wysyłania */
.wpcf7-spinner {
    margin-left: 10px;
}

/* Usunięcie dodatkowych marginesów */
.wpcf7-form p {
    margin: 0;
}

/* Responsywność przycisku na mobile */
@media (max-width: 768px) {
    .wpcf7 input[type="submit"] {
        font-size: 13px;
        padding: 10px 15px;
        letter-spacing: 0.5px;
    }
}