/* ========================================
   ON MY WAY - Fleet Services Page Styles
   Corporate Fleet Washing Landing Page
   ======================================== */

/* Fleet Hero Section */
.fleet-hero {
    background: linear-gradient(135deg, #082f49 0%, #0c4a6e 50%, #0369a1 100%);
    padding: var(--space-20) 0 var(--space-16);
    color: var(--color-white);
}

.fleet-hero__content {
    max-width: 800px;
}

.fleet-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.fleet-hero__title-gradient {
    display: block;
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 30%, #f59e0b 60%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fleet-hero__subtitle {
    font-size: var(--text-lg);
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: var(--space-8);
}

.fleet-hero__stats {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.fleet-hero__stat {
    text-align: center;
}

.fleet-hero__stat-number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: 700;
    color: #fcd34d;
}

.fleet-hero__stat-label {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.fleet-hero__cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.fleet-hero__cta .btn--whatsapp {
    background: #25D366;
    color: white;
    padding: var(--space-4) var(--space-8);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.fleet-hero__cta .btn--whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.fleet-hero__cta .btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: var(--space-4) var(--space-8);
}

.fleet-hero__cta .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Fleet Benefits Section */
.fleet-benefits {
    padding: var(--space-20) 0;
    background: var(--color-gray-50);
}

.fleet-benefits__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    text-align: center;
    margin-bottom: var(--space-12);
}

.fleet-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.fleet-benefit {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.fleet-benefit__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.fleet-benefit__icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.fleet-benefit__title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.fleet-benefit__text {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* Fleet Industries Section */
.fleet-industries {
    padding: var(--space-20) 0;
}

.fleet-industries__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    text-align: center;
    margin-bottom: var(--space-3);
}

.fleet-industries__subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-12);
}

.fleet-industries__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.fleet-industry {
    text-align: center;
    padding: var(--space-6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.fleet-industry:hover {
    border-color: var(--color-primary);
    background: var(--color-gray-50);
}

.fleet-industry__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-4);
    color: var(--color-primary);
}

.fleet-industry__icon svg {
    width: 100%;
    height: 100%;
}

.fleet-industry__title {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.fleet-industry__text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* Fleet Pricing Section */
.fleet-pricing {
    padding: var(--space-20) 0;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, white 100%);
}

.fleet-pricing__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    text-align: center;
    margin-bottom: var(--space-3);
}

.fleet-pricing__subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-12);
}

.fleet-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 1000px;
    margin: 0 auto;
}

.fleet-pricing__card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    position: relative;
    transition: all 0.3s ease;
}

.fleet-pricing__card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.fleet-pricing__card--featured {
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.2);
    transform: scale(1.05);
}

.fleet-pricing__card--featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.fleet-pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.fleet-pricing__header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.fleet-pricing__name {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.fleet-pricing__vehicles {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.fleet-pricing__features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.fleet-pricing__features li {
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.fleet-pricing__features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
    flex-shrink: 0;
}

.fleet-pricing__btn {
    width: 100%;
    justify-content: center;
}

/* Fleet Process Section */
.fleet-process {
    padding: var(--space-20) 0;
}

.fleet-process__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    text-align: center;
    margin-bottom: var(--space-12);
}

.fleet-process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

.fleet-process__step {
    text-align: center;
    position: relative;
}

.fleet-process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -20%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
}

.fleet-process__number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    font-size: var(--text-2xl);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.fleet-process__step-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.fleet-process__step-text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Fleet Testimonial Section */
.fleet-testimonial {
    padding: var(--space-16) 0;
    background: var(--color-gray-50);
}

.fleet-testimonial__card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.fleet-testimonial__quote {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: var(--space-4);
}

.fleet-testimonial__text {
    font-size: var(--text-xl);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.fleet-testimonial__author {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.fleet-testimonial__author strong {
    font-size: var(--text-base);
}

.fleet-testimonial__author span {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* Fleet Areas Section */
.fleet-areas {
    padding: var(--space-20) 0;
}

.fleet-areas__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    text-align: center;
    margin-bottom: var(--space-3);
}

.fleet-areas__subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-12);
}

.fleet-areas__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-4);
}

.fleet-area {
    background: var(--color-gray-50);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fleet-area:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-4px);
}

.fleet-area__name {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.fleet-area__desc {
    font-size: var(--text-xs);
    opacity: 0.8;
}

.fleet-area:hover .fleet-area__desc {
    opacity: 1;
}

/* Fleet FAQ Section */
.fleet-faq {
    padding: var(--space-20) 0;
    background: var(--color-gray-50);
}

.fleet-faq__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    text-align: center;
    margin-bottom: var(--space-12);
}

.fleet-faq__grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.fleet-faq__item {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fleet-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) var(--space-6);
    background: none;
    border: none;
    font-size: var(--text-base);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fleet-faq__question:hover {
    background: var(--color-gray-50);
}

.fleet-faq__question svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.fleet-faq__item.active .fleet-faq__question svg {
    transform: rotate(180deg);
}

.fleet-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.fleet-faq__item.active .fleet-faq__answer {
    max-height: 200px;
}

.fleet-faq__answer p {
    padding: 0 var(--space-6) var(--space-5);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Fleet CTA Section */
.fleet-cta {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #082f49 0%, #0c4a6e 50%, #0369a1 100%);
    color: white;
}

.fleet-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.fleet-cta__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.fleet-cta__text {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

.fleet-cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.fleet-cta__buttons .btn--whatsapp {
    background: #25D366;
    color: white;
}

.fleet-cta__buttons .btn--whatsapp:hover {
    background: #128C7E;
}

.fleet-cta__buttons .btn--primary {
    background: white;
    color: var(--color-primary-dark);
}

.fleet-cta__buttons .btn--primary:hover {
    background: var(--color-gray-100);
}

.fleet-cta__buttons .btn--lg {
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-base);
}

.fleet-cta__contact {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.fleet-cta__contact a {
    color: #fcd34d;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .fleet-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-industries__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .fleet-pricing__card--featured {
        transform: none;
        order: -1;
    }

    .fleet-pricing__card--featured:hover {
        transform: translateY(-4px);
    }

    .fleet-areas__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .fleet-hero {
        padding: var(--space-16) 0 var(--space-12);
    }

    .fleet-hero__stats {
        justify-content: center;
    }

    .fleet-hero__cta {
        flex-direction: column;
    }

    .fleet-hero__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .fleet-benefits__grid,
    .fleet-industries__grid {
        grid-template-columns: 1fr;
    }

    .fleet-process__steps {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .fleet-process__step:not(:last-child)::after {
        display: none;
    }

    .fleet-areas__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-cta__buttons {
        flex-direction: column;
    }

    .fleet-cta__buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .fleet-areas__grid {
        grid-template-columns: 1fr;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] .fleet-hero__cta {
    flex-direction: row-reverse;
}

[dir="rtl"] .fleet-faq__question {
    text-align: right;
}

[dir="rtl"] .fleet-faq__question svg {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .fleet-process__step:not(:last-child)::after {
    right: auto;
    left: -20%;
    background: linear-gradient(-90deg, var(--color-primary), transparent);
}

[dir="rtl"] .fleet-pricing__features li {
    flex-direction: row-reverse;
}
