/* =====================================================
   AIRPORT DETROIT CAR SERVICE - HOME PAGE STYLES
   Premium Luxury Theme
===================================================== */

/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}c

    

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 80px 6%;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

h2,h3{
    color: #0d47a1;
}

p {
    color: #918e8e;
}

a {
    text-decoration: none;
}

/* =====================================================
   MODERN HERO SECTION
===================================================== */

.hero-banner.modern-hero {
    background: url('/images/Chauffeur.webp') center/cover no-repeat;
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6%;
    color: #fff;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.911),
        rgba(0, 0, 0, 0.822)
    );
    z-index: 1;
}

.hero-main-content {
    position: relative;
    z-index: 2;
    max-width: 1650px;
    margin-bottom: 50px;
}

.hero-main-content h1 {
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-main-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 25px;
}

/* Hero Buttons */

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-cta-button {
    background: #ffffff;
    color: #000000;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-cta-button:hover {
    background:transparent;
    border: 1px solid #fff;

    color: #fff;
}

.secondary-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.secondary-btn:hover {
    background: #fff;
    color: #000;
}

/* =====================================================
   HORIZONTAL BOOKING BAR
===================================================== */

.booking-bar-wrapper {
    position: relative;
    z-index: 3;
}

.booking-bar {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    padding: 25px;
    display: flex;
    align-items: flex-end;
    gap: 25px;
    flex-wrap: wrap;
}

/* Each Field */

.booking-field {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 180px;
    position: relative;
}

.booking-field label {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-field input {
    border: none;
    border-bottom: 2px solid #eee;
    padding: 8px 0;
    font-size: 15px;
    outline: none;
    background: transparent;
    transition: 0.3s;
}

.booking-field input:focus {
    border-color: #ff6b00;
}

/* Smaller fields (date, time, passengers) */

.small-field {
    flex: 0.6;
    min-width: 140px;
}

/* =====================================================
   PASSENGER CONTROL
===================================================== */

.passenger-input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.passenger-input-group button {
    background: #000;
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.passenger-count {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

/* =====================================================
   SUBMIT BUTTON
===================================================== */

.booking-submit-wrapper {
    display: flex;
    align-items: flex-end;
}

.booking-submit-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s ease;
}

.booking-submit-btn:hover {
    background: #000;
}

/* =====================================================
   AUTOCOMPLETE DROPDOWN
===================================================== */

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: #fff;
    border: 1px solid #eee;
    border-top: none;

    max-height: 220px;
    overflow-y: auto;

    border-radius: 0 0 6px 6px;
    z-index: 9999;
}

.autocomplete-suggestions li {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f2f2f2;
    transition: background 0.2s ease;
}

.autocomplete-suggestions li:last-child {
    border-bottom: none;
}

.autocomplete-suggestions li:hover {
    background: #f5f5f5;
}

/* Scrollbar */
.autocomplete-suggestions::-webkit-scrollbar {
    width: 6px;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}



/* ===============================
   SERVICE HIGHLIGHT SECTION
================================= */

.service-highlight {
    background: #f3f4f6;
    padding: 80px 8%;
}

.service-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1550px;
    margin: 0 auto;
}

/* LEFT SIDE */

.service-left {
    flex: 1;
}

.service-left h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
}

/* RIGHT SIDE */

.service-right {
    flex: 2;
    display: flex;
    gap: 60px;
}

.service-box {
    flex: 1;
}

