/* ========================================
           SITE FOOTER - CONFLICT-FREE CSS
           ======================================== */

        /* Import Font Awesome */
        /* Font Awesome loaded via wp_enqueue_style */

        /* Footer Main Container */
        .site-footer {
            background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            color: white;
            position: relative;
            overflow: hidden;
            margin: 0 !important;
            padding: 0 !important;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
            top: -300px;
            right: -300px;
            animation: site-footer-pulse 25s ease-in-out infinite;
        }

        .site-footer::after {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
            bottom: -250px;
            left: -250px;
            animation: site-footer-pulse 25s ease-in-out infinite reverse;
        }

        @keyframes site-footer-pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

        /* Footer Top Section */
        .site-footer__top {
            padding: 6rem 5%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .site-footer__container {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 4rem;
        }

        /* Footer Brand */
        .site-footer__brand {
            padding-right: 2rem;
        }

        .site-footer__logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            text-decoration: none;
            color: white;
        }

        .site-footer__logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
        }

        .site-footer__logo-text {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .site-footer__description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .site-footer__social {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .site-footer__social-btn {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.4s ease;
            cursor: pointer;
            text-decoration: none;
            border: 2px solid transparent;
            color: white;
        }

        .site-footer__social-btn i {
            font-size: 1.2rem;
        }

        .site-footer__social-btn:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
        }

        /* Footer Column */
        .site-footer__column h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            display: inline-block;
        }

        .site-footer__column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #7c3aed 0%, #f97316 100%);
            border-radius: 2px;
        }

        .site-footer__links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer__links li {
            margin-bottom: 1rem;
        }

        .site-footer__links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
        }

        .site-footer__links a:hover {
            color: #7c3aed;
            padding-left: 5px;
        }

        .site-footer__links a::before {
            content: '→';
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .site-footer__links a:hover::before {
            opacity: 1;
        }

        /* Newsletter */
        .site-footer__newsletter {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .site-footer__newsletter h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 800;
            color: white;
        }

        .site-footer__newsletter-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        /* Kit Newsletter Form Styles */
        .kit-newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .kit-email-input {
            width: 100%;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .kit-email-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .kit-email-input:focus {
            outline: none;
            border-color: #7c3aed;
            background: rgba(255, 255, 255, 0.08);
        }

        .kit-submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            color: white;
            padding: 1.2rem 2rem;
            border-radius: 12px;
            border: none;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            min-height: 52px;
        }

        .kit-submit-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(124, 58, 237, 0.5);
        }

        .kit-submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .kit-message {
            display: none;
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .kit-message.kit-success {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }

        .kit-message.kit-error {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
        }

        .kit-message.kit-info {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
        }

        .site-footer__newsletter-privacy {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            text-align: center;
            margin-top: 1rem;
        }

        /* Footer Middle */
        .site-footer__middle {
            padding: 3rem 5%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .site-footer__stats {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .site-footer__stat-item {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .site-footer__stat-item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-5px);
        }

        .site-footer__stat-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .site-footer__stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            display: block;
        }

        .site-footer__stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }

        /* Footer Bottom */
        .site-footer__bottom {
            padding: 2.5rem 5% 0 5%;
            position: relative;
            z-index: 1;
            margin-bottom: 0 !important;
        }

        .site-footer__bottom-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            padding-bottom: 2.5rem;
        }

        .site-footer__copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        .site-footer__copyright a {
            color: #7c3aed;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .site-footer__copyright a:hover {
            color: #f97316;
        }

        .site-footer__bottom-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer__bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .site-footer__bottom-links a:hover {
            color: #7c3aed;
        }

        .site-footer__back-to-top {
            background: linear-gradient(135deg, #7c3aed 0%, #f97316 100%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
            border: none;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
            text-decoration: none;
        }

        .site-footer__back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(124, 58, 237, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .site-footer__container {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }

            .site-footer__brand {
                grid-column: 1 / -1;
                padding-right: 0;
            }

            .site-footer__newsletter {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 640px) {
            .site-footer__container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .site-footer__top {
                padding: 4rem 5%;
            }

            .site-footer__bottom-container {
                flex-direction: column;
                text-align: center;
            }

            .site-footer__bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .site-footer__stats {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }