/* Base Variables & Reset */
:root {
    --bg-dark: #050505;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    
    --purple: #b026ff;
    --pink: #ff2eb6;
    --orange: #ff7b00;
    --blue: #2e66ff;
    --cyan: #00d4ff;
    
    --grad-orange-purple: linear-gradient(90deg, #ff7b00, #b026ff);
    --grad-pink-purple: linear-gradient(90deg, #ff2eb6, #b026ff);
    --grad-blue-purple: linear-gradient(90deg, #2e66ff, #b026ff);
    
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
}

body.light-mode {
    --bg-dark: #ffffff;
    --text-main: #050505;
    --text-muted: #555555;
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.1);
}
body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.8);
}
body.light-mode .hero-title {
    background: linear-gradient(to bottom, #000000, #444444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.light-mode .about-cinematic, 
body.light-mode .creative-arsenal,
body.light-mode .featured-work-showcase,
body.light-mode .process-vertical,
body.light-mode footer {
    background: #ffffff;
}

/* Fix for Creative Mode in Light Mode */
body.light-mode.creative-mode-active {
    --bg-dark: #f0f0ff;
}
body.light-mode.creative-mode-active::before {
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(112, 0, 255, 0.1) 1px, transparent 0);
}
body.light-mode.creative-mode-active .hero-title {
    background: linear-gradient(to bottom, #7000ff, #00a0ff);
    -webkit-background-clip: text;
    text-shadow: 0 0 20px rgba(112, 0, 255, 0.2);
}
body.light-mode .custom-cursor {
    background: rgba(176, 38, 255, 1);
    mix-blend-mode: multiply;
}
body.light-mode .custom-cursor::before {
    border-color: rgba(176, 38, 255, 0.6);
}
body.light-mode .stat-item h2,
body.light-mode .t-content h4,
body.light-mode .arsenal-content h3,
body.light-mode .showcase-info h3,
body.light-mode .about-headline,
body.light-mode .footer-links a,
body.light-mode .nav-links a,
body.light-mode .hero-desc,
body.light-mode p,
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6,
body.light-mode span:not(.logo-mark):not(.text-gradient-orange):not(.text-gradient-blue):not(.text-gradient-pink):not(.text-gradient-purple),
body.light-mode li {
    color: #050505 !important;
}

body.light-mode .logo-text,
body.light-mode .logo-mark {
    color: #050505;
}

body.light-mode .logo-mark {
    border-color: #050505;
}

body.light-mode .btn-play {
    color: #050505;
}

body.light-mode .play-icon {
    border-color: rgba(0, 0, 0, 0.2);
}

body.light-mode .arsenal-item {
    border-color: rgba(0, 0, 0, 0.05);
}
body.light-mode .showcase-bg-text {
    opacity: 0.03;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
    cursor: none; /* Hide default cursor for custom cursor */
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(176, 38, 255, 0.8);
    box-shadow: 0 0 10px rgba(176, 38, 255, 1);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, border 0.3s, box-shadow 0.3s;
    mix-blend-mode: screen;
}
.custom-cursor::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 1px solid rgba(176, 38, 255, 0.4);
    border-radius: 50%;
    transition: inset 0.3s, border-color 0.3s;
}
.custom-cursor.hover {
    width: 40px;
    height: 40px;
}
.custom-cursor.hover::before {
    inset: -5px;
}


a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography Utilities */
.text-gradient-orange {
    background: linear-gradient(90deg, #ff7b00, #ff2eb6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-blue {
    background: linear-gradient(90deg, #2e66ff, #b026ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-pink {
    background: var(--grad-pink-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-purple {
    background: var(--grad-orange-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary {
    background: var(--grad-orange-purple);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(176, 38, 255, 0.3);
}

.btn-outline {
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: rgba(255, 123, 0, 0.1);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}
.play-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border-color 0.3s;
}
.btn-play:hover .play-icon {
    border-color: var(--text-main);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 100;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}
.logo-mark.small {
    width: 30px;
    height: 30px;
    font-size: 1rem;
}
.sun-logo {
    position: relative;
    font-size: 1.6rem;
    color: var(--orange);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 8px rgba(255, 123, 0, 0.4));
}

.sun-logo.small {
    font-size: 1.2rem;
}

.sun-glow {
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle, var(--orange), transparent 70%);
    opacity: 0.2;
    filter: blur(4px);
    z-index: -1;
    animation: sunPulse 3s infinite alternate;
}

@keyframes sunPulse {
    0% { transform: scale(1); opacity: 0.1; }
    100% { transform: scale(1.4); opacity: 0.3; }
}

.logo:hover .sun-logo {
    transform: rotate(90deg) scale(1.1);
    color: var(--pink);
    filter: drop-shadow(0 0 12px rgba(255, 46, 182, 0.6));
}

.logo-text {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 2px;
    background: linear-gradient(to right, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    letter-spacing: 3px;
    background: linear-gradient(to right, #ffffff, var(--orange));
    -webkit-background-clip: text;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--orange);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.creative-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.toggle-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: color 0.3s;
}
.simple-switch {
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    transition: background 0.3s, box-shadow 0.3s;
    border: 1px solid var(--glass-border);
}
.simple-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.creative-toggle.active .simple-switch {
    background: var(--pink);
    border-color: var(--pink);
    box-shadow: 0 0 15px rgba(255, 46, 182, 0.5);
}
.creative-toggle.active .simple-switch::after {
    left: 22px;
    background: white;
    box-shadow: 0 0 5px white;
}
.creative-toggle.active .toggle-label {
    color: var(--pink);
}
.theme-switch {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.theme-switch:hover {
    background: var(--glass-bg);
}

.hamburger {
    font-size: 1.5rem;
    cursor: pointer;
}

/* Creative Mode Body State - PREMIUM ENHANCEMENTS */
body.creative-mode-active {
    --bg-dark: #06020d;
    --glass-bg: rgba(255, 255, 255, 0.08);
}

/* Dynamic Plasma Background */
body.creative-mode-active::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(176, 38, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 46, 182, 0.05) 0%, transparent 60%);
    z-index: -1;
    animation: plasmaMove 15s ease infinite alternate;
}

@keyframes plasmaMove {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(20px, -20px); }
}

/* Floating Particles */
body.creative-mode-active::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.2) 1px, transparent 0);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
    animation: bgMove 30s linear infinite;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* Chromatic Aberration & Glitch */
body.creative-mode-active .hero-title {
    color: white;
    -webkit-text-fill-color: white;
    text-shadow: 
        3px 0 0 rgba(255,0,255,0.4), 
        -3px 0 0 rgba(0,255,255,0.4);
    animation: glitch-premium 4s infinite;
}

@keyframes glitch-premium {
    0%, 90%, 100% { transform: translate(0); text-shadow: 2px 0 0 rgba(255,0,255,0.4), -2px 0 0 rgba(0,255,255,0.4); }
    92% { transform: translate(-5px, 2px); text-shadow: 5px 0 0 rgba(255,0,0,0.8), -5px 0 0 rgba(0,0,255,0.8); }
    94% { transform: translate(5px, -2px); }
    96% { transform: translate(-2px, 5px); }
}

body.creative-mode-active .hero-subtitle,
body.creative-mode-active .about-headline,
body.creative-mode-active .section-title {
    color: white !important;
}

/* Enhanced Magnetic Elements */
body.creative-mode-active .logo-mark {
    border-color: var(--pink);
    box-shadow: 0 0 20px var(--pink), inset 0 0 10px var(--pink);
    animation: rotate 4s linear infinite;
}

body.creative-mode-active .btn-primary {
    background: linear-gradient(45deg, var(--purple), var(--pink));
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Creative Mode Cursor */
body.creative-mode-active .custom-cursor {
    width: 20px;
    height: 20px;
    background: white;
    mix-blend-mode: difference;
    box-shadow: 0 0 20px white;
}
body.creative-mode-active .custom-cursor::before {
    border-color: white;
    animation: rotate 2s linear infinite;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 5% 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg-elements {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    transition: opacity 1s, background 1s;
}
.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--purple);
    top: -200px;
    left: -200px;
    animation: float 20s infinite alternate;
}
.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--blue);
    bottom: -100px;
    right: -100px;
    animation: float 25s infinite alternate-reverse;
}
@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}
.welcome-text {
    color: var(--pink);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
}
.hero-title {
    font-size: 7rem;
    line-height: 0.9;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}
