/* Contact Page Styles */

.contact-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(23, 103, 52, 0.6), rgba(23, 103, 52, 0.6)), url('../images/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 70px;
}

.fw-black {
    font-weight: 900 !important;
}

.contact-card {
    background: #FAFAFA;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eee;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-card.active {
    border-color: #176734;
    background: #f8fdf9;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #176734;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.custom-input {
    border: none;
    border-bottom: 2px solid #eee;
    padding: 15px 0;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #176734;
    background-color: transparent;
}

.min-vh-50 {
    min-height: 50vh;
}

@media (max-width: 991px) {
    .contact-hero {
        height: 40vh;
        min-height: 300px;
    }

    .display-2 {
        font-size: 3rem;
    }
}