/* Contact page (Connect With Us) */

.contact-social.social {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 0;
}

.contact-social h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-social .social-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.contact-social .social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-social .social-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem;
    background-color: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
}

.contact-social .social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.contact-social .social-icon {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.contact-social .social-card:hover .social-icon {
    transform: scale(1.08) rotate(4deg);
}

.contact-social .social-card.facebook:hover {
    border-left-color: #1877f2;
    box-shadow: 0 12px 24px rgba(24, 119, 242, 0.2);
}

.contact-social .social-card.discord:hover {
    border-left-color: #5865f2;
    box-shadow: 0 12px 24px rgba(88, 101, 242, 0.2);
}

.contact-social .social-card.instagram:hover {
    border-left-color: #e4405f;
    box-shadow: 0 12px 24px rgba(228, 64, 95, 0.2);
}

.contact-social .social-card.facebook svg { color: #1877f2; }
.contact-social .social-card.discord svg { color: #5865f2; }
.contact-social .social-card.instagram svg { color: #e4405f; }

.contact-social .social-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.contact-social .social-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}
