
.contact-creative {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 48px 16px;
}

.contact-creative h2 {
    text-align: center;
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 36px;
    font-weight: 700;
}

.contact-container {
    max-width: 1130px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-4px);
    }

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.contact-card h3 {
    color: #2e7d32;
    font-size: 1.08rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.98rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .contact-links a {
        color: #2e7d32;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.98rem;
        transition: color 0.2s;
    }

        .contact-links a:hover {
            color: #1b5e20;
        }

.map-section {
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

    .map-section iframe {
        width: 100%;
        height: 320px;
        border: none;
    }

.connect-section {
    text-align: center;
    margin-top: 32px;
}

    .connect-section h3 {
        color: #2e7d32;
        font-size: 1.2rem;
        margin-bottom: 16px;
        font-weight: 600;
    }

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    transition: transform 0.3s ease;
    color: white;
}

    .social-btn:hover {
        transform: translateY(-2px);
    }

.whatsapp {
    background: #25D366;
}

.email {
    background: #2e7d32;
}

@media (max-width: 768px) {
    .contact-creative {
        padding: 32px 8px;
    }

        .contact-creative h2 {
            font-size: 1.3rem;
        }

    .contact-cards {
        gap: 12px;
    }

    .contact-card {
        padding: 14px;
    }

    .map-section {
        margin: 18px 0;
    }

        .map-section iframe {
            height: 180px;
        }

    .connect-section {
        margin-top: 18px;
    }
}
