/* SYMMETRY ADVISORY SOLUTIONS - Contact Page Styles
    1. Form Elements
    2. Map/Location Styling
    3. Responsive Overrides
*/

/* ==========================================================================
   1. Form Elements
   ========================================================================== */
.form-label {
    font-weight: 600;
    color: var(--brand-black);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-control {
    border: 1px solid #ced4da;
    padding: 0.75rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 74, 153, 0.25);
    outline: 0;
}

.form-check-label {
    line-height: 1.6;
    color: #555;
    cursor: pointer;
    font-size: 1.1rem;
}

/* ==========================================================================
   2. Map/Location Styling
   ========================================================================== */
.map-container {
    height: 400px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   3. Responsive Overrides
   ========================================================================== */
@media (max-width: 991px) {
    .shadow.p-5 {
        padding: 2rem !important;
    }
}