:root {
    /* Cinematic Dark Color Palette */
    --primary-color: #FF5722; /* Safety Orange - matches sunset */
    --primary-dark: #E64A19;
    --primary-light: #FF7043;
    --secondary-color: #00E5FF; /* Electric Teal - tech/futuristic accent */
    --secondary-dark: #00B8D4;
    --accent-color: #FF5722;
    
    /* Typography - Off-White for readability */
    --text-color: #EDEDED;
    --text-light: #E5E5E5;
    --text-muted: #B0B0B0;
    
    /* Backgrounds - Rich Black with depth */
    --bg-color: #0b0b0b; /* Rich Black */
    --bg-alt: #121212; /* Deep Charcoal */
    --bg-dark: #080808; /* Deeper black for contrast */
    --bg-dark-alt: #1a1a1a; /* Slightly lighter for cards */
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(10px);
    
    /* Borders and Shadows */
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.6), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 87, 34, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-color) 50%, var(--bg-alt) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Glassmorphism */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section with Parallax */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle gradient to frame the sunset video without overpowering it */
    background: linear-gradient(
        180deg,
        rgba(11, 11, 11, 0.4) 0%,
        rgba(11, 11, 11, 0.2) 30%,
        rgba(11, 11, 11, 0.1) 60%,
        rgba(11, 11, 11, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
}

.hero-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fadeInHero 1.2s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 87, 34, 0.3);
    line-height: 1.1;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInHero 1.2s ease-out 0.3s forwards;
    font-weight: 300;
    color: white;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 1px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.vr-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.2), 
                inset 0 0 10px rgba(255, 87, 34, 0.05),
                0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: vrBadgePulse 3s ease-in-out infinite;
}

a.vr-badge-hero {
    text-decoration: none;
    color: var(--primary-color);
}

/* Pulse animation for the border */
@keyframes vrBadgePulse {
    0%, 100% {
        border-color: var(--primary-color);
        box-shadow: 0 0 15px rgba(255, 87, 34, 0.2), 
                    inset 0 0 10px rgba(255, 87, 34, 0.05),
                    0 2px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        border-color: var(--primary-light);
        box-shadow: 0 0 20px rgba(255, 87, 34, 0.35), 
                    inset 0 0 12px rgba(255, 87, 34, 0.08),
                    0 2px 8px rgba(0, 0, 0, 0.3);
    }
}

.vr-badge-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 87, 34, 0.1), transparent);
    transition: left 0.5s ease;
}

.vr-badge-hero:hover::before {
    left: 100%;
}

.vr-badge-hero:hover {
    border-color: var(--primary-light);
    box-shadow: 0 0 25px rgba(255, 87, 34, 0.5), 
                inset 0 0 15px rgba(255, 87, 34, 0.1),
                0 2px 8px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
    animation: none; /* Stop pulse on hover */
}

.vr-icon {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.vr-text {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

/* VR icon uses Phosphor icon - cube-transparent for 3D/VR visualization */

.vr-text {
    font-size: 0.85rem;
}

.cta-button {
    font-family: 'Inter', sans-serif;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInHero 1.2s ease-out 0.6s forwards;
    opacity: 0;
    box-shadow: var(--shadow-glow), 0 10px 25px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 87, 34, 0.6), 0 15px 35px rgba(0, 0, 0, 0.6);
    background: var(--primary-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--primary-color);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 5px;
    opacity: 0.9;
    font-weight: 600;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-alt {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-color) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   VR PLANNING - DARK AERO-FUTURE THEME
   ========================================= */
:root {
    --vr-orange: #FF6B00;
    --vr-orange-dim: rgba(255, 107, 0, 0.15);
    --vr-bg-dark: #0a0a0a;
}

.section-dark-future {
    padding: 8rem 0;
    position: relative;
    background-color: var(--vr-bg-dark);
    /* Subtle Grid Pattern */
    background-image: 
        linear-gradient(var(--vr-orange-dim) 1px, transparent 1px),
        linear-gradient(90deg, var(--vr-orange-dim) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    overflow: hidden;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

/* Fade out grid at edges */
.section-dark-future::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--vr-bg-dark) 90%);
    pointer-events: none;
}

.section-dark-future .vr-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* TEXT COLUMN STYLES */
.section-dark-future .vr-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--vr-orange);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.section-dark-future .vr-badge-text {
    color: var(--vr-orange);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-dark-future .vr-badge-icon {
    color: var(--vr-orange);
    font-size: 0.8rem;
    animation: blink 2s infinite;
}

.section-dark-future .vr-headline {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--text-color);
}

