/* Custom CSS for Contact Us Page */

/* Ensures the form fields are visible */
.contact-us-form-group .contact-us-form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: #f8f9fa;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Focus effect for form fields */
.contact-us-form-group .contact-us-form-control:focus {
    border-color: #007bff; /* Navy blue */
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Styling for form labels */
.contact-us-form-group .contact-us-form-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #343a40; /* Darker text color */
}

/* Styling for the submit button */
.contact-us-btn-submit {
    width: 100%;
    padding: 10px;
    background-color: #003366; /* Navy blue */
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Submit button hover effect */
.contact-us-btn-submit:hover {
    background-color: #002244; /* Darker navy blue on hover */
}

/* Make sure the contact card takes up the full height */
.contact-us-card {
    display: flex;
    flex-direction: column;
}

/* Align the form elements properly */
.contact-us-form {
    display: flex;
    flex-direction: column;
}


.contact-us-container {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.contact-us-header {
    font-size: 2rem;
    font-weight: bold;
    color: #003366; /* Navy Blue */
}

.contact-us-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #003366; /* Navy Blue */
}

.contact-us-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-us-col {
    margin-bottom: 2rem;
    width: 100%;
}

.contact-us-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-us-card-header {
    background-color: #003366; /* Navy Blue */
    color: white;
    font-size: 1.25rem;
}

.contact-us-card-body {
    padding: 20px;
}

.contact-us-title {
    color: #003366; /* Navy Blue */
}

.contact-us-address,
.contact-us-phone-label,
.contact-us-phone-numbers,
.contact-us-email-label,
.contact-us-emails {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-us-email {
    color: #003366; /* Navy Blue */
    text-decoration: none;
}

.contact-us-email:hover {
    text-decoration: underline;
}

.contact-us-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-us-form-group {
    margin-bottom: 1rem;
}

.contact-us-form-label {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-us-form-control {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s;
}

.contact-us-form-control:focus {
    border-color: #003366; /* Navy Blue */
    outline: none;
    background-color: #ffffff;
}

.contact-us-btn-submit {
    padding: 12px;
    font-size: 1.1rem;
    border-radius: 5px;
    border: none;
    background-color: #003366; /* Navy Blue */
    color: white;
    transition: background-color 0.3s ease;
}

.contact-us-btn-submit:hover {
    background-color: #001f33; /* Darker Navy Blue */
    border-color: #001f33;
}

.contact-us-directions {
    font-size: 1.2rem;
    font-weight: bold;
    color: #003366; /* Navy Blue */
}

.contact-us-directions-description {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #003366; /* Navy Blue */
}

@media (max-width: 767px) {
    .contact-us-row {
        flex-direction: column;
    }
}