/* ============================================================
   contact.css — styles for the contact page
   ============================================================ */

.contact-wrapper {
    min-height: calc(100vh - 160px);
    padding: 40px 20px;
}

.contact-heading {
    color: var(--bs-darker);
    margin-bottom: 0.5rem;
}

/* ----------------------------------------------------------
   Contact method cards
   ---------------------------------------------------------- */
.contact-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 20px rgba(67, 175, 175, 0.15);
    transform: translateY(-2px);
}

.contact-card-icon {
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bs-darker);
    margin-bottom: 0.75rem;
}

.contact-card a {
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
}

.contact-card a:hover {
    color: var(--bs-darker);
    text-decoration: underline;
}

/* ----------------------------------------------------------
   Report-a-problem section
   ---------------------------------------------------------- */
.report-section {
    max-width: 640px;
    margin: 0 auto;
}

.report-heading {
    color: var(--bs-darker);
    margin-bottom: 0.5rem;
}

.report-card {
    border-radius: 1rem !important;
    border: 1px solid #dee2e6;
}

.report-card .form-control {
    border-radius: 0.5rem !important;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
}

.report-card .form-control:focus {
    border-color: var(--bs-primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(67, 175, 175, 0.15) !important;
}

/* Validation error styling applied by JS */
.report-card .is-invalid {
    border-color: #dc3545 !important;
}

.report-card .invalid-feedback {
    display: block;
    font-size: 0.85rem;
}