.section-dark-future .text-orange {
    color: var(--vr-orange);
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.section-dark-future .vr-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
}

.section-dark-future .vr-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.section-dark-future .vr-feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--vr-orange);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.section-dark-future .vr-feature-item:hover {
    transform: translateX(5px);
    background: rgba(255, 107, 0, 0.1);
}

.section-dark-future .vr-cta-button {
    display: inline-block;
    background: var(--vr-orange);
    color: #000;
    font-weight: 800;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
    transition: all 0.3s ease;
}

.section-dark-future .vr-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
}

/* VIDEO HUD INTERFACE */
.section-dark-future .vr-video-interface {
    position: relative;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.section-dark-future .vr-video-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.section-dark-future .vr-video-wrapper video {
    width: 100%;
    display: block;
    opacity: 0.9;
}

/* Orange Corners */
.section-dark-future .vr-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--vr-orange);
    transition: all 0.3s ease;
    z-index: 10;
}

.section-dark-future .vr-corner.tl {
    top: -2px;
    left: -2px;
    border-right: 0;
    border-bottom: 0;
}

.section-dark-future .vr-corner.tr {
    top: -2px;
    right: -2px;
    border-left: 0;
    border-bottom: 0;
}

.section-dark-future .vr-corner.bl {
    bottom: -2px;
    left: -2px;
    border-right: 0;
    border-top: 0;
}

.section-dark-future .vr-corner.br {
    bottom: -2px;
    right: -2px;
    border-left: 0;
    border-top: 0;
}

.section-dark-future .vr-video-interface:hover .vr-corner {
    width: 30px;
    height: 30px;
    box-shadow: 0 0 15px var(--vr-orange);
}

.section-dark-future .vr-interface-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--vr-bg-dark);
    border: 1px solid var(--vr-orange);
    color: var(--vr-orange);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    padding: 2px 8px;
    letter-spacing: 1px;
    z-index: 11;
}

.section-dark-future .vr-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 2px,
        rgba(0, 0, 0, 0.3) 3px
    );
    pointer-events: none;
    opacity: 0.6;
    z-index: 3;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .section-dark-future .vr-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-dark-future .vr-headline {
        font-size: 2.2rem;
    }
    
    .section-dark-future .vr-video-column {
        order: -1; /* Puts video on top on mobile */
    }
}


.project-button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow), 0 15px 35px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
}

.project-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 87, 34, 0.7), 0 20px 45px rgba(0, 0, 0, 0.6);
    background: var(--primary-light);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
    border-radius: 0 0 12px 12px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0;
    transform: translateY(10px);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.portfolio-overlay p {
    opacity: 0.9;
}

/* Lightbox/Modal for Full-Screen Image Viewing */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 87, 34, 0.2);
    border-color: var(--primary-light);
    box-shadow: 0 0 20px rgba(212, 215, 0, 0.5);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 87, 34, 0.2);
    border-color: var(--primary-light);
    box-shadow: 0 0 20px rgba(212, 215, 0, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 10000;
}

/* Portfolio Layout - Sidebar + Content */
.portfolio-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.portfolio-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.category-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-btn {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
}

.category-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.category-btn:hover {
    border-color: var(--primary-color);
    background: rgba(255, 87, 34, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.2);
}

.category-btn:hover::before {
    transform: scaleY(1);
}

.category-btn.active {
    background: rgba(255, 87, 34, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
    transform: translateX(0);
}

.category-btn.active::before {
    transform: scaleY(1);
}

.btn-label {
    display: block;
}

.portfolio-content {
    min-height: 500px;
}

/* Portfolio Horizontal Sliding Carousel */
.portfolio-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 80px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 87, 34, 0.2);
    user-select: none;
    pointer-events: auto;
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

