.contact-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 70px 50px;
}
.page-header {
    font-size: 40px;
    font-weight: 900;
    color: #1E3050;
}
.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}
.header-sub-text {
    font-size: 20px;
    margin-top: 10px;
}
.contact-header, .contact-box {
    width: 80%;
    max-width: 1200px;
}
.contact-box {
    position: relative;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15);
}
.contact-options {
    display: flex;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: -36px;
    gap: 3rem;
    font-size: 19px;
    text-wrap: nowrap;
} 
.option {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}
.contact-option-line {
    width: 2px;
    height: 15px; 
    background-color: #1eb53a; 
}
.option::after {
    position: absolute;
    content: "";
    display: block;
    width: 40px;
    height: 3.5px; 
    background-color: #1eb53a; 
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    transition: width .4s ease;
}
.option.active::after {
    width: 100%;
}
.option:hover::after {
    width: 100%;
}
.contact-item.active {
    display: block;
}
.contact-item {
    display: none;
}
.contact-item-header {
    font-size: 25px;
    margin-bottom: 5px;
    color: #1E3050;
}
.contact-item-header-sub-text, .contact-item-h3-header-sub-text {
    color: #7A7A7A;
}
.contact-item-h3-header-sub-text {
    margin-bottom: 25px;
}
.contact-item-header-wrapper {
    margin-bottom: 2rem;
}
.contact-item-content h3 {
    margin-bottom: 10px;
    color: #1E3050;
}
.contact-item-content .tel-link {
    font-size: 18px;
}
.input-wrapper {
    display: flex;
    gap: 5px;
    flex-direction: column;
    margin-bottom: 15px;
    width: 100%;
}
.input-wrapper label {
    font-weight: bold;
}
.contact-input {
    padding: 10px;
    font-size: 16.5px;
}
.textarea-input {
    padding: 10px;
    resize: none;
    font-size: 16.5px;
    line-height: 25px;
    min-height: 250px;
}
.input-holder {
    width: 100%;
    display: flex;
    gap: 1rem;
}
.input-holder .input-wrapper {
    width: 50%;
}
#form-submit-btn {
    outline: none;
    border: none;
    font-weight: bold;
    color: white;
    background-color: #1E3050;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 20px;
    width: 200px;
    border: 2px solid #1E3050;
    transition: background-color .4s ease, color .4s ease;
}
#form-submit-btn:hover {
    background-color: transparent;
    color: #1E3050;
}
.map-wrapper {
    width: 100%;
    height: 350px;
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
}
.loader {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    border-top: 2px solid #fff;
    border-right: 2px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.inputs-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}
.inputs-wrapper .form-wrapper {
    width: 50%;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-wrapper input, .form-wrapper textarea {
    outline: none;
    border: 2px solid transparent;
    border-radius: 5px;
    padding: .5rem .7rem;
    font-size: 16px;
    background-color: #e5e5e5;
}
.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: relative;
}
.contact-submit-btn {
    min-width: 170px;
}
.form-wrapper textarea {
    resize: none;
    height: 250px;
}
.form-wrapper label {
    color: #1E3050;
    font-weight: bold;
    font-size: 17px;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}