﻿/* Vehicles Page Styles */
.vehicles-page .vehicles-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.vehicles-page .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: particles-float 20s infinite linear;
}

@keyframes particles-float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

.vehicles-page .vehicles-hero-content {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    align-items: normal !important;
    min-height: auto !important;
}

    .vehicles-page .vehicles-hero-content h1 {
        font-size: 3rem;
        margin-bottom: 25px;
        font-weight: 700;
        animation: fade-in-up 1s ease-out;
    }

    .vehicles-page .vehicles-hero-content p {
        font-size: 1.3rem;
        opacity: 0.95;
        line-height: 1.6;
        margin-bottom: 40px;
        animation: fade-in-up 1s ease-out 0.2s both;
    }

.vehicles-page .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fade-in-up 1s ease-out 0.4s both;
}

.vehicles-page .stat-item {
    text-align: center;
}

    .vehicles-page .stat-item .number {
        display: block;
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
        background: linear-gradient(45deg, #ffffff, #f0f8ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .vehicles-page .stat-item .label {
        font-size: 1rem;
        opacity: 0.9;
    }

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Vehicle Gallery */
.vehicles-page .vehicle-gallery {
    padding: 100px 0;
    background: var(--bg-primary);
}

.vehicles-page .section-header {
    text-align: center;
    margin-bottom: 80px;
}

    .vehicles-page .section-header h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: var(--text-primary);
        font-weight: 700;
    }

    .vehicles-page .section-header p {
        font-size: 1.2rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
    }

.vehicles-page .vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.vehicles-page .vehicle-card {
    background: var(--bg-secondary);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 3px solid var(--primary-color);
    position: relative;
}

    .vehicles-page .vehicle-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    }

.vehicles-page .vehicle-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

    .vehicles-page .vehicle-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.vehicles-page .vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicles-page .vehicle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( 135deg, rgba(0,0,0,0.8) 0%, rgba(41, 61, 129, 0.7) 100% );
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.vehicles-page .vehicle-card:hover .vehicle-overlay {
    opacity: 1;
}

.vehicles-page .vehicle-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.vehicles-page .vehicle-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.vehicles-page .vehicle-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.vehicles-page .feature-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

    .vehicles-page .feature-badge.premium {
        background: linear-gradient(45deg, #FFD700, #FFA500);
        color: #000;
    }

    .vehicles-page .feature-badge.safe {
        background: linear-gradient(45deg, #32CD32, #228B22);
        color: white;
    }

    .vehicles-page .feature-badge.group {
        background: linear-gradient(45deg, #4169E1, #0000CD);
        color: white;
    }

.vehicles-page .vehicle-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.vehicles-page .vehicle-details {
    padding: 30px;
}

    .vehicles-page .vehicle-details h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--text-primary);
        font-weight: 600;
    }

    .vehicles-page .vehicle-details p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 25px;
    }

.vehicles-page .tech-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.vehicles-page .spec {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-primary);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

    .vehicles-page .spec .icon {
        font-size: 1.2rem;
    }

    .vehicles-page .spec span {
        color: var(--text-secondary);
        font-size: 0.9rem;
        font-weight: 500;
    }

/* Fleet Features */
.vehicles-page .fleet-features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.vehicles-page .features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.vehicles-page .feature-item {
    text-align: center;
    padding: 40px;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid var(--primary-color);
}

    .vehicles-page .feature-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

.vehicles-page .feature-icon {
    margin-bottom: 25px;
}

.vehicles-page .icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.vehicles-page .feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.vehicles-page .feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Vehicle Contact */
.vehicles-page .vehicle-contact {
    padding: 100px 0;
    background: var(--bg-primary);
    text-align: center;
    border-top: 3px solid var(--primary-color);
}

.vehicles-page .contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.vehicles-page .contact-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vehicles-page .contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .vehicles-page .vehicles-hero-content h1 {
        font-size: 2.5rem;
    }

    .vehicles-page .hero-stats {
        gap: 40px;
    }

    .vehicles-page .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .vehicles-page .features-showcase {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .vehicles-page .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .vehicles-page .tech-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .vehicles-page .vehicles-hero-content h1 {
        font-size: 2rem;
    }

    .vehicles-page .section-header h2 {
        font-size: 2.2rem;
    }

    .vehicles-page .contact-content h2 {
        font-size: 2rem;
    }

    .vehicles-page .vehicle-card {
        margin: 0 10px;
    }
}

@keyframes ripple-effect {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}
