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

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        .top-bar {
            background: #0a1628;
            padding: 20px 0;
            width: 100%;
        }

        .container {
            width: 100%;
            margin: 0;
            padding: 0 40px;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* 3D Modern White Brand Logo */
        
        .brand-logo .logo-title {
            font-family: 'Inter', sans-serif;
            font-size: 23px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.8px;
            line-height: 1.15;
            text-shadow: 
                0 1px 0 #cccccc,
                0 2px 4px rgba(0, 0, 0, 0.35);
        }
        .brand-logo .logo-subtitle {
            font-size: 11px;
            color: #ffffff;
            letter-spacing: 2.8px;
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 3px;
            opacity: 0.95;
            text-shadow: 
                0 1px 2px rgba(0,0,0,0.8),
                0 2px 6px rgba(0,0,0,0.5);
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }

        .nav-links > li {
            position: relative;
            padding: 10px 0;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover { color: #e67e22; }

        .nav-links a.active { color: #e67e22; }

        /* Dropdown Submenu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #0a1628;
            min-width: 240px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.45);
            border-radius: 8px;
            padding: 8px 0;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 200;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu a {
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255,255,255,0.85);
            white-space: nowrap;
            transition: all 0.2s;
        }

        .dropdown-menu a:hover {
            background: rgba(230, 126, 34, 0.15);
            color: #e67e22;
            padding-left: 24px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn-catalog {
            background: #e67e22;
            color: #fff;
            padding: 6px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .btn-shop {
            background: #e67e22;
            color: #fff;
            padding: 6px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .search-icon {
            color: #fff;
            font-size: 16px;
            cursor: pointer;
        }

        /* Hero Section */
        

        /* Products Bar - BIGGER CARDS */
        .products-bar {
            background: #1a2744;
            padding: 60px 0;
            width: 100%;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
        }

        .product-card {
            text-decoration: none;
            text-align: center;
            padding: 50px 25px;
            border-right: 1px solid rgba(255,255,255,0.1);
            position: relative;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .product-card:last-child { border-right: none; }

        .product-card:hover { 
            background: linear-gradient(145deg, #e67e22 0%, #d35400 100%) !important; 
            transform: translateY(-10px) !important;
            box-shadow: 0 15px 35px rgba(230, 126, 34, 0.45) !important;
            border-radius: 12px;
            z-index: 5;
        }

        .product-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            color: #5dade2;
            font-size: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.35s ease;
        }

        .product-card:hover .product-icon {
            color: #ffffff !important;
            transform: scale(1.15);
        }

        .product-card h3 {
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.3;
            transition: color 0.35s ease;
        }

        .product-card p {
            color: rgba(255,255,255,0.7);
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 200px;
            transition: color 0.35s ease;
        }

        .product-card:hover p {
            color: rgba(255,255,255,0.95) !important;
        }

        .product-arrow {
            color: #fff;
            font-size: 22px;
            opacity: 0.7;
            transition: all 0.35s ease;
            margin-top: auto;
        }

        .product-card:hover .product-arrow {
            opacity: 1 !important;
            transform: translateX(10px) scale(1.1) !important;
            color: #ffffff !important;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: #fff;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-label {
            color: #666;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .about-title {
            font-family: 'Inter', sans-serif;
            font-size: 42px;
            color: #1a2744;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .about-text {
            color: #666;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .about-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .btn-primary {
            background: #3498db;
            color: #fff;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .btn-primary:hover { background: #2980b9; }

        .phone-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .phone-link i {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3498db;
        }

        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .about-img-main {
            grid-column: 1 / -1;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            width: 100%;
        }

        .about-img-sub {
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            width: 100%;
        }

        /* Stats Section */
        .stats-section {
            background: #1a2744;
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            position: relative;
        }

        .stat-icon {
            color: #5dade2;
            font-size: 36px;
            margin-bottom: 15px;
        }

        .stat-number {
            font-family: 'Inter', sans-serif;
            font-size: 52px;
            color: #fff;
            font-weight: 700;
            line-height: 1;
        }

        .stat-label {
            color: rgba(255,255,255,0.7);
            font-size: 13px;
            margin-top: 10px;
        }

        /* New Arrivals */
        .new-arrivals {
            padding: 80px 0;
            background: #fff;
        }

        .section-header {
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1a2744;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-header h3 {
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            color: #e67e22;
            font-weight: 600;
        }

        .arrivals-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .arrival-product {
            position: relative;
        }

        .arrival-product img {
            width: 100%;
            border-radius: 8px;
        }

        .video-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: #5dade2;
            padding: 20px;
        }

        .video-card img {
            width: 100%;
            border-radius: 8px;
        }

        .video-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .video-overlay i {
            color: #e74c3c;
            font-size: 24px;
            margin-left: 4px;
        }

        .video-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #fff;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .video-badge img {
            width: 30px;
            height: 30px;
        }

        .youtube-btn {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.7);
            color: #fff;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        /* DNV Section */
        .dnv-section {
            background: #0f1b2e;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .dnv-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23fff" fill-opacity="1" d="M0,60 C240,100 480,20 720,60 C960,100 1200,20 1440,60 L1440,100 L0,100 Z"></path></svg>') bottom/cover;
        }

        .dnv-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
        }

        .dnv-text h2 {
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            color: #fff;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 30px;
        }

        .dnv-logos {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .dnv-logo-box {
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
        }

        .dnv-logo-box img {
            height: 50px;
        }

        /* DNV Products - BIGGER */
        .dnv-products {
            display: flex;
            gap: 25px;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        .dnv-product {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 4px solid #fff;
            overflow: hidden;
            background: #fff;
            transition: all 0.3s;
        }

        .dnv-product:hover {
            transform: scale(1.08);
            border-color: #e67e22;
        }

        .dnv-product img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background: #fff;
            width: 100%;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 280px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-nav {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }

        .gallery-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
        }

        .gallery-dot.active { background: #e67e22; }

        /* Footer */
        .footer {
            background: #0a1628;
            padding: 70px 0 30px;
            color: rgba(255,255,255,0.7);
            width: 100%;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-brand h3 {
            font-family: 'Inter', sans-serif !important;
            font-size: 24px !important;
            color: #E67E22 !important;
            font-weight: 700 !important;
            margin-bottom: 18px !important;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 22px;
            color: rgba(255,255,255,0.65);
        }
        .footer-social {
            display: flex;
            gap: 12px;
        }
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s;
        }
        .footer-social a:hover {
            background: #e67e22;
            transform: translateY(-3px);
        }
        .footer-links h4 {
            color: #E67E22 !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            margin-bottom: 22px !important;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a:hover {
            color: #e67e22;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
            text-align: center;
            font-size: 13.5px;
            color: rgba(255,255,255,0.5);
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: #1a2744;
            color: #fff;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s;
        }

        .scroll-top:hover {
            background: #e67e22;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1100px) {
            .products-grid { 
                grid-template-columns: repeat(3, 1fr); 
            }
            .product-card {
                border-right: 1px solid rgba(255,255,255,0.1);
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .product-card:nth-child(3n) { border-right: none; }
            .product-card:nth-child(n+4) { border-bottom: none; }
        }

        @media (max-width: 968px) {
            .products-grid { 
                grid-template-columns: 1fr; 
            }
            .product-card {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                padding: 60px 30px;
                min-height: 350px;
            }
            .product-card:last-child { border-bottom: none; }

            .product-icon {
                font-size: 60px;
                width: 100px;
                height: 100px;
            }

            .product-card h3 {
                font-size: 22px;
            }

            .product-card p {
                font-size: 15px;
                max-width: 300px;
            }

            .dnv-grid { 
                grid-template-columns: 1fr; 
                gap: 40px;
            }

            .dnv-products {
                justify-content: center;
                gap: 30px;
            }

            .dnv-product {
                width: 200px;
                height: 200px;
            }

            .about-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; gap: 30px; }
            .arrivals-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 36px; }
            .nav-links { display: none; }
        }

        
/* Custom SkewX Slide Logo Shine Animation */
        .logo-img-box {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 4px;
        }

        .logo-img-box img {
            height: 48px;
            width: auto;
            display: block;
        }

        .logo-img-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100px;
            width: 70px;
            height: 100%;
            transform: skewX(-30deg);
            animation-name: slide;
            animation-duration: 7s;
            animation-timing-function: ease-in-out;
            animation-delay: .3s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            background: linear-gradient(
                to right, 
                rgba(255, 255, 255, 0.13) 0%,
                rgba(255, 255, 255, 0.13) 77%,
                rgba(255, 255, 255, 0.5) 92%,
                rgba(255, 255, 255, 0.0) 100%
            );
            pointer-events: none;
            z-index: 2;
        }
            100% {
                left: 140%;
                top: 0;
            }
        }

        /* Custom SkewX Slide Logo Shine Animation */
        .logo-img-box {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 4px;
        }

        .logo-img-box img {
            height: 48px;
            width: auto;
            display: block;
        }

        .logo-img-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100px;
            width: 70px;
            height: 100%;
            transform: skewX(-30deg);
            animation-name: slide;
            animation-duration: 7s;
            animation-timing-function: ease-in-out;
            animation-delay: .3s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
            background: linear-gradient(
                to right, 
                rgba(255, 255, 255, 0.13) 0%,
                rgba(255, 255, 255, 0.13) 77%,
                rgba(255, 255, 255, 0.5) 92%,
                rgba(255, 255, 255, 0.0) 100%
            );
            pointer-events: none;
            z-index: 2;
        }

        @keyframes slide {
            0% {
                left: -100px;
                top: 0;
            }
            50% {
                left: 40%;
                top: 0px;
            }
            100% {
                left: 140%;
                top: 0;
            }
        }

    
        /* Mask Gradient Logo Shine Effect */
        .header-logo-img {
            height: 48px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
            transition: transform 0.4s ease, mask-position 2s ease, -webkit-mask-position 2s ease;
            -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            -webkit-mask-size: 800%;
            mask-size: 800%;
            -webkit-mask-position: 0%;
            mask-position: 0%;
            animation: logoMaskShineLoop 20s infinite ease-in-out;
        }

        .brand-logo:hover .header-logo-img {
            transform: scale(1.06) rotate(-2deg);
            -webkit-mask-position: 140%;
            mask-position: 140%;
        }

        @keyframes logoMaskShineLoop {
            0% {
                -webkit-mask-position: 0%;
                mask-position: 0%;
            }
            12% {
                -webkit-mask-position: 140%;
                mask-position: 140%;
            }
            14% {
                -webkit-mask-position: 140%;
                mask-position: 140%;
            }
            26% {
                -webkit-mask-position: 0%;
                mask-position: 0%;
            }
            28% {
                -webkit-mask-position: 0%;
                mask-position: 0%;
            }
            100% {
                -webkit-mask-position: 0%;
                mask-position: 0%;
            }
        }

    
        

        /* Fullscreen Mobile Nav Overlay */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 22, 40, 0.98);
            backdrop-filter: blur(15px);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

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

        .mobile-nav-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 26px;
            cursor: pointer;
        }

        .mobile-nav-body {
            padding: 25px 20px 40px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-nav-body a {
            color: #fff;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: color 0.3s;
        }

        .mobile-nav-body a:hover {
            color: #e67e22;
        }

        .mobile-sublinks {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-left: 15px;
            margin-top: 8px;
            border-left: 2px solid rgba(230, 126, 34, 0.5);
        }

        .mobile-sublinks a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
        }

        .mobile-nav-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

    
        /* Full Width Header Styling */
        .top-bar {
            background: #0a1628;
            padding: 20px 0;
            width: 100%;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .top-bar .container {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 40px !important;
            margin: 0 !important;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        /* 3D Modern White Brand Logo */
        
        .brand-logo .logo-title {
            font-family: 'Inter', sans-serif;
            font-size: 23px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.8px;
            line-height: 1.15;
            text-shadow: 
                0 1px 0 #cccccc,
                0 2px 4px rgba(0, 0, 0, 0.35);
        }
        .brand-logo .logo-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            color: #ffffff;
            letter-spacing: 2.8px;
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 3px;
            opacity: 0.95;
            text-shadow: 
                0 1px 2px rgba(0,0,0,0.8),
                0 2px 6px rgba(0,0,0,0.5);
        }

        /* Navigation & Dropdown Styling */
        .nav-links { display: flex; gap: 35px; list-style: none; }
        .nav-links > li { position: relative; padding: 10px 0; }
        .nav-links a { color: #fff; text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: #e67e22; }

        /* Dropdown Submenu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #0a1628;
            min-width: 240px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.45);
            border-radius: 8px;
            padding: 8px 0;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 200;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu li { width: 100%; }
        .dropdown-menu a {
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255,255,255,0.85);
            white-space: nowrap;
            transition: all 0.2s;
        }
        .dropdown-menu a:hover {
            background: rgba(230, 126, 34, 0.15);
            color: #e67e22;
            padding-left: 24px;
        }

        /* Header Action Buttons */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .btn-catalog, .btn-shop {
            background: #e67e22;
            color: #fff;
            padding: 8px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s;
        }
        .btn-catalog:hover, .btn-shop:hover {
            background: #d35400;
            transform: translateY(-1px);
        }
        .search-icon {
            color: #fff;
            font-size: 16px;
            cursor: pointer;
        }

        /* Mask Gradient Logo Shine Effect */
        .header-logo-img {
            height: 48px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
            transition: transform 0.4s ease, mask-position 2.5s ease, -webkit-mask-position 2.5s ease;
            -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            -webkit-mask-size: 800%;
            mask-size: 800%;
            -webkit-mask-position: 0%;
            mask-position: 0%;
            animation: logoMaskShineLoop 20s infinite ease-in-out;
        }

        .brand-logo:hover .header-logo-img {
            transform: scale(1.06) rotate(-2deg);
            -webkit-mask-position: 140%;
            mask-position: 140%;
        }

        @keyframes logoMaskShineLoop {
            0% { -webkit-mask-position: 0%; mask-position: 0%; }
            12% { -webkit-mask-position: 140%; mask-position: 140%; }
            14% { -webkit-mask-position: 140%; mask-position: 140%; }
            26% { -webkit-mask-position: 0%; mask-position: 0%; }
            28% { -webkit-mask-position: 0%; mask-position: 0%; }
            100% { -webkit-mask-position: 0%; mask-position: 0%; }
        }

        

    
        /* 3D Modern White Brand Logo - Side-by-side flex layout */
        .brand-logo {
            text-decoration: none !important;
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            gap: 14px !important;
            transition: transform 0.3s ease;
        }
        .brand-logo:hover {
            transform: translateY(-1px);
        }
        .header-logo-img {
            height: 48px !important;
            width: auto !important;
            object-fit: contain;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
            transition: transform 0.4s ease, mask-position 2.5s ease, -webkit-mask-position 2.5s ease;
            -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.25) 50%, #000 75%);
            -webkit-mask-size: 800%;
            mask-size: 800%;
            -webkit-mask-position: 0%;
            mask-position: 0%;
            animation: logoMaskShineLoop 20s infinite ease-in-out;
        }
        .logo-text-wrap {
            display: flex !important;
            flex-direction: column !important;
        }
        .brand-logo .logo-title {
            font-family: 'Inter', sans-serif !important;
            font-size: 23px !important;
            font-weight: 700 !important;
            color: #ffffff !important;
            letter-spacing: 0.8px;
            line-height: 1.15;
            text-shadow: 
                0 1px 0 #cccccc,
                0 2px 4px rgba(0, 0, 0, 0.35);
        }
        .brand-logo .logo-subtitle {
            font-family: 'Inter', sans-serif !important;
            font-size: 11px !important;
            color: #ffffff !important;
            letter-spacing: 2.8px;
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 3px;
            opacity: 0.95;
            text-shadow: 
                0 1px 2px rgba(0,0,0,0.8),
                0 2px 6px rgba(0,0,0,0.5);
        }

    
        /* Mobile Menu Button - Hidden on Desktop */
        .mobile-menu-btn {
            display: none !important;
        }

        /* Responsive Mobile Header (Only Logo + Hamburger on Mobile <= 968px) */
        @media screen and (max-width: 968px) {
            .top-bar { padding: 14px 0; }
            .top-bar .container { padding: 0 20px !important; }
            .nav-links, .header-actions { display: none !important; }
            .mobile-menu-btn {
                display: flex !important;
                align-items: center;
                justify-content: center;
                background: none;
                border: none;
                color: #fff;
                font-size: 24px;
                cursor: pointer;
                padding: 6px;
            }
        }

    
        /* 4-Column Footer Styling */
        .footer {
            background: #0a1628 !important;
            padding: 70px 0 30px !important;
            color: rgba(255,255,255,0.7) !important;
            width: 100% !important;
        }
        .footer-grid {
            display: grid !important;
            grid-template-columns: 2fr 1fr 1fr 1fr !important;
            gap: 50px !important;
            margin-bottom: 50px !important;
        }
        .footer-brand h3 {
            font-family: 'Inter', sans-serif !important;
            font-size: 24px !important;
            color: #E67E22 !important;
            font-weight: 700 !important;
            margin-bottom: 18px !important;
        }
        .footer-brand p {
            font-size: 14px !important;
            line-height: 1.8 !important;
            margin-bottom: 22px !important;
            color: rgba(255,255,255,0.65) !important;
        }
        .footer-social {
            display: flex !important;
            gap: 12px !important;
        }
        .footer-social a {
            width: 40px !important;
            height: 40px !important;
            background: rgba(255,255,255,0.08) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: #fff !important;
            text-decoration: none !important;
            transition: all 0.3s ease !important;
        }
        .footer-social a:hover {
            background: #e67e22 !important;
            transform: translateY(-3px) !important;
        }
        .footer-links h4 {
            color: #E67E22 !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            margin-bottom: 22px !important;
        }
        .footer-links ul {
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }
        .footer-links li {
            margin-bottom: 12px !important;
        }
        .footer-links a {
            color: rgba(255,255,255,0.65) !important;
            text-decoration: none !important;
            font-size: 14px !important;
            transition: color 0.3s ease !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
        }
        .footer-links a:hover {
            color: #e67e22 !important;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1) !important;
            padding-top: 25px !important;
            text-align: center !important;
            font-size: 13.5px !important;
            color: rgba(255,255,255,0.5) !important;
        }

        @media (max-width: 968px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 30px !important;
            }
        }
        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr !important;
            }
        }

    
        /* Centered Boxed Footer Container (Not Full-Width) */
        .footer .container {
            width: 100% !important;
            max-width: 1300px !important;
            margin-left: auto !important;
            margin-right: auto !important;
            padding-left: 40px !important;
            padding-right: 40px !important;
        }

        @media (max-width: 768px) {
            .footer .container {
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
        }

    
        /* Gallery Slider Section */
        .gallery-slider-section {
            padding: 80px 0;
            background: #ffffff;
            width: 100%;
            position: relative;
        }

        .gallery-header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 35px;
        }

        .gallery-header-text .section-label {
            color: #e67e22;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .gallery-header-text h2 {
            font-family: 'Inter', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: #1a2744;
        }

        .gallery-controls {
            display: flex;
            gap: 12px;
        }

        .gallery-arrow-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #0a1628;
            color: #fff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(0,0,0,0.15);
        }

        .gallery-arrow-btn:hover {
            background: #e67e22;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(230,126,34,0.35);
        }

        .gallery-slider-viewport {
            overflow: hidden;
            width: 100%;
            border-radius: 16px;
        }

        .gallery-slider-track {
            display: flex;
            gap: 25px;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .gallery-card {
            flex: 0 0 calc((100% - 50px) / 3);
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            border: 1px solid #eee;
            background: #0a1628;
            cursor: pointer;
            transition: all 0.4s ease;
            height: 380px;
        }

        .gallery-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 36px rgba(0,0,0,0.15);
            border-color: #e67e22;
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease, opacity 0.5s ease;
            opacity: 0.95;
        }

        .gallery-card:hover img {
            transform: scale(1.08);
            opacity: 1;
        }

        .gallery-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.2) 60%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-card:hover .gallery-card-overlay {
            opacity: 1;
        }

        .gallery-card-cat {
            color: #e67e22;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 6px;
        }

        .gallery-card-title {
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.3;
        }

        .gallery-card-zoom {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(230,126,34,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 15px;
            transition: transform 0.3s ease;
        }

        .gallery-card:hover .gallery-card-zoom {
            transform: scale(1.1);
        }

        /* Lightbox Modal */
        .lightbox-modal {
            position: fixed;
            inset: 0;
            background: rgba(10,22,40,0.95);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 30px;
        }

        .lightbox-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 1000px;
            max-height: 90vh;
            width: 100%;
            text-align: center;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .lightbox-caption {
            color: #fff;
            margin-top: 15px;
            font-size: 18px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .lightbox-close {
            position: absolute;
            top: -45px;
            right: 0;
            color: #fff;
            font-size: 32px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .lightbox-close:hover {
            color: #e67e22;
        }

        @media (max-width: 1100px) {
            .gallery-card {
                flex: 0 0 calc((100% - 25px) / 2);
            }
        }
        @media (max-width: 768px) {
            .gallery-card {
                flex: 0 0 100%;
            }
            .gallery-header-text h2 {
                font-size: 28px;
            }
        }

    
        /* Hero Section Slider */
        .hero {
            position: relative;
            height: 650px;
            width: 100%;
            overflow: hidden;
            background: #0a1628;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
            transform: scale(1.05);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-slide.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .hero-slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.75) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
            padding: 0 20px;
        }

        .hero-logo-img {
            width: 180px;
            height: 180px;
            object-fit: contain;
            margin-bottom: 20px;
            display: block;
            margin-left: auto;
            margin-right: auto;
            filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
        }

        .hero-subtitle-tag {
            display: inline-block;
            background: rgba(230, 126, 34, 0.2);
            color: #e67e22;
            border: 1px solid rgba(230, 126, 34, 0.5);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .hero-content h1 {
            font-family: 'Inter', sans-serif;
            font-size: 48px;
            color: #ffffff;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.6);
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #e67e22;
            color: #fff;
            padding: 14px 34px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(230,126,34,0.4);
        }

        .hero-btn:hover {
            background: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(230,126,34,0.6);
        }

        .hero-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 40px;
            pointer-events: none;
            z-index: 10;
        }

        .hero-nav-btn {
            width: 52px;
            height: 52px;
            background: rgba(10, 22, 40, 0.65);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            pointer-events: all;
            font-size: 18px;
            color: #fff;
            transition: all 0.3s ease;
        }

        .hero-nav-btn:hover {
            background: #e67e22;
            border-color: #e67e22;
            transform: scale(1.1);
        }

        .hero-dots {
            position: absolute;
            bottom: 35px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border: 2px solid rgba(255,255,255,0.6);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #e67e22;
            border-color: #e67e22;
            width: 32px;
            border-radius: 10px;
        }

        @media (max-width: 768px) {
            .hero {
                height: 520px;
            }
            .hero-content h1 {
                font-size: 32px;
            }
            .hero-logo-img {
                width: 130px;
                height: 130px;
            }
            .hero-nav {
                padding: 0 15px;
            }
            .hero-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }
        }

/* Intro Video Modal */
.intro-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.intro-modal.active {
    opacity: 1;
    visibility: visible;
}

.intro-modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.intro-modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: rgba(230, 126, 34, 0.9);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.intro-modal-close:hover {
    background: #d35400;
    transform: scale(1.1);
}

.intro-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.intro-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.intro-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #0a1628;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dont-show-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.dont-show-label input[type="checkbox"] {
    accent-color: #e67e22;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.intro-close-btn {
    background: #e67e22;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.intro-close-btn:hover {
    background: #d35400;
}