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

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

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

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

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

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

        .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 12s 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-route-planning .service-hero p {
            color: rgba(255, 255, 255, 0.9);
        }

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

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

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

        .route-visualization {
            animation: slideInRight 0.8s ease;
        }

        .map-container {
            width: 400px;
            height: 300px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 1rem;
            padding: 2rem;
            position: relative;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .route-points {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .route-point {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .route-point i {
            width: 40px;
            height: 40px;
            background: var(--brand-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
        }

        .route-point.active i {
            background: var(--brand-primary);
            transform: scale(1.2);
            animation: pulse 2s infinite;
        }

        .point-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--brand-dark);
            text-align: center;
        }

        .start-point { top: 10%; left: 10%; }
        .waypoint:nth-of-type(2) { top: 20%; left: 60%; }
        .waypoint:nth-of-type(3) { top: 50%; left: 80%; }
        .waypoint:nth-of-type(4) { top: 70%; left: 30%; }
        .end-point { top: 85%; left: 70%; }

        .route-lines {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .route-line {
            position: absolute;
            height: 3px;
            background: linear-gradient(90deg, var(--brand-primary), transparent);
            border-radius: 2px;
            animation: drawLine 2s ease forwards;
        }

        .line-1 {
            top: 25%;
            left: 50px;
            width: 90px;
            transform: rotate(0deg);
            animation-delay: 0.5s;
        }

        .line-2 {
            top: 40%;
            left: 140px;
            width: 90px;
            transform: rotate(0deg);
            animation-delay: 1s;
        }

        .line-3 {
            top: 55%;
            left: 230px;
            width: 90px;
            transform: rotate(0deg);
            animation-delay: 1.5s;
        }

        .line-4 {
            top: 70%;
            left: 320px;
            width: 90px;
            transform: rotate(0deg);
            animation-delay: 2s;
        }

        @keyframes drawLine {
            from { width: 0; opacity: 0; }
            to { opacity: 1; }
        }

        .route-info-panel {
            background: white;
            border-radius: 0.5rem;
            padding: 1rem;
            margin-top: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .info-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }

        .info-header h4 {
            color: var(--brand-dark);
            margin: 0;
        }

        .optimization-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: var(--brand-primary);
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        .optimization-status span {
            font-size: 0.875rem;
            color: var(--brand-primary);
            font-weight: 600;
        }

        .info-content {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            font-size: 0.875rem;
            color: var(--brand-neutral);
        }

        .how-it-works-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;
        }

        .process-steps {
            display: grid !important;
            grid-template-columns: repeat(4, 1fr) !important;
            gap: 2rem !important;
        }

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

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

        .step-item:hover {
            transform: translateY(-10px);
        }

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

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

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

        .step-details {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .detail-item {
            background: #f8f9fa;
            padding: 0.5rem 1rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            color: var(--brand-primary);
            font-weight: 600;
        }

        .data-sources-section {
            padding: 4rem 0;
        }

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

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

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

        .data-categories {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .data-category {
            display: flex;
            gap: 1.5rem;
        }

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

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

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

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

        .dashboard-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--brand-dark);
            margin-bottom: 2rem;
            text-align: center;
        }

        .data-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .metric-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 0.5rem;
            min-width: 0;
        }

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

        .metric-details {
            display: flex;
            flex-direction: column;
            flex: 1;
            min-width: 0;
        }

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

        .metric-label {
            font-size: 0.75rem;
            color: var(--brand-neutral);
            white-space: nowrap;
        }

        .heatmap-visualization {
            text-align: center;
        }

        .heatmap-title {
            font-size: 0.875rem;
            color: var(--brand-neutral);
            margin-bottom: 1rem;
        }

        .heatmap-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.25rem;
        }

        .heat-cell {
            width: 100%;
            height: 40px;
            border-radius: 0.25rem;
            animation: heatPulse 3s ease-in-out infinite;
        }

        .heat-cell.high {
            background: var(--brand-primary);
        }

        .heat-cell.medium {
            background: #f39c12;
        }

        .heat-cell.low {
            background: #e74c3c;
        }

        @keyframes heatPulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

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

        .targeting-grid {
            display: grid !important;
            grid-template-columns: repeat(4, 1fr) !important;
            gap: 2rem !important;
            margin-top: 3rem;
        }

        .targeting-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease;
        }

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

        .targeting-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }

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

        .targeting-header h3 {
            color: var(--brand-dark);
            margin: 0;
        }

        .option-group {
            margin-bottom: 1.5rem;
        }

        .option-group h4 {
            color: var(--brand-dark);
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

        .option-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

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

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

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

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

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

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

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .benefit-item i {
            color: var(--brand-primary);
            font-size: 1.25rem;
            width: 20px;
        }

        .benefit-item span {
            color: var(--brand-neutral);
            font-weight: 600;
            font-size: 1rem !important;
            line-height: 1.6 !important;
        }

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

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow-md);
            display: flex;
            gap: 1rem;
        }

        .stat-card .stat-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;
        }

        .stat-content {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--brand-dark);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-weight: 600;
            color: var(--brand-dark);
            margin-bottom: 0.25rem;
            font-size: 0.875rem !important;
            line-height: 1.4 !important;
        }

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

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

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

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

        .case-study-header p {
            font-size: 1.25rem;
            color: var(--brand-neutral);
        }

        .case-study-content {
            background: white;
            border-radius: 1rem;
            padding: 3rem;
            box-shadow: var(--shadow-xl);
        }

        .case-overview {
            margin-bottom: 3rem;
        }

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

        .case-details {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .detail-item {
            background: #f8f9fa;
            padding: 0.5rem 1rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            color: var(--brand-neutral);
        }

        .case-comparison {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            align-items: stretch;
            margin-bottom: 3rem;
        }

        .comparison-section {
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            flex: 1;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .comparison-section:first-child {
            background: #ffeaa7;
        }

        .comparison-section.optimized {
            background: #d5f3e3;
        }

        .comparison-section h4 {
            color: var(--brand-dark);
            margin-bottom: 1.5rem;
        }

        .comparison-stats {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .comparison-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
        }

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

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

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

        .vs-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: var(--brand-primary);
            color: white;
            border-radius: 50%;
            font-weight: 700;
        }

        .case-results h4 {
            color: var(--brand-dark);
            margin-bottom: 1rem;
        }

        .results-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .results-list .result-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 0.5rem;
        }

        .results-list .result-item i {
            color: var(--brand-primary);
            font-size: 1.25rem;
        }

        .results-list .result-item span {
            color: var(--brand-neutral);
            font-size: 1rem !important;
            line-height: 1.6 !important;
        }

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

        /* Laptop/Tablet Styles */
        @media (max-width: 1024px) {
            .process-steps {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            .targeting-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

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

            .map-container {
                width: 300px;
                height: 200px;
                padding: 1rem;
            }

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

            .process-steps {
                grid-template-columns: 1fr !important;
            }

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

            .data-category {
                text-align: left;
            }

            .data-metrics {
                grid-template-columns: 1fr;
            }

            .targeting-grid {
                grid-template-columns: 1fr !important;
            }

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

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

            .case-comparison {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .vs-divider {
                order: 2;
                margin: 0 auto;
            }

            .case-details {
                flex-direction: column;
                gap: 1rem;
            }

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

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