        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #0a1628;
            --secondary: #0f2847;
            --accent: #1e5799;
            --highlight: #2989d8;
            --light: #7db9e8;
            --neon: #00d4ff;
            --white: #fff;
            --gray: #94a3b8;
        }
        html { scroll-behavior: smooth; }
        body { font-family: 'Montserrat', sans-serif; background: var(--primary); color: var(--white); line-height: 1.6; overflow-x: hidden; }

        /* TOP BAR */
        .top-bar {
            background: linear-gradient(90deg, var(--accent), var(--highlight));
            padding: 10px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            transition: transform 0.3s;
        }
        .top-bar.hidden { transform: translateY(-100%); }
        .top-bar-left { display: flex; align-items: center; gap: 30px; }
        .top-bar-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); text-decoration: none; transition: color 0.3s; }
        .top-bar-item:hover { color: var(--white); }
        .top-bar-item svg { width: 16px; height: 16px; fill: currentColor; }
        .top-bar-right { display: flex; align-items: center; gap: 15px; }
        .top-bar-socials { display: flex; gap: 8px; }
        .top-bar-socials a { width: 28px; height: 28px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
        .top-bar-socials a:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
        .top-bar-socials svg { width: 14px; height: 14px; fill: var(--white); }

        /* HEADER */
        header {
            position: fixed;
            top: 44px;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 15px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s;
            background: transparent;
        }
        header.scrolled {
            top: 0;
            background: rgba(10, 22, 40, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 5px 30px rgba(0,0,0,0.3);
            padding: 12px 60px;
        }
        .logo svg { height: 50px; }
        .nav-menu { display: flex; align-items: center; gap: 35px; list-style: none; }
        .nav-menu > li > a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; position: relative; transition: color 0.3s; display: flex; align-items: center; gap: 5px; }
        .nav-menu > li > a::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--neon); transition: width 0.3s; }
        .nav-menu > li > a:hover { color: var(--neon); }
        .nav-menu > li > a:hover::after { width: 100%; }
        .nav-menu > li > a svg.arrow { width: 14px; height: 14px; fill: currentColor; transition: transform 0.3s; }
        .nav-menu > li:hover > a svg.arrow { transform: rotate(180deg); }

        /* DROPDOWN */
        .nav-item { position: relative; }
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 240px;
            background: rgba(10, 22, 40, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 15px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s;
            margin-top: 15px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }
        .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 25px;
            color: var(--gray);
            font-size: 0.9rem;
            text-transform: none;
            letter-spacing: 0;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        .dropdown a:hover { color: var(--neon); background: rgba(0, 212, 255, 0.1); padding-left: 30px; }
        .dropdown a svg { width: 14px; height: 14px; fill: currentColor; }

        /* SUB DROPDOWN */
        .dropdown-item { position: relative; }
        .sub-dropdown {
            position: absolute;
            top: -15px;
            left: 100%;
            min-width: 220px;
            background: rgba(10, 22, 40, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 15px;
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: all 0.3s;
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }
        .dropdown-item:hover .sub-dropdown { opacity: 1; visibility: visible; transform: translateX(0); }

        .nav-cta {
            background: linear-gradient(135deg, var(--neon), var(--highlight));
            color: var(--primary);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        .nav-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4); }

        /* MOBILE MENU */
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
        .menu-toggle span { width: 25px; height: 3px; background: var(--white); border-radius: 3px; transition: all 0.3s; }
        .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; }
        .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary);
            z-index: 999;
            padding: 100px 25px 30px;
            transform: translateX(100%);
            transition: transform 0.4s;
            overflow-y: auto;
        }
        .mobile-nav.active { transform: translateX(0); }
        .mobile-nav-menu { list-style: none; }
        .mobile-nav-menu > li { margin-bottom: 10px; }
        .mobile-nav-menu > li > a {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px 20px;
            background: var(--secondary);
            border-radius: 15px;
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s;
        }
        .mobile-nav-menu > li > a:active { background: var(--highlight); }
        .mobile-nav-menu > li > a svg { width: 22px; height: 22px; fill: var(--light); }
        .mobile-nav-menu > li > a svg.arrow { width: 18px; height: 18px; margin-left: auto; fill: var(--gray); transition: transform 0.3s; }
        .mobile-nav-menu > li > a.active svg.arrow { transform: rotate(180deg); }

        /* MOBILE DROPDOWN */
        .mobile-dropdown { display: none; padding: 10px 0 0 20px; }
        .mobile-dropdown.active { display: block; }
        .mobile-dropdown a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 20px;
            margin-bottom: 8px;
            background: rgba(0, 212, 255, 0.08);
            border-radius: 12px;
            color: var(--gray);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .mobile-dropdown a:active { background: var(--highlight); color: var(--white); }
        .mobile-dropdown a svg { width: 16px; height: 16px; fill: currentColor; }
        .mobile-sub-dropdown { display: none; padding: 10px 0 0 15px; }
        .mobile-sub-dropdown.active { display: block; }
        .mobile-sub-dropdown a { background: rgba(0, 212, 255, 0.12); font-size: 0.9rem; }

        .mobile-nav-cta {
            display: block;
            margin-top: 30px;
            padding: 20px;
            background: linear-gradient(135deg, var(--neon), var(--highlight));
            border-radius: 15px;
            text-align: center;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
        }

        /* HERO */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 60px 80px;
            overflow: hidden;
        }
        .hero-slider { position: absolute; inset: 0; }
        .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
        .hero-slide.active { opacity: 1; }
        .hero-slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transform: scale(1.1);
            transition: transform 8s ease;
        }
        .hero-slide.active .hero-slide-bg { transform: scale(1); }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(15,40,71,0.8) 50%, rgba(30,87,153,0.5) 100%);
        }
        .hero-content { position: relative; z-index: 10; max-width: 800px; }
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 25px;
            background: rgba(0, 212, 255, 0.15);
            border: 1px solid var(--neon);
            border-radius: 50px;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--neon);
            margin-bottom: 25px;
        }
        .hero-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 1;
            letter-spacing: 4px;
            margin-bottom: 25px;
        }
        .hero-title span {
            background: linear-gradient(135deg, var(--neon), var(--light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-desc { font-size: 1.15rem; color: var(--gray); max-width: 550px; margin-bottom: 40px; }
        .hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.4s;
            cursor: pointer;
            border: none;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--neon), var(--highlight));
            color: var(--primary);
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
        }
        .btn-primary:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0, 212, 255, 0.5); }
        .btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--neon); }
        .btn-secondary:hover { background: var(--neon); color: var(--primary); transform: translateY(-5px); }
        .btn svg { width: 18px; height: 18px; fill: currentColor; }

        /* HERO STATS */
        .hero-stats {
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 10;
        }
        .hero-stat {
            background: rgba(15, 40, 71, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.2);
            padding: 25px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s;
        }
        .hero-stat:hover { transform: translateX(-10px); border-color: var(--neon); }
        .hero-stat-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            background: linear-gradient(135deg, var(--neon), var(--light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }
        .hero-stat-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

        /* SLIDER CONTROLS */
        .slider-dots { position: absolute; bottom: 40px; left: 60px; display: flex; gap: 12px; z-index: 10; }
        .slider-dot {
            width: 50px;
            height: 4px;
            background: rgba(255,255,255,0.3);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            overflow: hidden;
        }
        .slider-dot.active { background: rgba(0, 212, 255, 0.3); }
        .slider-dot.active::after {
            content: '';
            display: block;
            height: 100%;
            background: var(--neon);
            animation: progress 6s linear forwards;
        }
        @keyframes progress { from { width: 0; } to { width: 100%; } }

        .slider-arrows { position: absolute; bottom: 40px; right: 60px; display: flex; gap: 15px; z-index: 10; }
        .slider-arrow {
            width: 55px;
            height: 55px;
            border: 2px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .slider-arrow:hover { background: var(--neon); border-color: var(--neon); }
        .slider-arrow svg { width: 22px; height: 22px; fill: var(--white); }

        /* SECTIONS */
        .section { padding: 100px 60px; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 20px;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--neon);
            margin-bottom: 20px;
        }
        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: 3px;
        }
        .section-title span {
            background: linear-gradient(135deg, var(--neon), var(--light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* SERVICES */
        .services { background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%); }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .service-card {
            background: rgba(15, 40, 71, 0.5);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neon), var(--highlight));
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        .service-card:hover::before { transform: scaleX(1); }
        .service-card:hover { transform: translateY(-10px); border-color: rgba(0, 212, 255, 0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--neon), var(--highlight));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }
        .service-icon svg { width: 35px; height: 35px; fill: var(--primary); }
        .service-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 2px; margin-bottom: 15px; }
        .service-desc { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

        /* SECTORS */
        .sectors { background: var(--primary); }
        .sectors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
        .sector-card { position: relative; height: 380px; border-radius: 25px; overflow: hidden; cursor: pointer; }
        .sector-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s; }
        .sector-card:hover .sector-card-bg { transform: scale(1.1); }
        .sector-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.95) 100%); }
        .sector-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 35px; }
        .sector-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--neon), var(--highlight));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .sector-icon svg { width: 28px; height: 28px; fill: var(--primary); }
        .sector-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 2px; margin-bottom: 10px; }
        .sector-desc { color: var(--gray); font-size: 0.9rem; opacity: 0; transform: translateY(15px); transition: all 0.4s; }
        .sector-card:hover .sector-desc { opacity: 1; transform: translateY(0); }

        /* FLEET */
        .fleet { background: var(--secondary); }
        .fleet-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .fleet-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4vw, 3.5rem); letter-spacing: 3px; margin-bottom: 25px; }
        .fleet-title span {
            background: linear-gradient(135deg, var(--neon), var(--light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .fleet-desc { color: var(--gray); font-size: 1.1rem; line-height: 1.8; margin-bottom: 35px; }
        .fleet-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .fleet-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: rgba(0, 212, 255, 0.05);
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 12px;
            transition: all 0.3s;
        }
        .fleet-feature:hover { border-color: var(--neon); transform: translateX(5px); }
        .fleet-feature svg { width: 20px; height: 20px; fill: var(--neon); flex-shrink: 0; }
        .fleet-feature span { font-size: 0.9rem; font-weight: 500; }
        .fleet-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .fleet-item { position: relative; border-radius: 20px; overflow: hidden; height: 200px; }
        .fleet-item:first-child { grid-column: span 2; height: 250px; }
        .fleet-item-bg { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s; }
        .fleet-item:hover .fleet-item-bg { transform: scale(1.1); }
        .fleet-item-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.9) 100%); }
        .fleet-item-info { position: absolute; bottom: 20px; left: 20px; }
        .fleet-item-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 1px; }
        .fleet-item-count { color: var(--neon); font-size: 0.85rem; font-weight: 600; }

        /* WAREHOUSES */
        .warehouses { background: var(--primary); }
        .warehouses-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 20px; }
        .warehouse-card { position: relative; border-radius: 25px; overflow: hidden; cursor: pointer; }
        .warehouse-card:first-child { grid-row: span 2; }
        .warehouse-card-bg { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s; }
        .warehouse-card:hover .warehouse-card-bg { transform: scale(1.1); }
        .warehouse-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.95) 100%); }
        .warehouse-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; }
        .warehouse-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 2px; margin-bottom: 8px; }
        .warehouse-card-desc { color: var(--gray); font-size: 0.9rem; }
        .warehouse-stats { display: flex; gap: 15px; margin-top: 15px; }
        .warehouse-stat { background: rgba(0, 212, 255, 0.15); padding: 10px 15px; border-radius: 10px; }
        .warehouse-stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--neon); }
        .warehouse-stat-label { font-size: 0.7rem; color: var(--gray); text-transform: uppercase; }

        /* CTA */
        .cta { background: linear-gradient(135deg, var(--secondary), var(--accent)); text-align: center; padding: 100px 60px; }
        .cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 4px; margin-bottom: 20px; }
        .cta-desc { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 500px; margin: 0 auto 40px; }
        .cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

        /* FOOTER */
        footer { background: var(--primary); padding: 80px 60px 30px; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
        .footer-brand p { color: var(--gray); margin: 25px 0; line-height: 1.8; }
        .footer-socials { display: flex; gap: 12px; }
        .footer-socials a {
            width: 45px;
            height: 45px;
            background: var(--secondary);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .footer-socials a:hover { background: var(--neon); transform: translateY(-5px); }
        .footer-socials svg { width: 20px; height: 20px; fill: var(--white); }
        .footer-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 25px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: var(--gray); text-decoration: none; font-size: 0.95rem; transition: all 0.3s; }
        .footer-links a:hover { color: var(--neon); padding-left: 10px; }
        .footer-contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 18px; }
        .footer-contact-icon {
            width: 40px;
            height: 40px;
            background: var(--secondary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .footer-contact-icon svg { width: 18px; height: 18px; fill: var(--neon); }
        .footer-contact-text { color: var(--gray); font-size: 0.95rem; line-height: 1.5; }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: var(--gray);
            font-size: 0.9rem;
        }
        .footer-bottom-links { display: flex; gap: 30px; }
        .footer-bottom-links a { color: var(--gray); text-decoration: none; transition: color 0.3s; }
        .footer-bottom-links a:hover { color: var(--neon); }

        /* MOBILE BOTTOM NAV */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary);
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 8px 15px;
            padding-bottom: calc(8px + env(safe-area-inset-bottom));
            z-index: 1000;
            justify-content: space-around;
            align-items: flex-end;
        }
        .mobile-bottom-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            text-decoration: none;
            color: var(--gray);
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 10px;
            border-radius: 10px;
            transition: all 0.3s;
        }
        .mobile-bottom-item.active { color: var(--neon); background: rgba(0, 212, 255, 0.1); }
        .mobile-bottom-item svg { width: 20px; height: 20px; fill: currentColor; }
        .mobile-bottom-call {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--neon), var(--highlight));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -20px;
            box-shadow: 0 5px 25px rgba(0, 212, 255, 0.4);
            text-decoration: none;
        }
        .mobile-bottom-call svg { width: 24px; height: 24px; fill: var(--primary); }

        /* SCROLL TOP */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--neon), var(--highlight));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            z-index: 998;
            border: none;
            box-shadow: 0 5px 25px rgba(0, 212, 255, 0.4);
        }
        .scroll-top.visible { opacity: 1; visibility: visible; }
        .scroll-top:hover { transform: translateY(-5px); }
        .scroll-top svg { width: 22px; height: 22px; fill: var(--primary); }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .hero-stats { display: none; }
            .warehouses-grid { grid-template-columns: 1fr 1fr; }
            .warehouse-card:first-child { grid-column: span 2; grid-row: span 1; }
        }
        @media (max-width: 1024px) {
            .top-bar { padding: 10px 30px; }
            header { padding: 15px 30px; }
            .hero { padding: 120px 30px 80px; }
            .section { padding: 80px 30px; }
            .fleet-wrapper { grid-template-columns: 1fr; gap: 50px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .top-bar { display: none; }
            header { top: 0; padding: 12px 20px; background: rgba(10, 22, 40, 0.98); backdrop-filter: blur(20px); }
            .nav-menu, .nav-cta { display: none; }
            .menu-toggle { display: flex; }
            .mobile-bottom-nav { display: flex; }
            .hero { padding: 100px 20px 100px; min-height: auto; }
            .hero-buttons { flex-direction: column; }
            .btn { width: 100%; justify-content: center; padding: 16px 30px; }
            .slider-dots { left: 20px; bottom: 30px; }
            .slider-arrows { display: none; }
            .section { padding: 70px 20px 100px; }
            .sectors-grid { grid-template-columns: 1fr; }
            .sector-card { height: 300px; }
            .fleet-gallery { grid-template-columns: 1fr; }
            .fleet-item:first-child { grid-column: span 1; height: 200px; }
            .fleet-features { grid-template-columns: 1fr; }
            .warehouses-grid { grid-template-columns: 1fr; }
            .warehouse-card:first-child { grid-column: span 1; height: 350px; }
            .warehouse-card { height: 250px; }
            .cta { padding: 70px 20px; }
            .cta-buttons { flex-direction: column; align-items: center; }
            footer { padding: 60px 20px 100px; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
            .scroll-top { bottom: 90px; right: 20px; }
        }

/* ══════════════════════════════════════════════
   HEADER ACTIONS — Dil Secici + CTA duzeni
   ══════════════════════════════════════════════ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.lang-switcher { position: relative; }
.lang-switcher-toggle {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: 0.85rem; font-weight: 600;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px; transition: all 0.3s; cursor: pointer;
}
.lang-switcher-toggle:hover {
    color: var(--white); border-color: var(--neon);
    background: rgba(0, 212, 255, 0.1);
}
.lang-switcher-toggle svg.arrow { width: 14px; height: 14px; fill: currentColor; transition: transform 0.3s; }
.lang-switcher:hover .lang-switcher-toggle svg.arrow { transform: rotate(180deg); }
.lang-switcher .dropdown { min-width: 150px; right: 0; left: auto; }
.lang-switcher .dropdown a.active-lang { color: var(--neon); background: rgba(0, 212, 255, 0.1); }

/* ══════════════════════════════════════════════
   PAGE HERO
   ══════════════════════════════════════════════ */
.page-hero {
    position: relative; min-height: 320px;
    display: flex; align-items: flex-end;
    padding: 120px 60px 50px; overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.85) 100%);
    z-index: 1;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; opacity: 0.3;
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero-content .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px; font-size: 0.8rem;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--neon); margin-bottom: 18px;
}
.page-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1; letter-spacing: 3px;
    margin-bottom: 12px; color: var(--white);
}
.page-hero-desc {
    font-size: 1.05rem; color: var(--gray);
    max-width: 600px; line-height: 1.7; margin-bottom: 18px;
}

