﻿/* Logistics-specific styles */
.logistics-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2a5298;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}

.challenges-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.challenge-card, .feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .challenge-card:hover, .feature-card:hover {
        transform: translateY(-5px);
    }

.challenge-title, .feature-title {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #333;
}

.challenge-description, .feature-description {
    color: #666;
    line-height: 1.6;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.application-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.application-content {
    padding: 30px;
}

.application-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.application-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.application-features {
    list-style: none;
    padding: 0;
}

    .application-features li {
        color: #2a5298;
        margin-bottom: 8px;
        position: relative;
        padding-left: 20px;
    }

        .application-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

.technology-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tech-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.tech-category-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tech-icon {
    font-size: 1.5rem;
}

.tech-name {
    font-weight: 500;
    color: #333;
}

.success-story {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.success-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #2a5298;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.success-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.success-description {
    color: #666;
    line-height: 1.6;
}

.logistics-cta-section {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
}

.cta-content {
    text-align: center;
    margin-bottom: 40px;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #28a745;
    color: white;
}

    .btn-primary:hover {
        background: #218838;
        transform: translateY(-2px);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-secondary:hover {
        background: white;
        color: #2a5298;
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .success-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .challenges-grid, .features-grid {
        grid-template-columns: 1fr;
    }
}

