:root {
            --primary: #20252b;
            --secondary: #568ea3;
            --cta: #ff6663;
            --text-light: #ffffff;
            --text-muted: rgba(255, 255, 255, 0.7);
            
            /* Glassmorphism Variables */
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
            
            /* Typography */
            --font-display: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
            background-color: var(--primary);
            color: var(--text-light);
            font-family: var(--font-body);
            overflow-x: hidden;
        }

        body {
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-display);
            text-transform: uppercase;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            box-shadow: var(--glass-shadow);
        }

        .btn-cta {
            background: var(--cta);
            color: var(--text-light);
            padding: 12px 28px;
            border-radius: 4px;
            font-family: var(--font-display);
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: inline-block;
            text-align: center;
        }

        .btn-cta:hover {
            box-shadow: 0 0 20px rgba(255, 102, 99, 0.5);
            transform: translateY(-2px);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 5%;
            transition: all 0.4s ease;
        }

        header.scrolled {
            padding: 10px 5%;
            background: rgba(32, 37, 43, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.5rem;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--cta);
        }

        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: float 20s infinite alternate;
        }

        .shape-1 {
            width: 600px;
            height: 600px;
            background: var(--secondary);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 500px;
            height: 500px;
            background: var(--cta);
            bottom: -150px;
            left: -100px;
            animation-delay: -5s;
            opacity: 0.15;
        }

        @keyframes float {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(100px, 50px) scale(1.1); }
            100% { transform: translate(-50px, 100px) scale(0.9); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text-giant {
            font-size: clamp(4rem, 8vw, 10rem);
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -2px;
            margin-bottom: 20px;
            color: var(--text-light); /* Changed to solid white as requested */
            position: relative;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 500px;
            line-height: 1.6;
        }

        .hero-glass-panels {
            position: relative;
            height: 500px;
        }

        .panel {
            position: absolute;
            padding: 30px;
            transition: transform 0.1s ease-out;
        }

        .panel-1 {
            top: 0;
            right: 0;
            width: 350px;
            z-index: 3;
            transform: translateZ(50px);
        }

        .panel-2 {
            bottom: 20px;
            left: -50px;
            width: 300px;
            z-index: 2;
            background: rgba(86, 142, 163, 0.1);
        }

        .panel-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--cta);
        }

        .section-padding {
            padding: 120px 5%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }

        .section-subtitle {
            color: var(--secondary);
            font-weight: 600;
            letter-spacing: 3px;
            font-size: 1.1rem;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
        }

        .info-text h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .info-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .info-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 1px solid var(--glass-border);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .process-card {
            padding: 40px 30px;
            text-align: left;
            position: relative;
            border-top: 4px solid var(--secondary);
        }

        .process-number {
            font-family: var(--font-display);
            font-size: 4rem;
            font-weight: 900;
            color: rgba(86, 142, 163, 0.2);
            position: absolute;
            top: 20px;
            right: 20px;
            line-height: 1;
        }

        .process-card h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fff;
            position: relative;
            z-index: 2;
        }

        .process-card p {
            color: var(--text-muted);
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .fleet-section {
            background: linear-gradient(180deg, var(--primary) 0%, #15181c 100%);
            position: relative;
        }

        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .fleet-card {
            position: relative;
            height: 450px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 1px solid var(--glass-border);
        }

        .fleet-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(32,37,43,1) 0%, rgba(32,37,43,0.3) 50%, rgba(32,37,43,0) 100%);
            z-index: 1;
            transition: all 0.5s ease;
        }

        .fleet-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .fleet-card:hover .fleet-img {
            transform: scale(1.08);
        }

        .fleet-card:hover::before {
            background: linear-gradient(to top, rgba(32,37,43,1) 0%, rgba(86,142,163,0.5) 60%, rgba(32,37,43,0) 100%);
        }

        .fleet-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(86, 142, 163, 0.2);
            border-color: rgba(86, 142, 163, 0.5);
        }

        .fleet-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            z-index: 2;
            transform: translateY(20px);
            transition: transform 0.5s ease;
        }

        .fleet-card:hover .fleet-content {
            transform: translateY(0);
        }

        .fleet-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }

        .fleet-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            opacity: 0;
            line-height: 1.5;
            transition: opacity 0.5s ease;
            transition-delay: 0.1s;
        }

        .fleet-card:hover .fleet-desc {
            opacity: 1;
        }

        .contact-section {
            position: relative;
            background-image: url('img/freight-logistics.webp');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }

        .contact-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(32, 37, 43, 0.65);
            /* background: rgba(0, 0, 0, 0.65); */
            z-index: 1;
        }

        .contact-container {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            font-weight: 600;
        }

        input, select, textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            padding: 15px;
            border-radius: 8px;
            color: #fff;
            font-family: var(--font-body);
            transition: all 0.3s;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 15px rgba(86, 142, 163, 0.3);
        }

        footer {
            background: #111417;
            padding: 60px 5% 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
            gap: 80px;
            max-width: 1200px;
            margin: 0 auto 40px;
            align-items: center;
        }

        .footer-info {
            text-align: left;
        }

        .footer-logo {
            font-size: 2rem;
            margin-bottom: 20px;
            justify-content: flex-start;
        }

        .footer-text {
            color: var(--text-muted);
            font-size: 0.9rem;
            max-width: 600px;
            margin: 0 0 30px;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 14px;
            margin-bottom: 30px;
        }

        .footer-contact {
            padding-left: 40px;
            border-left: 1px solid var(--glass-border);
        }

        .footer-contact h3 {
            color: var(--text-light);
            font-size: 1.35rem;
            margin-bottom: 20px;
        }

        .footer-contact a {
            display: block;
            width: fit-content;
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 14px;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover,
        .footer-contact a:focus-visible {
            color: var(--cta);
            outline: none;
        }

        .footer-contact address {
            color: var(--text-muted);
            font-size: 1rem;
            font-style: normal;
            line-height: 1.6;
            margin: 2px 0 24px;
        }

        .contact-social-links {
            justify-content: flex-start;
            margin-bottom: 0;
        }

        .footer-copyright {
            color: rgba(255,255,255,0.3);
            font-size: 0.8rem;
            text-align: center;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            color: var(--text-muted);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
        }

        .social-links svg {
            width: 20px;
            height: 20px;
        }

        .social-links a:hover,
        .social-links a:focus-visible {
            color: var(--text-light);
            background: var(--cta);
            border-color: var(--cta);
            transform: translateY(-3px);
            outline: none;
        }

        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 992px) {
            .hero-content, .info-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-glass-panels {
                display: none;
            }
            .hero-text-giant {
                font-size: 5rem;
            }
            .info-image {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .process-card {
                text-align: center;
            }
            .process-number {
                position: static;
                display: block;
                margin-bottom: 15px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            .footer-info {
                text-align: center;
            }
            .footer-logo {
                justify-content: center;
            }
            .footer-text {
                margin-left: auto;
                margin-right: auto;
            }
            .social-links {
                justify-content: center;
            }
            .footer-contact {
                padding: 30px 0 0;
                border-left: 0;
                border-top: 1px solid var(--glass-border);
                text-align: center;
            }
            .footer-contact a {
                margin-left: auto;
                margin-right: auto;
            }
        }