.carousel-arrow:hover:not(:disabled) {
    background: rgba(255, 87, 34, 0.2);
    border-color: var(--primary-light);
    box-shadow: 0 0 25px rgba(255, 87, 34, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.portfolio-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.portfolio-carousel-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    transition: transform 0.4s ease-out;
    transform: translateX(0px);
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.portfolio-carousel .portfolio-item {
    flex: 0 0 calc(33.333% - 1.34rem);
    min-width: 0;
    height: 400px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    opacity: 0.4;
    filter: brightness(0.6);
    transform: scale(0.95);
    will-change: transform, opacity, filter;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.portfolio-carousel .portfolio-item.active {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1);
    z-index: 2;
}

.portfolio-carousel .portfolio-item:hover:not(.active) {
    opacity: 0.6;
    filter: brightness(0.75);
    transform: scale(0.98);
}

/* Glass-like effect for carousel images */
.portfolio-carousel .portfolio-image {
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.3);
    border: 2px solid rgba(255, 87, 34, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.portfolio-carousel .portfolio-item.active .portfolio-image {
    border-color: rgba(255, 87, 34, 0.6);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(255, 87, 34, 0.3);
}

.portfolio-carousel .portfolio-item:hover .portfolio-image {
    border-color: rgba(255, 87, 34, 0.8);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
                0 0 35px rgba(255, 87, 34, 0.4);
}

.portfolio-carousel .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.portfolio-carousel .portfolio-item.active .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-carousel .portfolio-item.active {
    z-index: 10;
    opacity: 1 !important;
    transform: translateZ(0) scale(1) !important;
}

.portfolio-carousel .portfolio-item:not(.active) {
    opacity: 0.85;
    transform: translateZ(-80px) scale(0.9);
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.equipment-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #007AFF;
}

.equipment-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    transition: border-color 0.3s ease;
}

.equipment-card:hover .equipment-image {
    border-bottom-color: rgba(0, 122, 255, 0.3);
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) 
            contrast(1.2) 
            brightness(1.1) 
            saturate(1.25);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
    max-height: 100%;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 12px rgba(0, 122, 255, 0.3))
            contrast(1.3) 
            brightness(1.15) 
            saturate(1.35);
}

.equipment-placeholder {
    color: var(--bg-dark);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    z-index: 1;
    text-transform: uppercase;
}

.equipment-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #ffffff;
    font-weight: 700;
}

.equipment-card p {
    padding: 0 1.5rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.equipment-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem;
}

.equipment-specs span {
    background: transparent;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.equipment-card:hover .equipment-specs span {
    border-color: rgba(0, 122, 255, 0.5);
    background: rgba(0, 122, 255, 0.1);
    color: #ffffff;
}

/* Contact Form */
/* Contact Links - Email & Social Media */
.contact-links-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 87, 34, 0.3), var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 87, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: rgba(255, 87, 34, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
}

.contact-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    word-break: break-word;
}

.contact-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-links-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

/* Page Content Styles */
.page-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.content-section ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
}

.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Services Section - Simplified */
.services-simple {
    text-align: center;
    padding: 10rem 0;
    margin: 2rem 0;
}

