/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    background: #ffffff;
    line-height: 1.5;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* HEADER */
.header {
    background: #ffffff;
    border-bottom: 1px solid #bbbbbb;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #ed7a00;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
}

.btn-orange {
    background: #ed7a00;
    padding: 10px 18px;
    border-radius: 4px;
    color: #ffffff !important;
    font-weight: bold;
}

.btn-outline {
    border: 2px solid #ed7a00;
    padding: 10px 18px;
    border-radius: 4px;
    color: #ed7a00;
    font-weight: bold;
}

/* HERO */
.hero {
    background: #ed7a00;
    padding: 90px 0;
    color: #ffffff;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-sub {
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
    font-size: 18px;
}

.hero-buttons a {
    margin: 10px;
}

/* SERVICE OVERVIEW */
.service-overview {
    padding: 70px 0;
    text-align: center;
}

.service-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 25px;
    border: 1px solid #bbbbbb;
    border-radius: 6px;
    background: #ffffff;
}

.service-card h3 {
    color: #ed7a00;
    margin-bottom: 10px;
}

/* WHY SECTION */
.why {
    background: #f7f7f7;
    padding: 70px 0;
    text-align: center;
}

.why-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    padding: 20px;
    border: 1px solid #bbbbbb;
    background: #ffffff;
    border-radius: 6px;
}

/* STORIES */
.stories {
    padding: 70px 0;
}

.story-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.story-card {
    padding: 25px;
    border: 1px solid #bbbbbb;
    border-radius: 6px;
}

.story-card h4 {
    color: #ed7a00;
    margin-bottom: 8px;
}

/* FOOTER */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 40px 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-right a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: #ffffff;
}

/* SERVICES PAGE */

.page-header {
    padding: 60px 0;
    text-align: center;
}

.link-card {
    text-decoration: none;
    color: #000000;
    transition: 0.2s ease;
}

.link-card:hover {
    border-color: #ed7a00;
    transform: translateY(-3px);
}

/* CTA SECTION */
.cta {
    background: #ed7a00;
    color: #ffffff;
    text-align: center;
    padding: 70px 0;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* PAGE CONTENT SECTION */
.content-section {
    padding: 60px 0;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 18px;
}

/* SMALLER GRID FOR SERVICE DETAILS */
.smaller-grid .service-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .smaller-grid .service-grid {
        grid-template-columns: 1fr;
    }
}



/* OPTIONAL: allow more spacing for hot shot cards */
.hotshot .service-grid .service-card {
    min-height: 180px;
}


/* Increase minimum card height for trucking page */
.trucking .service-card {
    min-height: 190px;
}


/* Warehousing card spacing */
.warehousing .service-card {
    min-height: 185px;
}


/* Timeline styling */
.timeline {
    margin-top: 20px;
    padding-left: 20px;
}

.timeline li {
    margin-bottom: 10px;
    font-size: 18px;
}

.timeline strong {
    color: #ed7a00;
}


.testimonial-card {
    background: #ffffff;
    color: #333;
    border-left: 5px solid #ed7a00;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #ed7a00;
    font-weight: bold;
    font-size: 16px;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    margin-top: 20px;
}

.contact-detail {
    margin-bottom: 8px;
    font-size: 17px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.map-container {
    margin-top: 20px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}



/* Careers Page Layout Enhancements */
.contact-form form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.contact-form form input,
.contact-form form select,
.contact-form form textarea {
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


