.contact-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-header p {
    color: var(--muted);
    font-size: 16px;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Card Specific Colors */
.card-phone::before { background: linear-gradient(90deg, transparent, #3b82f6, transparent); }
.card-whatsapp::before { background: linear-gradient(90deg, transparent, #22c55e, transparent); }
.card-email::before { background: linear-gradient(90deg, transparent, #ef4444, transparent); }
.card-location::before { background: linear-gradient(90deg, transparent, #f59e0b, transparent); }

.contact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.contact-card:hover::before { opacity: 1; }

.contact-card:hover.card-phone { border-color: rgba(59, 130, 246, 0.3); }
.contact-card:hover.card-whatsapp { border-color: rgba(34, 197, 94, 0.3); }
.contact-card:hover.card-email { border-color: rgba(239, 68, 68, 0.3); }
.contact-card:hover.card-location { border-color: rgba(245, 158, 11, 0.3); }

.contact-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 28px;
    margin-bottom: 24px;
    color: #fff;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.card-phone .contact-icon { background: rgba(59, 130, 246, 0.15); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.3); }
.card-whatsapp .contact-icon { background: rgba(34, 197, 94, 0.15); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }
.card-email .contact-icon { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); }
.card-location .contact-icon { background: rgba(245, 158, 11, 0.15); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.3); }

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 700;
}

.contact-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
}

.contact-btn {
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.btn-phone { background: rgba(59, 130, 246, 0.1); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.3); }
.btn-phone:hover { background: #3b82f6; color: #fff; box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4); }

.btn-whatsapp { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }
.btn-whatsapp:hover { background: #22c55e; color: #fff; box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4); }

.btn-email { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); }
.btn-email:hover { background: #ef4444; color: #fff; box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4); }

.btn-location { background: rgba(245, 158, 11, 0.1); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.3); }
.btn-location:hover { background: #f59e0b; color: #fff; box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4); }
