/* Fleet Management Hero Section - Brand Yellow & Black */
.fleet-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.7) 50%, 
        rgba(255, 183, 43, 0.1) 100%);
}

.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 183, 43, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 183, 43, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.fleet-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-text {
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: #FFB72B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-highlight {
    color: #FFB72B;
    background: linear-gradient(135deg, #FFB72B 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFB72B;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #FFB72B;
    color: #000;
    border-color: #FFB72B;
}

.btn-primary:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 183, 43, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Hero Map Styles */
.hero-map {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 183, 43, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.map-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.map-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
}

.map-title i {
    color: #FFB72B;
}

.map-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.nigeria-fleet-map {
    height: 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.fleet-map-svg {
    width: 100%;
    height: 100%;
}

.nigeria-outline {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.vehicle-group {
    cursor: pointer;
    transition: all 0.3s ease;
}

.vehicle-group:hover {
    transform: scale(1.2);
}

.radar-pulse {
    animation: radarPulse 2s infinite;
}

@keyframes radarPulse {
    0% {
        r: 12;
        opacity: 0.3;
    }
    50% {
        r: 20;
        opacity: 0.1;
    }
    100% {
        r: 12;
        opacity: 0.3;
    }
}

.route-line {
    filter: drop-shadow(0 1px 2px rgba(255, 183, 43, 0.3));
}

/* KPI Stats Bar */
.kpi-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 3rem;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 183, 43, 0.2);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFB72B 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .kpi-stats-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }
    
    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .fleet-hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .kpi-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .nigeria-fleet-map {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 2rem;
    }
    
    .kpi-stats-bar {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Centered CTA Section Styles */
.fleet-cta {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1a1a1a 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.fleet-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 183, 43, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-centered {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text-center {
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: var(--brand-primary);
    flex-shrink: 0;
}

.cta-actions-center {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.cta-guarantee-center {
    display: flex;
    justify-content: center;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-badge i {
    color: var(--brand-primary);
    font-size: 1.25rem;
}

.guarantee-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.guarantee-text small {
    opacity: 0.8;
    font-size: 0.875rem;
}

.cta-visual-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Design for Hero and CTA */
@media (max-width: 1024px) {
    .hero-content,
    .cta-content-centered {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .live-metrics-overlay {
        grid-template-columns: 1fr;
    }
    
    .cta-features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions-center {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .map-legend {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .nigeria-map {
        height: 250px;
    }
}

/* Page Header Styles */
.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.page-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Problem Statement Section */
.problem-statement {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    max-width: none;
}

.problem-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.problem-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--brand-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-black);
    border-left: 4px solid var(--brand-primary);
    transition: all 0.3s ease;
}

.problem-stat:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-brand);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Problem Visual - Dashboard Mockup */
.problem-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: var(--brand-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-brand-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    max-width: 400px;
    width: 100%;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mockup-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mockup-content {
    padding: 1.5rem;
}

.error-states {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.error-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--danger-red);
    font-size: 0.875rem;
}

.error-item i {
    color: var(--danger-red);
}

/* Solution Overview */
.solution-overview {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.solution-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--brand-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-black);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-brand-lg);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-gold-black);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    margin-bottom: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.benefit-item i {
    color: var(--success);
    font-size: 1rem;
}

/* Dashboard Preview Section */
.dashboard-preview {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: var(--brand-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-brand-lg);
    border: 1px solid rgba(255, 183, 43, 0.2);
}

.dashboard-sidebar {
    background: var(--bg-secondary);
    padding: 2rem;
    border-right: 1px solid var(--gray-200);
}

.sidebar-header {
    margin-bottom: 2rem;
}

.sidebar-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-indicator.online {
    color: var(--success);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

.fleet-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fleet-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--brand-white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-black);
    transition: all 0.3s ease;
}

.fleet-stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand);
}

.fleet-stat .stat-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
}

