:root {
            --primary-dark: #330000;
            --primary-taupe:#73605B;
            --primary-peach: #D09683;
            --white: #FFFFFF;
            --black: #000000;
            --glass-white: rgba(255, 255, 255, 0.1);
            --glass-dark: rgba(51, 0, 0, 0.2);
            --pristine-white: #FEFEFE;
            --soft-gray: #F8F9FA;
            --warm-cream: #FBF8F6;
            --shadow-elegant: rgba(208, 150, 131, 0.2);
            --gradient-primary: linear-gradient(135deg, var(--primary-peach) 0%, var(--primary-taupe) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-taupe) 100%);
            --gradient-hero: linear-gradient(180deg, var(--warm-cream) 0%, var(--primary-taupe) 50%, var(--primary-dark) 100%);

            /* Typography */
            --font-primary: 'Syne', sans-serif;
            --font-secondary: 'Epilogue', sans-serif;
            --font-accent: 'Libre Baskerville', serif;
            --font-body: 'Rosario', sans-serif;

            /* Spacing */
            --section-padding: clamp(80px, 12vw, 160px);
            --container-padding: clamp(20px, 5vw, 80px);
            --mobile-breakpoint: 768px;
            --tablet-breakpoint: 1024px;
        }
        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            cursor: none;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--primary-dark);
            color: var(--white);
            overflow-x: hidden;
            cursor: none;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Global Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        h1 {
            font-family: var(--font-secondary);
            font-size: clamp(32px, 6vw, 100px);
            font-weight: 800;
        }

        h2 {
            font-family: var(--font-secondary);
            font-size: clamp(28px, 5vw, 80px);
            font-weight: 700;
        }

        h3 {
            font-family: var(--font-accent);
            font-size: clamp(24px, 4vw, 40px);
        }

        h4 {
            font-family: var(--font-secondary);
            font-size: clamp(20px, 3vw, 32px);
        }

        p {
            font-family: var(--font-body);
            line-height: 1.7;
        }

      /* Mobile-First Cursor (Disabled on Touch Devices) */
        @media (hover: hover) and (pointer: fine) {
            .cursor {
                width: 20px;
                height: 20px;
                border: 2px solid var(--primary-peach);
                border-radius: 50%;
                position: fixed;
                pointer-events: none;
                z-index: 9999;
                transition: all 0.1s ease;
                transform: translate(-50%, -50%);
                mix-blend-mode: difference;
                will-change: transform;
            }

            .cursor-follower {
                width: 40px;
                height: 40px;
                background: var(--primary-peach);
                opacity: 0.3;
                border-radius: 50%;
                position: fixed;
                pointer-events: none;
                z-index: 9998;
                transition: all 0.3s ease;
                transform: translate(-50%, -50%);
                will-change: transform;
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .cursor,
            .cursor-follower {
                display: none;
            }
        }
/* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(51, 0, 0, 0.1);
        }

        .navbar.scrolled {
            background: var(--glass-white);
            padding: 15px 0;
            border-bottom: 1px solid rgba(115, 96, 91, 0.2);
            box-shadow: 0 4px 20px rgba(208, 150, 131, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--container-padding);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .nav-logo {
            position: relative;
            z-index: 1002;
        }

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

        .logo-text {
            font-family: var(--font-primary);
            font-size: clamp(24px, 4vw, 32px);
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .logo-subtitle {
            font-family: var(--font-secondary);
            font-size: clamp(8px, 1.5vw, 10px);
            font-weight: 600;
            letter-spacing: 0.3em;
            color: var(--primary-taupe);
            opacity: 0.8;
            margin-top: 2px;
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            gap: clamp(20px, 3vw, 40px);
            align-items: center;
            position: relative;
            z-index: 1001;
        }

        .nav-link {
            position: relative;
            color: var(--primary-dark);
            text-decoration: none;
            font-family: var(--font-secondary);
            font-size: clamp(13px, 2vw, 15px);
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 5px 0;
            display: inline-block;
            opacity: 1;
        }

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

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-peach);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* CTA Button */
        .cta-button,
        .primary-button,
        .secondary-button {
            position: relative;
            padding: clamp(12px, 2vw, 15px) clamp(25px, 4vw, 35px);
            background: none;
            border: none;
            font-family: var(--font-secondary);
            font-size: clamp(13px, 2vw, 15px);
            font-weight: 600;
            letter-spacing: 0.02em;
            color: var(--white) ;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
          
        }
    .cta-button a,
        .primary-button a
         {
            position: relative;
            font-family: var(--font-secondary);
            color: var(--white) ;
         
          
        }
        .secondary-button a{
            color: var(--primary-dark)
        }
        .cta-button {
            background: var(--primary-peach);
            color: var(--white);
            border-radius: 50px;
        }

        .button-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-taupe) 100%);
            transform: translateY(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 50px;
        }

        .cta-button:hover .button-bg {
            transform: translateY(0);
        }

        .cta-button:hover {
            color: var(--white);
        }

        .button-text {
            position: relative;
            z-index: 1;
            color: inherit;
            
        }
        .button-text a{
            text-decoration: none;
            
        }
        /* Mobile Menu Toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            z-index: 1002;
        }

        .nav-toggle span {
            width: 25px;
            height: 2px;
            background: var(--primary-dark);
            transition: all 0.3s ease;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: var(--section-padding) 0;
            padding-top: clamp(100px, 15vh, 140px);
             background: linear-gradient(180deg, var(--warm-cream) 50%, var(--pristine-white) 100%);
        }

        /* Hero Background */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -1;
        }

        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
        }

        .orb-1 {
            width: clamp(300px, 50vw, 600px);
            height: clamp(300px, 50vw, 600px);
            background: radial-gradient(circle, var(--primary-peach) 0%, transparent 70%);
            top: -20%;
            left: -10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: clamp(200px, 30vw, 400px);
            height: clamp(200px, 30vw, 400px);
            background: radial-gradient(circle, var(--primary-taupe) 0%, transparent 70%);
            bottom: -10%;
            right: -5%;
            animation-delay: 5s;
        }

        .orb-3 {
            width: clamp(150px, 25vw, 300px);
            height: clamp(150px, 25vw, 300px);
            background: radial-gradient(circle, rgba(115, 96, 91, 0.2) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        .noise-overlay {
            position: absolute;
            inset: 0;
            opacity: 0.02;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
        }

        .grid-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(var(--primary-taupe) 1px, transparent 1px),
                linear-gradient(90deg, var(--primary-taupe) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.1;
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .float-element {
            position: absolute;
            opacity: 0.15;
        }

        .element-1 {
            top: 20%;
            right: 10%;
            width: clamp(80px, 15vw, 150px);
            height: clamp(80px, 15vw, 150px);
            animation: morph 15s ease-in-out infinite, rotate 20s linear infinite;
        }

        .element-2 {
            bottom: 30%;
            left: 5%;
            width: clamp(60px, 10vw, 100px);
            height: clamp(60px, 10vw, 100px);
            animation: morph 20s ease-in-out infinite reverse, rotate 25s linear infinite reverse;
        }

        .element-3 {
            top: 60%;
            right: 30%;
            width: clamp(50px, 8vw, 80px);
            height: clamp(50px, 8vw, 80px);
            animation: morph 18s ease-in-out infinite, rotate 30s linear infinite;
        }

        .shape-morph {
            width: 100%;
            height: 100%;
            fill: var(--primary-peach);
            opacity: 0.6;
        }

        @keyframes morph {
            0%, 100% {
                transform: scale(1) translateY(0);
            }
            50% {
                transform: scale(1.2) translateY(-20px);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Hero Content */
        .hero-container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 var(--container-padding);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 8vw, 80px);
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 1000px;
        }

        /* Hero Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: clamp(6px, 1.5vw, 8px) clamp(15px, 3vw, 20px);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(115, 96, 91, 0.2);
            border-radius: 50px;
            font-family: var(--font-secondary);
            font-size: clamp(11px, 2vw, 14px);
            font-weight: 500;
            color: var(--primary-taupe);
            margin-bottom: clamp(20px, 4vw, 30px);
            opacity: 1;
            visibility: visible;
            position: relative;
            z-index: 10;
        }

        .badge-icon {
            animation: pulse 2s ease-in-out infinite;
            font-size: clamp(10px, 2vw, 12px);
            color: var(--primary-peach);
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.8;
            }
        }

        .hero-title {
            font-family: var(--font-secondary);
            font-size: clamp(32px, 6vw, 100px);
            font-weight: 800;
            text-transform: uppercase;
            line-height: 0.95;
            letter-spacing: -0.03em;
            margin-bottom: clamp(25px, 5vw, 40px);
            color: var(--primary-dark);
        }

        .title-line {
            display: block;
            overflow: visible;
            padding: 5px 0;
        }

        .title-word {
            display: inline-block;
            opacity: 1;
            transform: translateY(0);
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary-peach) 0%, var(--primary-taupe) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Hero Description */
        .hero-description {
            font-family: var(--font-secondary);
            font-size: clamp(16px, 3vw, 20px);
            line-height: 1.7;
            color: var(--primary-taupe);
            margin-bottom: clamp(30px, 6vw, 50px);
            max-width: 600px;
            font-weight: 400;
            opacity: 1;
            transform: translateY(0);
            position: relative;
            z-index: 10;
        }

        /* Hero CTA */
        .hero-cta {
            display: flex;
            gap: clamp(15px, 3vw, 20px);
            margin-bottom: clamp(40px, 8vw, 60px);
            flex-wrap: wrap;
        }

        .primary-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-peach);
            color: var(--white);
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            font-weight: 600;
        }

        .button-ripple {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            transform: scale(0);
            opacity: 0;
        }

        .primary-button:hover .button-ripple {
            animation: ripple 0.6s ease-out;
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 1;
            }
        }

        .button-arrow {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .primary-button:hover .button-arrow {
            transform: translateX(5px);
        }

        .secondary-button {
            background: transparent;
            color: var(--primary-dark);
            border: 2px solid var(--primary-peach);
            border-radius: 50px;
            position: relative;
            font-weight: 600;
        }

        .button-border {
            position: absolute;
            inset: -2px;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--primary-peach), var(--primary-taupe));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .secondary-button:hover .button-border {
            opacity: 1;
        }

        .secondary-button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--warm-cream);
            border-radius: 48px;
            z-index: -1;
        }

        /* Hero Stats */
        .hero-stats {
            display: flex;
            gap: clamp(20px, 5vw, 40px);
            align-items: center;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            min-width: 100px;
        }

        .stat-number {
            font-family: var(--font-primary);
            font-size: clamp(32px, 6vw, 64px);
            font-weight: 800;
            color: var(--primary-peach);
            line-height: 1;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-family: var(--font-secondary);
            font-size: clamp(11px, 2vw, 14px);
            font-weight: 500;
            color: var(--primary-taupe);
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .stat-divider {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, transparent, var(--primary-peach), transparent);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            height: clamp(400px, 60vh, 600px);
            display: block;
        }

        .visual-container {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .visual-card {
            position: absolute;
            width: clamp(200px, 25vw, 300px);
            height: clamp(280px, 35vw, 400px);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(115, 96, 91, 0.3);
            border-radius: 20px;
            padding: clamp(20px, 4vw, 40px);
            display: flex;
            align-items: flex-end;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .card-1 {
            top: 0;
            left: 0;
            transform: rotateY(-10deg) rotateX(5deg);
            z-index: 2;
        }

        .card-2 {
            bottom: 0;
            right: 0;
            transform: rotateY(10deg) rotateX(-5deg);
            background: linear-gradient(135deg, rgba(115, 96, 91, 0.2), rgba(255, 255, 255, 0.8));
        }

        .visual-card:hover {
            transform: rotateY(0) rotateX(0) scale(1.05);
            z-index: 3;
        }

        .card-content h3 {
            font-family: var(--font-accent);
            font-size: clamp(18px, 3vw, 28px);
            margin-bottom: 10px;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .card-content p {
            font-family: var(--font-secondary);
            font-size: clamp(12px, 2vw, 16px);
            color: var(--primary-taupe);
            font-weight: 400;
        }

        /* 3D Object */
        .visual-3d-object {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: clamp(120px, 20vw, 200px);
            height: clamp(120px, 20vw, 200px);
        }

        .cube {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            animation: rotateCube 20s linear infinite;
        }

        .cube-face {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(208, 150, 131, 0.3));
            border: 1px solid rgba(115, 96, 91, 0.3);
            backdrop-filter: blur(10px);
        }

        .front { transform: translateZ(50%); }
        .back { transform: rotateY(180deg) translateZ(50%); }
        .right { transform: rotateY(90deg) translateZ(50%); }
        .left { transform: rotateY(-90deg) translateZ(50%); }
        .top { transform: rotateX(90deg) translateZ(50%); }
        .bottom { transform: rotateX(-90deg) translateZ(50%); }

        @keyframes rotateCube {
            from {
                transform: rotateX(0) rotateY(0);
            }
            to {
                transform: rotateX(360deg) rotateY(360deg);
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 10;
        }

        .scroll-text {
            font-family: var(--font-secondary);
            font-size: clamp(10px, 2vw, 12px);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--primary-taupe);
            opacity: 0.7;
            margin-bottom: 10px;
        }

        .scroll-line {
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, var(--primary-peach), transparent);
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .scroll-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background: var(--primary-peach);
            animation: scrollDown 2s ease-in-out infinite;
        }

        @keyframes scrollDown {
            0% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(80px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: clamp(40px, 8vw, 60px);
                text-align: center;
            }
            
            .hero-content {
                order: 1;
            }
            
            .hero-visual {
                order: 2;
                height: clamp(300px, 40vh, 400px);
            }
            
            .stat-divider {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: var(--warm-cream);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                gap: 30px;
                transition: right 0.3s ease;
                z-index: 1000;
                padding: 20px;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-link {
                font-size: 24px;
                color: var(--primary-dark);
            }
            
            .nav-toggle {
                display: flex;
                position: relative;
                z-index: 1002;
            }
            
            .nav-cta {
                display: none;
            }
            
            .hero {
                min-height: auto;
                padding: clamp(80px, 12vh, 100px) 0 clamp(40px, 8vh, 60px);
                padding-top: clamp(100px, 20vh, 120px);
                align-items: flex-start;
                justify-content: center;
            }
            
            .hero-visual {
                display: none;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-cta {
                justify-content: center;
            }

            .hero-title {
                font-size: clamp(25px, 5vw, 58px);
            }
        }

        @media (max-width: 480px) {
            .hero-cta {
                flex-direction: column;
                width: 100%;
                align-items: center;
            }
            
            .primary-button,
            .secondary-button {
                width: 50%;
                max-width: 280px;
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
                gap: 30px;
            }
            
            .stat-item {
                min-width: 80px;
            }

            .hero-content{
                  padding: 40px 15px;
                
                padding-left: max(15px, env(safe-area-inset-left));
                padding-right: max(15px, env(safe-area-inset-right));
                padding-bottom: max(40px, env(safe-area-inset-bottom));
            }
        }

        /* Ensure nav links are always visible */
        .navbar .nav-menu .nav-link {
            opacity: 1 !important;
            visibility: visible !important;
            color: var(--primary-dark);
            display: inline-block;
            transform: translateY(0) !important;
        }

        /* Fix for desktop nav menu */
        .nav-menu {
            opacity: 1 !important;
            visibility: visible !important;
        }

        /* Mobile nav link visibility */
        @media (max-width: 768px) {
            .nav-menu .nav-link {
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
            }
        }

        /* Universal Mobile Content Containment */
        @media (max-width: 768px) {
            * {
                max-width: 100vw;
                box-sizing: border-box;
            }
            
            .hero *,
            .hero-container *,
            .hero-content * {
                word-wrap: break-word;
                overflow-wrap: break-word;
                word-break: break-word;
                hyphens: auto;
                max-width: 100%;
                box-sizing: border-box;
            }
            
            /* Prevent any element from extending beyond viewport */
            .hero-container,
            .hero-content,
            .hero-badge,
            .hero-title,
            .hero-description,
            .hero-cta,
            .hero-stats {
                margin-left: auto;
                margin-right: auto;
                position: relative;
            }
            
            /* Add safe area padding for devices with notches */
            .hero-container {
                padding-left: max(clamp(20px, 5vw, 32px), var(--safe-area-inset-left));
                padding-right: max(clamp(20px, 5vw, 32px), var(--safe-area-inset-right));
            }
        }


   /* About Section */
        .about-genesis {
            position: relative;
            background: linear-gradient(180deg, var(--warm-cream) 50%, var(--pristine-white) 100%);
            overflow: hidden;
            min-height: 200vh;
            z-index: 10;
        }

        .about-genesis::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(180deg, var( --warm-cream) 0%, transparent 100%);
            z-index: 1;
        }

        /* Background Architectural Elements */
        .about-bg-architecture {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }

        .architectural-grid {
            position: absolute;
            width: 120%;
            height: 120%;
            left: -10%;
            top: -10%;
            background-image: 
                linear-gradient(rgba(208, 150, 131, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(208, 150, 131, 0.03) 1px, transparent 1px);
            background-size: 80px 80px;
            animation: gridFlow 30s linear infinite;
        }

        @keyframes gridFlow {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(40px, 40px) rotate(0.5deg); }
        }

        /* Professional White Background Effects */
        .white-zone-effects {
            position: absolute;
            top: 40%;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .subtle-particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle-dot {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(208, 150, 131, 0.4);
            border-radius: 50%;
            animation: particleFloat 15s linear infinite;
        }

        .particle-dot:nth-child(1) { left: 10%; animation-delay: 0s; }
        .particle-dot:nth-child(2) { left: 25%; animation-delay: 3s; }
        .particle-dot:nth-child(3) { left: 45%; animation-delay: 6s; }
        .particle-dot:nth-child(4) { left: 65%; animation-delay: 9s; }
        .particle-dot:nth-child(5) { left: 80%; animation-delay: 12s; }
        .particle-dot:nth-child(6) { left: 15%; animation-delay: 2s; }
        .particle-dot:nth-child(7) { left: 35%; animation-delay: 5s; }
        .particle-dot:nth-child(8) { left: 55%; animation-delay: 8s; }
        .particle-dot:nth-child(9) { left: 75%; animation-delay: 11s; }
        .particle-dot:nth-child(10) { left: 90%; animation-delay: 14s; }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0px);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-50px) translateX(20px);
                opacity: 0;
            }
        }

        .micro-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 1px 1px, rgba(115, 96, 91, 0.15) 1px, transparent 0);
            background-size: 25px 25px;
            animation: microGridShift 20s ease-in-out infinite;
        }

        @keyframes microGridShift {
            0%, 100% { 
                opacity: 0.3;
                transform: translate(0, 0);
            }
            50% { 
                opacity: 0.1;
                transform: translate(12px, 12px);
            }
        }

        .gradient-waves {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 48%, rgba(208, 150, 131, 0.02) 49%, rgba(208, 150, 131, 0.02) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(115, 96, 91, 0.02) 49%, rgba(115, 96, 91, 0.02) 51%, transparent 52%);
            background-size: 60px 60px;
            animation: waveShift 25s ease-in-out infinite;
        }

        @keyframes waveShift {
            0%, 100% { 
                transform: translate(0, 0) scale(1);
                opacity: 0.8;
            }
            50% { 
                transform: translate(30px, -30px) scale(1.1);
                opacity: 0.4;
            }
        }

        .professional-accents {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .accent-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(208, 150, 131, 0.3), transparent);
            animation: lineGlow 8s ease-in-out infinite;
        }

        .accent-line:nth-child(1) {
            top: 20%;
            left: 0;
            right: 0;
            animation-delay: 0s;
        }

        .accent-line:nth-child(2) {
            top: 60%;
            left: 0;
            right: 0;
            animation-delay: 4s;
        }

        .accent-line:nth-child(3) {
            top: 80%;
            left: 0;
            right: 0;
            animation-delay: 6s;
        }

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

        .floating-specs {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .spec-element {
            position: absolute;
            width: 1px;
            height: 1px;
            background: rgba(115, 96, 91, 0.6);
            border-radius: 50%;
            animation: specFloat 12s ease-in-out infinite;
        }

        .spec-element:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
        .spec-element:nth-child(2) { top: 35%; left: 70%; animation-delay: 2s; }
        .spec-element:nth-child(3) { top: 55%; left: 30%; animation-delay: 4s; }
        .spec-element:nth-child(4) { top: 75%; left: 80%; animation-delay: 6s; }
        .spec-element:nth-child(5) { top: 25%; left: 50%; animation-delay: 8s; }
        .spec-element:nth-child(6) { top: 65%; left: 15%; animation-delay: 10s; }

        @keyframes specFloat {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }
            25% {
                transform: translate(10px, -5px) scale(1.5);
                opacity: 0.8;
            }
            50% {
                transform: translate(-5px, 10px) scale(0.8);
                opacity: 0.5;
            }
            75% {
                transform: translate(8px, -8px) scale(1.2);
                opacity: 0.7;
            }
        }

        .floating-geometry {
            position: absolute;
            pointer-events: none;
        }

        .geo-element {
            position: absolute;
            opacity: 0.1;
            will-change: transform;
        }

        .geo-circle {
            width: 200px;
            height: 200px;
            border: 2px solid var(--primary-peach);
            border-radius: 50%;
            top: 20%;
            right: 10%;
            animation: geoFloat 25s ease-in-out infinite;
        }

        .geo-triangle {
            width: 0;
            height: 0;
            border-left: 75px solid transparent;
            border-right: 75px solid transparent;
            border-bottom: 130px solid var(--primary-taupe);
            top: 60%;
            left: 5%;
            animation: geoFloat 20s ease-in-out infinite reverse;
        }

        .geo-hexagon {
            width: 150px;
            height: 130px;
            background: linear-gradient(45deg, var(--primary-peach), var(--primary-taupe));
            position: relative;
            top: 80%;
            right: 15%;
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
            animation: geoFloat 30s ease-in-out infinite;
        }

        @keyframes geoFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(30px, -20px) rotate(5deg); }
            50% { transform: translate(-15px, 40px) rotate(-3deg); }
            75% { transform: translate(25px, 15px) rotate(2deg); }
        }

        /* Story Container */
        .story-chronicle {
            position: relative;
            max-width: 1600px;
            margin: 0 auto;
            padding: var(--section-padding) var(--container-padding);
            z-index: 2;
        }

        /* Heritage Badge */
        .heritage-insignia {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(208, 150, 131, 0.3);
            border-radius: 60px;
            font-family: var(--font-secondary);
            font-size: 15px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(208, 150, 131, 0.2);
            position: relative;
            overflow: hidden;
        }

        .heritage-insignia::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(208, 150, 131, 0.1) 50%, transparent 100%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .heritage-insignia:hover::before {
            transform: translateX(100%);
        }

        .heritage-icon {
            width: 20px;
            height: 20px;
            background: var(--primary-peach);
            border-radius: 50%;
            position: relative;
            animation: pulse 3s ease-in-out infinite;
        }

        /* Revolutionary Title */
        .legacy-manifesto {
            font-family: var(--font-secondary);
            font-size: clamp(32px, 6vw, 100px);
            font-weight: 800;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            margin-bottom: 60px;
            color: var(--primary-dark);
            position: relative;
        }

        .manifesto-line {
            display: block;
            overflow: hidden;
            padding: 8px 0;
        }

        .manifesto-word {
            display: inline-block;
            transform: translateY(100%) rotate(8deg);
            opacity: 0;
            will-change: transform, opacity;
        }

        .manifesto-highlight {
            background: linear-gradient(135deg, var(--primary-peach) 0%, var(--primary-taupe) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .manifesto-highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-peach), var(--primary-taupe));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .manifesto-highlight.animate::after {
            transform: scaleX(1);
        }

        /* Leadership Showcase */
        .leadership-constellation {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            margin: 120px 0;
            position: relative;
        }

        .leadership-narrative {
            position: relative;
            z-index: 2;
        }

        .leadership-title {
            font-family: var(--font-accent);
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .narrative-excerpt {
            font-family: var(--font-secondary);
            font-size: 20px;
            line-height: 1.8;
            color: rgba(51, 0, 0, 0.8);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .expertise-anthology {
            list-style: none;
            margin-bottom: 50px;
        }

        .expertise-verse {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(208, 150, 131, 0.2);
            position: relative;
            overflow: hidden;
        }

        .expertise-verse::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, rgba(208, 150, 131, 0.1), transparent);
            transition: width 0.6s ease;
        }

        .expertise-verse:hover::before {
            width: 100%;
        }

        .expertise-emblem {
            width: 12px;
            height: 12px;
            background: var(--primary-peach);
            border-radius: 50%;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .expertise-description {
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 500;
            color: var(--primary-dark);
            position: relative;
            z-index: 1;
        }

        /* Corporate Visualization */
        .corporate-visualization {
            position: relative;
            height: 600px;
            perspective: 1000px;
        }

        .visualization-frame {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .visualization-frame:hover {
            transform: rotateY(3deg) rotateX(-1deg);
        }

        .visualization-canvas {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--warm-cream) 0%, var(--pristine-white) 100%);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 
                0 25px 60px rgba(208, 150, 131, 0.3),
                0 10px 30px rgba(51, 0, 0, 0.1);
            border: 1px solid rgba(208, 150, 131, 0.2);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .corporate-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            flex: 1;
        }

        .metric-card {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 16px;
            padding: 25px;
            border: 1px solid rgba(208, 150, 131, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(208, 150, 131, 0.1), transparent);
            transition: left 0.8s ease;
        }

        .metric-card:hover::before {
            left: 100%;
        }

        .metric-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-peach), var(--primary-taupe));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: white;
            font-size: 18px;
        }

        .metric-value {
            font-family: var(--font-primary);
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1;
            margin-bottom: 8px;
        }

        .metric-label {
            font-family: var(--font-secondary);
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-taupe);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .corporate-chart {
            height: 200px;
            background: linear-gradient(45deg, rgba(208, 150, 131, 0.1), rgba(115, 96, 91, 0.1));
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: end;
            justify-content: space-around;
            padding: 20px;
            margin-top: 30px;
        }

        .chart-bar {
            width: 40px;
            background: linear-gradient(180deg, var(--primary-peach), var(--primary-taupe));
            border-radius: 20px 20px 0 0;
            position: relative;
            animation: barGrow 2s ease-out forwards;
            transform-origin: bottom;
            transform: scaleY(0);
        }

        .chart-bar:nth-child(1) { height: 60%; animation-delay: 0.2s; }
        .chart-bar:nth-child(2) { height: 85%; animation-delay: 0.4s; }
        .chart-bar:nth-child(3) { height: 70%; animation-delay: 0.6s; }
        .chart-bar:nth-child(4) { height: 95%; animation-delay: 0.8s; }
        .chart-bar:nth-child(5) { height: 80%; animation-delay: 1s; }

        @keyframes barGrow {
            to {
                transform: scaleY(1);
            }
        }

        .corporate-brand {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(208, 150, 131, 0.2);
        }

        .brand-essence {
            font-family: var(--font-accent);
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }

        .brand-tagline {
            font-family: var(--font-secondary);
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-taupe);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Credentials Gallery */
        .credentials-odyssey {
            margin: 120px 0;
            position: relative;
        }

        .credentials-prelude {
            text-align: center;
            margin-bottom: 80px;
        }

        .credentials-caption {
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-peach);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 20px;
        }

        .credentials-epic {
            font-family: var(--font-secondary);
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1.1;
        }

        .credentials-mosaic {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .credential-medallion {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(208, 150, 131, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(20px);
            cursor: pointer;
        }

        .credential-medallion::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(208, 150, 131, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .credential-medallion:hover::before {
            left: 100%;
        }

        .credential-medallion:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(208, 150, 131, 0.4);
        }

        .credential-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-peach), var(--primary-taupe));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .credential-medallion:hover .credential-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 25px rgba(208, 150, 131, 0.4);
        }

        .credential-designation {
            font-family: var(--font-accent);
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .credential-description {
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.6;
            color: rgba(51, 0, 0, 0.7);
            position: relative;
            z-index: 1;
        }

        /* Vision Statement */
        .vision-manifesto {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-taupe) 100%);
            border-radius: 32px;
            padding: 80px 60px;
            margin: 120px 0;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .vision-manifesto::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, var(--primary-peach), var(--primary-taupe), var(--primary-dark));
            border-radius: 34px;
            z-index: -1;
            animation: borderGlow 3s ease-in-out infinite alternate;
        }

        @keyframes borderGlow {
            0% { opacity: 0.5; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.02); }
        }

        .vision-overture {
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-peach);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 20px;
        }

        .vision-decree {
            font-family: var(--font-primary);
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 700;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 30px;
        }

        .vision-philosophy {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .leadership-constellation {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .leadership-portrait {
                height: 500px;
            }
        }

        @media (max-width: 768px) {
            .credentials-mosaic {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .vision-manifesto {
                padding: 60px 40px;
                margin: 80px 0;
            }
            
            .legacy-manifesto {
                margin-bottom: 40px;
                 font-size: clamp(26px, 5vw, 59px);
            }
            
            .leadership-constellation {
                margin: 80px 0;
            }
        }

        @media (max-width: 480px) {
            .vision-manifesto {
                padding: 40px 20px;
                border-radius: 20px;
            }
         
            .credential-medallion {
                padding: 30px 20px;
            }

            .metric-value{
                font-size: 24px;
            }

            .metric-label{
                font-size: 9px;
            }
        }

        /* Scroll-triggered elements initial state */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(60px);
            will-change: transform, opacity;
        }

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

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

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






        
        /* Training Excellence Section */
        .training-excellence-realm {
            position: relative;
            background: var(--pristine-white);
            min-height: 100vh;
            padding: var(--section-padding) 0;
            overflow: hidden;
        }

        /* Refined Background Effects */
      .excellence-atmosphere {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

       .refined-gradient-mesh {
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(208, 150, 131, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(115, 96, 91, 0.06) 0%, transparent 50%);
            animation: meshPulse 20s ease-in-out infinite;
            will-change: transform;
        }

        @keyframes meshPulse {
            0%, 100% { opacity: 1; transform: translate3d(0,0,0) scale(1); }
            50% { opacity: 0.7; transform: translate3d(0,0,0) scale(1.1); }
        }
   /* Mobile-Optimized Background Effects */
        @media (max-width: 768px) {
            .dynamic-orbs,
            .light-rays,
            .geometric-floaters,
            .particle-streams,
            .morphing-blobs,
            .sparkle-field {
                display: none;
            }
            
            .refined-gradient-mesh {
                animation: none;
                opacity: 0.5;
            }
            
            .precision-dots {
                animation: dotFlowMobile 60s linear infinite;
                opacity: 0.3;
            }
            
            @keyframes dotFlowMobile {
                0% { transform: translate3d(0, 0, 0); }
                100% { transform: translate3d(10px, 10px, 0); }
            }
        }

        /* Tablet Optimization */
        @media (min-width: 769px) and (max-width: 1024px) {
            .particle-streams {
                display: none;
            }
            
            .sparkle-field {
                opacity: 0.5;
            }
            
            .floating-orb:nth-child(n+3),
            .particle-stream:nth-child(n+6) {
                display: none;
            }
        }

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

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

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

            .orb-2 {
                width: 200px;
                height: 200px;
                top: 60%;
                right: 10%;
                background: radial-gradient(circle, rgba(115, 96, 91, 0.3) 0%, transparent 70%);
                animation-delay: 8s;
            }

            @keyframes orbFloat {
                0%, 100% {
                    transform: translate3d(0, 0, 0) scale(1);
                    opacity: 0.4;
                }
                25% {
                    transform: translate3d(50px, -30px, 0) scale(1.2);
                    opacity: 0.6;
                }
                50% {
                    transform: translate3d(-30px, 60px, 0) scale(0.8);
                    opacity: 0.3;
                }
                75% {
                    transform: translate3d(40px, -20px, 0) scale(1.1);
                    opacity: 0.5;
                }
            }

            /* Sparkle Field - Desktop Only */
            .sparkle-field {
                position: absolute;
                width: 100%;
                height: 100%;
            }

            .sparkle {
                position: absolute;
                width: 4px;
                height: 4px;
                background: var(--primary-peach);
                border-radius: 50%;
                animation: sparkleGlow 3s ease-in-out infinite;
                will-change: opacity, transform;
            }

            .sparkle:nth-child(1) { top: 15%; left: 25%; animation-delay: 0s; }
            .sparkle:nth-child(2) { top: 35%; right: 20%; animation-delay: 0.5s; }
            .sparkle:nth-child(3) { top: 55%; left: 60%; animation-delay: 1s; }

            @keyframes sparkleGlow {
                0%, 100% {
                    opacity: 0.2;
                    transform: translate3d(0,0,0) scale(1);
                }
                50% {
                    opacity: 1;
                    transform: translate3d(0,0,0) scale(1.5);
                }
            }
        }



        .precision-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 2px 2px, rgba(208, 150, 131, 0.1) 1px, transparent 0);
            background-size: 40px 40px;
            animation: dotFlow 30s linear infinite;
            will-change: transform;
        }

        @keyframes dotFlow {
            0% { transform: translate(0, 0); }
            100% { transform: translate(20px, 20px); }
        }

        /* Enhanced Dynamic Background Effects */
        .dynamic-orbs {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(208, 150, 131, 0.4) 0%, transparent 70%);
            filter: blur(40px);
            animation: orbFloat 25s ease-in-out infinite;
        }

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

        .orb-2 {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 10%;
            background: radial-gradient(circle, rgba(115, 96, 91, 0.3) 0%, transparent 70%);
            animation-delay: 8s;
        }

        .orb-3 {
            width: 150px;
            height: 150px;
            top: 80%;
            left: 20%;
            animation-delay: 15s;
        }

        .orb-4 {
            width: 120px;
            height: 120px;
            top: 30%;
            right: 30%;
            background: radial-gradient(circle, rgba(208, 150, 131, 0.2) 0%, transparent 70%);
            animation-delay: 20s;
        }

        @keyframes orbFloat {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.4;
            }
            25% {
                transform: translate(50px, -30px) scale(1.2);
                opacity: 0.6;
            }
            50% {
                transform: translate(-30px, 60px) scale(0.8);
                opacity: 0.3;
            }
            75% {
                transform: translate(40px, -20px) scale(1.1);
                opacity: 0.5;
            }
        }

        /* Animated Light Rays */
        .light-rays {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .light-beam {
            position: absolute;
            width: 2px;
            height: 200px;
            background: linear-gradient(180deg, transparent 0%, rgba(208, 150, 131, 0.6) 50%, transparent 100%);
            animation: beamMove 12s linear infinite;
            transform-origin: center;
        }

        .beam-1 {
            top: 20%;
            left: 15%;
            animation-delay: 0s;
            transform: rotate(25deg);
        }

        .beam-2 {
            top: 50%;
            right: 25%;
            animation-delay: 4s;
            transform: rotate(-15deg);
        }

        .beam-3 {
            top: 70%;
            left: 60%;
            animation-delay: 8s;
            transform: rotate(45deg);
        }

        @keyframes beamMove {
            0% {
                opacity: 0;
                transform: translateY(-50px) rotate(var(--rotation, 0deg));
            }
            50% {
                opacity: 1;
                transform: translateY(0) rotate(var(--rotation, 0deg));
            }
            100% {
                opacity: 0;
                transform: translateY(50px) rotate(var(--rotation, 0deg));
            }
        }

        /* Floating Geometric Shapes */
        .geometric-floaters {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .geo-shape {
            position: absolute;
            opacity: 0.1;
            animation: shapeFloat 20s ease-in-out infinite;
        }

        .triangle-float {
            width: 0;
            height: 0;
            border-left: 40px solid transparent;
            border-right: 40px solid transparent;
            border-bottom: 70px solid var(--primary-peach);
            top: 25%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle-float {
            width: 60px;
            height: 60px;
            border: 3px solid var(--primary-taupe);
            border-radius: 50%;
            top: 65%;
            right: 15%;
            animation-delay: 7s;
        }

        .square-float {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--primary-peach), var(--primary-taupe));
            top: 45%;
            left: 80%;
            animation-delay: 14s;
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
        }

        .diamond-float {
            width: 40px;
            height: 40px;
            background: var(--primary-peach);
            top: 75%;
            right: 35%;
            animation-delay: 21s;
            transform: rotate(45deg);
        }

        @keyframes shapeFloat {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
            25% {
                transform: translate(30px, -40px) rotate(90deg) scale(1.2);
            }
            50% {
                transform: translate(-20px, 30px) rotate(180deg) scale(0.8);
            }
            75% {
                transform: translate(40px, -10px) rotate(270deg) scale(1.1);
            }
        }

        /* Particle Stream System */
        .particle-streams {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle-stream {
            position: absolute;
            width: 1px;
            height: 1px;
            background: rgba(208, 150, 131, 0.7);
            border-radius: 50%;
            animation: particleStream 15s linear infinite;
        }

        .stream-1 { left: 10%; animation-delay: 0s; }
        .stream-2 { left: 30%; animation-delay: 2s; }
        .stream-3 { left: 50%; animation-delay: 4s; }
        .stream-4 { left: 70%; animation-delay: 6s; }
        .stream-5 { left: 90%; animation-delay: 8s; }
        .stream-6 { left: 20%; animation-delay: 3s; }
        .stream-7 { left: 40%; animation-delay: 5s; }
        .stream-8 { left: 60%; animation-delay: 7s; }
        .stream-9 { left: 80%; animation-delay: 9s; }
        .stream-10 { left: 5%; animation-delay: 1s; }

        @keyframes particleStream {
            0% {
                transform: translateY(100vh) translateX(0px) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
                transform: translateY(90vh) translateX(10px) scale(1);
            }
            90% {
                opacity: 1;
                transform: translateY(-10vh) translateX(-10px) scale(1.5);
            }
            100% {
                transform: translateY(-20vh) translateX(0px) scale(0);
                opacity: 0;
            }
        }

        /* Dynamic Wave Lines */
        .wave-lines {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .wave-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(208, 150, 131, 0.3), transparent);
            animation: waveFlow 8s ease-in-out infinite;
        }

        .wave-1 {
            top: 20%;
            animation-delay: 0s;
        }

        .wave-2 {
            top: 50%;
            animation-delay: 2s;
        }

        .wave-3 {
            top: 80%;
            animation-delay: 4s;
        }

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

        /* Morphing Gradient Blobs */
        .morphing-blobs {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            animation: blobMorph 30s ease-in-out infinite;
        }

        .blob-1 {
            width: 400px;
            height: 300px;
            background: linear-gradient(45deg, rgba(208, 150, 131, 0.1), rgba(115, 96, 91, 0.05));
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .blob-2 {
            width: 250px;
            height: 200px;
            background: linear-gradient(-45deg, rgba(115, 96, 91, 0.08), rgba(208, 150, 131, 0.04));
            bottom: 20%;
            left: 15%;
            animation-delay: 10s;
        }

        @keyframes blobMorph {
            0%, 100% {
                border-radius: 50% 30% 70% 40%;
                transform: rotate(0deg) scale(1);
            }
            25% {
                border-radius: 30% 70% 50% 60%;
                transform: rotate(90deg) scale(1.1);
            }
            50% {
                border-radius: 70% 50% 30% 80%;
                transform: rotate(180deg) scale(0.9);
            }
            75% {
                border-radius: 40% 80% 60% 30%;
                transform: rotate(270deg) scale(1.05);
            }
        }

        /* Animated Grid Network */
        .network-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(208, 150, 131, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(208, 150, 131, 0.03) 1px, transparent 1px);
            background-size: 100px 100px;
            animation: gridPulse 15s ease-in-out infinite;
        }

        @keyframes gridPulse {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 0.1;
                transform: scale(1.05);
            }
        }

        /* Floating Sparkles */
        .sparkle-field {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-peach);
            border-radius: 50%;
            animation: sparkleGlow 3s ease-in-out infinite;
        }

        .sparkle:nth-child(1) { top: 15%; left: 25%; animation-delay: 0s; }
        .sparkle:nth-child(2) { top: 35%; right: 20%; animation-delay: 0.5s; }
        .sparkle:nth-child(3) { top: 55%; left: 60%; animation-delay: 1s; }
        .sparkle:nth-child(4) { top: 75%; right: 40%; animation-delay: 1.5s; }
        .sparkle:nth-child(5) { top: 25%; left: 80%; animation-delay: 2s; }
        .sparkle:nth-child(6) { top: 65%; left: 15%; animation-delay: 2.5s; }

        @keyframes sparkleGlow {
            0%, 100% {
                opacity: 0.2;
                transform: scale(1);
                box-shadow: 0 0 0 rgba(208, 150, 131, 0);
            }
            50% {
                opacity: 1;
                transform: scale(1.5);
                box-shadow: 0 0 20px rgba(208, 150, 131, 0.8);
            }
        }

        /* Excellence Container */
        .excellence-chronicle {
            position: relative;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 var(--container-padding);
            z-index: 2;
        }

        /* Excellence Badge */
        .excellence-insignia {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 12px 30px;
            background: rgba(208, 150, 131, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(208, 150, 131, 0.3);
            border-radius: 60px;
            font-family: var(--font-secondary);
            font-size: 15px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 40px;
            box-shadow: 0 10px 40px var(--shadow-subtle);
            position: relative;
            overflow: hidden;
        }

        .excellence-insignia::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(208, 150, 131, 0.2) 50%, transparent 100%);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
        }

        .excellence-insignia:hover::before {
            transform: translateX(100%);
        }

        .excellence-symbol {
            width: 20px;
            height: 20px;
            background: var(--primary-peach);
            border-radius: 50%;
            position: relative;
            animation: symbolPulse 3s ease-in-out infinite;
        }

        @keyframes symbolPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.7; }
        }

        /* Excellence Title */
        .excellence-manifesto {
            font-family: var(--font-secondary);
            font-size: clamp(32px, 6vw, 100px);
            font-weight: 800;
            text-transform: uppercase;
            line-height: 0.9;
            letter-spacing: -0.04em;
            margin-bottom: 40px;
            color: var(--primary-dark);
            position: relative;
        }

        .manifesto-phrase {
            display: block;
            overflow: hidden;
            padding: 8px 0;
        }

        .manifesto-term {
            display: inline-block;
            transform: translateY(100%) rotate(8deg);
            opacity: 0;
            will-change: transform, opacity;
        }

        .manifesto-accent {
            background: linear-gradient(135deg, var(--primary-peach) 0%, var(--primary-taupe) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        /* Excellence Description */
        .excellence-narrative {
            font-family: var(--font-secondary);
            font-size: 20px;
            line-height: 1.8;
            color: rgba(51, 0, 0, 0.8);
            margin-bottom: 60px;
            max-width: 700px;
            font-weight: 300;
        }

        /* Training Showcase Container */
        .training-showcase-arena {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
            margin: 100px 0;
            position: relative;
        }

        .showcase-content {
            position: relative;
            z-index: 2;
        }

        .showcase-highlights {
            margin-bottom: 50px;
        }

        .highlight-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 20px;
            background: rgba(115, 96, 91, 0.1);
            border-radius: 50px;
            font-family: var(--font-secondary);
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-taupe);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .showcase-subtitle {
            font-family: var(--font-accent);
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .showcase-description {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.7;
            color: rgba(51, 0, 0, 0.7);
            margin-bottom: 40px;
        }

        .training-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(208, 150, 131, 0.2);
            transition: all 0.3s ease;
            cursor: none;
        }

        .feature-item:hover {
            background: rgba(208, 150, 131, 0.05);
            transform: translateX(10px);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-peach), var(--primary-taupe));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            flex-shrink: 0;
        }

        .feature-text {
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 500;
            color: var(--primary-dark);
        }

        /* 3D Media Carousel */
        .media-carousel-dimension {
            position: relative;
            height: 600px;
            perspective: 1200px;
            transform-style: preserve-3d;
        }

        .carousel-viewport {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
        }

   .media-stack {
            position: absolute;
            width: 100%;
            height: 100%;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            will-change: transform, opacity;
        }

        .media-frame {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 25px 60px rgba(208, 150, 131, 0.3),
                0 10px 30px rgba(51, 0, 0, 0.1);
            border: 2px solid rgba(208, 150, 131, 0.2);
            background: var(--pristine-white);
        }

        .media-content {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .media-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .media-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(51, 0, 0, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .media-stack:hover .media-overlay {
            opacity: 1;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 24px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .play-button:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 1);
        }

        /* Media Stack Positioning */
        .media-stack:nth-child(1) {
            z-index: 5;
            transform: translateZ(0) rotateY(0deg);
        }

        .media-stack:nth-child(2) {
            z-index: 4;
            transform: translateZ(-50px) rotateY(-5deg) translateX(30px);
            opacity: 0.8;
        }

        .media-stack:nth-child(3) {
            z-index: 3;
            transform: translateZ(-100px) rotateY(-10deg) translateX(60px);
            opacity: 0.6;
        }

        .media-stack:nth-child(4) {
            z-index: 2;
            transform: translateZ(-150px) rotateY(-15deg) translateX(90px);
            opacity: 0.4;
        }

        .media-stack:nth-child(5) {
            z-index: 1;
            transform: translateZ(-200px) rotateY(-20deg) translateX(120px);
            opacity: 0.2;
        }
/* Desktop Media Stack Positioning */
        @media (min-width: 1025px) {
            .media-stack:nth-child(1) {
                z-index: 5;
                transform: translate3d(0, 0, 0) rotateY(0deg);
            }

            .media-stack:nth-child(2) {
                z-index: 4;
                transform: translate3d(30px, 0, -50px) rotateY(-5deg);
                opacity: 0.8;
            }

            .media-stack:nth-child(3) {
                z-index: 3;
                transform: translate3d(60px, 0, -100px) rotateY(-10deg);
                opacity: 0.6;
            }

            .media-stack:nth-child(4) {
                z-index: 2;
                transform: translate3d(90px, 0, -150px) rotateY(-15deg);
                opacity: 0.4;
            }

            .media-stack:nth-child(5) {
                z-index: 1;
                transform: translate3d(120px, 0, -200px) rotateY(-20deg);
                opacity: 0.2;
            }
        }

        /* Tablet Optimization */
        @media (min-width: 769px) and (max-width: 1024px) {
            .media-carousel-dimension {
                height: 500px;
                perspective: 800px;
            }

            .media-stack:nth-child(1) {
                z-index: 3;
                transform: translate3d(0, 0, 0);
            }

            .media-stack:nth-child(2) {
                z-index: 2;
                transform: translate3d(20px, 0, -30px) rotateY(-3deg);
                opacity: 0.7;
            }

            .media-stack:nth-child(3) {
                z-index: 1;
                transform: translate3d(40px, 0, -60px) rotateY(-6deg);
                opacity: 0.5;
            }

            .media-stack:nth-child(n+4) {
                display: none;
            }

            .play-button {
                width: 60px;
                height: 60px;
                font-size: 20px;
            }
        }

        /* Mobile Optimization */
        @media (max-width: 768px) {
            .media-carousel-dimension {
                height: 400px;
                perspective: none;
                transform-style: flat;
            }

            .carousel-viewport {
                transform-style: flat;
                display: flex;
                transition: transform 0.4s ease;
            }

            .media-stack {
                position: relative;
                flex: 0 0 100%;
                width: 100%;
                height: 100%;
                transform: none !important;
                opacity: 1 !important;
                transition: none;
            }

            .media-stack:not(.active) {
                display: none;
            }

            .media-stack.active {
                display: block;
            }

            .media-frame {
                border-radius: 16px;
                box-shadow: 0 15px 40px rgba(208, 150, 131, 0.2);
            }

            .play-button {
                width: 50px;
                height: 50px;
                font-size: 16px;
            }

            .media-overlay {
                opacity: 1;
                background: rgba(0, 0, 0, 0.1);
            }
        }

        /* Navigation Controls */
        .carousel-navigation {
            position: absolute;
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 10;
        }

        .nav-arrow {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid var(--primary-peach);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .nav-arrow:hover {
            background: var(--primary-peach);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(208, 150, 131, 0.4);
        }

        .nav-arrow:active {
            transform: scale(0.95);
        }

        @media (max-width: 768px) {
            .carousel-navigation {
                bottom: -60px;
                gap: 15px;
            }
            
            .nav-arrow {
                width: 50px;
                height: 50px;
                font-size: 16px;
            }
        }

        /* Media Info Panel */
        .media-info-panel {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 20px;
            border: 1px solid rgba(208, 150, 131, 0.2);
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .media-stack.active .media-info-panel {
            transform: translateY(0);
            opacity: 1;
        }

        .media-title {
            font-family: var(--font-accent);
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }

        .media-description {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(51, 0, 0, 0.7);
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .training-showcase-arena {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .media-carousel-dimension {
                height: 500px;
            }
        }

        @media (max-width: 768px) {
            .media-carousel-dimension {
                height: 400px;
            }
            
            .carousel-navigation {
                bottom: -60px;
            }
            
            .nav-arrow {
                width: 50px;
                height: 50px;
                font-size: 16px;
            }
            
            .media-stack:nth-child(n+4) {
                display: none;
            }

               .media-info-panel {
                bottom: 10px;
                left: 10px;
                right: 10px;
                padding: 15px;
                border-radius: 12px;
            }

                  .media-title {
                font-size: 16px;
            }

            .media-description {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .media-stack:nth-child(n+3) {
                display: none;
            }
            
            .excellence-manifesto {
                margin-bottom: 30px;
                 font-size: clamp(25px, 5vw, 58px);
            }
        }

        /* Scroll-triggered elements initial state */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(60px);
            will-change: transform, opacity;
        }

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

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

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




          /* Services Excellence Section */
        .services-excellence-universe {
            position: relative;
            min-height: 100vh;
            padding: var(--section-padding) 0;
            overflow: hidden;
            background: linear-gradient(180deg, var(--warm-cream) 0%, var(--pristine-white) 50%, var(--warm-cream) 100%);
        }

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

        .atmospheric-canvas {
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 20%, rgba(208, 150, 131, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(115, 96, 91, 0.08) 0%, transparent 50%);
            animation: atmosphericFlow 25s ease-in-out infinite;
            will-change: transform;
        }

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

        .precision-matrix {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(208, 150, 131, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(208, 150, 131, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: matrixShift 30s linear infinite;
            will-change: transform;
        }

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

        /* Desktop-Only Advanced Effects */
        @media (min-width: 1025px) {
            .floating-service-elements {
                position: absolute;
                width: 100%;
                height: 100%;
            }

            .service-orbiter {
                position: absolute;
                width: 200px;
                height: 200px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(208, 150, 131, 0.3) 0%, transparent 70%);
                filter: blur(50px);
                animation: serviceOrbit 20s ease-in-out infinite;
                will-change: transform;
            }

            .orbiter-1 {
                top: 15%;
                left: 10%;
                animation-delay: 0s;
            }

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

            @keyframes serviceOrbit {
                0%, 100% {
                    transform: translate3d(0, 0, 0) scale(1);
                    opacity: 0.4;
                }
                50% {
                    transform: translate3d(60px, -40px, 0) scale(1.3);
                    opacity: 0.6;
                }
            }

            .service-connectors {
                position: absolute;
                width: 100%;
                height: 100%;
            }

            .connector-line {
                position: absolute;
                height: 2px;
                background: linear-gradient(90deg, transparent, rgba(208, 150, 131, 0.4), transparent);
                animation: connectorFlow 12s ease-in-out infinite;
                will-change: transform, opacity;
            }

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

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

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

        /* Mobile Optimization - Simplified Effects */
        @media (max-width: 768px) {
            .floating-service-elements,
            .service-connectors {
                display: none;
            }
            
            .atmospheric-canvas {
                animation: none;
                opacity: 0.6;
            }
            
            .precision-matrix {
                animation: matrixShiftMobile 60s linear infinite;
                opacity: 0.3;
            }
            
            @keyframes matrixShiftMobile {
                0% { transform: translate3d(0, 0, 0); }
                100% { transform: translate3d(15px, 15px, 0); }
            }
        }

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

        /* Services Badge */
        .services-insignia {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 12px 30px;
            background: rgba(208, 150, 131, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(208, 150, 131, 0.3);
            border-radius: 60px;
            font-family: var(--font-secondary);
            font-size: 15px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 40px;
            box-shadow: 0 10px 40px var(--shadow-elegant);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .services-insignia::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(208, 150, 131, 0.2) 50%, transparent 100%);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
        }

        .services-insignia:hover::before {
            transform: translateX(100%);
        }

        .services-icon {
            width: 20px;
            height: 20px;
            background: var(--primary-peach);
            border-radius: 50%;
            position: relative;
            animation: iconPulse 3s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.7; }
        }

        /* Services Title */
        .services-manifesto {
            font-family: var(--font-secondary);
             font-size: clamp(32px, 6vw, 100px);
             text-transform: uppercase;
            font-weight: 800;
            line-height: 0.9;
            letter-spacing: -0.04em;
            margin-bottom: 40px;
            color: var(--primary-dark);
            position: relative;
        }

        .services-phrase {
            display: block;
            overflow: hidden;
            padding: 8px 0;
        }

        .services-word {
            display: inline-block;
            transform: translateY(100%) rotate(8deg);
            opacity: 0;
            will-change: transform, opacity;
        }

        .services-highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        /* Services Description */
        .services-narrative {
            font-family: var(--font-secondary);
            font-size: 20px;
            line-height: 1.8;
            color: rgba(51, 0, 0, 0.8);
            margin-bottom: 60px;
            max-width: 700px;
            font-weight: 300;
        }

        /* Service Category Tabs */
        .service-category-navigator {
            display: flex;
            gap: 20px;
            margin-bottom: 80px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .category-tab {
            padding: 15px 30px;
            background: rgba(255, 255, 255, 0.8);
            border: 2px solid rgba(208, 150, 131, 0.3);
            border-radius: 50px;
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-dark);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            user-select: none;
        }

        .category-tab::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .category-tab.active::before {
            opacity: 1;
        }

        .category-tab.active {
            color: white;
            border-color: var(--primary-peach);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(208, 150, 131, 0.4);
        }

        .category-tab span {
            position: relative;
            z-index: 1;
        }

        .category-tab:hover:not(.active) {
            transform: translateY(-2px);
            background: rgba(208, 150, 131, 0.1);
            box-shadow: 0 10px 30px rgba(208, 150, 131, 0.2);
        }

        /* Services Grid */
        .services-galaxy {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .service-constellation {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid rgba(208, 150, 131, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(20px);
            cursor: pointer;
            will-change: transform;
        }

        .service-constellation::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .service-constellation:hover::before {
            opacity: 0.05;
        }

        .service-constellation:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(208, 150, 131, 0.3);
            border-color: var(--primary-peach);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }

        .service-emblem {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-emblem::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-secondary);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-constellation:hover .service-emblem::before {
            opacity: 1;
        }

        .service-emblem i {
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
        }

        .service-constellation:hover .service-emblem i {
            transform: scale(1.2) rotate(10deg);
        }

        .service-identity {
            flex: 1;
        }

        .service-title {
            font-family: var(--font-accent);
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 8px;
            position: relative;
            z-index: 2;
            transition: color 0.4s ease;
        }

        .service-constellation:hover .service-title {
            color: var(--primary-dark);
        }

        .service-category {
            font-family: var(--font-secondary);
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-peach);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            position: relative;
            z-index: 2;
        }

        .service-description {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: rgba(51, 0, 0, 0.7);
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .service-features {
            list-style: none;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .service-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            font-family: var(--font-secondary);
            font-size: 14px;
            color: rgba(51, 0, 0, 0.8);
            transition: all 0.3s ease;
        }

        .feature-bullet {
            width: 8px;
            height: 8px;
            background: var(--primary-peach);
            border-radius: 50%;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .service-constellation:hover .feature-bullet {
            background: var(--primary-dark);
            transform: scale(1.3);
        }

        .service-action {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-secondary);
            font-size: 15px;
            font-weight: 600;
            color: var(--primary-peach);
            text-decoration: none;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .service-action:hover {
            color: var(--primary-dark);
            transform: translateX(5px);
        }

        .service-action i {
            transition: transform 0.3s ease;
        }

        .service-action:hover i {
            transform: translateX(5px);
        }

        /* Hidden Service Categories */
        .service-category-group {
            display: none;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .service-category-group.active {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* CTA Section */
        .services-cta-nexus {
            background: var(--gradient-secondary);
            border-radius: 32px;
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 100px;
        }

        .services-cta-nexus::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, var(--primary-peach), var(--primary-taupe), var(--primary-dark));
            border-radius: 34px;
            z-index: -1;
            animation: ctaBorderGlow 4s ease-in-out infinite alternate;
        }

        @keyframes ctaBorderGlow {
            0% { opacity: 0.5; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.02); }
        }

        .cta-overture {
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-peach);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 20px;
        }

        .cta-declaration {
            font-family: var(--font-primary);
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .cta-message {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 40px;
            font-weight: 300;
        }

        .cta-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button-primary,
        .cta-button-secondary {
            padding: 18px 40px;
            border-radius: 50px;
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .cta-button-primary {
            background: var(--primary-peach);
            color: var(--primary-dark);
            border: 2px solid var(--primary-peach);
        }

        .cta-button-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .cta-button-primary:hover {
            background: var(--white);
            color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(208, 150, 131, 0.4);
        }

        .cta-button-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary-peach);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
        }

        /* Mobile Responsive Design */
        @media (max-width: 768px) {
            .services-excellence-universe {
                padding: calc(var(--section-padding) * 0.7) 0;
            }
            
            .services-galaxy,
            .service-category-group.active {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .service-constellation {
                padding: 30px 20px;
                border-radius: 20px;
            }
            
            .service-emblem {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .service-title {
                font-size: 20px;
            }
            
            .category-tab {
                padding: 12px 24px;
                font-size: 14px;
            }
            
            .services-cta-nexus {
                padding: 60px 30px;
                margin-top: 60px;
                border-radius: 24px;
            }
            
            .cta-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button-primary,
            .cta-button-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .service-constellation {
                padding: 25px 15px;
            }
            
            .service-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .service-features {
                margin-bottom: 25px;
            }

            .services-manifesto{
                font-size: clamp(25px, 5vw, 58px);
        }
    
    } 

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

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

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

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

        .scroll-reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            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;
            }
            
            .service-orbiter,
            .services-icon,
            .atmospheric-canvas {
                animation: none !important;
            }
        }








        /* Gallery Universe Section */
        .gallery-universe {
            position: relative;
            min-height: 100vh;
            padding: var(--section-padding) 0;
            overflow: hidden;
              background: linear-gradient(360deg,  var(--warm-cream) 50%, var(--pristine-white) 100%);
        }
    

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

        .atmospheric-layers {
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 25% 25%, rgba(208, 150, 131, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(115, 96, 91, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(208, 150, 131, 0.04) 0%, transparent 70%);
            animation: atmosphericShift 30s ease-in-out infinite;
            will-change: transform, opacity;
        }

        @keyframes atmosphericShift {
            0%, 100% { 
                opacity: 1; 
                transform: translate3d(0, 0, 0) scale(1) rotate(0deg); 
            }
            50% { 
                opacity: 0.7; 
                transform: translate3d(30px, -30px, 0) scale(1.05) rotate(1deg); 
            }
        }

        .precision-lattice {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(208, 150, 131, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(208, 150, 131, 0.04) 1px, transparent 1px);
            background-size: 80px 80px;
            animation: latticeFlow 40s linear infinite;
            will-change: transform;
        }

        @keyframes latticeFlow {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(40px, 40px, 0); }
        }

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

            .particle-cluster {
                position: absolute;
                width: 300px;
                height: 300px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(208, 150, 131, 0.2) 0%, transparent 70%);
                filter: blur(60px);
                animation: particleOrbit 25s ease-in-out infinite;
                will-change: transform;
            }

            .cluster-1 {
                top: 20%;
                left: 15%;
                animation-delay: 0s;
            }

            .cluster-2 {
                bottom: 25%;
                right: 20%;
                background: radial-gradient(circle, rgba(115, 96, 91, 0.18) 0%, transparent 70%);
                animation-delay: 12s;
            }

            @keyframes particleOrbit {
                0%, 100% {
                    transform: translate3d(0, 0, 0) scale(1);
                    opacity: 0.4;
                }
                50% {
                    transform: translate3d(80px, -60px, 0) scale(1.4);
                    opacity: 0.7;
                }
            }

            .gallery-connectors {
                position: absolute;
                width: 100%;
                height: 100%;
            }

            .connector-beam {
                position: absolute;
                height: 2px;
                background: linear-gradient(90deg, transparent, rgba(208, 150, 131, 0.3), transparent);
                animation: beamFlow 15s ease-in-out infinite;
                will-change: transform, opacity;
            }

            .beam-1 {
                top: 30%;
                left: 0;
                right: 0;
                animation-delay: 0s;
            }

            .beam-2 {
                top: 70%;
                left: 0;
                right: 0;
                animation-delay: 7.5s;
            }

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

        /* Mobile Optimization - Simplified Effects */
        @media (max-width: 768px) {
            .gallery-particles,
            .gallery-connectors {
                display: none;
            }
            
            .atmospheric-layers {
                animation: none;
                opacity: 0.6;
            }
            
            .precision-lattice {
                animation: latticeFlowMobile 80s linear infinite;
                opacity: 0.3;
            }
            
            @keyframes latticeFlowMobile {
                0% { transform: translate3d(0, 0, 0); }
                100% { transform: translate3d(20px, 20px, 0); }
            }
        }

        /* Gallery Container */
        .gallery-constellation {
            position: relative;
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 var(--container-padding);
            z-index: 2;
        }

        /* Gallery Badge */
        .gallery-insignia {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(208, 150, 131, 0.3);
            border-radius: 60px;
            font-family: var(--font-secondary);
            font-size: 15px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 40px;
            box-shadow: 0 10px 40px var(--shadow-elegant);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-insignia::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(208, 150, 131, 0.2) 50%, transparent 100%);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
        }

        .gallery-insignia:hover::before {
            transform: translateX(100%);
        }

        .gallery-emblem {
            width: 20px;
            height: 20px;
            background: var(--primary-peach);
            border-radius: 50%;
            position: relative;
            animation: emblemPulse 3s ease-in-out infinite;
        }

        @keyframes emblemPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.7; }
        }

        /* Gallery Title */
        .gallery-manifesto {
            font-family: var(--font-secondary);
             font-size: clamp(32px, 6vw, 100px);
            font-weight: 800;
            line-height: 0.9;
            letter-spacing: -0.04em;
            margin-bottom: 40px;
            text-transform:uppercase;
            color: var(--primary-dark);
            position: relative;
        }

        .gallery-phrase {
            display: block;
            overflow: hidden;
            padding: 8px 0;
        }

        .gallery-word {
            display: inline-block;
            transform: translateY(100%) rotate(8deg);
            opacity: 0;
            will-change: transform, opacity;
        }

        .gallery-highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        /* Gallery Description */
        .gallery-narrative {
            font-family: var(--font-secondary);
            font-size: 20px;
            line-height: 1.8;
            color: rgba(51, 0, 0, 0.8);
            margin-bottom: 60px;
            max-width: 700px;
            font-weight: 300;
        }

        /* Gallery Filter Navigator */
        .gallery-filter-navigator {
            display: flex;
            gap: 20px;
            margin-bottom: 80px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .filter-crystal {
            padding: 15px 35px;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(208, 150, 131, 0.3);
            border-radius: 50px;
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-dark);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
            user-select: none;
            border: none;
        }

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

        .filter-crystal.active::before {
            opacity: 1;
        }

        .filter-crystal.active {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(208, 150, 131, 0.4);
        }

        .filter-crystal span {
            position: relative;
            z-index: 1;
        }

        .filter-crystal:hover:not(.active) {
            transform: translateY(-2px);
            background: rgba(208, 150, 131, 0.1);
            box-shadow: 0 10px 30px rgba(208, 150, 131, 0.2);
        }

        /* Gallery Grid */
        .gallery-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        /* Gallery Item */
        .gallery-prism {
            position: relative;
            aspect-ratio: 4/3;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: var(--gradient-glass);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(208, 150, 131, 0.2);
            will-change: transform;
        }

        .gallery-prism::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(208, 150, 131, 0.1) 0%, transparent 50%, rgba(115, 96, 91, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 2;
        }

        .gallery-prism:hover::before {
            opacity: 1;
        }

        .gallery-prism:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(208, 150, 131, 0.3);
        }

        .prism-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .gallery-prism:hover .prism-image {
            transform: scale(1.1);
        }

        .prism-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(51, 0, 0, 0.8) 100%);
            opacity: 0;
            transition: all 0.5s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            z-index: 3;
        }

        .gallery-prism:hover .prism-overlay {
            opacity: 1;
        }

        .prism-title {
            font-family: var(--font-accent);
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease 0.1s;
        }

        .gallery-prism:hover .prism-title {
            transform: translateY(0);
            opacity: 1;
        }

        .prism-category {
            font-family: var(--font-secondary);
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-peach);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 10px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease 0.2s;
        }

        .gallery-prism:hover .prism-category {
            transform: translateY(0);
            opacity: 1;
        }

        .prism-description {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease 0.3s;
        }

        .gallery-prism:hover .prism-description {
            transform: translateY(0);
            opacity: 1;
        }

        .prism-expand {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 18px;
            opacity: 0;
            transform: scale(0);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 4;
        }

        .gallery-prism:hover .prism-expand {
            opacity: 1;
            transform: scale(1);
        }

        /* Masonry Layout for larger screens */
        @media (min-width: 1025px) {
            .gallery-matrix {
                grid-template-columns: repeat(4, 1fr);
                grid-auto-rows: 250px;
            }

            .gallery-prism:nth-child(4n-3) {
                grid-row: span 2;
            }

            .gallery-prism:nth-child(8n-1) {
                grid-row: span 2;
            }

            .gallery-prism:nth-child(12n) {
                grid-column: span 2;
            }
        }

        /* Lightbox Modal */
        .lightbox-dimension {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .lightbox-dimension.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-container {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transform: scale(0.8);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .lightbox-dimension.active .lightbox-container {
            transform: scale(1);
        }

        .lightbox-image {
            width: 100%;
            height: auto;
            max-height: 80vh;
            object-fit: contain;
        }

        .lightbox-info {
            padding: 30px;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }

        .lightbox-title {
            font-family: var(--font-accent);
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
        }

        .lightbox-category {
            font-family: var(--font-secondary);
            font-size: 14px;
            color: var(--primary-peach);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 15px;
        }

        .lightbox-description {
            font-family: var(--font-body);
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary-dark);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .lightbox-close:hover {
            background: var(--primary-peach);
            color: var(--white);
            transform: scale(1.1);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary-dark);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.7;
        }

        .lightbox-nav:hover {
            opacity: 1;
            background: var(--primary-peach);
            color: var(--white);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        /* Stats Section */
        .gallery-metrics-nexus {
            background: var(--gradient-secondary);
            border-radius: 32px;
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 100px;
            color: var(--white);
        }

        .metrics-constellation {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 60px;
            max-width: 800px;
            margin: 0 auto;
        }

        .metric-crystal-g {
            text-align: center;
        }

        .metric-value-g {
            font-family: var(--font-primary);
            font-size: clamp(48px, 8vw, 72px);
            font-weight: 800;
            color: var(--primary-peach);
            line-height: 1;
            margin-bottom: 15px;
            letter-spacing: -0.02em;
        }

        .metric-label-g {
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Mobile Responsive Design */
        @media (max-width: 768px) {
            .gallery-universe {
                padding: calc(var(--section-padding) * 0.7) 0;
            }
            
            .gallery-matrix {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .gallery-prism {
                aspect-ratio: 3/2;
                border-radius: 16px;
            }
            
            .filter-crystal {
                padding: 12px 24px;
                font-size: 14px;
            }
            
            .gallery-metrics-nexus {
                padding: 60px 30px;
                margin-top: 60px;
                border-radius: 24px;
            }
            
            .metrics-constellation {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .lightbox-container {
                max-width: 95vw;
                border-radius: 16px;
            }
            
            .lightbox-info {
                padding: 20px;
            }
            
            .lightbox-title {
                font-size: 20px;
            }
            
            .lightbox-nav {
                width: 50px;
                height: 50px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .gallery-prism {
                aspect-ratio: 1/1;
            }
            
            .prism-overlay {
                padding: 20px;
            }
            
            .metrics-constellation {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .gallery-manifesto{
                font-size: clamp(25px, 5vw, 58px);
            }
        }

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

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

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

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

        .scroll-reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            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;
            }
            
            .particle-cluster,
            .gallery-emblem,
            .atmospheric-layers {
                animation: none !important;
            }
        }

        /* Hidden Category Groups */
        .gallery-prism {
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-prism.hidden {
            opacity: 0;
            transform: scale(0.8) translateY(30px);
            pointer-events: none;
        }

        .gallery-prism.show {
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: auto;
        }

 /* 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-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;
            }
        }


