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

:root {
    --primary-color: #003D7A;
    --secondary-color: #FFA500;
    --dark-blue: #002952;
    --light-blue: #0066CC;
    --dark-gray: #2C2C2C;
    --medium-gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.section-padding {
    padding: 80px 0;
}

.bg-gray {
    background-color: var(--light-gray);
}

.bg-dark {
    background-color: var(--dark-gray);
}

.bg-primary {
    background-color: var(--primary-color);
}

.text-white {
    color: var(--white);
}

.text-orange {
    color: var(--secondary-color);
}

.centered {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--light-gray);
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #FF8C00;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
    flex-wrap: nowrap;
}

.main-nav .logo {
    flex: 0 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 12px;
    flex: 0 0 auto;
}

.main-nav .logo-secondary {
    flex: 0 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
}

.main-nav .cta-button {
    flex: 0 0 auto;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo-secondary {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo-secondary img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 12px;
}

.nav-menu a {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--dark-gray);
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 61, 122, 0.15) 0%, rgba(0, 41, 82, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--white);
    margin-bottom: 35px;
    font-weight: 300;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Stats Bar */
.stats-bar {
    background-color: var(--dark-blue);
    padding: 40px 0;
}

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

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title.text-orange {
    color: var(--secondary-color) !important;
}
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.column-content .lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.6;
}

.column-content p {
    margin-bottom: 20px;
    color: var(--medium-gray);
    line-height: 1.8;
}

.checkmark-list {
    list-style: none;
    margin: 30px 0;
}

.checkmark-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.link-arrow:hover {
    color: var(--primary-color);
}

/* Fleet Gallery */
.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.fleet-item {
    height: 250px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.fleet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-item:hover img {
    transform: scale(1.1);
}

/* Video Section */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 4px;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
}

.video-placeholder-content {
    text-align: center;
    color: var(--white);
}

.video-placeholder-content svg {
    margin: 0 auto 15px;
    opacity: 0.6;
}

.video-placeholder-content .small {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 5px;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.industries-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.industry-item h3 {
    font-size: 1.1rem;
    color: var(--dark-blue);
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
.main-footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    background-color: white;
    padding: 10px;
    border-radius: 4px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column p {
    opacity: 0.9;
    line-height: 1.7;
}

.footer-links,
.footer-contact,
.footer-hours {
    list-style: none;
}

.footer-links li,
.footer-contact li,
.footer-hours li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact a {
    color: var(--white);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Page Hero */
.page-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 61, 122, 0.35), rgba(0, 41, 82, 0.25));
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.95;
}

/* Equipment List */
.equipment-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.equipment-item {
    background-color: var(--white);
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.equipment-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.equipment-item h4 {
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.equipment-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.info-card-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card p,
.info-card a {
    color: var(--medium-gray);
    line-height: 1.7;
}

.info-card a {
    display: block;
    margin-top: 5px;
}

.info-card a:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Service Details */
.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-detail-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-detail-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

.service-detail-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--medium-gray);
}

.service-detail-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 968px) {
    .main-header {
        position: relative;
        width: 100%;
    }

    .main-header .container {
        width: 100%;
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        height: 500px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Hide video on mobile, show static background */
    .hero-video {
        display: none;
    }

    .hero-video-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('images/7.jpg');
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 768px) {
    .main-header {
        width: 100%;
        box-sizing: border-box;
    }

    .main-header .container {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        max-width: 100%;
    }

    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 0;
        width: 100%;
        flex-wrap: nowrap;
    }

    .main-nav .logo {
        flex: 0 0 auto;
        height: 40px;
    }

    .main-nav .logo img {
        height: 40px;
        width: auto;
        display: block;
    }

    .main-nav .logo-secondary {
        display: flex !important;
        flex: 0 0 auto;
        height: 40px;
        align-items: center;
    }

    .main-nav .logo-secondary img {
        height: 40px;
        width: auto;
    }

    .cta-button {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        flex: 0 0 auto;
        gap: 5px;
        flex-direction: column;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: #FFA500;
        border-radius: 1px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        border-bottom: 1px solid var(--border);
        padding: 10px 0;
        gap: 0;
        width: 100%;
        z-index: 100;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        padding: 10px 15px;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 13px;
        padding: 0;
        color: var(--text-primary);
        text-decoration: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-grid,
    .fleet-gallery {
        grid-template-columns: 1fr;
    }

    .industries-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipment-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-padding {
        padding: 60px 0;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .main-nav .logo img {
        height: 35px;
    }

    .main-nav .logo-secondary img {
        height: 35px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .hero {
        height: 400px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-nav .logo img {
        height: 35px;
    }

    .main-nav .cta-button {
        font-size: 10px;
        padding: 5px 8px;
    }

    .nav-menu a {
        font-size: 11px;
    }

    .hero {
        height: 400px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-nav {
        padding: 10px 0;
    }

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

    .cta-button {
        font-size: 11px;
        padding: 6px 10px;
    }

    .nav-menu a {
        font-size: 11px;
    }

    .hero {
        height: 400px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

/* Hours single line styling */
.footer-hours li {
    white-space: normal;
    overflow: visible;
    font-size: 0.9rem;
}
