
        :root {
            --primary-blue: #14254B;
            --dark-blue: #14254B;
            --light-blue: #3a507e;
            --gray-900: #1a1a1a;
            --gray-800: #1f2937;
            --gray-700: #374151;
            --gray-600: #4b5563;
            --gray-400: #9ca3af;
            --gray-100: #f3f4f6;
            --success-green: #10b981;
            --warning-orange: #f59e0b;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: var(--gray-900);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        /* Header fijo */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            text-decoration: none;
        }
        
        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-menu a {
            color: var(--gray-600);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--primary-blue);
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(20, 37, 75, 0.3);
        }
        

        

        
        /* Hero Section V2 - Modern Design */
        .hero-v2 {
            margin-top: 0; /* Remove margin */
            color: white;
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background-color: #14254B; /* Fallback color */
        }

        #hero-video-background {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .hero-v2::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(20, 37, 75, 0.7); /* Dark overlay */
            z-index: 1;
        }
        
        .hero-content-v2 {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr; /* Single column layout */
            gap: 2rem;
            align-items: center;
            position: relative;
            z-index: 2;
            text-align: center; /* Center align all content */
        }
        
        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 0 5px 15px rgba(0,0,0,0.4);
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.6;
            max-width: 80%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-actions {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            justify-content: center; /* Center buttons */
        }
        
        .btn-primary-v2 {
            background: white;
            color: var(--primary-blue);
            padding: 1.1rem 2.2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            border: 2px solid white;
        }
        
        .btn-primary-v2:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.25);
            background-color: var(--light-blue);
            color: white;
            border-color: var(--light-blue);
        }
        
        .btn-secondary-v2 {
            background: rgba(255,255,255,0.1);
            color: white;
            padding: 1.1rem 2.2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
            backdrop-filter: blur(5px);
        }
        
        .btn-secondary-v2:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.6);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .hero-features {
            display: flex;
            gap: 2.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            justify-content: center; /* Center feature items */
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.05rem;
            font-weight: 500;
            opacity: 0.9;
        }
        
        .feature-icon {
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        /* Responsive adjustments for the new Hero section */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
                max-width: 90%;
            }
        }
        
        @media (max-width: 768px) {
            .hero-v2 {
                padding: 6rem 1.5rem;
                min-height: 80vh;
            }

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

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
        }
        .services {
            padding: 5rem 2rem;
            background: #f9fafb;
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1.15rem;
            color: var(--gray-600);
        }
        
        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(20, 37, 75, 0.15);
            border-color: var(--primary-blue);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--light-blue) 0%, #3a507e 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .service-icon .icon-svg {
            color: white;
        }

        .service-icon .icon-svg {
            color: white;
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--gray-900);
        }
        
        .service-card p {
            color: var(--gray-600);
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .service-features {
            list-style: none;
            margin: 1rem 0;
        }
        
        .service-features li {
            color: var(--gray-700);
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-green);
            font-weight: bold;
        }
        
        .service-price {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-top: 1rem;
        }
        
        .service-link {
            color: var(--primary-blue);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .service-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        /* Fleet Details Section */
        .fleet-details {
            padding: 5rem 2rem;
            background: white;
        }

        .fleet-details-grid {
            max-width: 1200px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .fleet-feature-card {
            background: #f9fafb;
            padding: 2.5rem;
            border-radius: 15px;
            border: 2px solid var(--gray-100);
        }

        .fleet-feature-card .service-icon {
            margin-bottom: 1rem;
        }

        .fleet-feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--gray-900);
        }

        .fleet-feature-card p {
            color: var(--gray-600);
            line-height: 1.6;
        }

        .fleet-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .fleet-tab-btn {
            background: white;
            border: 2px solid var(--gray-100);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            color: var(--gray-700);
            cursor: pointer;
            transition: all 0.3s;
        }

        .fleet-tab-btn.active {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }

        .fleet-tab-btn:hover {
            border-color: var(--primary-blue);
        }

        .fleet-tab-content {
            display: none;
        }

        .fleet-tab-content.active {
            display: block;
        }
        
        .fleet-tab-content ul {
            list-style: none;
            padding-left: 1.5rem;
            margin-top: 1rem;
        }

        .fleet-tab-content li {
            position: relative;
            margin-bottom: 0.5rem;
            color: var(--gray-700);
        }

        .fleet-tab-content li::before {
            content: '›';
            position: absolute;
            left: -1.5rem;
            color: var(--primary-blue);
            font-weight: bold;
        }
        
        /* Cobertura geográfica */
        .coverage {
            padding: 5rem 2rem;
            background: white;
        }
        
        .coverage-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .coverage-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        
        .coverage-intro h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--gray-900);
        }
        
        .coverage-intro p {
            font-size: 1.1rem;
            color: var(--gray-600);
            line-height: 1.7;
        }
        
        /* Tabs de ubicación */
        .location-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .tab-btn {
            background: white;
            border: 2px solid var(--gray-100);
            padding: 0.875rem 1.75rem;
            border-radius: 8px;
            font-weight: 600;
            color: var(--gray-700);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .tab-btn.active {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }
        
        .tab-btn:hover {
            border-color: var(--primary-blue);
        }
        
        .location-content {
            display: none;
        }
        
        .location-content.active {
            display: block;
        }
        
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .location-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border-left: 4px solid var(--primary-blue);
            transition: all 0.3s;
        }
        
        .location-card:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(20, 37, 75, 0.15);
        }
        
        .location-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .location-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--gray-900);
        }
        
        .location-card p {
            color: var(--gray-600);
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .neighborhoods-list {
            list-style: none;
            margin: 1rem 0;
        }
        
        .neighborhoods-list li {
            color: var(--gray-700);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            padding-left: 1.25rem;
            position: relative;
        }
        
        .neighborhoods-list li::before {
            content: '📍';
            position: absolute;
            left: 0;
            font-size: 0.85rem;
        }
        
        .coverage-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
            text-align: center;
        }
        
        .stat-item {
            background: var(--light-blue);
            padding: 2rem;
            border-radius: 15px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: #e0e7ff;
            font-weight: 600;
        }
        
        /* Proceso paso a paso */
        .process {
            padding: 5rem 2rem;
            background: var(--gray-100);
        }
        
        .process-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 25px rgba(20, 37, 75, 0.2);
        }
        
        .process-step h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--gray-900);
        }
        
        .process-step p {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Testimonios */
        .testimonials {
            padding: 5rem 2rem;
            background: white;
        }
        
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonials-grid {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            position: relative;
            flex-shrink: 0;
            width: calc(100% / 3 - 2rem);
        }

        .testimonials-carousel-container {
            position: relative;
            margin: 0 auto;
            max-width: 1200px;
        }

        .testimonials-carousel-track-container {
            overflow: hidden;
        }

        .testimonials-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 2rem;
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.7);
            border: none;
            color: var(--primary-blue);
            font-size: 2rem;
            cursor: pointer;
            z-index: 10;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .carousel-button.prev {
            left: -25px;
        }

        .carousel-button.next {
            right: -25px;
        }
        
        .stars {
            color: #fbbf24;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .testimonial-text {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
            font-style: italic;
            line-height: 1.7;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .author-info .author-name {
            font-weight: 700;
            color: var(--gray-900);
        }
        
        .author-info p {
            color: var(--gray-600);
            font-size: 0.9rem;
        }
        
        /* Formulario de cotización flotante */
        .quote-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #14254B 0%, #2a3f6c 100%);
            color: white;
        }
        
        .quote-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .quote-container h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .quote-container p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.95;
        }
        
        .quote-form {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid rgba(255,255,255,0.2);
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 8px;
            font-size: 1rem;
            background: rgba(255,255,255,0.1);
            color: white;
            backdrop-filter: blur(10px);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.6);
        }
        
        .form-group select {
            cursor: pointer;
        }
        
        .form-group option {
            background: var(--dark-blue);
            color: white;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .section-label {
            font-size: 1.1rem;
            color: #FFD700;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .location-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 0.5rem;
        }
        
        .location-field {
            display: flex;
            flex-direction: column;
        }
        
        .location-field label {
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            opacity: 0.9;
        }
        
        .unidad-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }
        
        .unidad-group {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .unidad-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            color: #FFD700;
            display: block;
        }
        
        .unidad-options {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            font-size: 0.9rem;
            padding: 0.3rem 0;
        }
        
        .checkbox-label input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        
        .checkbox-label span {
            opacity: 0.9;
        }
        
        /* Panel Colapsable para Unidades */
        .collapsible-panel {
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            border: 2px solid rgba(255,255,255,0.2);
            overflow: hidden;
        }
        
        .collapsible-header {
            width: 100%;
            background: rgba(255,255,255,0.15);
            border: none;
            padding: 1rem 1.25rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #FFD700;
            font-size: 1.1rem;
            font-weight: 700;
            text-align: left;
            transition: all 0.3s ease;
        }
        
        .collapsible-header:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .collapsible-icon {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .collapsible-panel.active .collapsible-icon {
            transform: rotate(180deg);
        }
        
        .collapsible-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .collapsible-panel.active .collapsible-content {
            max-height: 800px;
        }
        
        /* Lista compacta de unidades */
        .unidad-lista-compacta {
            padding: 1.25rem;
        }
        
        .unidad-categoria {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .unidad-categoria:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .unidad-categoria-title {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: white;
            font-size: 0.95rem;
        }
        
        .unidad-opciones-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        
        .checkbox-inline {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.9rem;
            cursor: pointer;
            white-space: nowrap;
        }
        
        .checkbox-inline input[type="checkbox"] {
            width: 16px;
            height: 16px;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .location-row {
                grid-template-columns: 1fr;
            }
            
            .unidad-container {
                grid-template-columns: 1fr;
            }
            
            .unidad-opciones-row {
                gap: 0.5rem 0.8rem;
            }
            
            .checkbox-inline {
                font-size: 0.85rem;
            }
        }
        
        .submit-btn {
            width: 100%;
            background: white;
            color: var(--primary-blue);
            padding: 1.125rem;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        
        /* CTA Final */
        .final-cta {
            padding: 5rem 2rem;
            background: var(--gray-100);
            text-align: center;
        }
        
        .final-cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--gray-600);
        }
        
        /* Footer */
        .footer {
            background: var(--gray-800);
            color: white;
            padding: 3rem 2rem 1.5rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #4f6a9e;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: var(--gray-400);
        }
        
        /* Responsive */
        @media (min-width: 1200px) {
            .fleet-details-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
            }
            
            .coverage-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .coverage-stats,
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
        }
    