/* Horizontal Fleet Card Design - Professional & Precise */
.fleet-section {
    padding: 60px 0;
    background-color: #fcfdfe;
    font-family: 'Inter', sans-serif;
}

.fleet-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.fleet-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
}

.fleet-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Horizontal Card */
.fleet-horizontal-card {
    background: #fff;
    border: 1px solid #e0e5eb;
    border-radius: 4px; /* Image has sharp-ish corners */
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 30px;
    transition: box-shadow 0.3s ease;
}

.fleet-horizontal-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Left: Image */
.fleet-card-left {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
}

.fleet-card-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Middle: Details Grid */
.fleet-card-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-card-middle h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    margin-bottom: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.detail-row label {
    font-weight: 500;
}

.detail-row span {
    font-weight: 700;
    color: #28a745; /* Green as in image */
}

/* Special labels for non-green highlights if needed */
.detail-row span.dark {
    color: #333;
}

.cancellation-note {
    font-size: 13px;
    color: #28a745;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Right: Pricing & CTA */
.fleet-card-right {
    flex: 0 0 250px;
    text-align: right;
    border-left: 1px solid #f0f0f0;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-size: 28px;
    font-weight: 900;
    color: #28a745;
}

.discount-badge {
    background: #28a745;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 2px;
}

.btn-book-now {
    display: block;
    background: #e3342f; /* Red as in image */
    color: #fff;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.btn-book-now:hover {
    opacity: 0.9;
}

.terms-link {
    font-size: 13px;
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .fleet-horizontal-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
    }
    
    .fleet-card-right {
        border-left: none;
        padding-left: 0;
        width: 100%;
        text-align: left;
        border-top: 1px solid #f0f0f0;
        padding-top: 20px;
    }

    .price-area {
        justify-content: flex-start;
    }
}
