/*
Theme Name: Divi Child Theme
Version: 2.0
Description: Basic Child Theme by JoshHall.co
Author: Josh Hall
Template: Divi
Author URL: https://joshhall.co
*/
 
/*------- Theme Customizations------- */

.form-section {
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.section-header {
    background: #00cc33;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 15px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.form-row:last-child {
    border-bottom: none;
}

.form-group {
    flex: 1;
    min-width: 200px;
    margin: 5px 10px 5px 0;
    position: relative;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.wpcf7-form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.wpcf7-form-control:focus {
    border-color: #2a5b8c;
    outline: none;
    box-shadow: 0 0 5px rgba(42, 91, 140, 0.2);
}

.wpcf7-text, 
.wpcf7-tel, 
.wpcf7-date, 
.wpcf7-textarea, 
.wpcf7-select {
    height: 40px;
}

.wpcf7-textarea {
    height: 100px;
    resize: vertical;
}

.wpcf7-submit {
    background: #00cc33;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.wpcf7-submit:hover {
    background: #009900;
}

.consent .wpcf7-list-item {
    margin: 0;
}

.consent .wpcf7-list-item-label {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        margin: 5px 0;
    }
}

.wpcf7-response-output {
    opacity: 0!important;
}