/* Transportation Page Specific Styles */

.transport-page {
    background: var(--bg-deep);
}

.transport-section {
    padding: 60px 0;
    position: relative;
    background: var(--bg-deep);
}

.transport-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.transport-intro p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Vehicle Card Slider Styles */
.vehicleSlider {
    width: 100%;
    height: 100%;
}

.vehicleSlider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-pagination {
    bottom: 10px !important;
}

.vehicle-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.vehicle-pagination .swiper-pagination-bullet-active {
    background: var(--accent-primary);
    width: 20px;
    border-radius: 4px;
}

.vehicle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2B37C9; /* Primary Brand Blue */
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Vehicle Cards Grid */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vehicle-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vehicle-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.vehicle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vehicle-card:hover .vehicle-image-wrapper img {
    transform: scale(1.1);
}


.vehicle-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-body);
}

.vehicle-title {
    font-family: var(--font-primary);
    font-size: 1.3rem; /* Reduced from 2rem */
    color: var(--bg-footer);
    margin-bottom: 15px;
}

.vehicle-desc {
    color: var(--bg-footer);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem; /* Explicitly set and slightly reduced */
    opacity: 0.8;
}

.vehicle-features {
    list-style: none;
    margin-top: auto;
}

.vehicle-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--bg-footer);
    font-size: 0.88rem; /* Reduced from 0.95rem */
    opacity: 0.8;
}

.vehicle-features i {
    color: #2B37C9;
    font-size: 1rem;
}

/* Page Hero Styles (matching other pages) */
.page-hero {
    position: relative;
    height: 100vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 31, 78, 0.4), rgba(13, 31, 78, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 992px) {
    .transport-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .vehicle-title {
        font-size: 1.3rem;
    }
    
    .vehicle-content {
        padding: 30px;
    }
}