/* ══════════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════════ */
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--gray); margin-top: 10px;
}
.breadcrumb a { color: var(--light); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--neon); }
.breadcrumb svg { opacity: 0.5; flex-shrink: 0; }
.breadcrumb span { color: var(--neon); }

/* ══════════════════════════════════════════════
   PAGE CONTENT
   ══════════════════════════════════════════════ */
.page-content-section { padding: 60px; }
.page-content-wrapper { max-width: 900px; margin: 0 auto; }
.page-body { color: var(--gray); font-size: 1rem; line-height: 1.9; }
.page-body p { margin-bottom: 18px; }
.page-body h2, .page-body h3, .page-body h4 {
    color: var(--white); margin-top: 30px; margin-bottom: 12px;
    font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px;
}
.page-body h2 { font-size: 1.8rem; }
.page-body h3 { font-size: 1.4rem; }
.page-body ul, .page-body ol { margin: 15px 0; padding-left: 25px; }
.page-body li { margin-bottom: 8px; }
.page-body a { color: var(--neon); text-decoration: underline; }
.page-body a:hover { text-decoration: none; }
.page-body img { max-width: 100%; border-radius: 15px; margin: 20px 0; }
.page-body blockquote {
    border-left: 3px solid var(--neon); padding: 15px 25px;
    margin: 20px 0; background: rgba(0, 212, 255, 0.05);
    border-radius: 0 10px 10px 0; font-style: italic; color: var(--light);
}