.stat-data {
    flex: 1;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Dashboard Main Content */
.dashboard-main {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-map {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 1.5rem;
    flex: 1;
    min-height: 400px;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.map-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.map-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    padding: 0.5rem 1rem;
    background: var(--brand-white);
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn.active,
.control-btn:hover {
    background: var(--brand-primary);
    color: var(--brand-black);
    border-color: var(--brand-primary);
}

.map-content {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    border-radius: 0.75rem;
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
}

.vehicle-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.marker {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: markerPulse 3s ease-in-out infinite;
}

.marker.moving {
    background: var(--success);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
}

.marker.idle {
    background: var(--warning-orange);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
}

.marker.stopped {
    background: var(--danger-red);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}

.marker:hover {
    transform: scale(1.2);
    z-index: 10;
}

.marker-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-black);
    color: var(--brand-white);
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

.route-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.route-svg {
    width: 100%;
    height: 100%;
}

/* Dashboard Metrics */
.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric-card {
    background: var(--brand-white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-black);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-brand);
    border-color: var(--brand-primary);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.metric-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.metric-trend {
    font-size: 1rem;
}

.metric-trend.positive {
    color: var(--success);
}

.metric-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.value-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.value-change {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

.value-change.positive {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.metric-chart {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 40px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    animation: barGrow 1.5s ease-out;
}

.chart-bar:hover {
    opacity: 0.8;
}

.progress-ring {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Business Benefits Section */
.business-benefits {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--brand-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-black);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-12px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-brand-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold-black);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-content {
    text-align: left;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-metric {
    text-align: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 183, 43, 0.2);
}

.benefit-metric .metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    display: block;
}

.benefit-metric .metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Implementation Process */
.implementation-process {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.timeline-step {
    background: var(--brand-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-black);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

.timeline-step:hover {
    transform: translateY(-8px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-brand-lg);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: var(--brand-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
}

.step-content {
    text-align: left;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-duration {
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--brand-black);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

/* Success Story */
.success-story {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text {
    max-width: none;
}

.story-details {
    margin: 2rem 0;
}

.story-challenge,
.story-solution {
    margin-bottom: 2rem;
}

.story-challenge h3,
.story-solution h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.story-challenge p,
.story-solution p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.story-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.result-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--brand-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-black);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-brand);
}

.result-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.result-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.story-quote {
    background: var(--brand-white);
    border-left: 4px solid var(--brand-primary);
    padding: 2rem;
    border-radius: 0 1rem 1rem 0;
    margin-top: 2rem;
}

.story-quote blockquote {
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.story-quote cite {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Story Visual */
.story-visual {
    display: flex;
    justify-content: center;
    align-items: start;
}

.results-dashboard {
    background: var(--brand-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-brand-lg);
    border: 1px solid rgba(255, 183, 43, 0.2);
    max-width: 400px;
    width: 100%;
}

.dashboard-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.performance-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.performance-metric:hover {
    transform: translateX(4px);
    border-color: var(--brand-primary);
}

.performance-metric .metric-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
}

.performance-metric .metric-data {
    flex: 1;
}

.performance-metric .metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.performance-metric .metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.metric-trend.positive {
    color: var(--success);
}

.roi-calculator {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 183, 43, 0.2);
}

.roi-calculator h4 {
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--brand-white);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.calc-item:hover {
    transform: scale(1.02);
}

.calc-item.highlight {
    background: var(--gradient-primary);
    color: var(--brand-black);
    font-weight: 700;
}

.calc-label {
    font-size: 0.875rem;
    color: inherit;
}

.calc-value {
    font-weight: 700;
    color: inherit;
}

/* Target Industries */
.target-industries {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.industries-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--brand-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-black);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-12px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-brand-lg);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold-black);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.industry-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.industry-benefits {
    text-align: left;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.benefit::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

/* Fleet CTA Section */
.fleet-cta {
    background: var(--gradient-black-gold);
    padding: 6rem 0;
    color: var(--brand-white);
    position: relative;
    overflow: hidden;
}

.fleet-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 183, 43, 0.1) 0%, transparent 70%),
                radial-gradient(circle at 70% 20%, rgba(255, 183, 43, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    max-width: none;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: var(--brand-primary);
    font-size: 1.125rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 183, 43, 0.1);
    border: 1px solid rgba(255, 183, 43, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guarantee-badge i {
    color: var(--brand-primary);
    font-size: 1.5rem;
}

.guarantee-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.guarantee-text small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* CTA Visual */
.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-dashboard {
    max-width: 100%;
    width: 100%;
}

.dashboard-screen {
    background: var(--brand-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-brand-lg);
    border: 1px solid rgba(255, 183, 43, 0.2);
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.screen-dots {
    display: flex;
    gap: 0.5rem;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-400);
}

.screen-dots span:nth-child(1) { background: #ef4444; }
.screen-dots span:nth-child(2) { background: #f59e0b; }
.screen-dots span:nth-child(3) { background: #10b981; }

.screen-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.screen-content {
    padding: 1.5rem;
    color: var(--text-primary);
}

.live-metrics {
    margin-bottom: 1.5rem;
}

.metric-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.live-activity {
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    padding: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-primary);
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes markerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--height, 60%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .problem-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .fleet-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .story-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
    
    .metric-row {
        flex-direction: column;
    }
    
    .fleet-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .problem-stats {
        gap: 1rem;
    }
    
    .problem-stat {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .page-stats {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.25rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .dashboard-container {
        border-radius: 1rem;
        overflow: hidden;
    }
    
    .dashboard-sidebar,
    .dashboard-main {
        padding: 1.5rem;
    }
    
    .feature-card,
    .benefit-card,
    .industry-card,
    .timeline-step {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .map-controls {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .control-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .benefit-card,
    .industry-card,
    .timeline-step {
        border: 2px solid var(--text-primary);
    }
    
    .marker {
        border: 2px solid var(--brand-white);
    }
}

/* Focus styles for better accessibility */
.control-btn:focus,
.btn:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.marker:focus {
    outline: 2px solid var(--brand-white);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .back-to-top,
    .cta-actions {
        display: none;
    }
    
    .dashboard-container,
    .feature-card,
    .benefit-card {
        box-shadow: none;
        border: 1px solid var(--gray-300);
    }
    
    .page-title,
    .section-title {
        color: var(--black) !important;
    }
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--brand-primary);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hover effects for interactive elements */
.metric-card:hover .metric-trend {
    transform: scale(1.1);
}

.fleet-stat:hover .stat-icon {
    transform: rotate(5deg);
}

.result-item:hover .result-number {
    transform: scale(1.1);
}

/* Advanced animations */
.feature-card,
.benefit-card,
.industry-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card.animate,
.benefit-card.animate,
.industry-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

.benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefit-card:nth-child(4) { transition-delay: 0.4s; }

.industry-card:nth-child(odd) { transition-delay: 0.1s; }
.industry-card:nth-child(even) { transition-delay: 0.2s; }

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-secondary);
}

/* Selection styling */
::selection {
    background: var(--brand-primary);
    color: var(--brand-black);
}

::-moz-selection {
    background: var(--brand-primary);
    color: var(--brand-black);
}

/* Industry Solutions Section */
.industry-solutions {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--brand-primary);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.industry-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.industry-challenge {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution-result {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--brand-primary);
}

.tech-stack {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.results {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.metric {
    background: var(--brand-primary);
    color: var(--brand-black);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.plus {
    font-weight: 700;
    color: var(--brand-primary);
}

.context {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Pain-Solution-Win Section */
.pain-solution-win {
    padding: 5rem 0;
    background: var(--brand-black);
    color: white;
}

.psw-header {
    text-align: center;
    margin-bottom: 3rem;
}

.psw-header .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.psw-header .section-subtitle {
    color: var(--brand-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.psw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.psw-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.psw-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.2);
}

.psw-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pain-section h4 {
    color: #ef4444;
}

.solution-section h4 {
    color: #10b981;
}

.win-section h4 {
    color: var(--brand-primary);
}

.psw-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.win-section p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Partnership Benefits */
.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .industry-grid,
    .psw-grid,
    .partnership-benefits {
        grid-template-columns: 1fr;
    }
    
    .results {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .plus {
        display: none;
    }
    
    .psw-header .section-title {
        font-size: 2rem;
    }
}

/* ===== INTERACTIVE MAP STYLES ===== */

/* Hero Map Styles */
.hero-fleet-map-container {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero-map-controls {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-control-group {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hero-control-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-control-btn:hover {
    background: rgba(255, 183, 43, 0.8);
    border-color: rgba(255, 183, 43, 1);
    transform: translateY(-1px);
}

.hero-control-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.hero-control-btn i {
    width: 16px;
    height: 16px;
}

.hero-map-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hero-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.hero-legend-color.moving {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.hero-legend-color.idle {
    background: #FFB72B;
    box-shadow: 0 0 10px rgba(255, 183, 43, 0.5);
}

.hero-legend-color.maintenance {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

/* Map Header Styles */
.map-status .status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Fleet Map Container */
.fleet-map-container {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Map Controls */
.map-controls {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.map-control-group {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.map-control-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.map-control-btn:hover {
    background: rgba(255, 183, 43, 0.8);
    border-color: rgba(255, 183, 43, 1);
    transform: translateY(-1px);
}

.map-control-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.map-control-btn i {
    width: 16px;
    height: 16px;
}

/* Map Legend */
.map-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.legend-color.moving {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.legend-color.idle {
    background: #FFB72B;
    box-shadow: 0 0 10px rgba(255, 183, 43, 0.5);
}

.legend-color.maintenance {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

/* Custom Leaflet Styles */
.leaflet-container {
    background: #1a1a1a !important;
}

.leaflet-tile {
    filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.leaflet-control-zoom {
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.leaflet-control-zoom a {
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease !important;
}

.leaflet-control-zoom a:hover {
    background: var(--primary-color) !important;
    color: var(--text-primary) !important;
}

/* Custom Vehicle Markers */
.vehicle-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vehicle-marker:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.vehicle-marker.moving {
    background: #10b981;
    animation: pulse 2s infinite;
}

.vehicle-marker.idle {
    background: #FFB72B;
}

.vehicle-marker.maintenance {
    background: #ef4444;
    animation: blink 1s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

/* Custom Popup Styles */
.leaflet-popup-content-wrapper {
    background: rgba(0, 0, 0, 0.9) !important;
    color: white !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.leaflet-popup-tip {
    background: rgba(0, 0, 0, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.vehicle-popup {
    min-width: 250px;
    padding: 8px;
}

.vehicle-popup h4 {
    color: var(--primary-color);
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle-popup .popup-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.popup-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.popup-metric .metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.popup-metric .metric-value {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.popup-metric .metric-value.good {
    color: #10b981;
}

.popup-metric .metric-value.warning {
    color: #FFB72B;
}

.popup-metric .metric-value.danger {
    color: #ef4444;
}

.vehicle-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.vehicle-status.moving {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid #10b981;
}

.vehicle-status.idle {
    background: rgba(255, 183, 43, 0.2);
    color: #FFB72B;
    border: 1px solid #FFB72B;
}

.vehicle-status.maintenance {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

/* Responsive Map Styles */
@media (max-width: 768px) {
    .hero-fleet-map-container {
        height: 300px;
    }
    
    .hero-map-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-control-group {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-control-btn {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .hero-map-legend {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .fleet-map-container {
        height: 300px;
    }
    
    .map-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .map-control-group {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .map-control-btn {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .map-legend {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .vehicle-popup {
        min-width: 200px;
    }
    
    .popup-metrics {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
}

@media (max-width: 480px) {
    .hero-fleet-map-container {
        height: 250px;
    }
    
    .hero-control-btn {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .hero-control-btn i {
        width: 14px;
        height: 14px;
    }
    
    .fleet-map-container {
        height: 250px;
    }
    
    .map-control-btn {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .map-control-btn i {
        width: 14px;
        height: 14px;
    }
}

/* ===== ENHANCED FLEET OVERVIEW DASHBOARD ===== */

.fleet-overview-dashboard {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.fleet-overview-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 183, 43, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 183, 43, 0.05) 50%, transparent 70%);
    animation: backgroundPulse 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.enhanced-dashboard-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== FLEET OVERVIEW SIDEBAR ===== */

.fleet-overview-sidebar {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.overview-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.overview-header h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.system-status.online {
    color: #10b981;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.last-updated {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Primary Metrics */
.primary-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card.primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.metric-card.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 183, 43, 0.1), transparent);
    transition: left 0.5s ease;
}

.metric-card.primary:hover::before {
    left: 100%;
}

.metric-card.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.metric-card.primary.vehicle-selected {
    animation: vehicleSelectedPulse 0.5s ease;
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

@keyframes vehicleSelectedPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.metric-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #ffa726);
    border-radius: 12px;
    color: var(--text-primary);
}

.metric-icon i {
    width: 24px;
    height: 24px;
}

.icon-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 2px solid var(--primary-color);
}

.metric-content {
    flex: 1;
}

.metric-value {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.animated-counter {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.metric-unit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.metric-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #10b981;
}

.metric-change i {
    width: 12px;
    height: 12px;
}

/* Secondary Metrics */
.secondary-metrics {
    margin-bottom: 2rem;
}

.secondary-metrics h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.performance-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.perf-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.perf-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 183, 43, 0.3);
}

.perf-icon {
    font-size: 1.25rem;
    width: 32px;
    text-align: center;
}

.perf-data {
    flex: 1;
}

.perf-value {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.perf-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.perf-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.perf-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #10b981);
    border-radius: 2px;
    transition: width 1s ease;
    position: relative;
}

.perf-progress.safe {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.perf-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Alert System */
.alert-system {
    margin-bottom: 1rem;
}

.alert-system h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 3px solid #ef4444;
}

.alerts-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
}

.alert-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease;
}

.alert-item.low {
    border-color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.alert-item.maintenance {
    border-color: #f97316;
    background: rgba(249, 115, 22, 0.1);
}

.alert-item.success {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.alert-icon {
    font-size: 1rem;
    width: 24px;
    text-align: center;
    margin-top: 0.125rem;
}

.alert-content {
    flex: 1;
}

.alert-title {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.alert-desc {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.alert-time {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== MAIN DASHBOARD CONTENT ===== */

.dashboard-main-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Enhanced Map Container */
.enhanced-map-container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-header-enhanced {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-title-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.map-stats {
    display: flex;
    gap: 1rem;
}

.map-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid white;
}

.stat-dot.moving {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    animation: pulse 2s infinite;
}

.stat-dot.idle {
    background: #FFB72B;
    box-shadow: 0 0 8px rgba(255, 183, 43, 0.5);
}

.stat-dot.maintenance {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
    animation: blink 1s infinite;
}

.map-controls-enhanced {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.control-group {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 183, 43, 0.8);
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.control-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(255, 183, 43, 0.3);
}

.view-controls {
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.25rem;
}

.view-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.enhanced-fleet-map-container {
    height: 400px;
    width: 100%;
    position: relative;
}

/* Analytics Grid */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.analytics-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.analytics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #10b981);
}

.analytics-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 183, 43, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.card-title i {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.card-trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.card-trend.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.card-trend i {
    width: 14px;
    height: 14px;
}

.card-content {
    position: relative;
}

.primary-metric {
    margin-bottom: 1rem;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.25rem;
}

.metric-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Fuel Chart */
.fuel-chart {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 60px;
    margin-bottom: 0.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), #ffa726);
    border-radius: 2px 2px 0 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 8px;
}

.chart-bar:hover {
    background: linear-gradient(to top, #10b981, #34d399);
    transform: scaleY(1.1);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Performance Ring */
.performance-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.ring-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle {
    transition: stroke-dashoffset 2s ease;
}

.ring-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.ring-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ring-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Route Analytics */
.route-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.route-metric {
    text-align: center;
}

.route-metric .metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.route-metric .metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.efficiency-indicator {
    text-align: center;
}

.efficiency-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.efficiency-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #10b981);
    border-radius: 4px;
    transition: width 2s ease;
    position: relative;
}

.efficiency-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .enhanced-dashboard-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fleet-overview-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .map-header-enhanced {
        flex-direction: column;
        align-items: stretch;
    }
    
    .map-controls-enhanced {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .control-group {
        flex-wrap: wrap;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .route-metrics {
        grid-template-columns: 1fr;
    }
    
    .enhanced-fleet-map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .fleet-overview-sidebar {
        padding: 1rem;
    }
    
    .primary-metrics {
        gap: 0.75rem;
    }
    
    .metric-card.primary {
        padding: 0.75rem;
    }
    
    .enhanced-fleet-map-container {
        height: 250px;
    }
}