* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Fixes the window overflow */
    font-family: 'Roboto', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
}

.logo img { height: 60px; }

/* Desktop Navigation */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #ffde59;
    font-weight: 400;
    font-size: 16px;
}

.nav-links li a.active { color: #fff; }

.btn-setup {
    border: 2px solid #ffde59;
    padding: 8px 18px;
    color: #ffde59;
    text-decoration: none;
    /* font-weight: bold; */
}

/* Hide elements depending on screen size */
#click, .menu-btn, .mobile-cta { display: none; }

/* --- MOBILE RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    .desktop-only { display: none; }
    .mobile-cta { display: block; margin-top: 20px; }
    
    .menu-btn {
        display: block;
        cursor: pointer;
    }

    /* Hamburger Lines */
    .menu-btn span, .menu-btn span:before, .menu-btn span:after {
        content: '';
        background: #ffde59;
        height: 3px;
        width: 25px;
        display: block;
        transition: 0.3s;
    }
    .menu-btn span:before { transform: translateY(-8px); }
    .menu-btn span:after { transform: translateY(5px); }

    /* The Hidden Menu Overlay */
    .nav-links {
        text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #ffde59; /* Yellow */
    transition: color 0.3s ease; /* Smooth color transition */
    }

    /* Toggle Logic (No JS needed) */
    #click:checked ~ .nav-links {
        left: 0;
    }

    /* Animate Hamburger to "X" when clicked */
    #click:checked ~ .menu-btn span { background: transparent; }
    #click:checked ~ .menu-btn span:before { transform: rotate(45deg); }
    #click:checked ~ .menu-btn span:after { transform: rotate(-45deg) translateY(-8px); }
}

.btn-setup {
    text-decoration: none;
    color: #ffde59;           /* Yellow Text */
    border: 2px solid #ffde59; /* Yellow Border */
    padding: 10px 25px;
    font-weight: bold;
    background: transparent;   /* Transparent by default */
    transition: all 0.3s ease; /* Makes the color change smooth */
    display: inline-block;
}

/* The Hover Effect */
.btn-setup:hover {
    background-color: #ffde59; /* Fills the button yellow */
    color: #000000;            /* Turns the text black */
    cursor: pointer;           /* Shows the hand icon */
}

.nav-links li a:hover {
    color: #ffffff;
}

/* 2. The 'active' link stays white by default */
.nav-links li a.active {
    color: #ffffff;
}

/* --- HERO SECTION STYLES --- */
.hero-container {
    position: relative;
    width: 100%;
    min-height: 100vh; 
    display: flex;
    justify-content: center; 
    align-items: center;     
    text-align: center;
    /* CHANGE IMAGE URL BELOW */
    background: url('finalBackground.jpg') no-repeat center center/cover;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Darkens image */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.sub-heading {
    color: #ffde59;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.main-heading {
    color: #ffffff;
    font-size: 66px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.btn-hero {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #ffde59;
    color: #ffde59;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-hero:hover {
    background: #ffde59;
    color: #000;
    border-color: #ffde59;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .main-heading { font-size: 35px; }
    .sub-heading { font-size: 11px; }
}






.main-footer {
    background-color: #0f0f0f; /* Dark black background */
    color: #ffffff;
    padding: 80px 10% 20px 10%;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 300px;
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #cccccc; /* Slightly dimmed white for body text */
}

/* Social Icons */
.social-links {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #fce354; /* Highlight yellow on hover */
}

/* Yellow Contact Button */
.footer-cta {
    margin-top: 30px;
}

.btn-contact {
    display: inline-block;
    background-color: #fce354; /* The bright yellow from your image */
    color: #000000;
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-contact:hover {
    background-color: #ffffff;
    cursor: pointer;
}

/* Copyright Bar */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    font-size: 14px;
    color: #888;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .main-footer {
        padding: 50px 5% 20px 5%;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
}


#accordian {
    background-color: #111;
    padding: 60px 0;
    display: none; /* Required for the jQuery slideDown to work */
}

#truckTypes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #333;
    margin-bottom: 40px;
}