/* ══════════════════════════════════════════════
   PAGE GALLERY
   ══════════════════════════════════════════════ */
.page-gallery {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px; margin-top: 30px;
}
.page-gallery-item { border-radius: 15px; overflow: hidden; aspect-ratio: 4/3; }
.page-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s; margin: 0; border-radius: 0;
}
.page-gallery-item:hover img { transform: scale(1.05); }

/* ══════════════════════════════════════════════
   LISTING PAGE
   ══════════════════════════════════════════════ */
.listing-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px; max-width: 1200px; margin: 0 auto;
}
.listing-card {
    background: var(--secondary); border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.08);
    transition: all 0.3s; text-decoration: none; display: block;
}
.listing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.listing-card-image { aspect-ratio: 16/10; overflow: hidden; }
.listing-card-image img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s;
}
.listing-card:hover .listing-card-image img { transform: scale(1.05); }
.listing-card-body { padding: 22px; }
.listing-card-body h3 {
    color: var(--white); font-size: 1rem; font-weight: 600;
    margin-bottom: 8px; line-height: 1.4;
}
.listing-card-body p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; margin-bottom: 12px; }
.listing-card-body .card-date { color: var(--gray); font-size: 0.75rem; }
.listing-card-body .card-link { color: var(--neon); font-size: 0.85rem; font-weight: 600; text-decoration: none; }

