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

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

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            min-height: 70px;
            position: relative;
        }

        .logo {
            font-family: 'Bitcount Prop Single', monospace;
            font-size: 1.8rem;
            font-weight: 400;
            color: #ff6b35;
            text-transform: uppercase;
            letter-spacing: 2px;
            white-space: nowrap;
            flex-shrink: 0;
            line-height: 1.2;
            padding: 0.2rem 0;
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            flex-wrap: nowrap;
            margin: 0;
        }
        
        .nav-links > li {
            white-space: nowrap;
        }

        .dropdown {
            list-style: none;
        }

        .dropdown li {
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #ff6b35;
            transform: translateY(-2px);
        }

        /* Active nav item styling */
        .nav-links li.active > a {
            color: #ff6b35;
        }

        .nav-links li.active > a::before {
            width: 100%;
        }

        /* Keep parent nav item highlighted when hovering child dropdown */
        .nav-links > li:hover > a {
            color: #ff6b35;
            transform: translateY(-2px);
        }

        /* Orange underline for all nav links */
        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b35;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        /* Keep parent nav item underline when hovering child dropdown */
        .nav-links > li:hover > a::before {
            width: 100%;
        }

        /* Navigation Structure Reset */
        .nav-links li {
            position: relative;
        }

        /* Top-level nav items that have dropdowns */
        .nav-links > li.has-dropdown > a {
            position: relative;
            padding-right: 1.2rem;
        }

        /* Down arrow for top-level items */
        .nav-links > li.has-dropdown > a::after {
            content: '▼';
            font-size: 0.7rem;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
        }

        .nav-links > li.has-dropdown:hover > a::after {
            transform: translateY(-50%) rotate(180deg);
        }

        /* First-level dropdown (appears below top nav) */
        .nav-links > li > .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(15px);
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border-radius: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            padding: 1rem 0;
            margin-top: 0.5rem;
        }

        /* Create invisible bridge between top nav and first-level dropdown */
        .nav-links > li.has-dropdown::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            height: 0.5rem;
            background: transparent;
            z-index: 999;
        }

        /* Prevent first-level dropdown from going off-screen */
        .nav-links > li:nth-last-child(-n+3) > .dropdown {
            left: auto;
            right: 0;
        }

        /* Show first-level dropdown on hover */
        .nav-links > li:hover > .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* All dropdown items */
        .dropdown li {
            position: relative;
            width: 100%;
        }

        /* All dropdown links */
        .dropdown a {
            display: block;
            padding: 0.8rem 1.5rem;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
        }

        /* Dropdown link hover */
        .dropdown a:hover {
            background: rgba(255, 107, 53, 0.2);
            padding-left: 2rem;
            color: #ff6b35;
        }

        /* Keep parent dropdown item highlighted when hovering child dropdown */
        .dropdown > li:hover > a {
            background: rgba(255, 107, 53, 0.2);
            padding-left: 2rem;
            color: #ff6b35;
        }

        /* Second-level items that have third-level dropdowns */
        .dropdown > li.has-dropdown > a {
            padding-right: 3rem;
        }

        /* Right arrow for second-level items with submenus */
        .dropdown > li.has-dropdown > a::after {
            content: '▶';
            font-size: 0.8rem;
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            transition: color 0.3s ease;
        }

        .dropdown > li.has-dropdown > a:hover::after {
            color: #ff6b35;
        }

        /* Third-level dropdown (appears to the right of second-level) */
        .dropdown > li > .dropdown {
            position: absolute;
            top: 0;
            left: 100%;
            margin-left: 0.5rem;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(15px);
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border-radius: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
            padding: 1rem 0;
        }

        /* Create invisible bridge between second-level and third-level dropdowns */
        .dropdown > li.has-dropdown::before {
            content: '';
            position: absolute;
            top: 0;
            right: -0.5rem;
            width: 0.5rem;
            height: 100%;
            background: transparent;
            z-index: 999;
        }

        /* Show third-level dropdown on hover */
        .dropdown > li:hover > .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        /* Only prevent third-level dropdowns from going off-screen when actually needed */
        @media (max-width: 1200px) {
            .nav-links > li:nth-last-child(-n+2) .dropdown > li > .dropdown {
                left: -100%;
                margin-left: -0.5rem;
                transform: translateX(10px);
            }

            .nav-links > li:nth-last-child(-n+2) .dropdown > li:hover > .dropdown {
                transform: translateX(0);
            }
        }

        /* Remove any conflicting pseudo-elements */
        .dropdown a::before {
            display: none;
        }

        .cta-button {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(255,107,53,0.2)), url('https://images.unsplash.com/photo-1694521787673-28cbd8830ea5?ixlib=rb-4.1.0&q=85&fm=jpg&crop=entropy&cs=srgb&dl=glenov-brankovic-6CT4cYdSNaI-unsplash.jpg&w=1920');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
           
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid white;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

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

        .btn-secondary:hover {
            background: white;
            color: #333;
            transform: translateY(-3px);
        }

        /* Floating elements */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
        .shape2 { width: 120px; height: 120px; top: 60%; right: 15%; animation-delay: 2s; }
        .shape3 { width: 60px; height: 60px; top: 80%; left: 20%; animation-delay: 4s; }

        /* Services Section */
        .services {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .orange-accent {
            width: 60px;
            height: 4px;
            background: #ff6b35;
            margin: 20px auto;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 3rem;
            color: #333;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Recent Jobs Section */
        .recent-jobs {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            overflow: hidden;
        }

        .recent-jobs .container {
            padding: 0 5%;
        }

        .jobs-carousel {
            position: relative;
            width: 100vw;
            overflow: hidden;
            margin-top: 3rem;
        }

        .jobs-track {
            display: flex;
            gap: 2rem;
            animation: scroll-jobs 50s linear infinite;
            width: calc(350px * 12 + 2rem * 11); /* Account for duplicated cards */
            padding-left: 2rem;
            transition: transform 0.3s ease;
        }

        .jobs-track:hover {
            animation-play-state: paused;
        }

        .job-card {
            min-width: 350px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
        }

        .job-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .job-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

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

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

        .job-content {
            padding: 2rem;
        }

        .job-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            color: #333;
        }

        .job-content p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        @keyframes scroll-jobs {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-350px * 6 - 2rem * 5)); /* Move by 6 cards */
            }
        }

        /* About Section */
        .about {
            padding: 6rem 5%;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .about-text p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 15px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ff6b35;
            display: block;
        }

        .stat-label {
            color: #666;
            font-weight: 500;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 500px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-align: center;
        }

        /* Locations Section */
        .locations {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .location-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .location-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
        }

        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .location-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .location-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .location-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .location-list {
            list-style: none;
        }

        .location-list li {
            color: #666;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .location-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ff6b35;
            font-weight: bold;
        }

        .service-radius {
            text-align: center;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .radius-info h3 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .radius-info p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #333, #555);
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .contact-details li::before {
            content: '▶';
            color: #ff6b35;
            margin-right: 1rem;
            font-size: 0.8rem;
        }

        .contact-details a {
            color: inherit;
            text-decoration: none;
        }

        .contact-details a:hover {
            color: #ff6b35;
            text-decoration: underline;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: rgba(255,255,255,0.9);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
        }

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

        /* Footer */
        footer {
            background: #222;
            color: white;
            text-align: center;
            padding: 2rem 5%;
        }

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

        footer a:hover {
            color: #ff6b35;
            text-decoration: underline;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-nav {
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(15px);
            z-index: 9999;
            transition: top 0.4s ease;
            overflow-y: auto;
            overflow-x: hidden;
            padding-top: 80px;
        }

        .mobile-nav.open {
            top: 0;
        }

        .mobile-nav-level {
            position: absolute;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background: transparent;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .mobile-nav-level.active {
            transform: translateX(0);
        }

        .mobile-nav-level.prev {
            transform: translateX(-100%);
        }

        .mobile-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-header {
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        

        .mobile-nav-title {
            color: #ff6b35;
            font-size: 1.2rem;
            font-weight: bold;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .mobile-nav a,
        .mobile-nav button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            text-decoration: none;
            padding: 1.5rem 2rem;
            transition: all 0.3s ease;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            cursor: pointer;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .mobile-back-btn {
            background: none;
            border: none;
            color: #ff6b35;
            font-size: 0.9rem;
            cursor: pointer;
            padding: 0.1rem;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 30px;
            min-width: 30px;
            max-width: 30px;
        }
        .mobile-nav a:hover,
        .mobile-nav button:hover {
            background: rgba(255, 107, 53, 0.2);
            color: #ff6b35;
        }

        .mobile-nav .has-dropdown > button::after {
            content: '⌄';
            font-size: 1rem;
            font-weight: normal;
            color: #ff6b35;
            transform: rotate(-90deg);
            display: inline-block;
        }

        .mobile-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 10000;
        }

        .mobile-overlay {
            display: none;
        }

        /* Responsive */
        
        /* Large screens - reduce nav padding to fit more content */
        @media (max-width: 2400px) {
            nav {
                padding: 1rem 3%;
            }
            
            .nav-links {
                gap: 1.5rem;
            }
        }
        
        /* Medium-large screens - further reduce spacing */
        @media (max-width: 1800px) {
            nav {
                padding: 1rem 2%;
            }
            
            .nav-links {
                gap: 1.2rem;
            }
            
            .logo {
                font-size: 1.6rem;
            }
        }
        
        /* Medium screens - switch to mobile navigation earlier */
        @media (max-width: 1400px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .cta-button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }
        
        /* Small-medium screens */
        @media (max-width: 1024px) {
            .cta-button {
                display: none;
            }
            
            nav {
                padding: 1rem 4%;
            }
        }
        
        /* Small screens */
        @media (max-width: 768px) {
            nav {
                padding: 1rem 5%;
            }

            .logo {
                font-size: 1rem;
                max-width: 60%;
                line-height: 1.2;
                letter-spacing: 1px;
                white-space: normal;
                word-break: break-word;
                padding: 0.3rem 0;
                min-height: 1.5rem;
            }

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

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

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

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

            /* Recent Jobs responsive */
            .jobs-carousel {
                overflow: hidden;
                position: relative;
                width: 100vw;
                margin-top: 3rem;
            }

            .jobs-track {
                display: flex;
                gap: 1rem;
                animation: scroll-jobs-mobile 25s linear infinite;
                width: calc(75vw * 12 + 1rem * 11); /* Account for duplicated cards */
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .jobs-track:hover {
                animation-play-state: paused;
            }

            .job-card {
                width: 75vw; /* Fixed width for mobile responsiveness */
                flex-shrink: 0;
            }

            @keyframes scroll-jobs-mobile {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-75vw * 6 - 1rem * 5));
                }
            }

            @keyframes scroll-jobs {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-280px * 6 - 2rem * 5));
                }
            }
        }

        /* Extra small screens */
        @media (max-width: 480px) {
            .logo {
                font-size: 0.85rem;
                max-width: 80%;
                letter-spacing: 0.5px;
                padding: 0.4rem 0;
                min-height: 1.3rem;
            }

            nav {
                padding: 0.8rem 3%;
                min-height: 65px;
            }

            .mobile-menu {
                font-size: 1.3rem;
                padding: 0.3rem;
            }
        }

        /* iOS Safari specific fixes */
        @supports (-webkit-touch-callout: none) {
            header {
                position: fixed;
                top: env(safe-area-inset-top, 0);
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }
            
            .logo {
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                transform: translateZ(0);
                will-change: transform;
            }
            
            nav {
                padding-top: max(1rem, env(safe-area-inset-top, 0) + 0.5rem);
                padding-bottom: 1rem;
            }
        }