.services-simple h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-simple p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-color) 100%);
    color: var(--text-color);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-light);
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Parallax Effect - Lightweight for Mobile */
@media (prefers-reduced-motion: no-preference) {
    .hero-background {
        will-change: transform;
        transform: translateZ(0); /* Hardware acceleration */
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }
    
    .carousel-arrow-left {
        left: 10px;
    }
    
    .carousel-arrow-right {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        border-top: 2px solid var(--primary-color);
        border-bottom: 2px solid var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 1px 8px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 87, 34, 0.3);
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .vr-badge-hero {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
        gap: 0.5rem;
    }
    
    .vr-icon {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }
    
    .vr-text {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-simple {
        padding: 10rem 0;
        margin: 2rem 0;
    }
    
    .services-simple h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .project-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }


    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 1px 6px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 87, 34, 0.3);
    }
    
    .vr-badge-hero {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
        gap: 0.4rem;
    }
    
    .vr-icon {
        width: 18px;
        height: 18px;
        font-size: 0.9rem;
    }
    
    .vr-text {
        font-size: 0.7rem;
    }

    .section {
        padding: 4rem 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Disable parallax on mobile for better performance */
@media (max-width: 768px) {
    .hero-background {
        transform: none !important;
    }
    
    /* Portfolio Carousel Mobile Adjustments */
    .portfolio-carousel-container {
        padding: 0 60px;
    }
    
    .portfolio-carousel .portfolio-item {
        flex: 0 0 calc(50% - 1rem);
        height: 350px;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .carousel-arrow-left {
        left: 5px;
    }
    
    .carousel-arrow-right {
        right: 5px;
    }
    
    /* Lightbox Mobile */
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-counter {
        bottom: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .lightbox-content img {
        max-height: 90vh;
    }
    
    /* Portfolio Layout Mobile */
    .portfolio-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-sidebar {
        position: relative;
        top: 0;
    }
    
    .category-selector {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        gap: 0.5rem;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) transparent;
    }
    
    .category-selector::-webkit-scrollbar {
        height: 6px;
    }
    
    .category-selector::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .category-selector::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }
    
    .category-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .category-btn:hover {
        transform: translateY(-2px);
    }
    
    .category-btn.active {
        transform: translateY(0);
    }
    
    .category-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .category-btn:hover {
        transform: translateY(-2px);
    }
    
    .category-btn.active {
        transform: translateY(0);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* VR Feature Cards - High-Tech Spec Sheet Style */
.vr-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vr-feature-card {
    background: #1a1a1a;
    border: 1px solid rgba(212, 215, 0, 0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vr-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.vr-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.3), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vr-feature-card:hover::before {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(212, 215, 0, 0.5);
}

.vr-feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(212, 215, 0, 0.2);
    padding-bottom: 0.75rem;
}

.vr-feature-card p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vr-feature-card .vr-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vr-feature-card .vr-spec-list li {
    color: #ffffff;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vr-feature-card .vr-spec-list li:last-child {
    border-bottom: none;
}

.vr-feature-card .vr-spec-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.vr-feature-card .vr-badge {
    display: inline-block;
    background: rgba(212, 215, 0, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 215, 0, 0.3);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vr-feature-card:hover .vr-badge {
    background: rgba(255, 87, 34, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(212, 215, 0, 0.3);
}

/* Responsive VR Feature Grid */
@media (max-width: 768px) {
    .vr-feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vr-feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .vr-feature-card {
        padding: 1.25rem;
    }
    
    .vr-feature-card h3 {
        font-size: 1.25rem;
    }
}
/* optimized-animations */

/* 1. Define the hidden state in CSS, not JS */
.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform; /* Tells browser to prep GPU */
}

/* 2. The visible state */
.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Stagger delays for portfolio items so they don't all animate at once */
.portfolio-item:nth-child(1) { transition-delay: 0ms; }
.portfolio-item:nth-child(2) { transition-delay: 100ms; }
.portfolio-item:nth-child(3) { transition-delay: 200ms; }

/* =========================================
   VR CYBER SECTION - Terminal/Cyberpunk Style
   ========================================= */

    background: rgba(15, 15, 20, 0.98);
    border: 1px solid rgba(212, 215, 0, 0.3);
    box-shadow: 
        0 0 20px rgba(212, 215, 0, 0.15),
        inset 0 0 30px rgba(212, 215, 0, 0.05);
    position: relative;
    padding: 3rem;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    color: rgba(212, 215, 0, 0.9);
    border-radius: 12px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 3D Web Net Background */
.web-net-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
    background-image: 
        linear-gradient(rgba(212, 215, 0, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 215, 0, 0.15) 1px, transparent 1px),
        linear-gradient(rgba(212, 215, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 215, 0, 0.08) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 15px 15px, 15px 15px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    transform: perspective(1200px) rotateX(65deg) scale(1.3);
    transform-origin: center center;
    animation: webNetMove 25s linear infinite;
    pointer-events: none;
}

/* Add connecting lines for web effect */
.web-net-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(212, 215, 0, 0.1) 20px,
            rgba(212, 215, 0, 0.1) 21px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(212, 215, 0, 0.1) 20px,
            rgba(212, 215, 0, 0.1) 21px
        );
    opacity: 0.3;
}

@keyframes webNetMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    }
}

