﻿#contact-us-header {
    text-align: center;
    padding: 3rem 0rem;
    color: white;
}

    #contact-us-header h1 {
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 700;
    }

    #contact-us-header h2 {
        font-size: 1.5rem;
        font-weight: 600;
    }

#contact-us-content {
    padding: 1rem 0;
    min-height: 53vh;
}

.info-box {
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .info-box p {
        font-size: 1rem;
        color: #333;
    }

#contact-form {
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    #contact-form .lead {
        font-size: 1.2rem;
        font-weight: 500;
        color: #333;
    }

    #contact-form .row > * {
        margin-bottom: .66rem;
    }

    #contact-form .form-floating {
        margin-bottom: .66rem;
    }

        #contact-form .form-floating label {
            font-size: 1rem;
            font-weight: 500;
            color: #495057;
        }

    #contact-form .form-control {
        border-radius: 0.5rem;
        border: 2px solid #ced4da;
    }

        #contact-form .form-control:focus {
            border-color: var(--tir-dark-blue);
            box-shadow: 0 0 0 0.15rem var(--tir-dark-blue);
        }

#submit-contact-form {
    background-color: var(--tir-dark-blue);
    background-color: #0056b3;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: scale(0.99);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
    border: none;
    width: 100%;
    margin-top: .5rem;
}

    #submit-contact-form:hover {
        background-color: var(--tir-dark-blue);
        color: white;
        transform: translateY(-2px);
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