.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 450px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}



/* Hero Visual Placeholder */
.hero-visual {
    flex: 1;
    position: relative;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.abstract-shape {
    position: relative;
    width: 600px;
    height: 600px;
    perspective: 1000px;
}
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    transition: all 0.5s ease;
}
.red-orb {
    width: 350px;
    height: 350px;
    background: var(--orange);
    top: 10%;
    left: 10%;
    opacity: 0.4;
    animation: pulse 4s infinite alternate;
}
.blue-orb {
    width: 400px;
    height: 400px;
    background: var(--blue);
    bottom: 0%;
    right: 5%;
    opacity: 0.4;
    animation: pulse 5s infinite alternate-reverse;
}
.purple-orb {
    width: 250px;
    height: 250px;
    background: var(--purple);
    top: 40%;
    left: 40%;
    opacity: 0.5;
    animation: pulse 3s infinite alternate;
}
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.6; }
}

#canvas-container {
    width: 600px;
    height: 600px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(255, 46, 182, 0.2));
}
#canvas-container canvas {
    width: 100% !important;
    height: 100% !important;
    outline: none;
    pointer-events: auto;
}

.floating-p {
    position: absolute;
    top: 25%;
    left: 5%;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.circle-dashed {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}
.p-letter {
    font-size: 4rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
    color: white;
}
@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* Common Section Styles */
.section-subtitle {
    color: var(--pink);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.section-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
}
.section-header {
    margin-bottom: 40px;
}
.section-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-header.space-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.squiggle {
    color: var(--pink);
    font-size: 1.5rem;
}
.diamond {
    color: var(--orange);
}

/* Cinematic Fantasy About Section */
.about-cinematic {
    padding: 150px 0;
    position: relative;
    background: #050505;
    overflow: hidden;
}

.about-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(176, 38, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-visual-portal {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-frame {
    width: 450px;
    height: 550px;
    border-radius: 120px 30px 120px 30px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: rotate(-1.5deg);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 
                inset 0 0 20px rgba(255,255,255,0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #000;
}

.portal-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    filter: saturate(1.2) brightness(0.9);
}

.portal-frame:hover .portal-content {
    transform: scale(1.1) rotate(2deg);
}

.portal-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(45deg, var(--purple), var(--cyan));
    filter: blur(40px);
    opacity: 0.15;
    z-index: -1;
    animation: portalPulse 4s infinite alternate;
}

@keyframes portalPulse {
    0% { transform: scale(1); opacity: 0.1; }
    100% { transform: scale(1.1); opacity: 0.2; }
}

.float-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 3;
}

.crystal-1 { width: 60px; height: 60px; top: 10%; right: 0%; border-radius: 10px; transform: rotate(45deg); animation: floatCrystal 6s infinite ease-in-out; }
.crystal-2 { width: 40px; height: 40px; bottom: 15%; left: 0%; border-radius: 50%; animation: floatCrystal 8s infinite ease-in-out 1s; }
.crystal-3 { width: 30px; height: 30px; top: 50%; left: -10%; border-radius: 5px; transform: rotate(-20deg); animation: floatCrystal 5s infinite ease-in-out 2s; }

@keyframes floatCrystal {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(60deg); }
}