/* VR Workflow Text - Floating and Reappearing */
.vr-workflow-text {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.workflow-step {
    position: absolute;
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid rgba(212, 215, 0, 0.5);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 25px rgba(212, 215, 0, 0.25),
        inset 0 0 25px rgba(212, 215, 0, 0.08);
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    animation: textAppear 8s ease-in-out infinite;
    max-width: 350px;
    z-index: 10;
    transition: all 0.5s ease;
}

.workflow-step h3 {
    color: rgba(212, 215, 0, 0.95);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(212, 215, 0, 0.3);
}

.workflow-step p {
    color: rgba(212, 215, 0, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 0 8px rgba(212, 215, 0, 0.2);
}

.step-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.step-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes textAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    10% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    40% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0;
        transform: scale(0.8) translateY(-30px);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
}

/* Video Container in 3D Space */
.vr-video-container-3d {
    position: relative;
    z-index: 8;
    width: 100%;
    max-width: 800px;
    margin-top: 3rem;
    transform: translateZ(50px);
    perspective: 1000px;
}

.vr-video-container-3d .vr-video-wrapper {
    position: relative;
    border: 1px solid rgba(212, 215, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.8);
    box-shadow: 
        0 0 30px rgba(212, 215, 0, 0.2),
        inset 0 0 40px rgba(212, 215, 0, 0.05);
    transition: all 0.3s ease;
}

.vr-video-container-3d .vr-video-wrapper:hover {
    border-color: rgba(212, 215, 0, 0.6);
    box-shadow: 
        0 0 40px rgba(212, 215, 0, 0.3),
        inset 0 0 50px rgba(212, 215, 0, 0.1);
    transform: translateZ(60px);
}

/* HUD Layout Container - Desktop: side by side, Mobile: stacked */
.vr-cyber-section .hud-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.vr-cyber-section .hud-video-container {
    flex: 1;
    min-width: 0;
}

.vr-cyber-section .hud-tactical-info {
    flex: 0 0 300px;
    border: 2px solid #d4d700;
    box-shadow: 
        0 0 10px rgba(212, 215, 0, 0.5),
        0 0 20px rgba(212, 215, 0, 0.3),
        inset 0 0 10px rgba(212, 215, 0, 0.1);
    padding: 1.5rem;
    background: rgba(11, 11, 11, 0.8);
    position: relative;
}

/* Tactical Info corner brackets */
.vr-cyber-section .hud-tactical-info::before,
.vr-cyber-section .hud-tactical-info::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #d4d700;
    box-shadow: 0 0 8px rgba(212, 215, 0, 0.6);
}

.vr-cyber-section .hud-tactical-info::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.vr-cyber-section .hud-tactical-info::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* HUD Info Box - Light Futuristic */
.vr-cyber-section .hud-info-box {
    border: 1px solid rgba(212, 215, 0, 0.3);
    box-shadow: 
        0 0 20px rgba(212, 215, 0, 0.1),
        inset 0 0 30px rgba(212, 215, 0, 0.05);
    padding: 2rem;
    background: rgba(20, 20, 25, 0.7);
    position: relative;
    border-radius: 10px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.vr-cyber-section .hud-info-box:hover {
    border-color: rgba(212, 215, 0, 0.5);
    box-shadow: 
        0 0 30px rgba(212, 215, 0, 0.15),
        inset 0 0 40px rgba(212, 215, 0, 0.08);
}

.vr-cyber-section .hud-info-box::before,
.vr-cyber-section .hud-info-box::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(212, 215, 0, 0.5);
    box-shadow: 0 0 10px rgba(212, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.vr-cyber-section .hud-info-box::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.vr-cyber-section .hud-info-box::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.vr-cyber-section .hud-info-box h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    letter-spacing: 3px;
}

.vr-cyber-section .hud-info-box p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Stats Grid */
.vr-cyber-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.vr-cyber-section .hud-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(212, 215, 0, 0.2);
    background: rgba(212, 215, 0, 0.03);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vr-cyber-section .hud-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 215, 0, 0.08),
        transparent
    );
    transition: left 0.5s ease;
}

.vr-cyber-section .hud-stat:hover {
    border-color: rgba(212, 215, 0, 0.4);
    background: rgba(212, 215, 0, 0.06);
    box-shadow: 
        0 0 15px rgba(212, 215, 0, 0.15),
        inset 0 0 10px rgba(212, 215, 0, 0.05);
}

.vr-cyber-section .hud-stat:hover::before {
    left: 100%;
}

.vr-cyber-section .hud-stat .neon-text {
    font-size: 0.9rem;
}

