/* ===== CONTACT PAGE ===== */
.contact-page {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #d7f8e4 0%, #f3fff9 40%, #ffffff 100%);
    color: #1b4332;
    overflow: hidden;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

/* LEFT INFO */
.contact-info {
    flex: 1;
    min-width: 350px;
}

    .contact-info h2 {
        font-size: 2.2rem;
        color: #2e7d32;
        margin-bottom: 15px;
    }

    .contact-info p {
        font-size: 1.05rem;
        color: #3b3b3b;
        line-height: 1.7;
        margin-bottom: 30px;
    }

.info-list {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #1b4332;
}

    .info-item i {
        color: #2ba84a;
        margin-right: 10px;
        font-size: 1.2rem;
    }

.social-links a {
    color: #2ba84a;
    font-size: 1.3rem;
    margin-right: 18px;
    transition: all 0.3s ease;
}

    .social-links a:hover {
        color: #1b5e20;
        transform: translateY(-2px);
    }

/* RIGHT FORM */
.contact-form {
    flex: 1;
    min-width: 350px;
    background: #ffffffcc;
    backdrop-filter: blur(8px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

    .contact-form h3 {
        font-size: 1.8rem;
        color: #1b4332;
        margin-bottom: 25px;
        font-weight: 600;
    }

.form-group {
    margin-bottom: 18px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0e6d8;
    border-radius: 10px;
    font-size: 1rem;
    color: #1b4332;
    background: #fafffa;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: #2ba84a;
        outline: none;
        box-shadow: 0 0 0 3px rgba(43, 168, 74, 0.1);
    }

.btn-green {
    width: 100%;
    background: #2ba84a;
    color: #fff;
    padding: 12px 0;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-green:hover {
        background: #1b5e20;
        transform: translateY(-2px);
    }

/* ===== MAP SECTION ===== */
.map-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #f3fff9 0%, #e6f9ed 100%);
}

    .map-section h4 {
        color: #1b4332;
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form {
        order: 2;
    }

    .contact-info {
        order: 1;
        text-align: center;
    }

    .social-links a {
        margin: 0 10px;
    }
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

    .whatsapp-link i {
        color: #25D366;
        font-size: 20px;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .whatsapp-link:hover i {
        transform: scale(1.2);
        color: #128C7E;
    }
     
.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

    .email-link i {
        color: #2ba84a; /* Gmail red */
        font-size: 20px;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .email-link:hover i {
        transform: scale(1.2);
        color: #1b4332;
    }