﻿/* =====================================
   CONTACT CARDS
===================================== */
/* =====================================
   PREMIUM CONTACT SECTION
===================================== */

.contact-section {
    padding: 80px 0;
    background: linear-gradient( 180deg, transparent, rgba(37,99,235,.03));
}

.contact-title {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient( 90deg, #4f46e5, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    color: #64748b;
    font-size: 18px;
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: .4s;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(37,99,235,.15);
    }

.contact-icon {
    width: 80px;
    height: 80px;
    margin: auto auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.phone-icon {
    background: linear-gradient(135deg,#2563eb,#06b6d4);
}

.mail-icon {
    background: linear-gradient(135deg,#f97316,#ef4444);
}

.wa-icon {
    background: linear-gradient(135deg,#22c55e,#16a34a);
}

.contact-card h4 {
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-card a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
}

    .contact-card a:hover {
        color: #2563eb;
    }

/* =====================================
   SOCIAL ICONS
===================================== */

.social-links a {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    border-radius: 50%;
    background: white;
    color: #2563eb;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
}

    .social-links a:hover {
        transform: translateY(-5px) scale(1.08);
        background: #2563eb;
        color: white;
    }
