/* === Fleet Details Page CSS === */
.fleet-details-area {
    padding: 120px 0;
    background-color: #ffffff;
}
.fleet-details-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}
.fleet-details-content {
    flex: 2;
    min-width: 60%;
}
.fleet-details-sidebar {
    flex-basis: 340px;
    flex-grow: 1;
}
.fleet-details-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--thm-primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--thm-base);
    padding-bottom: 10px;
}
.fleet-details-content .description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.fleet-details-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--thm-primary);
    margin-top: 40px;
    margin-bottom: 20px;
}
.fleet-specs-table {
    width: 100%;
    margin-bottom: 40px;
    border-collapse: collapse;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    overflow: hidden;
}
.fleet-specs-table th,
.fleet-specs-table td {
    padding: 15px 20px;
    border: 1px solid #e9ecef;
    text-align: left;
    font-size: 16px;
}
.fleet-specs-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    width: 35%;
    color: var(--thm-primary);
}
.fleet-equipment-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}
.fleet-equipment-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 17px;
}
.fleet-equipment-list li::before {
    content: "\e919"; /* Icon-checked from icomoon */
    font-family: 'icomoon' !important;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--thm-base);
    font-size: 18px;
}
.fleet-image-gallery h3 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--thm-primary);
    margin-bottom: 20px;
}
.fleet-image-gallery .img-wrapper {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.fleet-image-gallery img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}
.fleet-image-gallery a:hover img {
    transform: scale(1.05);
}
/* RTL Styles */
[dir="rtl"] .fleet-specs-table th,
[dir="rtl"] .fleet-specs-table td {
    text-align: right;
}
[dir="rtl"] .fleet-equipment-list li {
    padding-left: 0;
    padding-right: 30px;
}
[dir="rtl"] .fleet-equipment-list li::before {
    left: auto;
    right: 0;
}
