/* Commercial Truckers Section */
.truckers-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

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

.truckers-section .section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.truckers-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.truckers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.trucker-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trucker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trucker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.trucker-card:hover::before {
    opacity: 1;
}

.trucker-card.featured {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.trucker-card.featured::before {
    background: linear-gradient(90deg, #ffc107, #ff9800);
    opacity: 1;
    height: 6px;
}

.trucker-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.trucker-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trucker-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trucker-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.trucker-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.trucker-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 0.25rem;
}

.trucker-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.app-download-mini {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.app-download-mini .trucker-btn {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
}

.trucker-success {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-quote {
    padding: 1rem;
}

.success-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.success-quote cite {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

.trucker-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 0.25rem;
}

.stat span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .truckers-section {
        padding: 3rem 1rem;
    }
    
    .truckers-section .section-header h2 {
        font-size: 2rem;
    }
    
    .truckers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trucker-success {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .trucker-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .app-download-mini {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .truckers-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .trucker-card {
        padding: 1.5rem;
    }
    
    .trucker-icon {
        font-size: 2.5rem;
    }
}