.about-text-content {
    z-index: 5;
}

.about-tag {
    color: var(--pink);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 25px;
    display: inline-block;
}

.about-headline {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-main);
}

.text-glow-purple {
    color: var(--purple);
    text-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
}

.text-gradient-cyan {
    background: linear-gradient(90deg, var(--cyan), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.about-stats-mini {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--pink);
    font-weight: 600;
    letter-spacing: 2px;
}

.btn-fantasy {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.btn-fantasy span { position: relative; z-index: 2; }

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--purple);
    filter: blur(40px);
    opacity: 0.5;
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.btn-fantasy:hover {
    border-color: var(--purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(176, 38, 255, 0.3);
}

.btn-fantasy:hover .btn-glow {
    width: 200px;
    height: 200px;
}

/* Responsive About */
@media (max-width: 1024px) {
    .about-headline { font-size: 3rem; }
    .portal-frame { width: 350px; height: 450px; }
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-description p { margin: 0 auto 40px; }
    .about-stats-mini { justify-content: center; }
    .portal-frame { width: 300px; height: 400px; margin: 0 auto; }
}

/* Cinematic Creative Arsenal (Services) */
.creative-arsenal {
    padding: 150px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.arsenal-container {
    position: relative;
}

.arsenal-header {
    margin-bottom: 100px;
    text-align: center;
}

.arsenal-grid {
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.arsenal-item {
    display: flex;
    align-items: center;
    position: relative;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
    margin: 0 5%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.arsenal-item:nth-child(even) {
    flex-direction: row-reverse;
}

.arsenal-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.4) saturate(0.8);
}

.arsenal-item:hover .arsenal-bg {
    transform: scale(1.1);
    filter: brightness(0.6) saturate(1);
}

.arsenal-content {
    flex: 1;
    padding: 80px;
    position: relative;
    z-index: 2;
}

.arsenal-icon {
    font-size: 3rem;
    color: var(--purple);
    margin-bottom: 30px;
    opacity: 0.8;
}

.arsenal-item[data-color="orange"] .arsenal-icon { color: var(--orange); }
.arsenal-item[data-color="pink"] .arsenal-icon { color: var(--pink); }

.arsenal-content h3 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.arsenal-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
}

.arsenal-list {
    list-style: none;
    padding: 0;
}

.arsenal-list li {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
}

.arsenal-list li span {
    font-size: 0.8rem;
    color: var(--purple);
    font-family: monospace;
}

.arsenal-item:hover .arsenal-list li {
    opacity: 1;
    transform: translateX(10px);
}

.arsenal-item[data-color="orange"] .arsenal-list li span { color: var(--orange); }
.arsenal-item[data-color="pink"] .arsenal-list li span { color: var(--pink); }

/* Responsive Arsenal */
@media (max-width: 1024px) {
    .arsenal-content h3 { font-size: 2.5rem; }
    .arsenal-item { height: 500px; }
}

@media (max-width: 768px) {
    .arsenal-grid { gap: 50px; }
    .arsenal-item { flex-direction: column !important; height: auto; border-radius: 20px; }
    .arsenal-content { padding: 40px 30px; }
    .arsenal-content h3 { font-size: 2rem; }
}

/* Cinematic Featured Work Showcase */
.featured-work-showcase {
    padding: 120px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    position: relative;
    z-index: 5;
}

.showcase-header .section-title {
    font-size: 4.5rem;
    line-height: 1;
    margin-top: 10px;
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.view-all-btn:hover .btn-circle {
    background: var(--grad-pink-purple);
    border-color: transparent;
    transform: rotate(-45deg);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 5%;
    position: relative;
}

.showcase-item:nth-child(even) {
    flex-direction: row-reverse;
}

.showcase-visual {
    flex: 1.2;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    cursor: pointer;
}

.showcase-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6));
    opacity: 0.6;
    transition: opacity 0.5s;
}

