:root {
            --forest-green: #2D3A27;
            --slate-gray: #3E4444;
            --safety-orange: #FF6700;
            --off-white: #F5F5F0;
            --dark-text: #1A1A1A;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto Condensed', sans-serif;
            color: var(--dark-text);
            background: var(--off-white);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(45, 58, 39, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--safety-orange);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .logo img {
            height: 60px;
            width: auto;
            filter: brightness(0) invert(1);
            transition: filter 0.3s;
        }

        .logo:hover img {
            filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--safety-orange));
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav a {
            color: var(--off-white);
            text-decoration: none;
            font-weight: 400;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: var(--safety-orange);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--safety-orange);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-image: url('images/css-img-1.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(45, 58, 39, 0.65);
            backdrop-filter: blur(1px);
            pointer-events: none;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(0,0,0,0.03) 2px,
                    rgba(0,0,0,0.03) 4px
                );
            pointer-events: none;
            animation: scanlines 8s linear infinite;
            z-index: 2;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(4px); }
        }

        .hero-content {
            text-align: center;
            z-index: 3;
            max-width: 1200px;
            padding: 2rem;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-logo {
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero-logo img {
            height: 120px;
            width: auto;
            filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255,103,0,0.3));
        }

        .hero h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 6rem;
            font-weight: 700;
            color: var(--off-white);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
            line-height: 1.1;
        }

        .hero h1 .highlight {
            color: var(--safety-orange);
            display: block;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        .hero p {
            font-size: 1.4rem;
            color: var(--off-white);
            letter-spacing: 2px;
            margin-bottom: 3rem;
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.6s backwards;
        }

        .cta-primary {
            display: inline-block;
            background: var(--safety-orange);
            color: white;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 2px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: fadeInUp 1s ease-out 0.9s backwards;
            z-index: 10;
        }

        .cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transition: left 0.5s;
        }

        .cta-primary:hover::before {
            left: 100%;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 103, 0, 0.4);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            z-index: 3;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        .scroll-indicator::after {
            content: '';
            display: block;
            width: 30px;
            height: 50px;
            border: 3px solid var(--safety-orange);
            border-radius: 20px;
            position: relative;
        }

        .scroll-indicator::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 10px;
            background: var(--safety-orange);
            border-radius: 3px;
            animation: scroll 2s infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
            100% {
                transform: translateX(-50%) translateY(20px);
                opacity: 0;
            }
        }

        /* Mission Section */
        .mission {
            min-height: 100vh;
            padding: 10rem 5% 8rem 5%;
            background: var(--off-white);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .mission::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/css-img-2.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.08;
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 1rem;
        }

        .section-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--forest-green);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .section-header .underline {
            width: 100px;
            height: 4px;
            background: var(--safety-orange);
            margin: 1rem auto 0 auto;
        }

        .mission-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .mission-text h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            color: var(--slate-gray);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .mission-text p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--slate-gray);
            margin-bottom: 1.5rem;
        }

        .mission-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            width: 100%;
        }

        .stat-box {
            background: white;
            padding: 2rem;
            border-left: 4px solid var(--safety-orange);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .stat-box h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            color: var(--safety-orange);
            margin-bottom: 0.5rem;
        }

        .stat-box p {
            font-size: 1rem;
            color: var(--slate-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        /* Vehicles Section */
        .vehicles {
            min-height: 100vh;
            padding: 10rem 5% 8rem 5%;
            background: var(--slate-gray);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .vehicles::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/css-img-2.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.06;
            pointer-events: none;
            z-index: 0;
        }

        .vehicles::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.2) 100%);
            pointer-events: none;
            z-index: 0;
        }

        .vehicles .section-header h2 {
            color: var(--off-white);
        }

        .vehicle-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .vehicle-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.1);
            padding: 2.5rem;
            transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }

        .vehicle-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,103,0,0.1), transparent);
            transition: left 0.5s;
        }

        .vehicle-card:hover::before {
            left: 100%;
        }

        .vehicle-card:hover {
            transform: translateY(-10px);
            border-color: var(--safety-orange);
            box-shadow: 0 20px 40px rgba(255,103,0,0.2);
        }

        .vehicle-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            color: var(--off-white);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .vehicle-card p {
            color: rgba(245,245,240,0.8);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .vehicle-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
            color: var(--safety-orange);
        }

        /* Capabilities Section */
        .capabilities {
            min-height: 100vh;
            padding: 10rem 5% 8rem 5%;
            background: var(--forest-green);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .capabilities::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/css-img-2.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.1;
            pointer-events: none;
            z-index: 0;
        }

        .capabilities::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--safety-orange);
            z-index: 1;
        }

        .capabilities .section-header h2 {
            color: var(--off-white);
        }

        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .capability-item {
            text-align: center;
            position: relative;
        }

        .capability-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: var(--safety-orange);
            border-radius: 50%;
            opacity: 0.1;
            transition: all 0.5s;
        }

        .capability-item:hover::before {
            width: 120px;
            height: 120px;
            opacity: 0.2;
        }

        .capability-icon {
            font-size: 3rem;
            color: var(--safety-orange);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .capability-item h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            color: var(--off-white);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .capability-item p {
            color: rgba(245,245,240,0.8);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            min-height: 100vh;
            padding: 10rem 5% 8rem 5%;
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--slate-gray) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/css-img-2.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.08;
            pointer-events: none;
            z-index: 0;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 50px,
                rgba(255,103,0,0.03) 50px,
                rgba(255,103,0,0.03) 100px
            );
            animation: diagonal-move 20s linear infinite;
            z-index: 0;
        }

        @keyframes diagonal-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .cta-section h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 4rem;
            color: var(--off-white);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
            max-width: 900px;
        }

        .cta-section p {
            font-size: 1.3rem;
            color: rgba(245,245,240,0.9);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            letter-spacing: 1px;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        footer {
            background: var(--dark-text);
            color: var(--off-white);
            padding: 3rem 5%;
            text-align: center;
        }

        footer p {
            font-size: 0.95rem;
            letter-spacing: 1px;
            opacity: 0.8;
            line-height: 1.6;
        }

        footer a {
            color: var(--safety-orange);
            text-decoration: none;
            transition: opacity 0.3s;
        }

        footer a:hover {
            opacity: 0.8;
        }

        @media (max-width: 480px) {
            footer p {
                font-size: 0.85rem;
            }
        }

        /* Responsive */
        @media (min-width: 1920px) {
            .mission,
            .vehicles,
            .capabilities,
            .cta-section {
                padding-left: 10%;
                padding-right: 10%;
            }

            .hero h1 {
                font-size: 7rem;
            }

            .section-header h2 {
                font-size: 4rem;
            }
        }

        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 4.5rem;
            }

            .section-header h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 968px) {
            nav {
                padding: 1rem 3%;
            }

            .logo {
                font-size: 1.5rem;
            }

            nav ul {
                gap: 1.5rem;
            }

            nav a {
                font-size: 0.9rem;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }

            .mission,
            .vehicles,
            .capabilities,
            .cta-section {
                padding-left: 3%;
                padding-right: 3%;
            }

            .mission-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .vehicle-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2rem;
            }

            .capabilities-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 5%;
            }

            nav ul {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }

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

            .hero p {
                font-size: 1rem;
            }

            .cta-primary {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta-section h2 {
                font-size: 2.5rem;
            }

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

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

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

            .mission,
            .vehicles,
            .capabilities,
            .cta-section {
                min-height: auto;
                padding: 5rem 5%;
            }
        }

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

            .hero p {
                font-size: 0.9rem;
                letter-spacing: 1px;
            }

            .logo img {
                height: 45px;
            }

            .hero-logo img {
                height: 80px;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .stat-box h4 {
                font-size: 2.5rem;
            }

            .vehicle-card h3,
            .capability-item h4 {
                font-size: 1.3rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .mission,
            .vehicles,
            .capabilities,
            .cta-section {
                padding: 4rem 5%;
            }
        }

        /* Custom Cursor Effect */
        body {
            cursor: crosshair;
        }

        a, button, .cta-primary {
            cursor: pointer;
        }