/*
 * Content Moderation — Premium Scoped Styles
 * Compiled from scss/content-moderation.scss
 * Only affects this page — no impact on other pages
 */

/* ── Keyframe Animations ── */
@keyframes cm-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes cm-pulse-glow {
    0%, 100% { box-shadow: 0 0 12px rgba(17, 183, 183, 0.5), 0 0 30px rgba(17, 183, 183, 0.2); }
    50% { box-shadow: 0 0 20px rgba(17, 183, 183, 0.7), 0 0 50px rgba(17, 183, 183, 0.35); }
}

@keyframes cm-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes cm-hero-bg-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* ── Hero — keeps background image, adds premium overlay ── */
.vm-hero {
    position: relative;
    overflow: hidden;
    background: url('../img/DigitalmarkertingImages/SMM/Community Management.webp') center/cover no-repeat;
}

.vm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    animation: cm-hero-bg-zoom 20s ease-in-out infinite alternate;
    z-index: 0;
}

.vm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(13, 13, 26, 0.88) 0%,
        rgba(26, 26, 46, 0.82) 40%,
        rgba(0, 128, 127, 0.45) 100%);
    z-index: 2;
}

/* Subtle animated particles effect on hero */
.vm-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 15% 25%, rgba(17, 183, 183, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 65%, rgba(17, 183, 183, 0.35) 0%, transparent 100%),
        radial-gradient(2px 2px at 55% 15%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 75% 45%, rgba(17, 183, 183, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 75%, rgba(255, 255, 255, 0.25) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 65% 80%, rgba(17, 183, 183, 0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 10%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 45% 90%, rgba(17, 183, 183, 0.3) 0%, transparent 100%);
    animation: cm-float 6s ease-in-out infinite;
    pointer-events: none;
}

.vm-hero-badge {
    background: linear-gradient(135deg, #00807f, #11b7b7) !important;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 20px rgba(0, 128, 127, 0.4);
    animation: cm-float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.vm-accent { color: #11b7b7; }
.vm-accent-dark { color: #00807f; }

.vm-btn-primary {
    background: linear-gradient(135deg, #00807f, #11b7b7) !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 128, 127, 0.4);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.vm-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.vm-btn-primary:hover::before {
    left: 100%;
}

.vm-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 128, 127, 0.6);
    transform: translateY(-3px);
    color: #fff !important;
}

/* ── Glowing Separator ── */
.vm-glow-separator {
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 128, 127, 0.15) 15%,
        #11b7b7 50%,
        rgba(0, 128, 127, 0.15) 85%,
        transparent 100%);
    box-shadow: 0 0 12px rgba(17, 183, 183, 0.5), 0 0 30px rgba(17, 183, 183, 0.2);
    animation: cm-pulse-glow 3s ease-in-out infinite;
}

/* ── Section Badge ── */
.vm-section-badge {
    background: rgba(0, 128, 127, 0.1) !important;
    color: #00807f !important;
    font-size: 0.85rem;
}

/* ── Icon Bubbles ── */
.vm-icon-bubble {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 128, 127, 0.1), rgba(17, 183, 183, 0.1));
    color: #00807f;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    position: relative;
}

.vm-icon-bubble::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 128, 127, 0.2), rgba(17, 183, 183, 0.2));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vm-icon-bubble:hover::after {
    opacity: 1;
}

.vm-icon-bubble-lg {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 128, 127, 0.12);
}

.vm-icon-bubble-lg::after {
    border-radius: 20px;
}

/* ── Feature Cards ── */
.vm-features-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.vm-feature-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    position: relative;
}

.vm-feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent, rgba(17, 183, 183, 0.3), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vm-feature-card:hover::before {
    opacity: 1;
}

.vm-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 128, 127, 0.15);
    border-color: rgba(17, 183, 183, 0.3);
}

.vm-feature-card:hover .vm-icon-bubble {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 128, 127, 0.25);
    background: linear-gradient(135deg, #00807f, #11b7b7);
    color: #fff;
}

.vm-feature-card:hover .vm-feature-img img {
    transform: scale(1.06);
}

.vm-feature-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Benefit Cards ── */
.vm-benefit-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.vm-benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(17, 183, 183, 0.04), transparent);
    transition: left 0.6s ease;
}

.vm-benefit-card:hover::after {
    left: 150%;
}

.vm-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 128, 127, 0.14);
    border-color: rgba(17, 183, 183, 0.3);
}

.vm-benefit-card:hover .vm-icon-bubble-lg {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 8px 28px rgba(0, 128, 127, 0.3);
    background: linear-gradient(135deg, #00807f, #11b7b7);
    color: #fff;
}

.vm-benefit-card:hover .vm-icon-bubble {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 128, 127, 0.2);
    background: linear-gradient(135deg, #00807f, #11b7b7);
    color: #fff;
}

/* ── Stats Bar ── */
.cm-stats-section {
    background: linear-gradient(135deg, #00807f, #11b7b7) !important;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.cm-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cm-stat-item {
    text-align: center;
    padding: 12px;
    position: relative;
}

.cm-stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 700 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.cm-stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    opacity: 0.92;
    margin-top: 4px;
}

/* ── Strategy Cards ── */
.cm-strategy-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    border-radius: 16px;
    padding: 28px 24px;
    background: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cm-strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00807f, #11b7b7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.cm-strategy-card:hover::before {
    transform: scaleX(1);
}

