/* Social Media Follow Section Styles */
.follow-us-section {
    margin: 30px 0;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.follow-us-section h3,
.follow-us-section h5 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
}

.follow-us-section h3:after,
.follow-us-section h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    border-radius: 2px;
}

.social-media-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.social-btn:focus {
    outline: none;
    text-decoration: none;
    color: white;
}

/* Instagram with gradient */
.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: brightness(1.1);
}

/* TikTok - solid color */
.social-btn.tiktok {
    background-color: #000000;
}

.social-btn.tiktok:hover {
    background-color: #333333;
}

/* Twitter/X - solid color */
.social-btn.x-twitter {
    background-color: #000000;
}

.social-btn.x-twitter:hover {
    background-color: #333333;
}

/* Facebook - solid color */
.social-btn.facebook-follow {
    background-color: #1877f2;
}

.social-btn.facebook-follow:hover {
    background-color: #166fe5;
}

/* Telegram - solid color */
.social-btn.telegram-follow {
    background-color: #0088cc;
}

.social-btn.telegram-follow:hover {
    background-color: #007bb5;
}

/* YouTube - solid color */
.social-btn.youtube {
    background-color: #ff0000;
}

.social-btn.youtube:hover {
    background-color: #e60000;
}

/* WhatsApp - solid color */
.social-btn.whatsapp {
    background-color: #25d366;
}

.social-btn.whatsapp:hover {
    background-color: #20ba5a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .follow-us-section {
        margin: 20px 0;
        padding: 20px 15px;
    }
    
    .social-media-links {
        gap: 12px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .follow-us-section h3,
    .follow-us-section h5 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .social-media-links {
        gap: 10px;
    }
    
    .social-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .follow-us-section h3,
    .follow-us-section h5 {
        font-size: 1.1rem;
    }
}
