/* =========================================
   GLOBAL RESET & VARIABLES
========================================= */
*, 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: #E0E0E0;
}

a {
    text-decoration: none;
}

/* =========================================
   BUTTONS & 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 28px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

    .btn-outline:hover {
        background-color: var(--orange);
        color: var(--text-white);
    }

.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: 50px;
    height: 3px;
    background-color: var(--orange);
    margin: 15px 0 25px 0;
}

.center-line {
    margin: 10px auto 30px auto;
}

/* =========================================
   HEADER NAVIGATION (Consistent across site)
========================================= */
.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);
        }

/* =========================================
   ABOUT HERO (Dark Split Layout)
========================================= */
.about-hero {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--dark-blue);
    align-items: stretch;
}

.hero-text {
    flex: 0 0 40%;
    padding: 80px 4% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

    .hero-text h1 {
        font-size: 3rem;
        color: var(--text-white);
        line-height: 1.1;
        margin-bottom: 20px;
        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: 25px;
    }

.hero-image {
    flex: 1;
    min-width: 400px;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* =========================================
   OUR STORY
========================================= */
.our-story {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 8%;
    background-color: var(--text-white);
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1;
    min-width: 400px;
}

    .story-content h2 {
        font-size: 2.2rem;
        color: var(--dark-blue);
        line-height: 1.2;
    }

    .story-content p {
        color: #555;
        line-height: 1.7;
        margin-bottom: 20px;
    }

.story-image {
    flex: 1.2;
    min-width: 400px;
}

    .story-image img {
        width: 100%;
        border-radius: 10px; /* Gives the rounded corners in the design */
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

/* =========================================
   OUR VALUES
========================================= */
.our-values {
    background-color: #0d1b2a;
    padding: 70px 5%;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
}

.value-item {
    padding: 20px 30px;
    color: var(--text-white);
}

.border-right-dark {
    border-right: 1px solid rgba(255,255,255,0.1);
}

.value-item i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* =========================================
   OUR FLEET
========================================= */
.our-fleet {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 8%;
    background-color: var(--light-grey);
    gap: 50px;
    align-items: center;
}

.fleet-text {
    flex: 1;
    min-width: 350px;
}

    .fleet-text h2 {
        font-size: 2rem;
        color: var(--dark-blue);
    }

    .fleet-text p {
        color: #555;
        line-height: 1.7;
        margin-bottom: 30px;
    }

.fleet-cards {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fleet-card {
    background: var(--text-white);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .fleet-card img {
        width: 200px;
        object-fit: contain;
    }

.fleet-card-info h4 {
    color: var(--dark-blue);
    font-size: 18px;
    margin-bottom: 10px;
}

.fleet-card-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.orange-arrow {
    color: var(--orange);
    font-size: 1.2rem;
}

/* =========================================
   WHY CHOOSE US
========================================= */
.why-choose-us {
    background-color: var(--text-white);
    padding: 80px 5%;
    text-align: center;
}

.why-header h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-top: 5px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    text-align: center;
}

.border-right-light {
    border-right: 1px solid var(--border-light);
}

.why-item i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 15px;
}

.why-text h4 {
    color: var(--dark-blue);
    font-size: 14px;
    margin-bottom: 8px;
}

.why-text p {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

/* =========================================
   CTA STRIP
========================================= */
.cta-strip {
    background: linear-gradient(90deg, #F15A24 0%, #d44816 100%);
    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 {
    background: rgba(255, 255, 255, 0.2);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cta-left h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.btn-dark-blue {
    background-color: var(--dark-blue);
    color: var(--text-white);
    padding: 14px 28px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

    .btn-dark-blue:hover {
        background-color: #050d1a;
    }

/* =========================================
   FOOTER (Quick Links Version)
========================================= */
.main-footer {
    background-color: var(--dark-blue);
    color: var(--text-white);
    padding: 60px 4% 0 4%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}

.footer-contact, .footer-links {
    width: 30%;
    text-align: left;
}

.footer-branding {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px;
}

.footer-contact h3, .footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.orange-divider {
    width: 40px;
    height: 3px;
    background-color: var(--orange);
    margin-bottom: 25px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: var(--text-white);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

    .footer-contact p i {
        color: var(--text-white);
        width: 20px;
        text-align: center;
        font-size: 16px;
        margin-top: 3px;
    }

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

    .social-icons a {
        background-color: var(--text-white);
        color: var(--dark-blue);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        transition: 0.3s;
    }

        .social-icons a:hover {
            background-color: var(--orange);
            color: var(--text-white);
        }

.footer-logo {
    width: 100%;
    /* Increased from 320px to make it significantly larger */
    max-width: 450px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 12px;
    letter-spacing: 3px;
    color: #A8B2D1;
    text-transform: uppercase;
}

.links-grid {
    display: flex;
    gap: 40px;
}

    .links-grid ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .links-grid a {
        color: var(--text-white);
        font-size: 15px;
        transition: 0.3s;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .links-grid a:hover {
            color: var(--orange);
        }

.footer-bottom-bar {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    clear: both; /* Ensures it drops below everything else */
}

    .footer-bottom-bar p {
        font-size: 12px;
        color: #A8B2D1;
    }

/* =========================================
   RESPONSIVE LAYOUT STACKING
========================================= */
@media (max-width: 1100px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .border-right-dark {
        border: none;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .border-right-light {
        border: none;
    }
}

@media (max-width: 800px) {
    .hero-text, .hero-image, .story-content, .story-image, .fleet-text, .fleet-cards {
        flex: 0 0 100%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact, .footer-links, .footer-branding {
        width: 100%;
        align-items: center;
    }

    .orange-divider {
        margin: 0 auto 25px auto;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .links-grid {
        justify-content: center;
    }
}
