
.contact_section{
    background: var(--white);
}
.contact_header {
    text-align: center;
    margin-bottom: 48px;
}
.section-label {
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
}
.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--black);
    margin-bottom: .5rem;
}
.section-sub {
    font-size: 17px;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto;
}


.contact_info_col {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    background: var(--black);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 30px; 
}

.contact_info_card {
    
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--black-card);
    border: 1px solid var(--red);
    border-radius: 10px;
    padding: 20px;
    transition: .3s ease;
    flex: 1 1 220px; 
}
.contact_info_card:hover {
    transform: translateY(-3px);
    border-color: var(--red);
}
.contact_info_icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 16, 46, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-bright);
    flex-shrink: 0;
    font-size: 18px;
}
.contact_info_card h4 {
    font-family: var(--sans);
    font-weight: 700;
    color: var(--cream);
    font-size: 16px;
    margin-bottom: 4px;
}
.contact_info_card p {
    font-size: 15px;
    color: var(--gray);
    margin: 0;
}


@media (min-width: 992px) {
    .eq-height {
        display: flex;
        flex-wrap: wrap;
    }
    .eq-height > [class*="col-"] {
        display: flex;
        flex-direction: column;
    }
}

.contact_map_col {
    background: var(--white);
    border: 1px solid var(--cream-dim);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: flex;
}
.contact_map_col iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    flex: 1;
}


.contact_form_col {
    display: flex;
    width: 100%;
}
.contact_form {
    background: var(--white);
    border: 1px solid var(--cream-dim);
    border-radius: 14px;
    padding: 36px;
    box-shadow: var(--shadow);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form_group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.form_group label {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    font-size: 14px;
}
.form_group input, 
.form_group textarea {
    font-family: var(--sans);
    background: var(--cream);
    border: 1px solid var(--cream-dim);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--black);
    transition: .25s ease;
    resize: none;
    font-size: 15px;
}
.form_group input:focus, 
.form_group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, .12);
}
.form_group .is-invalid {
    border-color: var(--red) !important;
}
.text-danger {
    color: var(--red);
    font-size: 13px;
    margin-top: 5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 1.9rem;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 2px solid var(--red);
    background: var(--red);
    color: var(--white);
    cursor: pointer;
    transition: .25s ease;
    white-space: nowrap;
}
.btn:hover {
    background: transparent;
    color: var(--red);
}


@media (max-width: 991px) {
    .contact_map_col {
        min-height: 350px;
    }
}
@media (max-width: 767px) {
    .form_row { 
        grid-template-columns: 1fr; 
        gap: 0; 
    }
    .contact_form { 
        padding: 22px; 
    }
    .contact_info_col {
        gap: 10px;
        padding: 15px;
        margin-bottom: 20px;
    }

    .contact_form_col{
         margin-bottom: 30px;
    }

}