/* Contact page — matched to SOPLWebsite/Contact.aspx */

.contact-page .badge-impact {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(15, 94, 58, 0.1);
    color: #0f5e3a;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 40px;
    text-transform: uppercase;
}

.contact-page .contact-icon {
    width: 50px;
    height: 50px;
    background: #f0f9f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .contact-icon i {
    font-size: 24px;
    color: #0f5e3a;
}

.contact-page .quick-connect-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-page .quick-connect-item:hover {
    transform: translateY(-5px);
    border-color: #0f5e3a;
    background-color: #f0f9f4 !important;
    box-shadow: 0 10px 25px rgba(15, 94, 58, 0.1);
}

.contact-page .social-icon {
    width: 45px;
    height: 45px;
    background: #f0f9f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f5e3a;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-page .social-icon:hover {
    background: #0f5e3a;
    color: white;
    transform: translateY(-3px);
}

.contact-page .team-contact-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.contact-page .team-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.contact-page .map-container iframe {
    display: block;
    width: 100%;
}