.service-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 992px) {
    .service-container {
        flex-direction: column;
        gap: 40px;
    }

    .service-right {
        flex-direction: column;
        gap: 30px;
    }

    .service-left h2 {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    .service-highlight {
        padding: 60px 20px;
    }

    .service-left h2 {
        font-size: 30px;
    }
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 1100px) {
    .booking-bar {
        gap: 20px;
    }

    .small-field {
        flex: 1;
    }
}

@media (max-width: 900px) {

    .hero-main-content h1 {
        font-size: 28px;
    }

    .hero-main-content p {
        font-size: 16px;
    }

    .booking-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-submit-wrapper {
        width: 100%;
    }

    .booking-submit-btn {
        width: 100%;
        border-radius: 8px;
    }
}

@media (max-width: 600px) {

    .hero-banner.modern-hero {
        padding: 40px 20px;
    }

   
    .hero-buttons {
        flex-direction: column;
    }

    .hero-cta-button {
        width: 100%;
        text-align: center;
    }

    .booking-bar {
        padding: 20px;
    }
}


.autocomplete-suggestions li {
    padding: 10px;
    cursor: pointer;
}

.autocomplete-suggestions li:hover {
    background: #222;
}

/* ================= SECTION HEADERS ================= */

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

.section-tag {
    color: #0d47a1;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
}

/* ================= FLEET ================= */

.fleet-section img {
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}


/* ================= MISSION SECTION ================= */

.mission-section {
    padding: 80px 6%;
    background-color: #f9f9f9;
    overflow: hidden;
}

.mission-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Left Content */
.mission-content {
    flex: 1;
    text-align: left;
}

.mission-tag {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-content h2 {
    font-size: 36px; /* Matching your header style */
    color: #000; /* Matching your brand blue */
    line-height: 1.2;
    margin-bottom: 20px;
}

.mission-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280; /* Consistent with other sections */
    margin-bottom: 30px;
}

.mission-learn-more {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #333;
    border-radius: 30px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mission-learn-more:hover {
    background: #333;
    color: #fff;
}

/* Right Visuals (Responsive Image Collage) */
.mission-visuals {
    flex: 1.2;
    position: relative;
    width: 100%;
    min-height: 480px; /* Essential for absolute children */
    display: flex;
    align-items: center;
}

.main-image-wrapper {
    width: 75%;
    margin-left: auto;
    border: 2px solid ;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    aspect-ratio: 4 / 5;
}

.main-mission-img {
    width: 90%;
    height: 80%;
    object-fit: cover;
    border-radius: 23px;
}

/* Floating Cards */
.floating-card {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: absolute;
    z-index: 2;
    transition: transform 0.4s ease;
}

.floating-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.floating-card p {
    font-size: 11px;
    line-height: 1.4;
    color: #777;
    margin: 0;
}

/* Medium Card (Top Left) */
.top-card {
    width: 60%;
    bottom: 20px;
    left: 10%;
    z-index: 3;
    
}

.top-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Small Detailed Card (Bottom Center) */
.bottom-card {
    width: 45%;
    top: 0;
    left: 0;
}

.bottom-card .card-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bottom-card img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
}

/* ================= RESPONSIVE FIXES ================= */

@media (max-width: 1024px) {
    .mission-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .mission-content {
        order: 1;
    }

    .mission-visuals {
        order: 2;
        max-width: 500px;
        min-height: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .mission-visuals {
        min-height: 350px;
    }

    .main-image-wrapper {
        width: 85%;
    }

    .top-card {
        width: 55%;
    }

    .bottom-card {
        width: 80%;
        left: 0;
        bottom: 0;
    }

    .mission-content h2 {
        font-size: 28px;
    }
}


/* ================= SERVICES ACCORDION ================= */

.services-accordion-section {
    padding: 80px 8%;
    background-color: #eeeeee; /* Light gray from screenshot */
}

.services-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #ccc;
    padding-bottom: 25px;
    margin-bottom: 0;
}

.mini-tag {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-subtext {
    max-width: 450px;
    font-size: 16px;
    color: #333;
    text-align: right;
    line-height: 1.4;
    margin: 0;
}

.acc-item {
    border-bottom: 1px solid #ccc;
    overflow: hidden;
}

.acc-trigger {
    display: flex;
    align-items: center;
    padding: 40px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.acc-id {
    font-size: 20px;
    color: #aaa;
    width: 80px;
    font-weight: 500;
}

.acc-title {
    flex: 1;
    font-size: 32px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 500;
    margin: 0;
}

.acc-status-icon {
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

/* Panel Animation Logic */
.acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure this value is large enough for Desktop content */
.acc-item.active .acc-panel {
    max-height: 2000px; 
}

.acc-item.active .acc-status-icon {
    background-color: #d32f2f; /* Red close button */
}

/* Content Layout */
.panel-content {
    padding: 20px 0 80px 0;
    color: #000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.acc-item.active .panel-content {
    opacity: 1;
    transform: translateY(0);
}

.bordered-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    object-fit: cover;
}

.body-main h4 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #1a1a1a;
    max-width: 900px;
}

.body-details {
    display: flex;
    gap: 60px;
}

.detail-left {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.detail-right {
    flex: 2.5;
}

.detail-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* Buttons */
.panel-actions {
    display: flex;
    gap: 18px;
}

.btn-black-caps, .btn-outline-caps {
    padding: 14px 32px;
    border-radius: 35px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-black-caps {
    background: #1a1a1a;
    color: #fff;
    border: none;
}

.btn-outline-caps {
    background: transparent;
    border: 1px solid #bbb;
    color: #1a1a1a;
}

.btn-black-caps:hover { background: #333; }
.btn-outline-caps:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .acc-title { font-size: 26px; }
    .body-main h4 { font-size: 28px; }
    .body-details { flex-direction: column; gap: 20px; }
}

@media (max-width: 768px) {
    .services-header-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .header-subtext { text-align: left; font-size: 14px; }
    .acc-trigger { padding: 30px 0; }
    .acc-id { width: 40px; font-size: 16px; }
    .acc-title { font-size: 20px; }
}


.main-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.main-mini-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    width: 25%; /* Fixed width to keep center title perfectly centered */
    font-weight: 1000;
}

.main-title-center h2 {
    font-size: 44px;
    line-height: -2.1;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
}

.main-header-desc {
    max-width: 320px;
    font-size: 14px;
    color: #666;
    text-align: right;
    line-height: 1.5;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .main-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .main-header-desc {
        text-align: center;
    }
}

@media (max-width: 768px) {
   
    .main-title-center h2 {
        font-size: 32px;
    }
}


/* ================= FLEET FILTER REPLICA ================= */

.fleet-filter-section {
    padding: 80px 8%;
    background-color: #f9f9f9;
}

.fleet-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.fleet-title-center h2 {
    font-size: 44px;
    line-height: 1.1;
    color: #1a1a1a;
    text-align: center;
    font-weight: 500;
}

.fleet-header-desc {
    max-width: 320px;
    font-size: 14px;
    color: #666;
    text-align: right;
    line-height: 1.5;
}

.fleet-tabs-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e0e0e0;
    background: #fff;
    margin-bottom: 40px;
    position: relative;
}

.fleet-tabs-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
    scrollbar-width: none;    /* Hide scrollbar Firefox */
}

.fleet-tabs-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.fleet-tab {
    padding: 20px 30px;
    background: transparent;
    border: none;
    border-right: 1px solid #eee;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}

.fleet-tab.active {
    background: #1a1a1a;
    color: #fff;
}

.fleet-scroll-controls {
    display: flex;
    padding: 0 15px;
    gap: 10px;
    background: #fff;
    z-index: 5;
}

.scroll-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #f4f4f4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    /* Use auto-fill so cards stay their size even if there are only a few */
    grid-template-columns: repeat(auto-fill, minmax(520px, 1fr)); 
    gap: 25px;
    justify-content: center; /* Centers the cards if there's extra space */
}

.fleet-card {
    background: #eeeeee;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    
    /* Set a max-width so they don't grow too large on desktop */
    max-width: 750px; 
    width: 100%;
    margin: 0 auto; /* Centers the card within its grid cell */
    
    /* Ensure the height is consistent */
    min-height: 280px; 
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-card-header h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
}

.fleet-specs {
    display: flex;
    gap: 10px;
}

.fleet-specs span {
    background: #222;
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Fix the image height issue */
.fleet-card-image img {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    margin: 20px 0;
    object-fit: contain; /* Keeps car aspect ratio perfect */
}

.fleet-card-footer {
    display: flex;
    justify-content: flex-end;
}

.fleet-book-btn {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- ANIMATIONS --- */

@keyframes fleetFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fleet-card {
    background: #eeeeee;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    animation: fleetFadeIn 0.6s ease forwards;
}

/* Staggered animation for the grid items */
.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; }

/* Responsive */
@media (max-width: 900px) {
    .fleet-header-row { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
    .fleet-header-desc { text-align: center; }
    .fleet-grid { grid-template-columns: 1fr; }
}


/* ================= CTA BOOKING REPLICA ================= */

.cta-booking-section {
    position: relative;
    padding: 120px 8%;
    background: url('/images/banner image.webp') center/cover no-repeat;
    border-radius: 25px; /* Boxed look from screenshot */
    margin: 60px 8%;
    overflow: hidden;
    color: #fff;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(40px);
}

.cta-booking-section.animated {
    animation: ctaFadeUp 1.2s ease forwards;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.cta-content-wrapper h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content-wrapper p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Rounded Book Now Button */
.cta-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #1a1a1a;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
}

.cta-book-btn i {
    font-size: 12px;
}

.cta-book-btn:hover {
    background: transparent; /* Brand Blue */
    color: #000;
}

/* ================= ANIMATIONS ================= */

@keyframes ctaFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .cta-booking-section {
        margin: 40px 6%;
        padding: 80px 6%;
    }
    .cta-content-wrapper h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .cta-booking-section {
        margin: 20px 4%;
        border-radius: 15px;
        padding: 60px 20px;
        text-align: center;
    }
    
    .cta-overlay {
        background: rgba(0,0,0,0.7); /* Darker overlay for mobile */
    }
    
    .cta-content-wrapper h2 {
        font-size: 26px;
    }
    
    .cta-content-wrapper p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .cta-book-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================= REFINED REVIEWS SECTION ================= */

.reviews-section {
    padding: 100px 8%;
    background-color: #f9f9f9;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.review-card {
    background: #eeeeee; /* Matches Fleet & Action Card background */
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.review-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.stars-box {
    color: #0d47a1; /* Brand Blue stars */
    font-size: 14px;
    letter-spacing: 2px;
}

.quote-icon {
    color: #ccc;
    font-size: 20px;
    opacity: 0.5;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 30px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.reviewer-type {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   PREMIUM ACTION & REVIEW SECTIONS
   Consistent Boxed Design System
===================================================== */

/* 1. SHARED SECTION HEADER (Label, Title, Desc) */
.fleet-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.mini-tag {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet-title-center h2 {
    font-size: 44px;
    line-height: 1.1;
    color: #1a1a1a;
    text-align: center;
    font-weight: 600;
}

.fleet-header-desc {
    max-width: 320px;
    font-size: 14px;
    color: #666;
    text-align: right;
    line-height: 1.5;
}

/* 2. ACTION CARDS WITH IMAGES */
.action-cards-section {
    padding: 100px 8%;
    background-color: #fdfdfd;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.action-card {
    background: #eeeeee;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
}

.action-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #e0e0e0;
}

.action-img-box {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.action-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.action-card:hover .action-img-box img {
    transform: scale(1.1);
}

.action-text h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.action-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    min-height: 45px;
}

.action-link-btn {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.action-link-btn i {
    transition: transform 0.3s ease;
}

.action-card:hover .action-link-btn i {
    transform: translateX(5px);
}

/* 3. REFINED REVIEWS SECTION */
.reviews-section {
    padding: 100px 8%;
    background-color: #f9f9f9;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background: #eeeeee;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.review-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.stars-box {
    color: #0d47a1; /* Brand Blue */
    font-size: 14px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.reviewer-type {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

/* 4. GLOBAL ANIMATION CLASSES */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.anim-fade-up.visible {
    animation: fadeUpIn 0.8s ease forwards;
}

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

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .fleet-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .fleet-header-desc {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .action-grid, .reviews-container {
        grid-template-columns: 1fr;
    }
    .fleet-title-center h2 {
        font-size: 32px;
    }
}