.truckType-tab {
    padding: 20px;
    text-align: center;
    cursor: pointer;
    color: #888;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.truckType-tab h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
}

.truckType-tab h6 {
    font-size: 12px;
    font-weight: 400;
}

/* Active State */
.truckType-tab.active {
    color: #FFD700;
    border-bottom: 3px solid #FFD700;
}

/* Info Content Styling */
.truckInfo {
    display: none; /* Hidden by default */
    padding: 40px 10%;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.truckInfoHeading {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.truckInfoText {
    color: #ccc;
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn-yellow {
    background: #FFD700;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-right: 15px;
}

.btn-outline {
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Container for Side-by-Side */
.accordion-flex-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5%;
    gap: 50px; /* Space between text and image */
}

#info-display {
    flex: 1; /* Takes 50% width */
}

.truck-image-space {
    flex: 1; /* Takes 50% width */
    text-align: center;
}

.truck-image-space img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Tab Styling updates */
.truckType-tab {
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.truckType-tab.active {
    opacity: 1;
    color: #FFD700;
    border-bottom: 3px solid #FFD700;
}

/* Mobile: Stack them vertically */
@media (max-width: 992px) {
    .accordion-flex-container {
        flex-direction: column-reverse; /* Image on bottom for mobile */
        text-align: center;
    }
}

.footer-col a {
    text-decoration: none;
    color: #cccccc;
}

.footer-col a:hover {
    color: #ffde59;
}

/* --- SUPPLEMENTAL RESPONSIVE FIXES --- */

@media (max-width: 992px) {
    /* 1. Fix the Nav Links for Mobile Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%; /* Hides the menu to the left */
        height: 100vh;
        width: 100%;
        background: #0f0f0f; /* Dark background to match footer */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease-in-out;
        z-index: 999;
        gap: 30px;
    }

    /* 2. Show the menu when the hidden checkbox is clicked */
    #click:checked ~ .nav-links {
        left: 0;
    }

    /* 3. Ensure the Hamburger button stays above the menu */
    .menu-btn {
        z-index: 1001;
        position: relative;
    }

    /* 4. Fix Hero Text for small screens */
    .main-heading {
        font-size: 38px; /* Slightly larger than your current 35px for impact */
        padding: 0 10px;
    }
}

/* --- ACCORDION & GRID FIXES --- */
@media (max-width: 768px) {
    /* Stack the truck type tabs in two columns instead of one long row */
    #truckTypes {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .truckType-tab {
        padding: 15px 5px;
    }

    /* Ensure the Side-by-Side Flex Container stacks properly */
    .accordion-flex-container {
        flex-direction: column-reverse;
        padding: 20px 5%;
        gap: 30px;
    }

    .truck-image-space img {
        max-height: 300px;
    }
    
    .truckInfoHeading {
        font-size: 28px;
    }
}

/* --- UTILITY --- */
html, body {
    overflow-x: hidden; /* Prevents horizontal scrolling on mobile */
    width: 100%;
}


/* Contact Page Specific Styles */

.hero-container.contact-hero {
    min-height: 50vh !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-section {
    background-color: #111;
    padding: 80px 10%;
    color: white;
    width: 100%;
    position: relative;
    z-index: 5;
}

.contact-wrapper {
    display: flex;
    justify-content:建设; 
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-form-container {
    flex: 1; /* Gives both sides equal width */
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    border-radius: 4px;
}

.form-group input:focus {
    border-color: #ffde59;
    outline: none;
}

/* Match your yellow button exactly */
.actual-form .btn-yellow {
    background-color: #ffde59;
    color: #000;
    padding: 15px 30px;
    border: none;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.actual-form .btn-yellow:hover {
    background-color: #fff;
}

/* Fix the Left Column Alignment */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left; /* Ensures everything stays left-aligned */
}

/* Style the "Cards" on the left */
.detail-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-left: 10px;
    border-left: 3px solid transparent;
    transition: 0.3s;
}

.detail-card:hover {
    border-left: 3px solid #ffde59; /* Subtle highlight when hovering */
}

.icon-box {
    min-width: 60px;
    height: 60px;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #ffde59;
    font-size: 22px;
    border: 1px solid #333;
}

.detail-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    color: #ffde59;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.detail-text p, .detail-text a {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.5;
    font-size: 17px;
}