.showcase-number {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 6rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    line-height: 1;
    z-index: 2;
}

.showcase-info {
    flex: 0.8;
    z-index: 5;
}

.info-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(176, 38, 255, 0.1);
    border: 1px solid rgba(176, 38, 255, 0.3);
    border-radius: 30px;
    color: var(--purple);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.showcase-info h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.showcase-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 400px;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-main);
    position: relative;
    padding-bottom: 5px;
}

.case-study-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-orange-purple);
    transition: width 0.3s;
}

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

.case-study-link i {
    transition: transform 0.3s;
}

.case-study-link:hover i {
    transform: translateX(10px);
}

/* Hover effects */
.showcase-item:hover .showcase-image {
    transform: scale(1.1);
}

.showcase-item:hover .showcase-overlay {
    opacity: 0.3;
}

/* Background text */
.showcase-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

/* Responsive Showcase */
@media (max-width: 1024px) {
    .showcase-header .section-title { font-size: 3.5rem; }
    .showcase-info h3 { font-size: 2.5rem; }
    .showcase-visual { height: 450px; }
}

@media (max-width: 768px) {
    .showcase-item, .showcase-item:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }
    .showcase-visual {
        width: 100%;
        height: 350px;
    }
    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .showcase-header .section-title { font-size: 2.5rem; }
}