/* ══════════════════════════════════════════════
   MODULE WITH SUBS
   ══════════════════════════════════════════════ */
.sub-modules-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px; max-width: 1000px; margin: 0 auto;
}
.sub-module-card {
    background: var(--secondary); border-radius: 18px; padding: 30px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s; text-decoration: none; text-align: center;
}
.sub-module-card:hover {
    border-color: var(--neon); transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}
.sub-module-card h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.sub-module-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .page-hero { padding: 100px 20px 35px; min-height: 250px; }
    .page-hero-title { font-size: 2rem; }
    .page-content-section { padding: 30px 20px; }
    .breadcrumb { font-size: 0.75rem; gap: 5px; flex-wrap: wrap; }
    .listing-grid { grid-template-columns: 1fr; gap: 15px; }
    .sub-modules-grid { grid-template-columns: 1fr; gap: 15px; }
    .header-actions { gap: 10px; }
    .lang-switcher-toggle { padding: 6px 10px; font-size: 0.8rem; }
    .nav-cta { padding: 10px 20px; font-size: 0.8rem; }
}

/* ══════════════════════════════════════════════
   ENHANCED PAGE HERO — Animated gradient
   ══════════════════════════════════════════════ */
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float-glow 8s ease-in-out infinite;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 87, 153, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float-glow 6s ease-in-out infinite reverse;
}
@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

