#contact-section {
    width: 100%;
    height: 100%;
}

.contact-module {
    width: 100%;
}

.contact-header {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
}

.contact-container {
    padding: 15px;
    height: 100%;
    display: flex;
    padding-top: 150px;
    justify-content: center;
    align-items: center;
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
}

/* Mobile Breakpoint */
@media (max-height: 650px) {
    .contact-container {
        padding-top: 300px;
    }
}

.contact-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin-top: -5px;
}

.back-to-emergency-btn {
    position: absolute;
    top: 5px;
    left: 5px;
    color: black;
    z-index: 1000;
    border-radius: 50%;
    background: #eee;
    width: 30px;
    opacity: 0.9;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    margin-top: -15px;
}

@media (max-width: 768px) {
    #map {
        height: 200px !important;
        width: 300px !important;
    }
}

#map {
    height: 300px;
    width: 500px;
    position: relative;
    border-radius: 12px
}

#address {
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}


.contact-form label {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 15px;
}

.form-control {
    font-size: 13px !important;
    font-family: 'Poppins', sans-serif !important;
}

.form-check-small {
    font-size: 12px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
}

.form-check-input {
    width: 20px !important;
    height: 20px !important;
    margin-right: 10px;
}

.form-check-input:checked {
    background-color: #EB4E3E !important;
    border-color: #EB4E3E !important;
}

.nav-submit-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1000;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.submit-report-btn {
    background-color: #EB4E3E;
    height: 40px;
    width: 300px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.submit-report-btn:hover {
    background-color: #ffff;
    color: #EB4E3E;
    border: #EB4E3E 1px solid;
}

@media (max-width: 768px) {
    .submit-report-btn {
        width: 100%;
        max-width: 100%;
    }
}

#contact-fields-wrapper {
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    max-height: 500px;
    /* High enough to fit content */
    opacity: 1;
    margin-bottom: 1rem;
}

#contact-fields-wrapper.hidden {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    pointer-events: none;
    /* Prevents users from clicking hidden inputs */
}