/* Stats */
.stats {
    padding: 40px 5%;
}
.stats-box {
    background: linear-gradient(90deg, rgba(176,38,255,0.1), rgba(0,212,255,0.1));
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.05);
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}
.stat-item:hover {
    transform: scale(1.1);
}
.stat-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}
.stat-icon i {
    transition: all 0.3s;
}
.stat-icon.purple { color: var(--purple); border-color: var(--purple); box-shadow: 0 0 15px rgba(176,38,255,0.3); }
.stat-icon.orange { color: var(--orange); border-color: var(--orange); box-shadow: 0 0 15px rgba(255,123,0,0.3); }
.stat-icon.red { color: #ff3366; border-color: #ff3366; box-shadow: 0 0 15px rgba(255,51,102,0.3); }
.stat-icon.blue { color: var(--cyan); border-color: var(--cyan); box-shadow: 0 0 15px rgba(0,212,255,0.3); }

/* Hover Fill and Zoom effects */
.stat-item:hover .stat-icon.purple { background: var(--purple); color: white; box-shadow: 0 0 30px var(--purple); }
.stat-item:hover .stat-icon.orange { background: var(--orange); color: white; box-shadow: 0 0 30px var(--orange); }
.stat-item:hover .stat-icon.red { background: #ff3366; color: white; box-shadow: 0 0 30px #ff3366; }
.stat-item:hover .stat-icon.blue { background: var(--cyan); color: white; box-shadow: 0 0 30px var(--cyan); }

/* Make hollow icons solid on hover */
.stat-item:hover .stat-icon i {
    font-weight: 900;
    transform: scale(1.2);
}

.stat-info h2 {
    font-size: 2rem;
    font-weight: 700;
}
.stat-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 60px;
    border-left: 1px dashed var(--glass-border);
}

/* Vertical Cinematic Process Section */
.process-vertical {
    padding: 150px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--grad-orange-purple);
    box-shadow: 0 0 20px var(--purple);
    transition: background 0.5s ease;
}

.timeline-arrow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    box-shadow: 0 0 20px var(--purple);
    z-index: 10;
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 150px;
    padding-left: 100px;
}

.t-step {
    position: relative;
    opacity: 0.2;
    transform: translateX(-20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 40px;
}

.t-step.active {
    opacity: 1;
    transform: translateX(0);
}

.t-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}

.t-step.active .t-icon {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.1) rotate(5deg);
}

/* Multi-color Glows */
.t-step[data-color="cyan"].active .t-icon { color: var(--cyan); border-color: var(--cyan); box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
.t-step[data-color="orange"].active .t-icon { color: var(--orange); border-color: var(--orange); box-shadow: 0 0 20px rgba(255, 123, 0, 0.3); }
.t-step[data-color="pink"].active .t-icon { color: var(--pink); border-color: var(--pink); box-shadow: 0 0 20px rgba(255, 46, 182, 0.3); }
.t-step[data-color="purple"].active .t-icon { color: var(--purple); border-color: var(--purple); box-shadow: 0 0 20px rgba(176, 38, 255, 0.3); }

.t-dot {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #111;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.5s;
    z-index: 5;
}

.t-step.active .t-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    border-width: 4px;
}

.t-step[data-color="cyan"].active .t-dot { border-color: var(--cyan); box-shadow: 0 0 15px var(--cyan); }
.t-step[data-color="orange"].active .t-dot { border-color: var(--orange); box-shadow: 0 0 15px var(--orange); }
.t-step[data-color="pink"].active .t-dot { border-color: var(--pink); box-shadow: 0 0 15px var(--pink); }
.t-step[data-color="purple"].active .t-dot { border-color: var(--purple); box-shadow: 0 0 15px var(--purple); }

.t-num {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    opacity: 0.5;
}

.t-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    transition: color 0.4s;
}

.t-step[data-color="cyan"].active h4 { color: var(--cyan); }
.t-step[data-color="orange"].active h4 { color: var(--orange); }
.t-step[data-color="pink"].active h4 { color: var(--pink); }
.t-step[data-color="purple"].active h4 { color: var(--purple); }

/* Mouse Interactions */
.t-step:hover .t-icon {
    transform: scale(1.2) rotate(-5deg);
    background: rgba(255, 255, 255, 0.1);
}

/* Arrow Color States */
.timeline-arrow.cyan { background: var(--cyan); box-shadow: 0 0 25px var(--cyan); }
.timeline-arrow.orange { background: var(--orange); box-shadow: 0 0 25px var(--orange); }
.timeline-arrow.pink { background: var(--pink); box-shadow: 0 0 25px var(--pink); }
.timeline-arrow.purple { background: var(--purple); box-shadow: 0 0 25px var(--purple); }

/* Testimonial Refinement */
.testimonial-premium {
    padding: 150px 0;
}

.testimonial-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-author {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .timeline-steps { padding-left: 60px; }
    .t-content h4 { font-size: 1.5rem; }
    .t-content p { font-size: 1rem; }
}