/* Ensure the sub-heading text doesn't look like a giant block */
.contact-info .truckInfoText {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 50px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.fa-x-twitter {
    font-size: 16px; /* Adjust size to match other icons */
    transition: 0.3s;
}

.social-links a:hover .fa-x-twitter {
    color: #ffffff; /* X usually looks better in pure white on hover */
}

.policy-section {
    background-color: #0d0d0d; /* Slightly darker than your main black */
    padding: 100px 10%;
    color: #ffffff;
    font-family: 'Roboto', sans-serif; /* Clean body text for readability */
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Headings */
.policy-container h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    color: #ffde59; /* Your signature yellow */
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.policy-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #ffde59;
    margin-top: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

/* Adding the "Trucking" accent line to headers */
.policy-container h2::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 24px;
    background-color: #ffde59;
    margin-right: 15px;
}

/* Body Text */
.policy-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.policy-container ul {
    margin-bottom: 25px;
    list-style: none;
    padding-left: 0;
}

.policy-container ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: #bbb;
}

/* Yellow bullet points */
.policy-container ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffde59;
    font-weight: bold;
}

/* Nextiva SMS Compliance Box */
.highlight-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-left: 5px solid #ffde59; /* High visibility for auditors */
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.highlight-box h2::before {
    display: none; /* Remove accent line for inside the box */
}

.highlight-box p {
    color: #ffffff; /* Brighter text for importance */
    font-weight: 500;
}

/* Contact Details at bottom */
.policy-contact {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #333;
}

.policy-contact strong {
    color: #ffde59;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .policy-section {
        padding: 60px 5%;
    }
    
    .policy-container h1 {
        font-size: 36px;
    }
}

