/**
 * Estilos para el Formulario de Cotización
 * Contact Form 7 con selects dependientes
 *
 * @version 1.0.0
 */

/* Contenedor principal */
.cotizacion-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Filas del formulario */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

/* Columnas */
.form-col-50 {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
}

.form-col-100 {
    flex: 1 1 100%;
}

/* Labels */
.cotizacion-form-wrapper label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

/* Inputs y selects */
.cotizacion-form-wrapper .form-control,
.cotizacion-form-wrapper input[type="text"],
.cotizacion-form-wrapper input[type="email"],
.cotizacion-form-wrapper input[type="tel"],
.cotizacion-form-wrapper select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

/* Focus en inputs */
.cotizacion-form-wrapper .form-control:focus,
.cotizacion-form-wrapper input:focus,
.cotizacion-form-wrapper select:focus {
    outline: none;
    border-color: #0073aa;
}

/* Select deshabilitado */
.cotizacion-form-wrapper select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Radio buttons */
.form-row-radio .wpcf7-list-item {
    display: block;
    margin: 10px 0;
}

.form-row-radio .wpcf7-list-item-label {
    margin-left: 8px;
    font-weight: normal;
}

.radio-group-label {
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

/* Botón de envío */
.btn-submit {
    background-color: #0073aa;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #005a87;
}

/* Mensajes de validación */
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    margin-top: 5px;
}

.wpcf7-response-output {
    margin: 20px 0;
    padding: 15px;
    border-radius: 4px;
}

.wpcf7-validation-errors {
    background-color: #ffebe8;
    border: 1px solid #dc3232;
    color: #dc3232;
}

.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    border: 1px solid #28a745;
    color: #155724;
}

/* Spinner de envío */
.wpcf7-spinner {
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .form-col-50 {
        flex: 1 1 100%;
    }

    .form-row {
        gap: 15px;
    }
}
