/* 1. FORM CONTACT 7 (LEGACY/GRID SYSTEM)
   ========================================================================== */
.evt-form-wrapper { display: flex; flex-wrap: wrap; gap: 10px; max-width: 100%; }

.evt-one-half { width: calc(50% - 5px); }
.evt-one-third { width: calc(33.33% - 7px); }
.evt-full, .evt-textarea { width: 100%; }

.evt-one-half, .evt-one-third, .evt-full { max-height: 70px; margin-bottom: 10px; }
.evt-textarea { height: 70px; }
.evt-last { margin-right: 0; }

.evt-form-wrapper label { display: block; margin-bottom: 5px; }

.evt-form-wrapper input, .evt-form-wrapper select, .evt-form-wrapper textarea {
    width: 100%;
    box-sizing: border-box;
    max-height: 40px;
}

.evt-form-wrapper input[type="checkbox"] { width: auto; margin-right: 5px; }



/* Radio Buttons */
.evt-form-wrapper .radiogroup { margin-top: 5px; }
.evt-form-wrapper br, .radiogroup br { display: none; }

.evt-form-wrapper .wpcf7-radio { display: flex; flex-direction: column; gap: 8px; }
.evt-form-wrapper .wpcf7-radio .wpcf7-list-item { margin: 0; display: flex; align-items: center; }

.evt-form-wrapper .wpcf7-radio input[type="radio"] {
    width: auto; max-height: none; margin-right: 8px; cursor: pointer;
}

.evt-form-wrapper .wpcf7-radio .wpcf7-list-item-label { cursor: pointer; font-size: 15px; }

.evt-form-wrapper .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label {
    font-weight: bold; color: #790040;
}

.evt-form-wrapper .wpcf7-radio input[type="radio"]:focus {
    outline: 2px solid #aa1959; outline-offset: 2px;
}



/* 2. RESPONSIVE FORM
   ========================================================================== */
@media (max-width: 768px) {
    .evt-form-wrapper .evt-one-half, 
    .evt-form-wrapper .evt-one-third {
        width: 100% !important;
        max-height: none !important;
        margin-bottom: 15px !important;
    }
    
    .evt-form-wrapper { gap: 0 !important; }
    
    .evt-form-wrapper input, .evt-form-wrapper select {
        max-height: 44px !important;
        padding: 10px !important;
    }
    
    .evt-form-wrapper textarea { height: 100px !important; max-height: 100px !important; }
    
    .evt-form-wrapper .evt-full { max-height: none !important; margin-bottom: 20px !important; }

    .evt-full:has(textarea) { height: auto !important; max-height: none !important; margin-bottom: 20px !important; }

    .evt-form-wrapper .wpcf7-radio .wpcf7-list-item-label { font-size: 16px; }
}