/* ============================================
   TEMA NORMAL - Diseño equilibrado y profesional
   ============================================ */

#ag-booking-container[data-theme="normal"],
#ag-booking-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

#ag-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#ag-booking-form .field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#ag-booking-form label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

#ag-booking-form input {
    padding: 0.8rem 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

#ag-booking-form input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

#ag-booking-form select,
#ag-booking-form textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: inherit;
}

#ag-booking-form select:focus,
#ag-booking-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

#ag-booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.ag-checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.ag-checkbox-option:hover {
    background: #f9fafb;
}

.ag-checkbox-option input[type="checkbox"] {
    width: auto;
    margin: 0;
}

#ag-submit-btn {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
}

#ag-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

#ag-submit-btn:active {
    transform: translateY(0);
}

#ag-response {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: none;
    font-weight: 600;
}

#ag-response.success {
    display: block;
    background: #ecfdf5;
    color: #059669;
}

#ag-response.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
}