.vr-cyber-section .hud-stat .data-readout {
    font-size: 1rem;
    font-weight: 600;
}

/* HUD Header - Status Bar */
.vr-cyber-section .hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(212, 215, 0, 0.2);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: rgba(212, 215, 0, 0.03);
    border-radius: 8px;
}

.vr-cyber-section .hud-header .data-readout {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.9rem;
    color: rgba(212, 215, 0, 0.85);
    text-shadow: 0 0 8px rgba(212, 215, 0, 0.2);
    letter-spacing: 0.5px;
}

/* Neon Text Styling - Light Futuristic */
.neon-text {
    color: rgba(212, 215, 0, 0.95);
    text-shadow: 
        0 0 8px rgba(212, 215, 0, 0.3),
        0 0 15px rgba(212, 215, 0, 0.15);
    font-weight: 500;
}

/* Data Readout Styling - Light */
.data-readout {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    color: rgba(212, 215, 0, 0.85);
    text-shadow: 0 0 8px rgba(212, 215, 0, 0.2);
}

/* Video wrapper with corner brackets - Light Futuristic */
.vr-cyber-section .video-wrapper,
.vr-cyber-section .vr-video-wrapper {
    position: relative;
    width: 100%;
    padding: 1.5rem;
    border: 1px solid rgba(212, 215, 0, 0.25);
    background: rgba(15, 15, 20, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vr-cyber-section .video-wrapper:hover,
.vr-cyber-section .vr-video-wrapper:hover {
    border-color: rgba(212, 215, 0, 0.4);
    box-shadow: 0 0 20px rgba(212, 215, 0, 0.1);
}

/* Corner brackets for viewfinder effect - Subtle */
.vr-cyber-section .video-wrapper::before,
.vr-cyber-section .video-wrapper::after,
.vr-cyber-section .vr-video-wrapper::before,
.vr-cyber-section .vr-video-wrapper::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1.5px solid rgba(212, 215, 0, 0.5);
    box-shadow: 0 0 10px rgba(212, 215, 0, 0.2);
    z-index: 5;
    transition: all 0.3s ease;
}

/* Top-left corner bracket */
.vr-cyber-section .video-wrapper::before,
.vr-cyber-section .vr-video-wrapper::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 8px;
}

/* Bottom-right corner bracket */
.vr-cyber-section .video-wrapper::after,
.vr-cyber-section .vr-video-wrapper::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 8px;
}

.vr-cyber-section .video-wrapper:hover::before,
.vr-cyber-section .video-wrapper:hover::after,
.vr-cyber-section .vr-video-wrapper:hover::before,
.vr-cyber-section .vr-video-wrapper:hover::after {
    border-color: rgba(212, 215, 0, 0.7);
    box-shadow: 0 0 15px rgba(212, 215, 0, 0.3);
}

.vr-cyber-section .vr-video-wrapper video,
.vr-cyber-section .video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    border: 1px solid rgba(212, 215, 0, 0.2);
}

.vr-cyber-section .video-wrapper::before,
.vr-cyber-section .video-wrapper::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #d4d700;
    box-shadow: 0 0 8px rgba(212, 215, 0, 0.6);
}

/* Top-left corner bracket */
.vr-cyber-section .video-wrapper::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

/* Bottom-right corner bracket */
.vr-cyber-section .video-wrapper::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Text content styling - Light Futuristic */
.vr-cyber-section h2,
.vr-cyber-section h3,
.vr-cyber-section p,
.vr-cyber-section li {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    color: rgba(212, 215, 0, 0.9);
    text-shadow: 0 0 10px rgba(212, 215, 0, 0.2);
}

/* Hologram Blue accent for secondary elements - Light */
.vr-cyber-section .hologram-blue {
    color: rgba(0, 242, 255, 0.8);
    text-shadow: 
        0 0 10px rgba(0, 242, 255, 0.3),
        0 0 20px rgba(0, 242, 255, 0.15);
}

.vr-cyber-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.vr-cyber-section h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.vr-cyber-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.vr-cyber-section ul {
    list-style: none;
    padding-left: 0;
}

.vr-cyber-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.vr-cyber-section li::before {
    content: '> ';
    position: absolute;
    left: 0;
    color: #d4d700;
    text-shadow: 0 0 3px rgba(212, 215, 0, 0.8);
}

