#header {
    height: 112px;
}

.img-fluider {
    max-height: 110px;
    width: 110px;
}

.main-nav a:hover,
.main-nav .active>a,
.main-nav li:hover>a {
    color: #fff;
    text-decoration: none;
    background-color: #02a85b;
    border-radius: 18px;
    filter: drop-shadow(2px 2px 10px #0000003b);
}

#contact {
    background: #f8f9fa;
    padding: 60px 0 40px 0;
}

.section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 32px 18px 24px 18px;
    margin-bottom: 24px;
    text-align: center;
    transition: box-shadow 0.3s;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    background: #02a85b;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.10);
}

.icon-wrapper i {
    font-size: 2.2rem;
    color: #fff;
}

.contact-link {
    color: #02a85b;
    font-weight: 500;
    font-size: 1.1rem;
    word-break: break-all;
}

.contact-link.whatsapp {
    color: #25d366;
}

@media (max-width: 991px) {
    .contact-card {
        min-height: 180px;
        padding: 24px 10px 18px 10px;
    }

    .icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .icon-wrapper i {
        font-size: 1.5rem;
    }
}

.form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 32px 24px 24px 24px;
    margin-top: 32px;
}

.form input,
.form textarea {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
}

.form button {
    background: #02a85b;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.2s;
}

.form button:hover {
    background: rgb(8, 134, 76);
}

#sendmessage {
    display: none;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 16px;
}

#errormessage {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 16px;
}