/* SOCIAL MEDIA SECTION */
.social-media-section {
    padding: 4rem 1rem;
    background: #f8f9fa;
    /* Light Background */
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
    position: relative;
    overflow: hidden;
    color: var(--text-color);
}

/* Social Media New Class */
.social-media {
    padding: 4rem 1rem;
    background: #1e1e30;
    /* Fallback */
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.social-media::before {
    content: "";
    /* Essential for pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/social-bg-pattern.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.social-media-section::before {
    display: none;
}

.social-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.social-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-color);
}

.social-title .highlight {
    color: var(--primary-color);
    /* Purple accent */
}

.social-message {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.social-services {
    margin-bottom: 2rem;
}

.social-service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s;
}

.social-service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.social-service-item i {
    color: #27ae60;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.social-service-item span {
    font-size: 0.95rem;
    color: var(--text-color);
}

.social-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-badge {
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.benefit-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.btn-social-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(104, 36, 211, 0.3);
}

.btn-social-cta:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(104, 36, 211, 0.4);
}

.btn-social-cta i {
    transition: transform 0.3s;
}

.btn-social-cta:hover i {
    transform: translateX(5px);
}

.social-visual {
    position: relative;
}

.social-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.platform-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

.platform-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.platform-icon:nth-child(3) {
    animation-delay: 1s;
}

.platform-icon:nth-child(4) {
    animation-delay: 1.5s;
}

.platform-icon:hover {
    transform: translateY(-10px) scale(1.05);
}

.platform-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
}

.platform-icon.instagram {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #f77737, #fcaf45);
}

.platform-icon.tiktok {
    background: linear-gradient(135deg, #000000, #ee1d52, #69c9d0);
}

.platform-icon.google {
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

.social-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .social-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .social-platforms {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .platform-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .social-benefits {
        justify-content: center;
    }

    .btn-social-cta {
        width: 100%;
        justify-content: center;
    }
}