/* Fleet Catalog Section */
#fleet-catalog-section {
    background: #fff;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.fleet-catalog-wrapper {
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
}

/* Filter Buttons - Now using all-tours styles */

/* Full Fleet Card */
.full-fleet-card {
    max-width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.full-fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

.full-fleet-card-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.full-fleet-card-img-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

.full-fleet-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.full-fleet-card-img-link:hover img {
    transform: scale(1.05);
}

.full-fleet-card-body {
    min-height: 200px;
}

.full-fleet-card-title {
    font-family: 'Amiri Quran', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #004477;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.full-fleet-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
}

.full-fleet-card-desc a {
    color: #FA8DBE !important;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
}

.full-fleet-card-desc a:hover {
    color: #FA8DBE !important;
    text-decoration: underline;
}

.btn-learn-more {
    background-color: transparent;
    color: #4CB1BF;
    border: 1px solid #4CB1BF;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    width: auto;
    max-width: 50%;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-learn-more:hover,
.btn-learn-more:focus {
    background-color: #4CB1BF;
    color: #fff;
    border-color: #4CB1BF;
}

/* Responsive styles for mobile */
@media (max-width: 767.98px) {
    #fleet-catalog-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .fleet-catalog-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .full-fleet-card-img-wrapper {
        height: 250px;
    }

    .full-fleet-card-body {
        min-height: auto;
        padding: 1.5rem !important;
    }

    .full-fleet-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .full-fleet-card-desc {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .btn-learn-more {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }
}