.cm-strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 128, 127, 0.14);
    border-color: rgba(17, 183, 183, 0.3);
}

.cm-strategy-card:hover .vm-icon-bubble {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(0, 128, 127, 0.25);
    background: linear-gradient(135deg, #00807f, #11b7b7);
    color: #fff;
}

/* ── Reasons List ── */
.cm-reasons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cm-reasons-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: padding-left 0.3s ease;
}

.cm-reasons-list li:last-child {
    border-bottom: none;
}

.cm-reasons-list li:hover {
    padding-left: 6px;
}

.cm-reasons-list .cm-reason-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00807f, #11b7b7);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cm-reasons-list li:hover .cm-reason-num {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 128, 127, 0.3);
}

/* ── CTA Section ── */
.vm-cta-section {
    background: linear-gradient(135deg, #00807f, #11b7b7);
    position: relative;
    overflow: hidden;
}

.vm-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* ── Learn More Button ── */
.cy-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00807f, #11b7b7);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 128, 127, 0.3);
    position: relative;
    overflow: hidden;
}

.cy-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cy-learn-more:hover::before {
    left: 100%;
}

.cy-learn-more:hover {
    box-shadow: 0 8px 30px rgba(0, 128, 127, 0.6);
    transform: translateY(-3px);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.cy-learn-more i {
    transition: transform 0.3s ease;
}

.cy-learn-more:hover i {
    transform: translateX(4px);
}

/* ══════════════════════════════════════════
   FAQ ACCORDION — #cm-faq-accordion
   ══════════════════════════════════════════ */

#cm-faq-accordion .faq-item .faq-content {
    display: block !important;
    grid-template-rows: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: hidden;
}

#cm-faq-accordion .faq-item .faq-content.collapse:not(.show) {
    display: none !important;
}

#cm-faq-accordion .faq-item .faq-content.collapsing {
    display: block !important;
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#cm-faq-accordion .faq-item .faq-content.collapse.show {
    display: block !important;
}

#cm-faq-accordion .faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: background 0.4s ease, border-color 0.4s ease,
                box-shadow 0.4s ease, transform 0.25s ease;
}

#cm-faq-accordion .faq-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(17, 183, 183, 0.25);
    box-shadow: 0 4px 24px rgba(0, 128, 127, 0.1);
}

#cm-faq-accordion .faq-item:active { transform: scale(0.995); }

#cm-faq-accordion .faq-item.hd-faq-open {
    background: rgba(17, 183, 183, 0.06);
    border-color: rgba(17, 183, 183, 0.3);
    box-shadow: 0 6px 30px rgba(0, 128, 127, 0.15);
}

#cm-faq-accordion .faq-item.hd-faq-open .faq-number {
    box-shadow: 0 4px 18px rgba(0, 128, 127, 0.5);
    transform: scale(1.05);
}

#cm-faq-accordion .faq-item.hd-faq-open .faq-question-row h3 {
    color: #11b7b7 !important;
    font-weight: 600 !important;
}

#cm-faq-accordion .faq-item.hd-faq-open .faq-toggle {
    transform: rotate(90deg);
    background: linear-gradient(135deg, #00807f, #11b7b7);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 3px 12px rgba(0, 128, 127, 0.4);
}

#cm-faq-accordion .faq-item.hd-faq-open .faq-content .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
}

#cm-faq-accordion .faq-question-row {
    padding: 18px 22px !important;
    gap: 14px !important;
    border-radius: 16px !important;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: background 0.3s ease;
}

#cm-faq-accordion .faq-question-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

#cm-faq-accordion .faq-question-row:hover .faq-toggle {
    background: rgba(17, 183, 183, 0.12);
    border-color: rgba(17, 183, 183, 0.3);
}

#cm-faq-accordion .faq-number {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #00807f, #11b7b7) !important;
    color: #fff !important;
    font-size: 0.8rem !important;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(0, 128, 127, 0.35);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#cm-faq-accordion .faq-question-row h3 {
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    line-height: 1.5;
    color: #ffffff !important;
    transition: color 0.35s ease, font-weight 0.2s ease;
    margin: 0;
}

#cm-faq-accordion .faq-toggle {
    position: static !important;
    top: auto !important;
    right: auto !important;
    line-height: 1 !important;
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #11b7b7 !important;
    font-size: 0.8rem !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.35s ease, border-color 0.35s ease,
                color 0.35s ease, box-shadow 0.35s ease;
}

#cm-faq-accordion .faq-content {
    padding: 0 22px 0 68px !important;
}

#cm-faq-accordion .faq-content .faq-answer-inner {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

#cm-faq-accordion .faq-content p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.8;
    padding-bottom: 20px !important;
    margin: 0 !important;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .vm-feature-img img {
        width: 100%;
        height: 180px;
    }
    .cm-stat-number {
        font-size: 1.6rem;
    }
    .vm-hero h1 {
        font-size: 1.8rem !important;
    }
    .cm-strategy-card {
        padding: 22px 18px;
    }
}

@media (max-width: 575.98px) {
    .vm-hero {
        min-height: 420px !important;
    }
    .cm-stat-number {
        font-size: 1.4rem;
    }
    .cm-stat-label {
        font-size: 0.75rem;
    }
}
