/* =================================================================
   SOCIAL MEDIA MARKETING PAGE STYLES
   ================================================================= */

/* ----------------------------------
   HERO SECTION
   ---------------------------------- */
.smm-hero {
    position: relative;
    padding: 180px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.smm-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.social-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.social-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 48, 108, 0.15), transparent 70%); /* Instagram Pinkish */
    filter: blur(100px);
    opacity: 0.6;
}

.social-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 66, 255, 0.15), transparent 70%); /* Purple */
    filter: blur(100px);
    opacity: 0.5;
}

.smm-hero__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.smm-hero__content {
    text-align: left;
    max-width: 600px;
}

.smm-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 40px;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    backdrop-filter: blur(10px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #E1306C;
    border-radius: 50%;
    box-shadow: 0 0 10px #E1306C;
    animation: pulse 2s infinite;
}

.smm-hero__content .title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.smm-hero__content .subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 0 40px;
    line-height: 1.6;
}

.smm-hero__metrics {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 40px;
}

.metric-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 16px;
    min-width: 100px;
    backdrop-filter: blur(5px);
}

.metric-pill .val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.metric-pill .lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.smm-hero__actions {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--color-primary), #E1306C);
    color: #fff;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(138, 66, 255, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(138, 66, 255, 0.5);
    color: #fff;
}

.btn-outline {
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
}

/* Hero Visual Side */
.smm-hero__visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.hero-card-stack {
    position: relative;
    width: 320px;
    height: 420px;
}

.glass-card {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-back {
    transform: rotate(-6deg) translate(-20px, -10px);
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(64, 93, 230, 0.05));
    z-index: 1;
}

.card-front {
    transform: rotate(0deg);
    z-index: 2;
    padding: 25px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
}

.hero-card-stack:hover .card-back { transform: rotate(-10deg) translate(-30px, -15px); }
.hero-card-stack:hover .card-front { transform: translateY(-5px); }

