/* Social Media Visuals Page CSS */

:root {
    --social-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --tiktok-gradient: linear-gradient(45deg, #00f2ea 0%, #ff0050 100%);
    --social-bg: #ffffff;
    --social-dark: #121212;
}

/* Hero Section */
.social-hero {
    position: relative;
    padding: 150px 0 100px;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.social-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: var(--social-gradient);
    filter: blur(150px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 1;
}

.social-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--tiktok-gradient);
    filter: blur(120px);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
}

.social-hero-content {
    position: relative;
    z-index: 2;
}

.social-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.social-title span {
    background: var(--social-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.btn-social {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-social:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    color: #000;
}

/* Phone Showcase */
.phone-showcase {
    padding: 80px 0;
    background: #f9f9f9;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 10px solid #1a1a1a;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: translateY(-10px) scale(1.02);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.phone-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.phone-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Service Cards */
.social-services {
    padding: 100px 0;
}

.s-card {
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.s-card:hover {
    transform: translateY(-10px);
    border-color: #ddd;
}

.s-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--social-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.s-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}




/* Responsive */
@media (max-width: 991px) {
    .social-title {
        font-size: 2.5rem;
    }

    .phone-frame {
        width: 260px;
        height: 520px;
        margin-bottom: 30px;
    }
}