/* Fix button underlines */
        #ai_post #custom-container-event-activation .btn {
            text-decoration: none !important;
        }

        #ai_post #custom-container-event-activation .hero-cta .btn {
            text-decoration: none !important;
        }

        #ai_post #custom-container-event-activation .cta-section .btn {
            text-decoration: none !important;
        }

        /* Fix CTA button colors on dark background */
        #ai_post #custom-container-event-activation .cta-section .btn-secondary {
            color: white;
            border-color: white;
        }

        #ai_post #custom-container-event-activation .cta-section .btn-secondary:hover {
            background: white;
            color: var(--brand-dark);
        }

        .service-hero {
            background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-accent) 100%);
            padding: 140px 2rem 6rem;
            margin-top: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 60vh;
            position: relative;
            overflow: hidden;
            color: white;
        }

        .service-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: pulse 10s ease-in-out infinite;
        }

        .hero-content {
            color: white;
            position: relative;
            z-index: 2;
            animation: slideInLeft 0.8s ease;
        }

        .service-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            margin-bottom: 2rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: white;
        }

        .hero-content p {
            font-size: 1.25rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Override content.html's paragraph color for hero section */
        #ai_post #custom-container-event-activation .service-hero p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Override content.html's paragraph color for CTA section */
        #ai_post #custom-container-event-activation .cta-section p {
            color: rgba(255, 255, 255, 0.8);
        }
        #ai_post #custom-container-event-activation .cta-section h2 {
            color: white;
        }
        /* Fix secondary button colors on dark background */
        #ai_post #custom-container-event-activation .cta-section .btn-secondary {
            color: white;
            border-color: white;
        }
        #ai_post #custom-container-event-activation .cta-section .btn-secondary:hover {
            background: white;
            color: var(--brand-dark);
        }
        /* Remove underlines from buttons */
        #ai_post #custom-container-event-activation .cta-section .btn {
            text-decoration: none;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-large {
            padding: 1rem 2.5rem;
            font-size: 1.125rem;
            font-weight: 600;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--brand-primary);
        }

        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .event-showcase {
            animation: slideInRight 0.8s ease;
        }

        .event-timeline {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            position: relative;
        }

        .event-timeline::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 25px;
            right: 25px;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
            z-index: 0;
        }

        .timeline-phase {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .phase-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .timeline-phase.active .phase-icon {
            background: white;
            color: var(--brand-primary);
            transform: scale(1.2);
        }

        .timeline-phase span {
            color: white;
            font-weight: 600;
            font-size: 0.875rem;
        }

        .mobile-display {
            width: 300px;
            height: 200px;
            background: #000;
            border-radius: 10px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .display-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            opacity: 0;
            transition: opacity 1s ease;
            padding: 2rem;
        }

        .display-content.active {
            opacity: 1;
        }

        .pre-event {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }

        .live-event {
            background: linear-gradient(135deg, #e67e22, #d35400);
        }

        .post-event {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }

        .display-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .display-content p {
            margin-bottom: 1rem;
        }

        .countdown, .live-indicator, .social-links {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 1rem;
            font-weight: 600;
            font-size: 0.875rem;
        }

        .event-types-section {
            padding: 4rem 0;
            background: var(--brand-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            color: var(--brand-dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.25rem;
            color: var(--brand-neutral);
            max-width: 600px;
            margin: 0 auto;
        }

        .event-types-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .event-type-card {
            flex: 0 1 calc(33.333% - 1.5rem);
            min-width: 350px;
            max-width: 400px;
            background: white;
            padding: 3rem 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
        }

        .event-type-card:hover {
            transform: translateY(-10px);
        }

        .event-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ff5520, var(--brand-primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .event-type-card h3 {
            color: var(--brand-dark);
            margin-bottom: 1rem;
        }

        .event-type-card p {
            color: var(--brand-neutral);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .event-features {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: auto;
        }

        .feature-tag {
            background: #f8f9fa;
            color: var(--brand-primary);
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .campaign-phases-section {
            padding: 4rem 0;
        }

        .phases-timeline {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin-top: 3rem;
        }

        .phase-item {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 2rem;
            align-items: start;
        }

        .phase-number {
            width: 60px;
            height: 60px;
            background: var(--brand-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .phase-content {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow-md);
        }

        .phase-content h3 {
            color: var(--brand-dark);
            margin-bottom: 0.5rem;
        }

        .phase-duration {
            color: var(--brand-primary);
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .phase-content p {
            color: var(--brand-neutral);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .phase-tactics {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .tactic {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .tactic i {
            color: var(--brand-primary);
            width: 20px;
        }

        .tactic span {
            color: var(--brand-neutral);
        }

        .metrics-section {
            padding: 4rem 0;
            background: var(--brand-light);
        }

        .metrics-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .metrics-text h2 {
            font-size: 3rem;
            color: var(--brand-dark);
            margin-bottom: 1.5rem;
        }

        .metrics-text p {
            font-size: 1.25rem;
            color: var(--brand-neutral);
            margin-bottom: 2rem;
        }

        .key-metrics {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .metric-item {
            display: flex;
            gap: 1.5rem;
        }

        .metric-icon {
            width: 60px;
            height: 60px;
            background: var(--brand-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .metric-info h4 {
            color: var(--brand-dark);
            margin-bottom: 0.5rem;
        }

        .metric-info p {
            color: var(--brand-neutral);
            line-height: 1.6;
        }

        .analytics-dashboard {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: var(--shadow-xl);
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--brand-light);
        }

        .dashboard-header h3 {
            color: var(--brand-dark);
        }

        .live-indicator {
            color: #e74c3c;
            font-weight: 600;
            font-size: 0.875rem;
        }

        .dashboard-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 0.5rem;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--brand-dark);
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--brand-neutral);
            margin: 0.25rem 0;
        }

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

        .stat-change.positive {
            color: #27ae60;
        }

        .chart-placeholder {
            height: 100px;
            background: #f8f9fa;
            border-radius: 0.5rem;
            padding: 1rem;
            display: flex;
            align-items: end;
            justify-content: space-around;
        }

        .chart-bars {
            display: flex;
            gap: 0.5rem;
            align-items: end;
            height: 100%;
        }

        .bar {
            width: 20px;
            background: linear-gradient(to top, var(--brand-primary), #ff5520);
            border-radius: 2px;
            animation: barGrow 1s ease forwards;
        }

        @keyframes barGrow {
            from { height: 0; }
        }

        .case-study-section {
            padding: 6rem 0;
        }

        .case-study-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .case-study-header {
            background: linear-gradient(135deg, var(--brand-primary), #ff5520);
            color: white;
            padding: 3rem;
            text-align: center;
            position: relative;
        }

        .case-study-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
        }

        .case-study-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white !important;
        }

        .case-study-header p {
            opacity: 0.9;
            font-size: 1.125rem;
            color: white !important;
        }

        /* Override any inherited styles */
        #ai_post #custom-container-event-activation .case-study-header h2,
        #ai_post #custom-container-event-activation .case-study-header p {
            color: white !important;
        }

        .case-study-content {
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 3rem;
        }

        .case-study-challenge h3,
        .case-study-solution h3,
        .case-study-results h3 {
            color: var(--brand-dark);
            margin-bottom: 1rem;
        }

        .case-study-challenge p,
        .case-study-solution ul {
            color: var(--brand-neutral);
            line-height: 1.7;
        }

        .case-study-solution ul {
            list-style: none;
            padding: 0 !important;
            padding-left: 0 !important;
            margin: 0;
            font-size: 1rem !important;
            line-height: 1.7 !important;
        }

        .case-study-solution li {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
            font-size: 1rem !important;
            line-height: 1.7 !important;
            color: var(--brand-neutral) !important;
        }

        .case-study-solution .checkmark {
            color: var(--brand-primary);
            font-weight: bold;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .result-item {
            text-align: center;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 0.5rem;
        }

        .result-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--brand-primary);
            margin-bottom: 0.5rem;
        }

        .result-label {
            color: var(--brand-neutral);
            font-weight: 600;
            font-size: 0.875rem !important;
            line-height: 1.4 !important;
        }

        .services-included-section {
            padding: 6rem 0;
            background: var(--brand-light);
        }

        .services-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
            justify-content: center;
        }

        .service-item {
            flex: 0 1 calc(25% - 1.5rem);
            min-width: 280px;
            max-width: 350px;
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-5px);
        }

        .service-item .service-icon {
            width: 60px;
            height: 60px;
            background: var(--brand-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: white;
        }

        .service-item h3 {
            color: var(--brand-dark);
            margin-bottom: 1rem;
        }

        .service-item p {
            color: var(--brand-neutral);
            line-height: 1.6;
        }

        .cta-section {
            padding: 4rem 0;
            background: var(--brand-dark);
            text-align: center;
        }

        .cta-content h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.25rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-weight: 600;
        }

        .cta-feature i {
            color: var(--brand-primary);
            font-size: 1.25rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .service-hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 100px 1rem 4rem;
                min-height: 50vh;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .mobile-display {
                width: 250px;
                height: 150px;
            }

            .event-types-grid {
                grid-template-columns: 1fr;
            }

            .phases-timeline {
                gap: 2rem;
            }

            .phase-item {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .metrics-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .case-study-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .cta-features {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }
        }
