:root {
    --fleet-teal: #00a19c;
    --fleet-dark: #071c27;
    --fleet-muted: #61707d;
}

.fleet-page {
    min-height: 70vh;
    background: linear-gradient(180deg, #f1f7f7 0, #fff 620px);
    color: #14202e;
}

.fleet-hero { padding: 38px 0 30px; text-align: center; }
.fleet-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    margin-bottom: 30px;
    color: #6c7883;
    font-size: .92rem;
    text-align: start;
}
.fleet-breadcrumb a { color: #087d79; font-weight: 750; text-decoration: none; }
.fleet-breadcrumb i { font-size: .65rem; opacity: .68; }
.fleet-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: #008d88;
    font-size: .83rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.fleet-hero h1 { margin: 0 0 15px; font-size: clamp(2rem, 4.2vw, 3.65rem); font-weight: 850; line-height: 1.08; }
.fleet-hero p { max-width: 930px; margin: 0 auto; color: var(--fleet-muted); font-size: 1.04rem; line-height: 1.75; }

.fleet-listing { padding: 18px 0 76px; }
.fleet-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.fleet-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #d9e5e6;
    border-radius: 4px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 14px 38px rgba(10, 44, 54, .10);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.fleet-card:hover,
.fleet-card:focus-visible {
    color: inherit;
    transform: translateY(-6px);
    border-color: #8fd6d3;
    box-shadow: 0 22px 48px rgba(0, 125, 121, .18);
}
.fleet-card__media {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 18px 22px 8px;
    background: radial-gradient(circle at 50% 35%, #fff 0, #eef3f3 62%, #dfe8e8 100%);
}
.fleet-card__media::after {
    content: "";
    position: absolute;
    inset: 38% 0 0;
    background: linear-gradient(180deg, transparent 0, rgba(6, 24, 34, .82) 100%);
    pointer-events: none;
}
.fleet-card__media img { width: 100%; height: 300px; object-fit: contain; transition: transform .34s ease; }
.fleet-card:hover .fleet-card__media img { transform: scale(1.035); }
.fleet-card__overlay {
    position: absolute;
    z-index: 2;
    inset-inline: 34px;
    bottom: 26px;
    color: #fff;
    text-align: start;
}
.fleet-card__overlay span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 3px;
    background: rgba(8, 28, 38, .35);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.fleet-card__overlay h2 { margin: 0; font-size: clamp(1.35rem, 2.35vw, 2rem); font-weight: 850; }
.fleet-card__description { flex: 1; padding: 19px 26px 6px; color: #586672; line-height: 1.65; }
.fleet-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 26px 21px;
}
.fleet-card__capacity { display: flex; align-items: center; gap: 18px; }
.fleet-card__capacity span { display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 8px; color: #506476; }
.fleet-card__capacity i { grid-row: 1 / 3; font-size: 1.25rem; color: #61788b; }
.fleet-card__capacity strong { font-size: 1rem; color: #213241; }
.fleet-card__capacity small { font-size: .68rem; color: #7b8893; }
.fleet-card__action { display: inline-flex; align-items: center; gap: 8px; color: #008d88; font-size: .82rem; font-weight: 800; text-align: end; }
.fleet-card__action i { transition: transform .2s ease; }
.fleet-card:hover .fleet-card__action i { transform: translateX(4px); }
[dir="rtl"] .fleet-card__action i { transform: rotate(180deg); }

@media (max-width: 767px) {
    .fleet-hero { padding: 24px 0 20px; }
    .fleet-breadcrumb { margin-bottom: 22px; }
    .fleet-grid { grid-template-columns: 1fr; gap: 22px; }
    .fleet-listing { padding-bottom: 48px; }
    .fleet-card__media { min-height: 285px; padding-inline: 10px; }
    .fleet-card__media img { height: 260px; }
    .fleet-card__overlay { inset-inline: 20px; bottom: 20px; }
    .fleet-card__description { padding: 16px 18px 4px; }
    .fleet-card__footer { padding: 15px 18px 19px; }
}

@media (max-width: 420px) {
    .fleet-card__footer { align-items: flex-end; }
    .fleet-card__capacity { gap: 12px; }
    .fleet-card__action { max-width: 115px; }
}
