/* Vehicles Section */
.vehicles-section {
    /* padding: 80px 0; */
    /* background: #f8f9fc; */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: #555;
    font-size: 16px;
    max-width: 600px;
    margin: auto;
}

/* Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Vehicle Card */
.vehicle-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover Animation */
.vehicle-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(13,34,74,0.25);
}

/* Top Accent Line */
.vehicle-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #0d224a, #f4ba18);
}

/* Icon */
.vehicle-icon {
    width: 90px;
    height: 90px;
    background: rgba(13,34,74,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.vehicle-card:hover .vehicle-icon {
    background: #0d224a;
}

.vehicle-icon i {
    font-size: 36px;
    color: #0d224a;
    transition: color 0.4s ease;
}

.vehicle-card:hover .vehicle-icon i {
    color: #f4ba18;
}

/* Titles */
.vehicle-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* List */
.vehicle-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.vehicle-card ul li {
    font-size: 15px;
    color: #333;
    padding: 6px 0;
    position: relative;
}

.vehicle-card ul li::before {
    content: "✔";
    color: #f4ba18;
    margin-right: 8px;
}

/* Capacity */
.capacity {
    font-size: 15px;
    color: #0d224a;
    background: rgba(244,186,24,0.15);
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
}


