/* ============================================
   FLEET PAGE - RED, WHITE & BLACK THEME
   Theme: Red (#D32F2F) | Black (#1A1A1A) | White (#FFFFFF)
   ============================================ */

/* ===== HERO SECTION ===== */
.fleet-hero {
    background: #1A1A1A;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    border-bottom: 4px solid #D32F2F;
}

.fleet-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.fleet-hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #D32F2F;
    margin: 25px auto 0;
    border-radius: 2px;
}

.fleet-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #CCCCCC;
    line-height: 1.6;
}

/* ===== INTRO SECTION ===== */
.fleet-intro {
    padding: 70px 20px;
    background: #F8F8F8;
    border-bottom: 1px solid #EEEEEE;
}

.fleet-intro h2 {
    text-align: center;
    color: #1A1A1A;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 700;
}

.fleet-intro h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #D32F2F;
    margin: 15px auto 0;
    border-radius: 2px;
}

.fleet-intro p {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    color: #555555;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ===== FLEET GRID SECTION ===== */
.fleet-grid-section {
    padding: 60px 0;
    background: #F8F9FA;
}

/* Fleet Card */
.fleet-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #EEEEEE;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.1);
    border-color: #D32F2F;
}

@media (min-width: 768px) {
    .fleet-card {
        flex-wrap: nowrap;
    }
    .fleet-card-gallery {
        width: 40%;
    }
    .fleet-card-details {
        width: 60%;
    }
}

/* Fleet Card Header */
.fleet-card-header {
    position: absolute;
    background: rgba(0, 0, 0, 0.75);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 0 20px 20px 0;
    z-index: 2;
    margin: 15px 0 0 0;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.fleet-card-header h2 {
    margin: 0;
    font-size: 1.3rem;
    color: #FFFFFF;
}

/* Badge - RED THEME */
.badge {
    background: #D32F2F;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #FFFFFF;
}

/* Gallery */
.fleet-card-gallery {
    background: #1A1A2E;
    padding: 20px;
}

.gallery-main img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.gallery-thumbs img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, border 0.3s;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.thumb-active {
    opacity: 1;
    border: 2px solid #D32F2F;
}

/* Card Details */
.fleet-card-details {
    padding: 25px;
}

.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.spec {
    background: #F0F0F0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #1A1A1A;
}

.description {
    color: #555555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.suitability {
    background: #F0F0F0;
    padding: 12px;
    border-radius: 12px;
    margin: 15px 0;
    font-size: 0.9rem;
    border-left: 3px solid #D32F2F;
}

/* Button Small - RED THEME */
.btn-book-small {
    display: inline-block;
    background: #D32F2F;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #D32F2F;
}

.btn-book-small:hover {
    background: transparent;
    color: #D32F2F;
    transform: translateX(5px);
}

/* ===== LUGGAGE SECTION ===== */
.luggage-section {
    padding: 70px 20px;
    background: #F8F8F8;
    text-align: center;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
}

.luggage-section h2 {
    color: #1A1A1A;
    font-size: 2rem;
    margin-bottom: 45px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.luggage-section h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #D32F2F;
    margin: 15px auto 0;
    border-radius: 2px;
}

.luggage-grid {
    max-width: 700px;
    margin: 0 auto;
}

.luggage-item {
    margin-bottom: 25px;
    text-align: left;
}

.vehicle-type {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1A1A1A;
    font-size: 1rem;
}

.luggage-bars {
    background: #E0E0E0;
    border-radius: 30px;
    overflow: hidden;
    height: 40px;
}

.bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #D32F2F;
    color: #FFFFFF;
    padding: 0 15px;
    border-radius: 30px;
    height: 100%;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== SEO KEYWORDS SECTION ===== */
.seo-keywords-section {
    padding: 40px 20px;
    background: #FFFFFF;
    text-align: center;
}

.keywords-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.keyword-item {
    background: #F8F8F8;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #D32F2F;
    font-weight: 600;
    border: 1px solid #EEEEEE;
    transition: all 0.3s ease;
}

.keyword-item:hover {
    background: #D32F2F;
    color: #FFFFFF;
    border-color: #D32F2F;
    transform: translateY(-2px);
}

/* ===== CTA SECTION ===== */
.fleet-cta {
    text-align: center;
    padding: 80px 20px;
    background: #1A1A1A;
    position: relative;
}

.fleet-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #D32F2F;
}

.fleet-cta h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.fleet-cta p {
    color: #CCCCCC;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Main CTA Button - RED THEME */
.btn-book {
    display: inline-block;
    padding: 16px 42px;
    background: #D32F2F;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #D32F2F;
    font-size: 1rem;
}

.btn-book:hover {
    background: transparent;
    color: #D32F2F;
    transform: scale(1.05);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .fleet-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .fleet-hero {
        padding: 50px 20px;
    }
    
    .fleet-hero h1 {
        font-size: 1.8rem;
    }
    
    .fleet-hero p {
        font-size: 1rem;
    }
    
    .fleet-intro {
        padding: 50px 20px;
    }
    
    .fleet-intro h2 {
        font-size: 1.6rem;
    }
    
    .fleet-intro p {
        font-size: 1rem;
    }
    
    .fleet-grid-section {
        padding: 40px 0;
    }
    
    .fleet-card {
        flex-direction: column;
    }
    
    .fleet-card-gallery {
        width: 100%;
    }
    
    .fleet-card-details {
        width: 100%;
        padding: 20px;
    }
    
    .gallery-main img {
        height: 180px;
    }
    
    .gallery-thumbs img {
        width: 55px;
        height: 40px;
    }
    
    .luggage-section {
        padding: 50px 20px;
    }
    
    .luggage-section h2 {
        font-size: 1.6rem;
    }
    
    .fleet-cta {
        padding: 60px 20px;
    }
    
    .fleet-cta h2 {
        font-size: 1.8rem;
    }
    
    .fleet-cta p {
        font-size: 1rem;
    }
    
    .btn-book {
        padding: 14px 35px;
        font-size: 0.9rem;
    }
    
    .keywords-grid {
        gap: 10px;
    }
    
    .keyword-item {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-thumbs img {
        width: 45px;
        height: 35px;
    }
    
    .specs {
        gap: 8px;
    }
    
    .spec {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .luggage-bars {
        height: 35px;
    }
    
    .bar {
        font-size: 0.7rem;
        padding: 0 10px;
    }
}


/* ===== FAQ SECTION ===== */
.fleet-faq-section {
    padding: 80px 20px;
    background: #FFFFFF;
}

.fleet-faq-section h2 {
    text-align: center;
    color: #1A1A1A;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
}

.fleet-faq-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #D32F2F;
    margin: 20px auto 0;
    border-radius: 2px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: #D32F2F;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.08);
}

.faq-item.active {
    border-color: #D32F2F;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1A1A1A;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #D32F2F;
}

.faq-question i {
    color: #D32F2F;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    background: #FFFFFF;
    border-top: 0px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 300px;
    border-top: 1px solid #F0F0F0;
}

.faq-answer p {
    color: #555555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .fleet-faq-section {
        padding: 50px 20px;
    }
    
    .fleet-faq-section h2 {
        font-size: 1.6rem;
        margin-bottom: 35px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 16px 16px;
    }
}