/* Contact Form */

.contact-form .form-container {
    /*max-width: 1000px;*/
    margin: 0 auto;
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    padding: 0 0;
}

.form-heading {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.75rem;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.form-row {
    margin-bottom: 15px;
    width: 100%;
}

.contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Three columns in first row */
.three-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.form-column {
    flex: 1;
    min-width: 200px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

select.form-input {
    height: 44px;
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

.submit-row {
    text-align: center;
}

.form-consent {
    font-size: 12px;
    color: #333;
}

.form-consent .wpcf7-form-control {
    display: block;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.3;
}

.form-consent input[type="checkbox"] {
    margin-top: 2px;
}

.submit-button {
    background-color: white;
    color: #333;
    border: 2px solid #ff6633;
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #ff6633;
    color: white;
}

/* Responsive for mobile */
@media (max-width: 767px) {
    .three-columns {
        flex-direction: column;
    }

    .form-column {
        width: 100%;
    }

    select.form-input {
        height: 44px;
    }
}

/* CF7 error message styling */
span.wpcf7-not-valid-tip {
    color: #f00;
    font-size: 12px;
    margin-top: 5px;
}

div.wpcf7-response-output {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid transparent;
    text-align: center;
}

div.wpcf7-validation-errors {
    border-color: #f7e700;
    background-color: #fffde5;
}

div.wpcf7-mail-sent-ok {
    border-color: #398f14;
    background-color: #edf7e5;
}