.terms-section {
            background-color: #0d0d0d;
            padding: 100px 10%;
            color: #fff;
            line-height: 1.8;
            font-family: 'Roboto', sans-serif;
        }

        .terms-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .terms-container h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 45px;
            color: #ffde59;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .terms-container h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 22px;
            color: #ffde59;
            margin-top: 40px;
            margin-bottom: 15px;
            text-transform: uppercase;
            border-left: 4px solid #ffde59;
            padding-left: 15px;
        }

        .terms-container p {
            margin-bottom: 20px;
            color: #ccc;
        }

        .sms-compliance-box {
            background: #1a1a1a;
            padding: 30px;
            border: 1px solid #333;
            margin: 40px 0;
            border-radius: 4px;
        }

        .sms-compliance-box h3 {
            font-family: 'Oswald', sans-serif;
            color: #ffde59;
            margin-bottom: 15px;
        }

        .last-updated {
            font-style: italic;
            color: #777;
            margin-bottom: 50px;
        }

        .services-hero {
            height: 60vh;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1501700493717-9af9882fe910?q=80&w=2000'); 
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-bottom: 5px solid #ffde59;
        }

        .service-row {
            display: flex;
            align-items: center;
            padding: 120px 10%;
            gap: 80px;
            background-color: #0d0d0d;
            color: white;
            border-bottom: 1px solid #222;
        }

        .service-row:nth-child(even) {
            flex-direction: row-reverse;
            background-color: #111;
        }

        .service-image {
            flex: 1;
            position: relative;
        }

        .service-image img {
            width: 100%;
            border-radius: 4px;
            filter: grayscale(30%);
            transition: 0.5s;
            box-shadow: 20px 20px 0px #ffde59; /* Industrial yellow offset shadow */
        }

        .service-image:hover img {
            filter: grayscale(0%);
            transform: translateY(-10px);
        }

        .service-text {
            flex: 1;
        }

        .service-text span {
            font-family: 'Oswald', sans-serif;
            color: #ffde59;
            font-size: 14px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .service-text h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 42px;
            margin: 15px 0;
            text-transform: uppercase;
        }

        .service-text p {
            font-family: 'Roboto', sans-serif;
            font-size: 18px;
            line-height: 1.8;
            color: #bbb;
            margin-bottom: 30px;
        }

        .features-list {
            list-style: none;
            padding: 0;
        }

        .features-list li {
            margin-bottom: 15px;
            font-family: 'Oswald', sans-serif;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 16px;
            color: #fff;
        }

        .features-list li i {
            color: #ffde59;
            font-size: 18px;
        }

        /* Stats Section to break up the flow */
        .stats-bar {
            background: #ffde59;
            padding: 60px 10%;
            display: flex;
            justify-content: space-around;
            text-align: center;
            color: #000;
        }

        .stat-item h3 { font-family: 'Oswald', sans-serif; font-size: 40px; margin: 0; }
        .stat-item p { font-family: 'Roboto', sans-serif; font-weight: bold; text-transform: uppercase; margin: 5px 0 0 0; }

        /* Final CTA */
        .service-footer-cta {
            padding: 100px 10%;
            text-align: center;
            background: #111;
        }

        .cta-box {
            background: #000;
            padding: 60px;
            border: 2px solid #ffde59;
        }

        .btn-yellow-big {
            background: #ffde59;
            color: #000;
            padding: 20px 50px;
            font-family: 'Oswald', sans-serif;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-top: 30px;
            font-size: 20px;
        }

        @media (max-width: 992px) {
            .service-row, .service-row:nth-child(even) { flex-direction: column; text-align: center; padding: 60px 5%; }
            .service-image img { box-shadow: 10px 10px 0px #ffde59; }
            .stats-bar { flex-direction: column; gap: 40px; }
        }

.about-hero {
            height: 65vh;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1586191582151-f7377303d659?q=80&w=2000'); 
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .about-intro {
            padding: 100px 15%;
            background-color: #0d0d0d;
            text-align: center;
            color: #fff;
        }

        .about-intro h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 48px;
            color: #ffde59;
            margin-bottom: 25px;
        }

        .about-intro p {
            font-size: 20px;
            line-height: 1.8;
            color: #bbb;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Split Section: Mission & Vision */
        .split-section {
            display: flex;
            background: #111;
            min-height: 500px;
        }

        .split-box {
            flex: 1;
            padding: 80px 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .split-image {
            flex: 1;
            background: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=1200') center/cover;
        }

        .split-box h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 32px;
            color: #ffde59;
            margin-bottom: 20px;
        }

        /* Values Grid */
        .values-section {
            padding: 100px 10%;
            background-color: #0d0d0d;
            text-align: center;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .value-card {
            background: #1a1a1a;
            padding: 40px;
            border: 1px solid #333;
            transition: 0.3s;
        }

        .value-card i {
            font-size: 40px;
            color: #ffde59;
            margin-bottom: 20px;
        }

        .value-card h4 {
            font-family: 'Oswald', sans-serif;
            color: #fff;
            font-size: 22px;
            margin-bottom: 15px;
        }

        .value-card:hover {
            border-color: #ffde59;
            transform: translateY(-10px);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .split-section { flex-direction: column; }
            .about-intro { padding: 60px 5%; }
            .about-intro h2 { font-size: 36px; }
        }
        
        /* --- CONTACT PAGE MOBILE RESPONSIVE FIX --- */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column; /* Stacks Info on top of Form */
        gap: 40px;
        padding: 0 5%;
    }

    .contact-info, .contact-form-container {
        width: 100%; /* Ensures both take full width */
        flex: none;
    }

    .contact-section {
        padding: 50px 5%; /* Reduces massive desktop padding */
    }

    .truckInfoHeading {
        font-size: 32px; /* Smaller heading for mobile */
        text-align: center;
    }

    .truckInfoText {
        text-align: center !important; /* Centers text for better mobile flow */
        margin-bottom: 30px;
    }

    .detail-card {
        justify-content: flex-start; /* Keeps icons aligned with text */
        margin-bottom: 25px;
    }
}

/* Extra small screens (Phones) */
@media (max-width: 480px) {
    .contact-hero {
        min-height: 40vh !important;
    }
    
    .icon-box {
        min-width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .detail-text p, .detail-text a {
        font-size: 15px;
    }
}

.split-box p{
    color: #ccc;
}

.value-card p{
    color: #ccc;
}