/* Featured Fleet Section Styles */
.featured-fleet-section {
    background: #F8F9FA;
    padding: 80px 0;
    position: relative;
}

.featured-fleet-content {
    margin: 0 auto;
}

.featured-fleet-header {
    margin-bottom: 50px;
    text-align: left;
}

.featured-fleet-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #046A53;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media screen and (min-width: 680px) {
    .fleet-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 1150px) {
    .fleet-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}


.fleet-card {
    transition: all 0.3s ease;
    position: relative;
}


.fleet-badge {
    position: absolute;
    top: 7px;
    left: 7px;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
    line-height: 1;
}

.badge-popular {
    background: #057B61;
    color: #FFFFFF;
}

.badge-vip {
    background: #D4AF37;
    color: #1A1A1A;
}

.badge-value {
    background: #01E1AE;
    color: #000000;
}

.badge-new {
    background: #3A6F77;
    color: #FFFFFF;
}

.fleet-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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


.fleet-info {
    padding: 15px 0;
}

.fleet-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin: 0 0 15px 0;
    font-family: 'Raleway', sans-serif;
}

.fleet-specs {
    display: flex;
    justify-content: start;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 1rem;
}

.spec-item {
    font-size: 0.9rem;
    color: #046A53;
}

.spec-item svg {
    color: #046A53;
    flex-shrink: 0;
}

.spec-item span {
    font-weight: 600;
    color: #333333;
}

.spec-item small {
    font-size: 0.8rem;
    color: #666666;
    text-transform: capitalize;
}

.spec-item .text-capa {
    font-size: 10px;
}

.fleet-description {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.4;
    margin: 10px 0 15px 0;
    text-align: left;
}

.fleet-btn {
    display: block;
    width: 220px;
    text-align: center;
    line-height: 1.5;
    background: #084E3F;
    color: #FFFFFF;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    box-shadow: 0px 0px 2.5px 1px #046A53;

    border-image-source: conic-gradient(from 36.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);

}

.fleet-btn:visited {
    color: #FFFFFF;
}

.fleet-btn:hover,
.fleet-btn:hover:visited {
    color: #FFFFFF;
    background: #035A4A;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(4, 106, 83, 0.3);
}

.fleet-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .featured-fleet-section {
        padding: 60px 0;
    }

    .fleet-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .featured-fleet-section {
        padding: 50px 0;
    }

    .featured-fleet-title {
        font-size: 2rem;
        text-align: center;
    }

    .featured-fleet-header {
        margin-bottom: 30px;
        text-align: center;
    }

    .fleet-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .fleet-image {
        height: 180px;
    }

    .fleet-info {
        padding: 15px 0;
    }

    .fleet-specs {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .featured-fleet-section {
        padding: 40px 0;
    }

    .featured-fleet-title {
        font-size: 1.75rem;
    }

    .fleet-badge {
        top: 10px;
        left: 10px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .fleet-image {
        height: 160px;
    }

    .fleet-name {
        font-size: 1.1rem;
    }

    .fleet-specs {
        gap: 12px;
    }

    .fleet-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* Animation for cards appearing */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fleet-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fleet-card:nth-child(1) {
    animation-delay: 0.1s;
}

.fleet-card:nth-child(2) {
    animation-delay: 0.2s;
}

.fleet-card:nth-child(3) {
    animation-delay: 0.3s;
}

.fleet-card:nth-child(4) {
    animation-delay: 0.4s;
}