/* Contact & Footer */
.footer-section {
    border-top: 1px solid var(--glass-border);
    padding-top: 80px;
    background: linear-gradient(to bottom, transparent, rgba(176,38,255,0.05));
}
.contact-area {
    display: flex;
    gap: 50px;
    padding-bottom: 80px;
}
.contact-text {
    flex: 1;
}
.contact-text h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.contact-text p {
    color: var(--text-muted);
}
.contact-form {
    flex: 1.5;
    background: rgba(10,10,10,0.8);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-bottom-color: var(--orange);
}
.form-submit {
    margin-top: 20px;
    text-align: right;
}
.stay-connected {
    flex: 0.8;
    background: var(--grad-pink-purple);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stay-connected h4 {
    margin-bottom: 10px;
}
.stay-connected p {
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}
.social-links a:hover {
    background: white;
    color: var(--purple);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 30px 0;
}
.fb-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}
.footer-links {
    display: flex;
    gap: 30px;
}
.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-links a:hover {
    color: var(--orange);
}
.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === SCROLL REVEAL (Lightweight — IntersectionObserver) === */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-item {
    opacity: 0;
    transform: translateY(25px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .services-carousel { max-width: 700px; height: 300px; }
    .service-card { width: 240px; }
    .service-card.pos-left { transform: translate(-140%, -50%) scale(0.8) rotateY(20deg); }
    .service-card.pos-right { transform: translate(40%, -50%) scale(0.8) rotateY(-20deg); }
    .about-row { flex-direction: column; }
    .stats-box { flex-wrap: wrap; gap: 30px; }
    .stat-divider { display: none; }
    .process-testimonial { flex-direction: column; }
    .contact-area { flex-direction: column; }
    .hidden-mobile { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { flex-direction: column; text-align: center; padding-top: 150px; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }
    .scroll-indicator { display: none; }
    .services-carousel { max-width: 100%; height: 280px; }
    .service-card { width: 220px; }
    .service-card.pos-left { transform: translate(-120%, -50%) scale(0.75) rotateY(15deg); opacity: 0.5; }
    .service-card.pos-right { transform: translate(20%, -50%) scale(0.75) rotateY(-15deg); opacity: 0.5; }
    .carousel-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
    .process-steps { flex-direction: column; gap: 30px; }
    .step-line { display: none; }
    .fb-inner { flex-direction: column; gap: 20px; }
}

/* Creative Mode Enhancements for Showcase */
body.creative-mode-active .featured-work-showcase {
    background: #0a0510;
}

body.creative-mode-active .info-tag {
    background: rgba(255, 46, 182, 0.2);
    border-color: var(--pink);
    color: var(--pink);
    box-shadow: 0 0 15px rgba(255, 46, 182, 0.3);
}

body.creative-mode-active .showcase-visual {
    box-shadow: 0 30px 60px rgba(176, 38, 255, 0.2);
}

body.creative-mode-active .showcase-item:hover .showcase-visual {
    box-shadow: 0 30px 80px rgba(176, 38, 255, 0.4);
}

body.creative-mode-active .showcase-bg-text {
    color: rgba(255, 46, 182, 0.05);
}

/* Floating Icon Orbs */
.floating-icon-orb {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.floating-icon-orb i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    transition: transform 0.3s;
}

.orb-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0.7;
}

.orb-logic { top: -20px; left: 10%; color: var(--cyan); border-color: rgba(0, 212, 255, 0.3); }
.orb-art { bottom: 20%; right: -30px; color: var(--pink); border-color: rgba(255, 46, 182, 0.3); }
.orb-connect { top: 40%; left: -50px; color: var(--purple); border-color: rgba(176, 38, 255, 0.3); }

.floating-icon-orb:hover {
    transform: scale(1.1) translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: currentColor;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px currentColor;
}

.floating-icon-orb:hover i {
    transform: scale(1.2);
}

.floating-icon-orb::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: 0.2;
    animation: orbRipple 2s infinite;
}

@keyframes orbRipple {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Responsive Orbs */
@media (max-width: 768px) {
    .floating-icon-orb { width: 60px; height: 60px; }
    .floating-icon-orb i { font-size: 1.2rem; }
    .orb-label { display: none; }
    .orb-logic { top: 0; left: 0; }
    .orb-art { bottom: 10%; right: 0; }
    .orb-connect { top: 30%; left: -20px; }
}