.card-header { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
.card-header .avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.card-header .info .name { font-weight: 700; font-size: 1rem; color: #fff; }
.card-header .info .handle { font-size: 0.8rem; color: var(--color-text-muted); }
.card-header i { margin-left: auto; color: var(--color-text-muted); }

.card-graph { flex-grow: 1; position: relative; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.trend-line { width: 100%; height: 100%; overflow: visible; }

.card-stats { display: flex; justify-content: space-between; }
.card-stats .stat { display: flex; flex-direction: column; }
.card-stats .num { font-size: 1.4rem; font-weight: 700; color: #fff; }
.card-stats .label { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; }

.floating-bubble {
    position: absolute;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 3;
    animation: floatIcon 4s ease-in-out infinite alternate;
}

.b1 { top: -20px; right: -20px; color: #E1306C; animation-delay: 0s; }
.b2 { bottom: 40px; left: -30px; color: #0077b5; animation-delay: 1s; }
.b3 { bottom: -20px; right: 20px; color: #1DA1F2; animation-delay: 2s; }

.smm-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

@keyframes floatIcon {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* ----------------------------------
   PROBLEM SECTION
   ---------------------------------- */
.smm-problem {
    padding: 140px 0;
    background: var(--color-bg);
    position: relative;
}

.smm-problem__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-tag {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E1306C;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-list li {
    display: flex;
    gap: 20px;
}

.problem-list .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-list i {
    font-size: 1.5rem;
    color: #ef4444;
}

.problem-list strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.problem-list p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Problem Visuals */
.problem-card-stack {
    position: relative;
    width: 320px;
    height: 440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-card {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease;
}

.p-back { background: #0a0f2e; transform: rotate(-10deg) translate(-20px, -10px); opacity: 0.5; z-index: 1; }
.p-mid { background: #1a1f4e; transform: rotate(-5deg) translate(-10px, -5px); opacity: 0.8; z-index: 2; }
.p-front { 
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    transform: rotate(0deg); 
    z-index: 3;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.problem-card-stack:hover .p-back { transform: rotate(-15deg) translate(-30px, -15px); }
.problem-card-stack:hover .p-mid { transform: rotate(-8deg) translate(-15px, -8px); }
.problem-card-stack:hover .p-front { transform: translateY(-5px); }

.p-header { display: flex; gap: 15px; align-items: center; }
.p-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.p-user-lines span { display: block; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-bottom: 5px; }
.p-user-lines span:first-child { width: 100px; }
.p-user-lines span:last-child { width: 60px; }

.p-content { flex-grow: 1; display: flex; flex-direction: column; gap: 15px; }
.p-image-skeleton { flex-grow: 1; background: rgba(255,255,255,0.05); border-radius: 12px; min-height: 150px; }
.p-text-lines span { display: block; height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; margin-bottom: 8px; }
.p-text-lines span:last-child { width: 80%; }

.p-stats { display: flex; gap: 15px; color: rgba(255,255,255,0.3); font-size: 0.9rem; }
.p-stats i { margin-right: 5px; }

.algo-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.algo-alert .alert-icon { color: #ef4444; font-size: 1.2rem; }
.algo-alert .alert-text { display: flex; flex-direction: column; }
.algo-alert strong { color: #ef4444; font-size: 0.9rem; }
.algo-alert small { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

.floating-icon {
    position: absolute;
    width: 60px; height: 60px;
    background: #050816;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: #ef4444;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 4;
}

.fi-1 { top: 40px; right: -30px; animation: floatIcon 4s ease-in-out infinite; }
.fi-2 { bottom: 60px; left: -30px; animation: floatIcon 5s ease-in-out infinite reverse; }

/* ----------------------------------
   STRATEGY SECTION
   ---------------------------------- */
.smm-strategy {
    padding: 140px 0;
    background: #02040a;
    position: relative;
    overflow: hidden;
}

.smm-strategy__header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.smm-strategy__header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.smm-strategy__header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative; /* Fixed double position property */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strategy-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: #E1306C;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-num {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s ease;
}

.strategy-card:hover .card-num { color: rgba(225, 48, 108, 0.05); }

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(225, 48, 108, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #E1306C;
    margin-bottom: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.strategy-card:hover .card-icon { transform: scale(1.1) rotate(-5deg); background: #E1306C; color: #fff; }

.strategy-card h3 { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin-bottom: 5px; }
.strategy-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ----------------------------------
   PLATFORMS SECTION
   ---------------------------------- */
.smm-platforms {
    padding: 80px 0;
    background: #02040a;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.platforms-marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.platforms-track {
    display: flex;
    gap: 80px;
    animation: marquee 30s linear infinite;
}

.platforms-track span {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    transition: color 0.3s ease;
    cursor: default;
}

.platforms-track span:hover {
    color: #E1306C;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ----------------------------------
   FAQ & CTA
   ---------------------------------- */
.smm-faq {
    padding: 140px 0;
    background: var(--color-bg);
}

.ui-faq__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.ui-faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ui-section-header { margin-bottom: 40px; }

.ui-section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-trigger i {
    transition: transform 0.3s ease;
    color: var(--color-text-muted);
}

.faq-item.active .faq-trigger i {
    transform: rotate(45deg);
    color: #E1306C;
}

.faq-content {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}

.faq-content p {
    padding-bottom: 20px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.smm-cta-box {
    background: linear-gradient(135deg, #0a0f2e, #000);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 32px;
    text-align: center;
    position: sticky;
    top: 120px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.smm-cta-box h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.smm-cta-box p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ----------------------------------
   RESPONSIVE
   ---------------------------------- */
@media (max-width: 1024px) {
    .smm-problem__layout {
        grid-template-columns: 1fr;
    }
    
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .ui-faq__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .smm-cta-box {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .smm-hero {
        padding: 100px 0 60px;
        min-height: auto;
        text-align: center;
    }
    
    .smm-hero__layout, .smm-problem__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .smm-hero__content {
        text-align: center;
        margin: 0 auto;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .smm-hero__actions, .smm-hero__metrics {
        justify-content: center;
    }
    
    .smm-hero__visual {
        display: none; /* Optional: Hide complex visual on mobile or simplify */
    }

    .smm-hero__content .title {
        font-size: 2.5rem;
        word-wrap: break-word;
    }

    .smm-problem, .smm-strategy, .smm-faq {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .problem-card-stack {
        transform: scale(0.9);
    }
    
    .platforms-track span {
        font-size: 2.5rem;
    }
}