
        :root {
            --primary-orange: #f39c12;
            --secondary-orange: #e67e22;
            --secondary-dark: #010911;
            --footer-bg: #8f8f94;
            --footer-text: #f8f9fa;
            --footer-link: #cbd5e1;
            --footer-link-hover: #f39c12;
        }

        .footer {
            background-color: var(--secondary-dark);
            color: white;
            padding: 60px 0 20px;
            margin-top: 50px;
            position: relative;
        }

        .footer h5 {
            color: white;
            margin-bottom: 20px;
            font-size: 18px;
            display: flex;
            align-items: center;
        }

        .footer p {
            color: #bbb;
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer-links a,
        .footer ul li a {
            color: #bbb;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .footer-links a i,
        .footer ul li a i {
            width: 20px;
            color: var(--primary-orange);
            transition: all 0.3s ease;
        }

        .footer-links a:hover,
        .footer ul li a:hover {
            color: var(--primary-orange);
            padding-left: 5px;
        }

        .footer-links a:hover i,
        .footer ul li a:hover i {
            color: var(--secondary-orange);
            transform: scale(1.1);
        }

        .contact-info li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #bbb;
            font-size: 0.95rem;
            margin-bottom: 10px;
        }

        .contact-info li i {
            width: 20px;
            color: var(--primary-orange);
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icons a {
            color: white;
            font-size: 20px;
            margin-right: 0;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--primary-orange);
            transform: translateY(-3px);
        }

        /* Payment Methods */
        .payment-methods h6 {
            color: white;
            font-size: 0.95rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .payment-icons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .payment-icons i {
            font-size: 1.8rem;
            color: #bbb;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .payment-icons i:hover {
            color: var(--primary-orange);
            transform: scale(1.1);
        }

        /* Copyright Section - Matches your design */
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #bbb;
        }

        .copyright p {
            margin-bottom: 0;
            color: #bbb;
        }

        /* Notification Styles - Kept from your original */
        .custom-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            padding: 5px 5px;
            border-radius: 0px;
            color: white;
            font-weight: 500;
            font-size: 16px;
    
            transform: translateX(120%);
            transition: transform 0.3s ease-out;
            max-width: 350px;
            word-wrap: break-word;
        }

        .custom-notification.show {
            transform: translateX(0);
        }

        .notification-success {
            background: linear-gradient(135deg, #28a745, #20c997);
            border-left: 0px solid #1e7e34;
        }

        .notification-error {
            background: linear-gradient(135deg, #dc3545, #c82333);
            border-left: 5px solid #bd2130;
            display:none;
        }

        .notification-info {
            background: linear-gradient(135deg, #17a2b8, #138496);
            border-left: 5px solid #117a8b;
        }

        .custom-notification::after {
            content: '×';
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            font-size: 20px;
            cursor: pointer;
            opacity: 0.7;
        }

        .custom-notification:hover::after {
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 15px;
                margin-top: 30px;
            }

            .footer h5 {
                margin-top: 20px;
            }

            .social-icons {
                justify-content: center;
            }

            .custom-notification {
                top: 10px;
                right: 10px;
                left: 10px;
                max-width: none;
            }
        }