/* ===== Fleet Section with Parallax Background ===== */
.fleet-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.fleet-parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.15; /* Adjust opacity as needed */
}

.fleet-content-wrapper {
    position: relative;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 4rem 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    display: inline-block;
    color: #007bff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #007bff;
    margin: 0.5rem auto 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.section-description {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.fleet-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Fleet Card Components */
.fleet-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.fleet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image {
    transform: scale(1.05);
}

.fleet-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #007bff;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fleet-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.fleet-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.fleet-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spec-item i {
    color: #007bff;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.spec-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
}

.fleet-features {
    margin-bottom: 1.5rem;
}

.fleet-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleet-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #495057;
}

.fleet-features i {
    color: #007bff;
    font-size: 0.8rem;
    margin-right: 0.7rem;
    margin-top: 0.2rem;
}

.fleet-cta {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    color: #007bff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.fleet-cta i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.fleet-cta:hover {
    color: #0056b3;
}

.fleet-cta:hover i {
    transform: translateX(3px);
}

/* Fleet Footer */
.fleet-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.fleet-footer p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0062cc 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover i {
    transform: translateX(3px);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .fleet-section {
        padding: 5rem 0;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .fleet-section {
        padding: 4rem 0;
    }
    
    .fleet-parallax-bg {
        background-attachment: scroll;
    }
    
    .fleet-content-wrapper {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .fleet-image-container {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .fleet-content {
        padding: 1.5rem;
    }
    
    .fleet-specs {
        grid-template-columns: 1fr;
    }
}