/* Scanlines overlay - Light Futuristic */
.video-scanlines,
.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.15) 3px,
        rgba(0, 0, 0, 0.15) 6px
    );
    opacity: 0.4;
    mix-blend-mode: overlay;
}


/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .vr-cyber-section .hud-tactical-info {
        flex: 0 0 250px;
        padding: 1.2rem;
    }
    
    .vr-cyber-section .hud-container {
        gap: 1.5rem;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .vr-cyber-section {
        padding: 2rem 1rem;
        min-height: 500px;
    }
    
    .workflow-step {
        max-width: 280px;
        padding: 1.2rem 1.5rem;
    }
    
    .step-1 {
        top: 15%;
        left: 5%;
    }
    
    .step-2 {
        bottom: 15%;
        right: 5%;
    }
    
    .web-net-3d {
        background-size: 30px 30px, 30px 30px, 8px 8px, 8px 8px;
        transform: perspective(800px) rotateX(60deg) scale(1.1);
    }
    
    .vr-video-container-3d {
        max-width: 100%;
        margin-top: 1.5rem;
    }
    
    /* Stack HUD layout on mobile - video on top */
    .vr-cyber-section .hud-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vr-cyber-section .hud-video-container {
        width: 100%;
        order: 1; /* Video first */
    }
    
    .vr-cyber-section .hud-tactical-info,
    .vr-cyber-section .hud-info-box {
        flex: 1;
        width: 100%;
        border-width: 1px;
        padding: 1rem;
        order: 2; /* Info box second */
        box-shadow: 
            0 0 5px rgba(212, 215, 0, 0.4),
            0 0 10px rgba(212, 215, 0, 0.2),
            inset 0 0 5px rgba(212, 215, 0, 0.1);
    }
    
    .vr-cyber-section .hud-header {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .vr-cyber-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .vr-cyber-section .hud-info-box h2 {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    /* Scale down corner brackets on mobile */
    .vr-cyber-section .video-wrapper::before,
    .vr-cyber-section .video-wrapper::after,
    .vr-cyber-section .vr-video-wrapper::before,
    .vr-cyber-section .vr-video-wrapper::after,
    .vr-cyber-section .hud-tactical-info::before,
    .vr-cyber-section .hud-tactical-info::after,
    .vr-cyber-section .hud-info-box::before,
    .vr-cyber-section .hud-info-box::after {
        width: 15px;
        height: 15px;
        border-width: 1px;
        box-shadow: 0 0 4px rgba(212, 215, 0, 0.5);
    }
    
    .vr-cyber-section .video-wrapper,
    .vr-cyber-section .vr-video-wrapper {
        padding: 0.5rem;
    }
    
    .vr-cyber-section h2 {
        font-size: 1.5rem;
    }
    
    .vr-cyber-section h3 {
        font-size: 1.2rem;
    }
    
    .video-scanlines,
    .scanline {
        background: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px
        );
        opacity: 0.3;
    }
}

/* =========================================
   DARK THEME & SERVICES REDESIGN
   ========================================= */

:root {
    --vr-orange: #FF6B00;
    --vr-bg-dark: #0a0a0a;
    --vr-card-bg: #141414;
    --vr-border: rgba(255, 255, 255, 0.1);
}

/* Page Wrapper */
.dark-theme-wrapper {
    background-color: var(--vr-bg-dark);
    color: #e0e0e0;
    padding-bottom: 4rem;
}

.section-header {
    padding: 6rem 0 2rem;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

.text-orange {
    color: var(--vr-orange);
}

.text-center {
    text-align: center;
}

/* Service Grid */
.services-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: var(--vr-card-bg);
    border: 1px solid var(--vr-border);
    padding: 2.5rem 2rem;
    border-radius: 4px; /* Sharper corners for pro look */
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none; /* For link cards */
}

.service-card:hover {
    border-color: var(--vr-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--vr-orange);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--vr-border);
    padding-top: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.service-features li i {
    color: var(--vr-orange);
    font-size: 1.1rem;
}

/* Highlight Card (VR Link) */
.highlight-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, var(--vr-card-bg) 100%);
    border-color: rgba(255, 107, 0, 0.3);
}

