
/* Social Media Section */
.social-media {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.social-card h3 {
    margin-bottom: 24px;
    font-size: 1.8rem;
    color: var(--dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.telegram-bot {
    background: linear-gradient(135deg, #0088cc, #00aaff);
}

.telegram-group {
    background: linear-gradient(135deg, #229ED9, #4db3ea);
}

.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

/* Google Button */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #757575;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    margin: 16px 0;
    cursor: pointer;
    transition: background 0.2s;
}

.google-btn:hover {
    background: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.google-btn img {
    width: 20px;
    height: 20px;
}

@media (max-width: 600px) {
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
}
