/* ========================================
   FACEBOOK MANAGEMENT PAGE STYLES
   Clean, Modern, Premium Design
   ======================================== */

:root {
    --fb-blue: #1877F2;
    --fb-light-blue: #00C6FF;
    --fb-gradient: linear-gradient(135deg, #1877F2, #00C6FF);
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
}

/* ========================================
   HERO SECTION
   ======================================== */
.fb-hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border: 1px solid rgba(24, 119, 242, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fb-blue);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
}

.btn-primary-fb {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--fb-gradient);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.btn-primary-fb:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.4);
    color: white;
}

.btn-outline-fb {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-outline-fb:hover {
    border-color: var(--fb-blue);
    color: var(--fb-blue);
}

/* Hero Visual - Dashboard Mockup */
.fb-dashboard-mockup {
    background: white;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(24, 119, 242, 0.15);
    overflow: hidden;
    position: relative;
}

.mockup-header {
    background: white;
    border-bottom: 1px solid #f1f5f9;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 36px;
    height: 36px;
    background: #f0f9ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fb-blue);
    font-size: 1.1rem;
}

.header-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.header-icons {
    display: flex;
    gap: 16px;
    color: #94a3b8;
}

.mockup-body {
    display: flex;
    height: 320px;
}

.mockup-sidebar {
    width: 60px;
    background: #f8fafc;
    border-right: 1px solid #f1f5f9;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sidebar-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sidebar-icon.active {
    background: var(--fb-blue);
    color: white;
}

.mockup-content {
    flex: 1;
    padding: 20px;
    background: #f8fafc;
}

.mini-stat-card {
    background: white;
    border-radius: 14px;
    padding: 16px;
    border: 1px solid #f1f5f9;
}

.mini-stat-card .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.mini-stat-card .stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stat-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}

.stat-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 75%;
    background: var(--fb-blue);
    border-radius: 2px;
    animation: loadBar 1.5s ease-out forwards;
}

.stat-bar.blue::after {
    background: var(--fb-light-blue);
    width: 60%;
}

@keyframes loadBar {
    from {
        width: 0;
    }
}

.stat-change {
    font-size: 0.75rem;
    font-weight: 700;
}

.stat-change.positive {
    color: #10b981;
}

.inbox-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.inbox-badge {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.inbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.inbox-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.inbox-avatar {
    width: 32px;
    height: 32px;
    background: #cbd5e1;
    border-radius: 50%;
    flex-shrink: 0;
}

.inbox-text {
    flex: 1;
    min-width: 0;
}

.inbox-text strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.inbox-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inbox-item small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Floating Badges */
.float-badge {
    position: absolute;
    background: white;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 10;
}

.float-1 {
    top: 15%;
    right: -20px;
}

.float-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.float-badge i {
    font-size: 1.5rem;
}

.float-badge strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.float-badge small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.services-section,
.methodology-section,
.faq-section {
    padding: 100px 0;
}

.services-section {
    background: var(--bg-light);
}

.methodology-section {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.faq-section {
    background: var(--bg-light);
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--fb-gradient);
    border-radius: 50px;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid rgba(24, 119, 242, 0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(24, 119, 242, 0.12);
    border-color: rgba(24, 119, 242, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(0, 198, 255, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--fb-blue);
}

.service-card:hover .service-icon {
    background: var(--fb-gradient);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   PROCESS STEPS (METHODOLOGY)
   ======================================== */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
    padding: 0 40px;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: var(--fb-gradient);
    border-radius: 2px;
    z-index: 1;
}

.process-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--fb-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(24, 119, 242, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.step-content {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(24, 119, 242, 0.08);
    transition: all 0.4s ease;
}

.step-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(24, 119, 242, 0.12);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(0, 198, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--fb-blue);
}

.step-content:hover .step-icon {
    background: var(--fb-gradient);
}

.step-content:hover .step-icon i {
    color: white;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   FAQ
   ======================================== */
.accordion-item {
    background: white;
    border: none !important;
    border-radius: 16px !important;
    margin-bottom: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.accordion-button {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.05), rgba(0, 198, 255, 0.05));
    color: var(--fb-blue);
}

.accordion-button::after {
    background-size: 16px;
}

.accordion-button i {
    color: var(--fb-blue);
}

.accordion-body {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   CTA
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
}

.cta-box h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: var(--fb-gradient);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.5);
    color: white;
}

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

    .hero-visual {
        display: none;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 0;
    }

    .process-line {
        display: none;
    }

    .process-step {
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-box {
        padding: 40px 30px;
    }

    .cta-box h3 {
        font-size: 1.8rem;
    }
}