
 /* Footer Universe */
        .footer-universe {
            position: relative;
            background: var(--gradient-secondary);
            min-height: 60vh;
            overflow: hidden;
            margin-top: 0;
        }

        /* Sophisticated Background Atmosphere */
        .footer-atmosphere {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .atmospheric-gradient {
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(208, 150, 131, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(115, 96, 91, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(51, 0, 0, 0.1) 0%, transparent 80%);
            animation: atmosphericPulse 20s ease-in-out infinite;
            will-change: transform, opacity;
        }

        @keyframes atmosphericPulse {
            0%, 100% { 
                opacity: 1; 
                transform: translate3d(0, 0, 0) scale(1); 
            }
            50% { 
                opacity: 0.8; 
                transform: translate3d(20px, -20px, 0) scale(1.05); 
            }
        }

        .footer-lattice {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: latticeShift 35s linear infinite;
            will-change: transform;
        }

        @keyframes latticeShift {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(30px, 30px, 0); }
        }

        /* Desktop-Only Motion Effects */
        @media (min-width: 1025px) {
            .footer-orbs {
                position: absolute;
                width: 100%;
                height: 100%;
            }

            .footer-orb {
                position: absolute;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(208, 150, 131, 0.3) 0%, transparent 70%);
                filter: blur(40px);
                animation: orbDrift 30s ease-in-out infinite;
                will-change: transform;
            }

            .orb-1 {
                width: 250px;
                height: 250px;
                top: 10%;
                left: 10%;
                animation-delay: 0s;
            }

            .orb-2 {
                width: 180px;
                height: 180px;
                bottom: 20%;
                right: 15%;
                background: radial-gradient(circle, rgba(115, 96, 91, 0.25) 0%, transparent 70%);
                animation-delay: 15s;
            }

            .orb-3 {
                width: 120px;
                height: 120px;
                top: 60%;
                left: 70%;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
                animation-delay: 10s;
            }

            @keyframes orbDrift {
                0%, 100% {
                    transform: translate3d(0, 0, 0) scale(1);
                    opacity: 0.4;
                }
                33% {
                    transform: translate3d(40px, -30px, 0) scale(1.2);
                    opacity: 0.6;
                }
                66% {
                    transform: translate3d(-20px, 40px, 0) scale(0.9);
                    opacity: 0.3;
                }
            }

            .footer-waves {
                position: absolute;
                width: 100%;
                height: 100%;
            }

            .wave-line {
                position: absolute;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                animation: waveFlow 12s ease-in-out infinite;
                will-change: transform, opacity;
            }

            .wave-1 {
                top: 25%;
                left: 0;
                right: 0;
                animation-delay: 0s;
            }

            .wave-2 {
                top: 75%;
                left: 0;
                right: 0;
                animation-delay: 6s;
            }

            @keyframes waveFlow {
                0%, 100% {
                    opacity: 0;
                    transform: translateX(-100%) scaleX(0);
                }
                50% {
                    opacity: 1;
                    transform: translateX(0%) scaleX(1);
                }
            }
        }

        /* Mobile Optimization */
        @media (max-width: 768px) {
            .footer-orbs,
            .footer-waves {
                display: none;
            }
            
            .atmospheric-gradient {
                animation: none;
                opacity: 0.6;
            }
            
            .footer-lattice {
                animation: latticeShiftMobile 60s linear infinite;
                opacity: 0.3;
            }
            
            @keyframes latticeShiftMobile {
                0% { transform: translate3d(0, 0, 0); }
                100% { transform: translate3d(15px, 15px, 0); }
            }
        }

        /* Footer Glass Container */
        .footer-constellation {
            position: relative;
            max-width: 1600px;
            margin: 0 auto;
            padding: var(--section-padding) var(--container-padding);
            z-index: 2;
        }

        .footer-glass-panel {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 32px;
            padding: 80px 60px 60px;
            position: relative;
            overflow: hidden;
        }

        .footer-glass-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(208, 150, 131, 0.05) 100%);
            pointer-events: none;
        }

        /* Footer Content Grid */
        .footer-matrix {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 80px;
            position: relative;
            z-index: 2;
        }

        /* Company Section */
        .footer-genesis {
            position: relative;
        }

        .footer-logo {
            margin-bottom: 30px;
        }

        .logo-constellation {
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .logo-text {
            font-family: var(--font-primary);
            font-size: 48px;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, var(--white) 0%, var(--primary-peach) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            transition: all 0.3s ease;
        }

        .logo-constellation:hover .logo-text {
            transform: scale(1.05);
        }

        .logo-subtitle {
            font-family: var(--font-secondary);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.3em;
            color: var(--primary-peach);
            opacity: 0.8;
            margin-top: 5px;
            text-transform: uppercase;
        }

        .footer-essence {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            max-width: 400px;
            font-weight: 300;
        }

        .footer-social-nexus {
            display: flex;
            gap: 20px;
        }

        .social-crystal {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .social-crystal::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 16px;
        }

        .social-crystal:hover::before {
            opacity: 1;
        }

        .social-crystal:hover {
            transform: translateY(-5px) scale(1.1);
            border-color: var(--primary-peach);
            box-shadow: 0 15px 40px rgba(208, 150, 131, 0.3);
        }

        .social-crystal i {
            position: relative;
            z-index: 1;
        }

        /* Footer Sections */
        .footer-section {
            position: relative;
        }

        .footer-title {
            font-family: var(--font-accent);
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 30px;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-peach);
            border-radius: 1px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            margin-bottom: 15px;
        }

        .footer-link a {
            font-family: var(--font-secondary);
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            font-weight: 400;
        }

        .footer-link a::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 1px;
            background: var(--primary-peach);
            transition: width 0.3s ease;
        }

        .footer-link a:hover::before {
            width: 12px;
        }

        .footer-link a:hover {
            color: var(--primary-peach);
            transform: translateX(15px);
        }

        /* Contact Information */
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(208, 150, 131, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-peach);
            font-size: 16px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-details {
            flex: 1;
        }

        .contact-label {
            font-family: var(--font-secondary);
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-peach);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 5px;
        }

        .contact-value {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        .contact-item:hover .contact-icon {
            background: var(--primary-peach);
            color: var(--white);
            transform: scale(1.1);
        }

        /* Newsletter Section */
        .newsletter-crystal {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            margin-top: 40px;
            backdrop-filter: blur(10px);
        }

        .newsletter-title {
            font-family: var(--font-accent);
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 15px;
        }

        .newsletter-description {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: var(--white);
            font-family: var(--font-body);
            font-size: 14px;
            backdrop-filter: blur(10px);
        }

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

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-peach);
        }

        .newsletter-submit {
            padding: 12px 20px;
            background: var(--primary-peach);
            border: none;
            border-radius: 12px;
            color: var(--primary-dark);
            font-family: var(--font-secondary);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-submit:hover {
            background: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(208, 150, 131, 0.3);
        }

        /* Footer Bottom */
        .footer-foundation {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
        }

        .foundation-matrix {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright-text {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
        }

        .footer-policies {
            display: flex;
            gap: 30px;
        }

        .policy-link {
            font-family: var(--font-secondary);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .policy-link:hover {
            color: var(--primary-peach);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-matrix {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }
            
            .footer-genesis {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .footer-universe {
                min-height: auto;
            }
            
            .footer-glass-panel {
                padding: 60px 30px 40px;
                border-radius: 24px;
            }
            
            .footer-matrix {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-genesis {
                grid-column: span 1;
                text-align: center;
            }
            
            .logo-text {
                font-size: 36px;
            }
            
            .footer-social-nexus {
                justify-content: center;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .foundation-matrix {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .footer-policies {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-social-nexus {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .social-crystal {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
            
            .footer-policies {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* Performance Optimizations */
        .scroll-reveal {
            opacity: 0;
            will-change: transform, opacity;
        }

        .scroll-reveal {
            transform: translate3d(0, 40px, 0);
        }

        .scroll-reveal-left {
            opacity: 0;
            transform: translate3d(-40px, 0, 0);
            will-change: transform, opacity;
        }

        .scroll-reveal-right {
            opacity: 0;
            transform: translate3d(40px, 0, 0);
            will-change: transform, opacity;
        }

        .scroll-reveal-scale {
            opacity: 0;
            transform: scale(0.95);
            will-change: transform, opacity;
        }

        /* Reduced Motion Support */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            
            .footer-orb,
            .atmospheric-gradient,
            .footer-lattice {
                animation: none !important;
            }
        }
        /* Sophisticated Back to Top Button */
        .back-to-top-nexus {
            position: fixed;
            bottom: 40px;
            right: 40px;
            z-index: 9990;
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px) scale(0.8);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            cursor: pointer;
            will-change: transform, opacity;
        }

        .back-to-top-nexus.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .back-to-top-crystal {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 10px 40px rgba(208, 150, 131, 0.2);
        }

        .back-to-top-crystal::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 20px;
        }

        .back-to-top-nexus:hover .back-to-top-crystal::before {
            opacity: 1;
        }

        .back-to-top-crystal:hover {
            transform: translateY(-8px) scale(1.1);
            border-color: var(--primary-peach);
            box-shadow: 0 20px 60px rgba(208, 150, 131, 0.4);
        }

        .back-to-top-icon {
            font-size: 24px;
            color: var(--white);
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .back-to-top-nexus:hover .back-to-top-icon {
            transform: translateY(-3px);
            color: var(--primary-dark);
        }

        /* Progress Ring */
        .progress-ring {
            position: absolute;
            top: -2px;
            left: -2px;
            width: 74px;
            height: 74px;
            transform: rotate(-90deg);
        }

        .progress-ring-circle {
            stroke: var(--primary-peach);
            stroke-width: 3;
            stroke-linecap: round;
            fill: transparent;
            stroke-dasharray: 226;
            stroke-dashoffset: 226;
            transition: stroke-dashoffset 0.3s ease;
            filter: drop-shadow(0 0 8px rgba(208, 150, 131, 0.6));
        }

        /* Floating Particles */
        .back-to-top-particles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            border-radius: 20px;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary-peach);
            border-radius: 50%;
            opacity: 0;
            animation: particleFloat 3s ease-in-out infinite;
        }

        .particle:nth-child(1) { left: 20%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 40%; animation-delay: 0.5s; }
        .particle:nth-child(3) { left: 60%; animation-delay: 1s; }
        .particle:nth-child(4) { left: 80%; animation-delay: 1.5s; }

        @keyframes particleFloat {
            0%, 100% {
                transform: translateY(60px);
                opacity: 0;
            }
            10%, 90% {
                opacity: 1;
            }
            50% {
                transform: translateY(-10px);
                opacity: 0.8;
            }
        }

        /* Responsive Sizing */
        @media (min-width: 1441px) {
            .back-to-top-nexus {
                bottom: 50px;
                right: 50px;
            }
            
            .back-to-top-crystal {
                width: 80px;
                height: 80px;
                border-radius: 24px;
            }
            
            .back-to-top-icon {
                font-size: 28px;
            }
            
            .progress-ring {
                width: 84px;
                height: 84px;
            }
        }

        @media (max-width: 1024px) {
            .back-to-top-nexus {
                bottom: 35px;
                right: 35px;
            }
            
            .back-to-top-crystal {
                width: 65px;
                height: 65px;
                border-radius: 18px;
            }
            
            .back-to-top-icon {
                font-size: 22px;
            }
            
            .progress-ring {
                width: 69px;
                height: 69px;
            }
        }

        @media (max-width: 768px) {
            .back-to-top-nexus {
                bottom: 30px;
                right: 30px;
            }
            
            .back-to-top-crystal {
                width: 60px;
                height: 60px;
                border-radius: 16px;
            }
            
            .back-to-top-icon {
                font-size: 20px;
            }
            
            .progress-ring {
                width: 64px;
                height: 64px;
            }
            
            .progress-ring-circle {
                stroke-width: 2;
                stroke-dasharray: 190;
                stroke-dashoffset: 190;
            }
        }

        @media (max-width: 480px) {
            .back-to-top-nexus {
                bottom: 25px;
                right: 25px;
            }
            
            .back-to-top-crystal {
                width: 55px;
                height: 55px;
                border-radius: 14px;
            }
            
            .back-to-top-icon {
                font-size: 18px;
            }
            
            .progress-ring {
                width: 59px;
                height: 59px;
            }
            
            .progress-ring-circle {
                stroke-dasharray: 175;
                stroke-dashoffset: 175;
            }
        }

        /* Pulse Animation */
        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 10px 40px rgba(208, 150, 131, 0.2);
            }
            50% {
                box-shadow: 0 15px 50px rgba(208, 150, 131, 0.4);
            }
        }

        .back-to-top-crystal {
            animation: pulseGlow 4s ease-in-out infinite;
        }

        /* Reduced Motion Support */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            
            .footer-orb,
            .atmospheric-gradient,
            .footer-lattice,
            .back-to-top-crystal,
            .particle {
                animation: none !important;
            }
        }