 :root {
            --primary: #0A4D8C;
            --primary-dark: #083A6B;
            --secondary: #FF6B35;
            --secondary-dark: #E5511F;
            --accent: #00BCD4;
            --dark: #1A1A2E;
            --gray: #6B7280;
            --light-gray: #F3F4F6;
            --white: #FFFFFF!important;
            --shadow: rgba(10, 77, 140, 0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Rubik', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Barlow', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px var(--shadow);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header.scrolled {
            box-shadow: 0 4px 30px var(--shadow);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo i {
            color: var(--secondary);
            font-size: 2rem;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }
        .nav-menu a.cta-button {
            color: var(--white)!important;
        }
        
        .nav-menu a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        
        .nav-menu a i {
            font-size: 1.1rem;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .cta-button {
            background: var(--secondary);
            color: var(--white);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .cta-button:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
            color: var(--white);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            background: linear-gradient(135deg, #0A4D8C 0%, #083A6B 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            opacity: 0.05;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.1;
        }
        
        .hero-content .highlight {
            color: var(--secondary);
        }
        
        .hero-content p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .btn-primary, .btn-secondary {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
        }
        
        .btn-primary {
            background: var(--secondary);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
        }
        
        .btn-primary:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .hero-image-placeholder i {
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Features Grid */
        .features {
            padding: 5rem 2rem;
            background: var(--light-gray);
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }
        
        .section-header h2 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
        }
        
        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 40px var(--shadow);
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--white);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .feature-card p {
            color: var(--gray);
            line-height: 1.8;
        }
        
        /* Services Section */
        .services {
            padding: 5rem 2rem;
            background: var(--white);
        }
        
        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }
        
        .service-card {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            background: var(--light-gray);
        }
        
        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: var(--white);
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .service-card p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 50%, rgba(0, 188, 212, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .stats-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .stat-item {
            text-align: center;
            color: var(--white);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 0.5rem;
            font-family: 'Barlow', sans-serif;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 2rem;
            background: var(--light-gray);
        }
        
        .cta-container {
            max-width: 1000px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
            padding: 4rem 3rem;
            border-radius: 30px;
            text-align: center;
            box-shadow: 0 10px 50px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .cta-container h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .cta-container p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .cta-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .cta-info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--white);
        }
        
        .cta-info-item i {
            font-size: 2rem;
        }
        
        .cta-info-text strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
        }
        
        .btn-white {
            background: var(--white);
            color: var(--secondary);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.8);
            padding: 3rem 2rem 1.5rem;
        }

        /* Brands Section */
        .brands-section {
            padding: 4rem 2rem;
            background: var(--white);
        }

        .brands-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 3rem;
        }

        .brand-category h3 {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--light-gray);
        }

        .brand-category h3 i {
            color: var(--secondary);
            font-size: 1.8rem;
        }

        .brand-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .brand-tag {
            background: var(--light-gray);
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            font-weight: 500;
            color: var(--dark);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .brand-tag:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px var(--shadow);
        }

        /* Service Areas */
        .service-areas {
            padding: 4rem 2rem;
            background: var(--light-gray);
        }

        .areas-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .area-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .area-card:hover {
            border-color: var(--secondary);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px var(--shadow);
        }

        .area-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .area-card h4 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .area-card p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 4rem 2rem;
            background: var(--white);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--light-gray);
            margin-bottom: 1rem;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 15px var(--shadow);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
            user-select: none;
        }

        .faq-question h3 {
            font-size: 1.15rem;
            color: var(--dark);
            font-weight: 600;
            margin: 0;
        }

        .faq-question i {
            color: var(--secondary);
            transition: transform 0.3s ease;
            font-size: 1.2rem;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: var(--light-gray);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1.5rem 2rem;
        }

        .faq-answer p {
            color: var(--gray);
            line-height: 1.8;
            margin: 0;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.8);
            padding: 3rem 2rem 1.5rem;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-col h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-col p, .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }
        
        .footer-col a:hover {
            color: var(--secondary);
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                padding: 2rem;
                box-shadow: 0 4px 20px var(--shadow);
                transition: left 0.3s ease;
                gap: 1.5rem;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .features-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-container {
                padding: 3rem 2rem;
            }
            
            .cta-container h2 {
                font-size: 2rem;
            }
            
            .cta-info {
                flex-direction: column;
                gap: 1.5rem;
            }

            .brands-container {
                grid-template-columns: 1fr;
            }

            .areas-grid {
                grid-template-columns: 1fr;
            }
        }