/* ===== PAGE CONFIGURATION ===== */
    :root {
        /* Header Configuration */
        --header-height: 80px;
        --header-height-mobile: 60px;

        /* Hero Configuration */
        --hero-padding-top: 140px;
        --hero-min-height: 60vh;
        --hero-margin-top: 0px;

        /* Mobile Configuration */
        --hero-padding-top-mobile: 100px;
        --hero-min-height-mobile: 50vh;
    }

.service-hero {
            background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-accent) 100%);
            padding: var(--hero-padding-top) 2rem 6rem;
            margin-top: var(--hero-margin-top);
            min-height: var(--hero-min-height);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            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 8s 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;
            color: white;
            backdrop-filter: blur(10px);
        }

        .hero-content h1 {
            font-family: var(--font-heading);
            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-mobile-billboard .service-hero p {
            color: rgba(255, 255, 255, 0.9);
        }

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

        /* Fix all button underlines and colors */
        #ai_post #custom-container-mobile-billboard .btn {
            text-decoration: none !important;
        }

        #ai_post #custom-container-mobile-billboard .btn-secondary {
            color: white !important;
        }

        .hero-features {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

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

        .feature-item i {
            font-size: 1.25rem;
        }

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

        /* Base button styles */
        .btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none !important;
            transition: all 0.3s ease;
            font-weight: 600;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--brand-primary);
            color: white !important;
            border: 2px solid var(--brand-primary);
        }

        .btn-primary:hover {
            background: #ff5520;
            border-color: #ff5520;
            color: white !important;
        }

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

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

        .btn-secondary:hover {
            background: white !important;
            color: var(--brand-dark) !important;
            border-color: white !important;
        }


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

        .truck-showcase {
            position: relative;
            animation: slideInRight 0.8s ease;
        }

        .truck-body {
            width: 400px;
            height: 200px;
            background: linear-gradient(135deg, #34495e, #2c3e50);
            border-radius: 10px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .led-screen {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 40px;
            background: #000;
            border-radius: 5px;
            overflow: hidden;
            border: 3px solid #444;
        }

        .screen-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 1s ease;
        }

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

        .demo-ad {
            text-align: center;
            color: white;
            padding: 2rem;
        }

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

        .demo-ad p {
            opacity: 0.9;
        }

        .demo-ad.retail {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
        }

        .demo-ad.event {
            background: linear-gradient(45deg, #9b59b6, #8e44ad);
        }

        .truck-wheels {
            display: flex;
            justify-content: space-between;
            position: absolute;
            bottom: -15px;
            left: 40px;
            right: 40px;
        }

        .wheel {
            width: 30px;
            height: 30px;
            background: #2c3e50;
            border-radius: 50%;
            border: 3px solid #34495e;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .benefits-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;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            justify-content: center;
        }

        .benefit-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-primary), #ff5520);
        }

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

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

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

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

        .benefit-stat {
            color: var(--brand-primary);
            font-weight: 700;
            font-size: 1.125rem;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .technology-section {
            padding: 4rem 0;
        }

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

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

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

        .tech-features {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .tech-feature {
            display: flex;
            gap: 1.5rem;
        }

        .feature-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;
        }

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

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

        .tech-visual {
            display: flex;
            justify-content: center;
        }

        .tech-showcase {
            position: relative;
        }

        .display-demo {
            width: 300px;
            height: 200px;
            background: #000;
            border-radius: 10px;
            border: 5px solid #333;
            overflow: hidden;
            position: relative;
        }

        .demo-screen {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .pixel-grid {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
                linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 4px 4px;
            animation: pixelShimmer 3s ease-in-out infinite;
        }

        @keyframes pixelShimmer {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        .demo-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .content-animation {
            width: 80px;
            height: 80px;
            background: var(--brand-primary);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .tech-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--brand-light);
        }

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

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

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

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

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .spec-category {
            background: white;
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .spec-category:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        .spec-category h3 {
            color: var(--brand-dark);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .spec-category i {
            color: var(--brand-primary);
            font-size: 1.5rem;
        }

        .spec-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            gap: 1rem;
        }

        .spec-item:last-child {
            border-bottom: none;
        }

        .spec-label {
            color: var(--brand-neutral);
            font-weight: 600;
            font-size: 0.95rem;
            flex: 0 0 40%;
        }

        .spec-value {
            color: var(--brand-dark);
            font-weight: 700;
            font-size: 1rem;
            text-align: right;
            flex: 1;
        }

        .pricing-section {
            padding: 4rem 0;
        }

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

        .pricing-card {
            flex: 0 1 calc(33.333% - 1.5rem);
            min-width: 320px;
            max-width: 400px;
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured {
            transform: scale(1.05);
            border: 3px solid var(--brand-primary);
        }

        .pricing-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--brand-primary);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }

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

        .price {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
        }

        .currency {
            font-size: 1.5rem;
            color: var(--brand-primary);
        }

        .amount {
            font-size: 3rem;
            font-weight: 700;
            color: var(--brand-primary);
        }

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

        .pricing-features {
            margin-bottom: 2rem;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .feature i {
            color: var(--brand-primary);
        }

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

        .pricing-cta {
            display: block;
            width: 100%;
            background: var(--brand-primary);
            color: white;
            padding: 1rem;
            text-align: center;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .pricing-cta:hover {
            background: #ff5520;
            transform: translateY(-2px);
        }

        .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-benefits {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

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

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

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

        /* Responsive Breakpoints */

        /* Laptop and below (2 cards per row) */
        @media (max-width: 1024px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

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

            .hero-cta {
                justify-content: center;
                text-align: center;
            }

            .hero-cta .btn {
                margin: 0 auto;
            }

            .truck-body {
                width: 300px;
                height: 150px;
            }

            .hero-features {
                justify-content: center;
            }

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

            .tech-feature {
                text-align: left;
            }

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

            .pricing-card.featured {
                transform: none;
            }

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

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