.card-arrow {
    margin-top: auto;
    align-self: flex-end;
    color: var(--vr-orange);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.highlight-card:hover .card-arrow {
    transform: translateX(5px);
}

/* VR Section Specifics (Refined) - Updated to match new structure */
.section-dark-future {
    padding: 6rem 0;
    background: 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: 50px 50px;
    border-top: 1px solid var(--vr-border);
    border-bottom: 1px solid var(--vr-border);
}

.section-dark-future .vr-text-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-dark-future .vr-video-column {
    position: relative;
}

.section-dark-future .vr-video-interface {
    background: #000;
    padding: 15px;
    border: 1px solid #333;
    position: relative;
}

.section-dark-future .vr-grid-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-image: radial-gradient(rgba(255, 107, 0, 0.3) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 3;
}

/* VR Section for Index Page */
.vr-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vr-text-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vr-video-column {
    position: relative;
}

.vr-overline-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.vr-overline-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(212, 215, 0, 0.5);
}

.vr-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vr-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.vr-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vr-feature-list li {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    padding-left: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vr-feature-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    text-shadow: 0 0 8px rgba(212, 215, 0, 0.6);
}

.vr-video-interface {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(212, 215, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 20px;
}

.vr-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    z-index: 10;
    transition: all 0.3s ease;
}

.vr-corner.tl {
    top: -2px;
    left: -2px;
    border-right: 0;
    border-bottom: 0;
}

.vr-corner.tr {
    top: -2px;
    right: -2px;
    border-left: 0;
    border-bottom: 0;
}

.vr-corner.bl {
    bottom: -2px;
    left: -2px;
    border-right: 0;
    border-top: 0;
}

.vr-corner.br {
    bottom: -2px;
    right: -2px;
    border-left: 0;
    border-top: 0;
}

.vr-video-interface:hover .vr-corner {
    width: 30px;
    height: 30px;
    box-shadow: 0 0 15px rgba(212, 215, 0, 0.6);
}

.vr-video-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.vr-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive for VR Section */
@media (max-width: 968px) {
    .vr-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vr-headline {
        font-size: 2rem;
    }
    
    .vr-video-column {
        order: -1;
    }
}

@media (max-width: 768px) {
    .vr-headline {
        font-size: 1.75rem;
    }
    
    .vr-description {
        font-size: 1rem;
    }
    
    .vr-video-interface {
        padding: 15px;
    }
    
    .vr-corner {
        width: 15px;
        height: 15px;
    }
}

/* Dark Theme Overrides for Services Page - Everything */
.dark-theme-wrapper .section {
    background-color: var(--vr-bg-dark);
    color: #e0e0e0;
    border-top: 1px solid var(--vr-border);
    border-bottom: 1px solid var(--vr-border);
}

.dark-theme-wrapper .section-title {
    color: #fff;
}

.dark-theme-wrapper .section-subtitle {
    color: #888;
}

.dark-theme-wrapper .content-section {
    background-color: transparent;
    color: #e0e0e0;
}

.dark-theme-wrapper .content-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.dark-theme-wrapper .content-section p {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.dark-theme-wrapper .content-section ul {
    list-style: none;
    padding: 0;
}

.dark-theme-wrapper .content-section ul li {
    color: #ccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.dark-theme-wrapper .content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--vr-orange);
    font-weight: bold;
}

.dark-theme-wrapper .project-button {
    background: var(--vr-orange);
    color: #000;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
}

.dark-theme-wrapper .project-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
    background: #ff8533;
}

/* Footer in Dark Theme */
body.services-page .footer {
    background-color: var(--vr-bg-dark);
    border-top: 1px solid var(--vr-border);
}

body.services-page .footer h3,
body.services-page .footer h4 {
    color: #fff;
}

body.services-page .footer p,
body.services-page .footer li {
    color: #aaa;
}

body.services-page .footer a {
    color: #ccc;
    transition: color 0.3s ease;
}

body.services-page .footer a:hover {
    color: var(--vr-orange);
}

/* Navbar in Dark Theme Context */
body.services-page .navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

body.services-page .nav-brand {
    color: #fff;
}

body.services-page .nav-brand:hover {
    color: var(--vr-orange);
    transition: color 0.3s ease;
}

body.services-page .nav-menu a {
    color: #e0e0e0;
}

body.services-page .nav-menu a:hover,
body.services-page .nav-menu a.active {
    color: var(--vr-orange);
}
