
        .footer {
            background: var(--text-primary);
            color: white;
            padding-top: 80px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            margin-bottom: 64px;
        }

        .footer-col.wide {
            grid-column: span 4;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Logo and Company Description */
        .footer-logo {
            display: block;
            margin-bottom: 24px;
        }

            .footer-logo img {
                height: 48px;
                width: auto;
            }

        .company-desc {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }

            .social-link:hover {
                background: var(--highlight);
                transform: translateY(-4px);
            }

        /* Column Headers */
        .footer-col h4 {
            color: white;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 24px;
            position: relative;
        }

            .footer-col h4::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: -8px;
                width: 32px;
                height: 2px;
                background: var(--highlight);
            }

        /* Footer Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer-links li {
                margin-bottom: 12px;
            }

            .footer-links a {
                color: rgba(255, 255, 255, 0.8);
                text-decoration: none;
                transition: all 0.3s ease;
                display: inline-flex;
                align-items: center;
            }

                .footer-links a::before {
                    content: '';
                    width: 0;
                    height: 1px;
                    background: var(--highlight);
                    margin-right: 0;
                    transition: all 0.3s ease;
                    opacity: 0;
                }

                .footer-links a:hover {
                    color: white;
                    transform: translateX(8px);
                }

                    .footer-links a:hover::before {
                        width: 16px;
                        margin-right: 8px;
                        opacity: 1;
                    }

        /* Contact Info */
        footer .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            footer .contact-info li {
                display: flex;
                align-items: flex-start;
                gap: 16px;
                margin-bottom: 20px;
            }

            footer .contact-info i {
                width: 20px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--highlight);
                font-size: 16px;
            }

            footer .contact-info span {
                display: block;
                color: rgba(255, 255, 255, 0.6);
                font-size: 14px;
                margin-bottom: 4px;
            }

            footer .contact-info a,
            footer .contact-info p {
                color: white;
                text-decoration: none;
                margin: 0;
                transition: color 0.3s ease;
            }

                .contact-info a:hover {
                    color: var(--highlight);
                }

        /* Newsletter Form */
        .newsletter-form {
            margin-top: 24px;
        }

        .input-group {
            display: flex;
            gap: 8px;
        }

            .input-group input {
                flex: 1;
                padding: 12px 16px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 100px;
                background: rgba(255, 255, 255, 0.05);
                color: white;
                font-size: 16px;
                transition: all 0.3s ease;
            }

                .input-group input:focus {
                    outline: none;
                    border-color: var(--highlight);
                    background: rgba(255, 255, 255, 0.1);
                }

                .input-group input::placeholder {
                    color: rgba(255, 255, 255, 0.4);
                }

            .input-group button {
                width: 48px;
                height: 48px;
                border: none;
                border-radius: 50%;
                background: var(--highlight);
                color: white;
                font-size: 16px;
                cursor: pointer;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .input-group button:hover {
                    background: #E5331E;
                    transform: translateX(4px);
                }

        /* Form Feedback */
        .form-feedback {
            display: none;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            font-size: 14px;
            padding: 8px 16px;
            border-radius: 100px;
        }

            .form-feedback.success {
                background: rgba(0, 200, 81, 0.1);
                color: #00C851;
            }

            .form-feedback.error {
                background: rgba(255, 68, 68, 0.1);
                color: #FF4444;
            }

            .form-feedback.visible {
                display: flex;
            }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 24px 0;
        }

        .bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        .legal-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 24px;
        }

            .legal-links a {
                color: rgba(255, 255, 255, 0.6);
                text-decoration: none;
                font-size: 14px;
                transition: color 0.3s ease;
            }

                .legal-links a:hover {
                    color: white;
                }

        .payment-methods {
            display: flex;
            gap: 12px;
            align-items: center;
        }

            .payment-methods i {
                font-size: 24px;
                color: rgba(255, 255, 255, 0.6);
                transition: color 0.3s ease;
            }

                .payment-methods i:hover {
                    color: white;
                }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-grid {
                gap: 32px;
            }
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-col.wide {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding-top: 60px;
            }

            .bottom-content {
                flex-direction: column;
                gap: 24px;
                text-align: center;
            }

            .legal-links {
                flex-direction: column;
                gap: 16px;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 50px 0 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-col.wide {
                grid-column: span 1;
            }

            .footer-col h4 {
                font-size: 16px;
                margin-bottom: 16px;
            }

            .footer-link {
                font-size: 14px;
                padding: 6px 0;
            }

            .footer-desc {
                font-size: 14px;
            }

            .social-links {
                gap: 10px;
                justify-content: center;
            }

            .social-link {
                width: 38px;
                height: 38px;
                font-size: 16px;
            }

            .payment-methods {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }

            .payment-icon {
                font-size: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
                padding: 20px 0;
            }

            .copyright {
                font-size: 13px;
            }
        }

        @media (max-width: 360px) {
            .footer {
                padding: 40px 0 25px;
            }

            .footer-grid {
                gap: 28px;
            }

            .footer-brand {
                margin-bottom: 16px;
            }

            .footer-logo {
                height: 32px;
            }

            .footer-col h4 {
                font-size: 15px;
                margin-bottom: 14px;
            }

            .footer-link {
                font-size: 13px;
                padding: 5px 0;
            }

            .footer-desc {
                font-size: 13px;
                line-height: 1.6;
            }

            .social-links {
                gap: 8px;
            }

            .social-link {
                width: 36px;
                height: 36px;
                font-size: 15px;
            }

            .payment-methods {
                gap: 8px;
            }

            .payment-icon {
                font-size: 18px;
            }

            .footer-bottom {
                padding: 18px 0;
                gap: 14px;
            }

            .copyright {
                font-size: 12px;
            }

            .legal-links {
                gap: 12px;
            }

            .legal-link {
                font-size: 12px;
            }
        }