.contact-hero {
    background: #FBF7EF;
}

.contact-hero h1 {
    font-family: Georgia, serif;
}

.contact-hero-img {
    position: relative;
}

.contact-hero-img img {
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
}

.contact-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-badge i {
    font-size: 28px;
    color: #B85C0A;
}

.contact-badge small {
    display: block;
    color: #777;
}

.contact-highlight {
    color: #B85C0A;
}

/* Mobile */
@media (max-width: 767px) {
    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-hero-img img {
        height: 380px;
    }

    .contact-badge {
        left: 15px;
        bottom: 15px;
    }
}


.contact-info-card {
    border: 1px solid #eee;
    border-radius: 16px;
    transition: .3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: #244B16;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #244B16;
    color: #fff;
    font-size: 22px;
}


.contact-submit-btn {
    background: #244B16;
    color: #fff;
    transition: .3s;
}

.contact-submit-btn:hover {
    background: #B85C0A;
}

.form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #244B16;
    box-shadow: 0 0 0 .15rem rgba(36, 75, 22, .12);
}   

.why-contact-card {
    border: 1px solid #eee;
    border-radius: 16px;
    transition: .3s;
}

.why-contact-card:hover {
    transform: translateY(-5px);
    border-color: #244B16;
}

.why-contact-card h5 {
    color: #244B16;
    margin-bottom: 10px;
}

.why-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #244B16;
    color: #fff;
    font-size: 21px;
}

.accordion-button {
    color: #244B16;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    color: #244B16;
    background: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}


.location-map {
    border: 1px solid #eee;
}


