/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background-color: #1d2425;
    color: white;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.banner-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.banner-content .highlight {
    color: #bb3515;
    font-weight: 600;
}

/* Header */
.header {
    background-color: #ebe9e6;
    padding: 20px 0;
    border-bottom: 2px solid #bb3515;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    height: 80px;
    width: auto;
}

.header-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.contact-info {
    display: flex;
    gap: 40px;
    align-items: center;
}

.phone-section, .email-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.phone, .email {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.phone:hover, .email:hover {
    color: #bb3515;
}

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

/* Buttons */
.btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #bb3515;
    color: white;
}

.btn-primary:hover {
    background-color: #a02d12;
}

.btn-secondary {
    background-color: #ff6b35;
    color: white;
}

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

.btn-cta {
    background-color: #bb3515;
    color: white;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 5px;
}

.btn-cta:hover {
    background-color: #a02d12;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: #333;
}

/* Navigation */
.navigation {
    background-color: #1d2425;
    padding: 15px 0;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://ext.same-assets.com/2287994573/933243104.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #c38746;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Feature Cards */
.feature-cards {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card {
    padding: 40px 30px;
    color: white;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-orange {
    background-color: #bb3515;
}

.card-teal {
    background-color: #07968a;
}

.card-yellow {
    background-color: #f59e0b;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    background-color: rgba(255,255,255,0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.card p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #1d2425;
    color: white;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.services-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.services-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.services-text li {
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: #ccc;
}

.services-text p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
}

/* Transportation Industry */
.transportation-industry {
    padding: 80px 0;
    background-color: #1d2425;
    color: white;
    text-align: center;
}

.transportation-industry h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

/* DOT Medical Exams */
.dot-medical-exams {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.dot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dot-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1d2425;
    font-family: 'Montserrat', sans-serif;
}

.dot-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #666;
}

.dot-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.dot-text li {
    padding: 8px 0;
    font-size: 16px;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.dot-text li:before {
    content: "•";
    color: #bb3515;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.dot-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Drug Testing */
.drug-testing {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('https://ext.same-assets.com/2287994573/2900698335.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.drug-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.drug-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.drug-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ccc;
}

.drug-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.drug-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.drug-text li {
    padding: 5px 0;
    font-size: 14px;
    color: #ccc;
    position: relative;
    padding-left: 15px;
}

.drug-text li:before {
    content: "•";
    color: #bb3515;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.drug-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Random Testing */
.random-testing {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('https://ext.same-assets.com/2287994573/982569895.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.random-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.random-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.random-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #ccc;
}

.random-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: #bb3515;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #cbb894;
}

.business-hours h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.business-hours p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

.footer-address p {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.footer-map img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #ccc;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 10px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .services-content,
    .dot-content,
    .drug-content,
    .random-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .card {
        padding: 30px 20px;
        min-height: 350px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}
