/* Social Media Showcase Section */
.social-media-showcase {
    position: relative;
    padding: 120px 0 140px;
    background: #f8f9fa;
    overflow: hidden;
}

.social-media-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="social-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23007bff" opacity="0.03"/></pattern></defs><rect width="100%" height="100%" fill="url(%23social-pattern)"/></svg>') repeat;
    pointer-events: none;
    z-index: 1;
}

.social-media-showcase .container {
    position: relative;
    z-index: 2;
}

/* Social Media Card Styles */
.social-media-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.social-media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Video Section */
.social-media-card__video {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.social-media-card__thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.social-media-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-media-card:hover .social-media-card__thumbnail img {
    transform: scale(1.1);
}

/* Platform Badge */
.social-media-card__platform {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.social-media-card__platform.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.social-media-card__platform i {
    font-size: 14px;
}

/* Play Button */
.social-media-card__play-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-media-card__play-btn.instagram {
    background: rgba(131, 58, 180, 0.9);
    color: white;
}

.social-media-card__play-btn i {
    font-size: 18px;
    color: #ff0000;
}

.social-media-card__play-btn.instagram i {
    color: white;
}

.social-media-card:hover .social-media-card__play-btn {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Overlay */
.social-media-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.social-media-card:hover .social-media-card__overlay {
    opacity: 1;
}

.video-popup-link {
    text-decoration: none;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.play-button i {
    font-size: 24px;
    color: #ff0000;
    margin-left: 3px;
}

/* Content Section */
.social-media-card__content {
    padding: 25px;
}

.social-media-card__content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.social-media-card__content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Stats */
.social-media-card__stats {
    display: flex;
    gap: 20px;
}

.social-media-card__stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.social-media-card__stats i {
    font-size: 12px;
    color: #ccc;
}

/* Bottom CTA Section */
.social-media-showcase__bottom {
    margin-top: 60px;
    text-align: center;
}

.social-media-showcase__cta p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

.social-media-showcase__links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-link.youtube {
    background: #ff0000;
    color: white;
}

.social-link.youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.social-link.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.3);
    color: white;
}

.social-link i {
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .social-media-showcase {
        padding: 100px 0 120px;
    }
    
    .social-media-card__video {
        height: 250px;
    }
    
    .social-media-card__content {
        padding: 20px;
    }
    
    .social-media-showcase__links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .social-media-showcase {
        padding: 80px 0 100px;
    }
    
    .social-media-card {
        margin-bottom: 25px;
    }
    
    .social-media-card__video {
        height: 200px;
    }
    
    .social-media-card__content h4 {
        font-size: 18px;
    }
    
    .social-media-card__content p {
        font-size: 13px;
    }
    
    .social-media-card__stats {
        gap: 15px;
    }
    
    .social-media-showcase__bottom {
        margin-top: 40px;
    }
    
    .social-media-showcase__cta p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .social-media-card__stats {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .social-media-card__content {
        padding: 15px;
    }
    
    .social-link {
        padding: 12px 25px;
        font-size: 14px;
    }
}
