/* Website index styles */
.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 58, 138, 0.9)),
                url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, white, transparent);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vehicle-feature-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 320px;
    transition: all 0.4s ease;
}

.vehicle-feature-card:hover {
    transform: scale(1.03);
}

.vehicle-feature-card .vehicle-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vehicle-feature-card .vehicle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    padding: 2rem;
    color: white;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--volcimet-secondary), var(--volcimet-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.cta-section {
    background: linear-gradient(135deg, var(--volcimet-primary), var(--volcimet-dark));
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        margin-top: 2rem;
    }
}
