/* =========================================
   GLOBAL RESET & PROPERTIES
========================================= */
*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

:root {
    --orange: #F15A24;
    --dark-blue: #0A192F;
    --light-grey: #F8F9FA;
    --text-white: #FFFFFF;
    --text-dark: #222222;
    --text-muted: #A8B2D1;
    --border-light: #EBEBEB;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- REUSABLE ACCENTS --- */
.btn-orange {
    background-color: var(--orange);
    color: var(--text-white);
    padding: 14px 28px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

    .btn-orange:hover {
        background-color: #d44816;
    }

.btn-outline {
    background-color: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 13px;
}

    .btn-outline:hover {
        background-color: var(--orange);
        color: var(--text-white);
    }

.btn-black {
    background-color: #000000;
    color: var(--text-white);
    padding: 14px 28px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

    .btn-black:hover {
        background-color: #333333;
    }

.sub-heading {
    color: var(--orange);
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.short-orange-line {
    width: 40px;
    height: 3px;
    background-color: var(--orange);
    margin: 15px 0 25px 0;
}

.center-text {
    text-align: center;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    text-transform: uppercase;
    margin-top: 5px;
}

/* =========================================
   HEADER NAVIGATION
========================================= */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--text-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 75px;
    width: auto;
}

.navbar {
    display: flex;
    gap: 25px;
}

    .navbar a {
        color: #333;
        font-weight: bold;
        font-size: 14px;
        padding-bottom: 5px;
        transition: 0.2s;
    }

        .navbar a:hover, .navbar a.active {
            color: var(--orange);
            border-bottom: 2px solid var(--orange);
        }

/* =========================================
   FLEET HERO WITH FEATURE LINKS
========================================= */
.fleet-hero {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--dark-blue);
    align-items: stretch;
}

.hero-text {
    flex: 0 0 50%;
    padding: 60px 4% 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

    .hero-text h1 {
        font-size: 2.8rem;
        color: var(--text-white);
        line-height: 1.1;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .hero-text .orange-text {
        color: var(--orange);
    }

    .hero-text p {
        color: var(--text-muted);
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 40px;
    }

/* 4-Item Feature Grid in Hero */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}

.hero-feat-item {
    display: flex;
    gap: 15px;
    align-items: start;
    color: var(--text-white);
}

    .hero-feat-item i {
        color: var(--orange);
        font-size: 1.5rem;
        margin-top: 3px;
    }

    .hero-feat-item h5 {
        font-size: 15px;
        margin-bottom: 4px;
        color: var(--text-white);
    }

    .hero-feat-item p {
        font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 0;
        line-height: 1.4;
    }

.hero-image {
    flex: 1;
    min-width: 400px;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* =========================================
   FLEET BREAKDOWN CATEGORY CARDS
========================================= */
.fleet-breakdown {
    padding: 80px 8%;
    background-color: var(--light-grey);
}

    .fleet-breakdown .section-header {
        margin-bottom: 50px;
    }

.fleet-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.fleet-category-card {
    background: var(--text-white);
    flex: 1;
    min-width: 450px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-main-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fleet-category-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.cat-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.spec-list {
    margin-bottom: 30px;
    width: 100%;
}

    .spec-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #444;
        font-size: 14px;
        margin-bottom: 12px;
    }

        .spec-list li i {
            color: var(--orange);
            font-size: 15px;
        }

/* Image Display Window */
.vehicle-showcase {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

    .vehicle-showcase img {
        max-width: 90%;
        max-height: 100%;
        object-fit: contain;
    }

/* Data Strip at bottom of Category Card */
.data-badges-strip {
    background-color: #FAFBFD;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-around;
    padding: 15px 10px;
    text-align: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 11px;
}

    .badge-item i {
        color: var(--orange);
        font-size: 14px;
    }

/* =========================================
   A FLEET YOU CAN TRUST (Dark Stats Bar)
========================================= */
.trust-dark-bar {
    background-color: #050d1a;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 8%;
    gap: 40px;
}

.trust-left {
    flex: 0 0 35%;
    min-width: 320px;
}

    .trust-left h2 {
        color: var(--text-white);
        font-size: 2rem;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .trust-left p {
        color: var(--text-muted);
        line-height: 1.6;
        font-size: 14px;
        margin-bottom: 15px;
    }

.trust-right-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    color: var(--text-white);
}

.trust-stat-box {
    padding: 10px;
}

.border-right {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.trust-stat-box i {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 12px;
}

.trust-stat-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.trust-stat-box p {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* =========================================
   FLEET MAINTENANCE & SAFETY (Grid Spread)
========================================= */
.maintenance-section {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 8%;
    background-color: var(--text-white);
    gap: 50px;
    align-items: center;
}

.maint-left-header {
    flex: 0 0 30%;
    min-width: 300px;
}

    .maint-left-header h3 {
        color: var(--dark-blue);
        font-size: 1.8rem;
        font-weight: 800;
    }

    .maint-left-header p {
        color: #555;
        line-height: 1.6;
        font-size: 14px;
        margin-bottom: 20px;
    }

.maint-cards-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.maint-card {
    background: var(--light-grey);
    border-radius: 4px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

    .maint-card i {
        font-size: 2.2rem;
        margin-bottom: 15px;
        display: block;
        color: var(--orange);
    }

    .maint-card h4 {
        color: var(--dark-blue);
        font-size: 15px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .maint-card p {
        color: #666;
        font-size: 13px;
        line-height: 1.4;
    }

.maint-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: var(--orange);
}

/* =========================================
   CTA STRIP
========================================= */
.cta-strip {
    background: var(--orange);
    padding: 30px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    flex-wrap: wrap;
    gap: 20px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon-circle {
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.cta-left h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* =========================================
   FOOTER STYLE
========================================= */
.main-footer {
    background-color: #0A1424;
    color: var(--text-white);
    padding: 60px 4% 0 4%;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-contact h3, .footer-links h3, .footer-form-col h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.orange-divider {
    width: 30px;
    height: 3px;
    background-color: var(--orange);
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    gap: 10px;
    color: #ccc;
    line-height: 1.4;
}

    .footer-contact p i {
        color: var(--text-white);
        width: 20px;
        text-align: center;
    }

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .social-icons a {
        background: var(--text-white);
        color: #0A1424;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        transition: 0.3s;
    }

        .social-icons a:hover {
            background: var(--orange);
            color: var(--text-white);
        }

.footer-logo {
    width: 100%;
    max-width: 220px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
}

.links-grid {
    display: flex;
    gap: 30px;
}

    .links-grid ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .links-grid a {
        color: #ccc;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
    }

        .links-grid a:hover {
            color: var(--orange);
        }

.orange-arrow {
    color: var(--orange);
    font-size: 12px;
}

.footer-form-col form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
}

    .form-row input, .form-row select {
        flex: 1;
        padding: 10px 12px;
        background: var(--text-white);
        border: none;
        border-radius: 3px;
        font-size: 13px;
        font-family: inherit;
    }

.btn-submit {
    background: var(--orange);
    color: var(--text-white);
    border: none;
    padding: 12px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

    .btn-submit:hover {
        background: #d44816;
    }

.footer-bottom-bar {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .footer-bottom-bar p {
        font-size: 12px;
        color: #888;
    }

/* =========================================
   RESPONSIVE SCALING STACK rules
========================================= */
@media (max-width: 1200px) {
    .fleet-category-card {
        min-width: 100%;
    }

    .trust-right-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .border-right {
        border: none;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 850px) {
    .hero-text, .hero-image, .trust-left, .maint-left-header, .maint-cards-grid {
        flex: 0 0 100%;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
    }

    .maint-cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .orange-divider {
        margin: 0 auto 20px auto;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons, .links-grid {
        justify-content: center;
    }
}
