/* Drivers Page Styles */
.main-content {
    padding-top: 0;
}

/* Hero Section */
.drivers-hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: transparent;
}

.drivers-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.drivers-hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--blue-accent-light);
    margin-bottom: 20px;
}

.drivers-hero-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--blue-accent-light);
    text-align: center;
    margin-bottom: 50px;
}

/* Features Section */
.drivers-features-section {
    padding: 80px 20px;
    background: transparent;
}

.drivers-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.drivers-feature-card {
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.drivers-feature-card:hover {
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
    background: var(--gradient-blue-accent);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Selection Process Section */
.drivers-selection-section {
    padding: 80px 20px;
    background: transparent;
}

.selection-description {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.selection-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.selection-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.selection-step:hover {
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateX(5px);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-blue-accent);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.step-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.drivers-services-section {
    padding: 80px 20px;
    background: transparent;
}

.drivers-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.drivers-service-card {
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.drivers-service-card:hover {
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-3px);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
    background: var(--gradient-blue-accent);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Drivers List Section */
.drivers-list-section {
    padding: 80px 20px;
    background: transparent;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.driver-card {
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.driver-card:hover {
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.driver-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(74, 144, 226, 0.3);
    position: relative;
}

.driver-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.driver-card:hover .driver-photo img {
    transform: scale(1.1);
}

.driver-info {
    text-align: center;
}

.driver-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.driver-specialty,
.driver-experience,
.driver-rating {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.driver-specialty i,
.driver-experience i,
.driver-rating i {
    color: var(--blue-accent-light);
    font-size: 14px;
}

.driver-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 15px;
    text-align: left;
}

.no-drivers {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.no-drivers i {
    font-size: 64px;
    color: var(--blue-accent-light);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-drivers p {
    font-size: 18px;
}

/* Availability Section */
.drivers-availability-section {
    padding: 80px 20px;
    background: transparent;
}

.availability-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
}

.availability-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: var(--white);
    background: var(--gradient-blue-accent);
}

.availability-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.availability-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.drivers-cta-section {
    padding: 80px 20px;
    background: transparent;
}

.drivers-cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--gradient-blue-accent);
    border: 1px solid rgba(74, 144, 226, 0.6);
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--gradient-blue-4);
    border-color: rgba(74, 144, 226, 0.8);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .drivers-features-grid,
    .drivers-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .drivers-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .drivers-hero-title {
        font-size: 36px;
    }

    .drivers-hero-subtitle {
        font-size: 20px;
    }

    .drivers-hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .selection-steps {
        gap: 20px;
    }

    .selection-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .step-number {
        margin: 0 auto;
    }

    .availability-card,
    .drivers-cta-card {
        padding: 40px 30px;
    }

    .availability-title,
    .cta-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .drivers-hero {
        padding: 100px 20px 40px;
    }

    .drivers-hero-title {
        font-size: 28px;
    }

    .drivers-hero-subtitle {
        font-size: 18px;
    }

    .drivers-features-section,
    .drivers-selection-section,
    .drivers-services-section,
    .drivers-list-section,
    .drivers-availability-section,
    .drivers-cta-section {
        padding: 60px 20px;
    }

    .drivers-features-grid,
    .drivers-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .drivers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .driver-photo {
        width: 150px;
        height: 150px;
    }
    
    .driver-name {
        font-size: 20px;
    }

    .selection-step {
        padding: 25px 20px;
    }

    .availability-card,
    .drivers-cta-card {
        padding: 30px 20px;
    }
}
