  /* Footer Styles */
        .footer-container {
            background: linear-gradient(135deg, var(--background-dark) 0%, #253545 100%);
            color: var(--text-light);
            padding: 4rem 0 2rem 0;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            position: relative;
            overflow: hidden;
        }

        .footer-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), #22d3ee, var(--primary-color));
            animation: gradient-shift 8s linear infinite;
        }

        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 100% 50%;
            }
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

        .footer-section {
            margin-bottom: 1.5rem;
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-section h3 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
            transition: width var(--transition-speed);
        }

        .footer-section:hover h3::after {
            width: 85px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section ul li {
            margin-bottom: 1rem;
            transform: translateX(0);
            transition: transform var(--transition-speed);
        }

        .footer-section ul li:hover {
            transform: translateX(8px);
        }

        .footer-section ul li a {
            color: var(--text-muted);
            text-decoration: none;
            transition: all var(--transition-speed);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-section ul li a::before {
            content: '→';
            opacity: 0;
            transition: opacity var(--transition-speed);
        }

        .footer-section ul li a:hover {
            color: var(--primary-color);
        }

        .footer-section ul li a:hover::before {
            opacity: 1;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-muted);
            padding: 10px;
            border-radius: 8px;
            transition: all var(--transition-speed);
            background: rgba(255, 255, 255, 0.03);
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
        }

        .contact-item i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }



        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 1.5rem;
        }

        .newsletter-form input {
            padding: 14px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 1rem;
            transition: all var(--transition-speed);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary-color);
            background: rgba(255, 255, 255, 0.08);
        }

        .newsletter-form button {
            padding: 14px 24px;
            background: var(--primary-color);
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-speed);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .newsletter-form button:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: var(--text-muted);
        }

        .footer-bottom p {
            font-size: 0.9rem;
        }
        
                /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
            }
        }
        
        
        /* Product Cards */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            text-align: center;
            transition: all var(--transition-speed);
        }

        .product-card>h4 {
            font-size: 15px;
        }

        .product-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .product-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 3rem 0 1.5rem 0;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .newsletter-form {
                flex-direction: column;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: 1fr;
            }


            .footer-section h3 {
                text-align: center;
            }

            .footer-section h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        .product-card>a {
            text-decoration: none;
            color: white;
        }

        .product-card>a:hover {
            color: white;
        }

        .product-card a h4 {
            font-size: 15px;
        }

        .h1,
        .h2,
        .h3,
        .h4,
        .h5,
        .h6,
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700 !important;
        }