        :root {
/*            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            --footer-bg-light: rgba(255, 255, 255, 0.98);
            --footer-bg-dark: rgba(15, 23, 42, 0.95);
            --footer-border-light: rgba(102, 126, 234, 0.15);
            --footer-border-dark: rgba(102, 126, 234, 0.2);
            --footer-text-light: #2d3748;
            --footer-text-dark: #e2e8f0;
            --footer-text-muted-light: #6b7280;
            --footer-text-muted-dark: #94a3b8;
            --footer-hover-light: rgba(102, 126, 234, 0.12);
            --footer-hover-dark: rgba(102, 126, 234, 0.2);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Footer Styles */
        .footer {
            background: var(--footer-bg-light);
            backdrop-filter: blur(20px) saturate(180%);
            border-top: 1px solid var(--footer-border-light);
            box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
            padding: 3rem 0 1.5rem;
            margin-top: auto;
            transition: var(--transition);
            color: var(--footer-text-light);
        }

        [data-bs-theme="dark"] .footer {
            background: var(--footer-bg-dark);
            border-top: 1px solid var(--footer-border-dark);
            box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
            color: var(--footer-text-dark);
        }

        .footer-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .footer-tagline {
            color: var(--footer-text-muted-light);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        [data-bs-theme="dark"] .footer-tagline {
            color: var(--footer-text-muted-dark);
        }

        .footer-heading {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1.25rem;
            color: var(--footer-text-light);
            position: relative;
            padding-bottom: 0.5rem;
        }

        [data-bs-theme="dark"] .footer-heading {
            color: var(--footer-text-dark);
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 1px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-link {
            color: var(--footer-text-light);
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
            margin-left: -0.75rem;
        }

        [data-bs-theme="dark"] .footer-link {
            color: var(--footer-text-dark);
        }

        .footer-link:hover {
            color: #5a67d8;
            background: var(--footer-hover-light);
            transform: translateX(5px);
        }

        [data-bs-theme="dark"] .footer-link:hover {
            background: var(--footer-hover-dark);
        }

        .footer-link i {
            font-size: 0.9rem;
            width: 16px;
            text-align: center;
            transition: var(--transition);
        }

        .footer-link:hover i {
            color: #667eea;
            transform: scale(1.1);
        }

        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-info li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .contact-info i {
            color: #667eea;
            font-size: 1.1rem;
            margin-top: 0.1rem;
            flex-shrink: 0;
            width: 20px;
            text-align: center;
        }

        .contact-text {
            color: var(--footer-text-muted-light);
            line-height: 1.5;
        }

        [data-bs-theme="dark"] .contact-text {
            color: var(--footer-text-muted-dark);
        }

        .footer-divider {
            border-color: var(--footer-border-light);
            margin: 2rem 0 1.5rem;
            opacity: 0.6;
        }

        [data-bs-theme="dark"] .footer-divider {
            border-color: var(--footer-border-dark);
        }

        .footer-bottom {
            color: var(--footer-text-muted-light);
            font-size: 0.9rem;
        }

        [data-bs-theme="dark"] .footer-bottom {
            color: var(--footer-text-muted-dark);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .footer {
                text-align: center;
                padding: 2rem 0 1rem;
            }

            .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-link {
                justify-content: center;
            }

            .social-links {
                justify-content: center;
            }

        }