/* Improved empty content state */
.page-content-section .empty-state {
    text-align: center;
    padding: 80px 20px;
}
.page-content-section .empty-state svg {
    width: 64px; height: 64px;
    color: var(--gray);
    opacity: 0.3;
    margin-bottom: 20px;
}

/* ══════════════════════════════════════════════
   INFO SECTION (Mekik Sistemi)
   ══════════════════════════════════════════════ */
.info-section { padding: 80px 60px; }
.info-wrapper {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.info-content .section-tag { margin-bottom: 20px; }
.info-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px; margin-bottom: 20px;
    color: var(--white);
}
.info-text { color: var(--gray); line-height: 1.8; font-size: 1rem; }
.info-text p { margin-bottom: 15px; }
.info-visual {
    position: relative; display: flex;
    align-items: center; justify-content: center;
}
.info-visual img {
    width: 100%; max-width: 450px; border-radius: 20px;
    border: 1px solid rgba(0,212,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.info-visual::before {
    content: ''; position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
    border-radius: 50%; z-index: 0;
}
.info-placeholder {
    width: 100%; max-width: 400px; aspect-ratio: 4/3;
    background: var(--secondary); border-radius: 20px;
    border: 1px solid rgba(0,212,255,0.1);
    display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════════════
   TEMPERATURE ZONES
   ══════════════════════════════════════════════ */
.temp-section { padding: 60px; background: rgba(0,212,255,0.03); }
.temp-grid {
    display: flex; justify-content: center;
    gap: 40px; flex-wrap: wrap; max-width: 800px; margin: 0 auto;
}
.temp-card {
    text-align: center; padding: 30px;
    background: var(--secondary); border-radius: 20px;
    border: 1px solid rgba(0,212,255,0.1);
    min-width: 180px; transition: all 0.3s;
}
.temp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,212,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.temp-icon { margin-bottom: 12px; }
.temp-icon img { height: 60px; }
.temp-title { color: var(--neon); font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; }
.temp-range { color: var(--gray); font-size: 0.9rem; }

/* service link */
.service-link {
    color: var(--neon); text-decoration: none;
    font-weight: 600; font-size: 0.85rem;
    display: inline-block; margin-top: 12px;
    transition: all 0.3s;
}
.service-link:hover { color: var(--light); }

@media (max-width: 768px) {
    .info-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .info-section { padding: 40px 20px; }
    .temp-grid { gap: 15px; }
    .temp-card { min-width: 140px; padding: 20px; }
}
