@charset "utf-8";


    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: #f5f7fa;
            padding-top: 0;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .container {
            max-width: 1580px;
            margin: 0 auto;
            padding: 0 20px;
        }

      
        .top-bar {
            background: #0a0a0a;
            color: #a0a0a0;
            padding: 8px 0;
            font-size: 13px;
            border-bottom: 1px solid #1a1a1a;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .top-bar .left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .top-bar .left a {
            color: #a0a0a0;
            transition: color 0.3s;
        }
        .top-bar .left a:hover {
            color: #fff;
        }
        .top-bar .left i {
            color: #e63946;
            margin-right: 6px;
            font-size: 13px;
        }
        .top-bar .social a {
            color: #a0a0a0;
            margin-left: 12px;
            transition: color 0.3s;
        }
        .top-bar .social a:hover {
            color: #e63946;
        }

     
        .header-wrapper {
            background: #ffffff;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .header-wrapper .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
        }

        /* Logo */
        .logo img {
            max-height: 42px;
            width: auto;
            display: block;
        }

    
        .main-nav {
            display: flex;
            align-items: center;
        }
        .main-nav > ul {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .main-nav > ul > li {
            position: relative;
        }
        .main-nav > ul > li > a {
            display: block;
            padding: 10px 18px;
            font-weight: 700;
            font-size: 16px;
            color: #1a1a1a;
            letter-spacing: 0.3px;
            transition: color 0.3s;
            border-radius: 4px;  text-transform: uppercase;
        }
        .main-nav > ul > li > a:hover,
        .main-nav > ul > li.active > a {
            color: #e63946;
        }
       
        .main-nav > ul > li.menu-has-children > a::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 6px;
            font-size: 11px;
            color: #999;
        }

       
        .main-nav .sub-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            min-width: 220px;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.25s ease;
            border-top: 3px solid #e63946;
        }
        .main-nav > ul > li:hover .sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
     
        .main-nav .sub-menu li {
            display: block;

        }
        .main-nav .sub-menu li a {
            display: block;
            padding: 10px 24px;
            font-weight: 500;
            font-size: 14px;
            color: #333;
            border-left: 3px solid transparent;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .main-nav .sub-menu li a:hover {
            background: #f8f9fa;
            color: #e63946;
            border-left-color: #e63946;
        }

    
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .header-actions .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #e9ecef;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1a1a;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .header-actions .icon-btn:hover {
            background: #e63946;
            color: #fff;
            border-color: #e63946;
        }
        .header-actions .btn-quote {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 26px;
            background: #e63946;
            color: #fff;
            font-weight: 600;
            font-size: 13px;
            border-radius: 30px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .header-actions .btn-quote:hover {
            background: #c62828;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
        }

   
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            font-size: 26px;
            color: #1a1a1a;
            cursor: pointer;
            padding: 4px;
        }

       
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
        }
        .mobile-overlay.active {
            display: block;
        }
        .mobile-menu {
            position: absolute;
            top: 0;
            left: -100%;
            width: 82%;
            max-width: 360px;
            height: 100%;
            background: #fff;
            padding: 30px 24px;
            transition: left 0.35s ease;
            overflow-y: auto;
        }
        .mobile-overlay.active .mobile-menu {
            left: 0;
        }
        .mobile-menu .close-btn {
            background: transparent;
            border: none;
            font-size: 30px;
            position: absolute;
            top: 16px;
            right: 20px;
            cursor: pointer;
            color: #1a1a1a;
        }
        .mobile-menu .mobile-logo {
            display: block;
            margin-bottom: 30px;
        }
        .mobile-menu .mobile-logo img {
            max-height: 38px;
        }
        .mobile-menu ul li a {
            display: block;
            padding: 14px 0;
            border-bottom: 1px solid #f0f0f0;
            font-weight: 600;
            color: #1a1a1a;
            font-size: 15px;
        }
        .mobile-menu ul li a:hover {
            color: #e63946;
        }
   
        .mobile-sub {
            padding-left: 18px;
            display: none;
        }
        .mobile-sub li a {
            font-weight: 400;
            font-size: 14px;
            border-bottom: none;
            padding: 10px 0;
        }
        .mobile-sub li a:hover {
            color: #e63946;
        }
        /* ===== Footer ===== */
        .site-footer {
            --footer-bg: #0d1b2a;
            --footer-text: rgba(255,255,255,0.7);
            --footer-heading: #ffffff;
            --footer-border: rgba(255,255,255,0.08);
            --footer-link-hover: var(--brand);
        }
        .site-footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            padding-top: 60px;
            margin-top: 40px;
            border-top: 3px solid var(--brand);
            font-size: 0.95rem;
        }
        .footer-container {
            max-width: 1650px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-main {
            display: grid;
            grid-template-columns: 1.8fr 1.2fr 1.2fr 1.3fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--footer-border);
        }
        .footer-about .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }
        .footer-about .footer-logo-img { height: 40px; width: auto; display: block; }
        .footer-about .footer-logo-text {
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
        }
        .footer-about .footer-logo-text span { color: var(--brand); }
        .footer-about .footer-about-text {
            font-size: 0.92rem;
            line-height: 1.7;
            max-width: 380px;
            color: var(--footer-text);
            margin-bottom: 18px;
        }
        .footer-social {
            display: flex;
            gap: 10px;
        }
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-social a:hover {
            background: var(--brand);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(230,57,70,0.3);
        }

        .footer-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--footer-heading);
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2.5px;
            background: var(--brand);
            border-radius: 2px;
        }
        .footer-links ul li { margin-bottom: 8px; }
        .footer-links ul li a {
            color: var(--footer-text);
            text-decoration: none;
            transition: all 0.25s ease;
            font-size: 0.9rem;
            display: inline-block;
        }
        .footer-links ul li a:hover {
            color: var(--footer-link-hover);
            transform: translateX(4px);
        }

        .footer-contact .footer-contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            color: var(--footer-text);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        .footer-contact .footer-contact-list li i {
            width: 18px;
            color: var(--brand);
            font-size: 0.95rem;
            margin-top: 2px;
            flex-shrink: 0;
        }
        .footer-contact .footer-contact-list li a {
            color: var(--footer-text);
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-contact .footer-contact-list li a:hover { color: var(--footer-link-hover); }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0 22px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-copyright {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
        }
        .footer-bottom-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .footer-bottom-links a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            font-size: 0.82rem;
            transition: color 0.2s;
        }
        .footer-bottom-links a:hover { color: var(--footer-link-hover); }

        @media (max-width: 992px) {
            .main-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-actions .icon-btn {
                display: none;
            }
            .header-actions .btn-quote {
                padding: 8px 16px;
                font-size: 12px;
            }
            .header-actions .btn-quote span {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .top-bar .left {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .header-wrapper .container {
                height: 60px;
            }
            .logo img {
                max-height: 32px;
            }
            .header-actions .btn-quote {
                padding: 6px 12px;
                font-size: 11px;
            }
        }
