/* ========================
   CSS RESET & VARIABLES
   ======================== */
:root {
    /* Primary (Neon Blue) */
    --primary-50: #ecfeff;
    --primary-100: #cffafe;
    --primary-200: #a5f3fc;
    --primary-300: #67e8f9;
    --primary-400: #22d3ee;
    --primary-500: #06b6d4;
    --primary-600: #0891b2;
    --primary-700: #0e7490;
    --primary-800: #155e75;
    --primary-900: #164e63;
    
    /* Accent (Neon Orange) */
    --accent-50: #fff7ed;
    --accent-100: #ffedd5;
    --accent-200: #fed7aa;
    --accent-300: #fdba74;
    --accent-400: #fb923c;
    --accent-500: #f97316;
    --accent-600: #ea580c;
    --accent-700: #c2410c;
    --accent-800: #9a3412;
    --accent-900: #7c2d12;
    
    /* Futuristic Colors */
    --neon-blue: #00f3ff;
    --neon-purple: #9d00ff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff9d;
    --matrix-green: #00ff41;
    --hologram-blue: rgba(0, 195, 255, 0.1);
    --cyber-yellow: #ffd300;
    
    /* Theme Variables */
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f1a;
    --bg-surface: rgba(20, 20, 35, 0.7);
    --bg-card: rgba(25, 25, 45, 0.6);
    --bg-overlay: rgba(5, 5, 15, 0.95);
    --bg-grid: rgba(0, 243, 255, 0.05);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-tertiary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    --border-color: rgba(0, 243, 255, 0.2);
    --border-glow: rgba(0, 243, 255, 0.5);
    --border-light: rgba(255, 255, 255, 0.1);
    
    --shadow-sm: 0 1px 2px rgba(0, 243, 255, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 243, 255, 0.15);
    --shadow-lg: 0 10px 15px rgba(0, 243, 255, 0.2);
    --shadow-xl: 0 20px 25px rgba(0, 243, 255, 0.25);
    --shadow-neon: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    
    --navbar-height: 90px;
    --marquee-height: 36px;
    
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --font-mono: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================
   FONT AWESOME FIX
   ======================== */
.fa, .fas, .far, .fal, .fad, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Ensure icons in ticker are visible */
.ticker-item i {
    font-family: "Font Awesome 6 Free" !important;
    color: var(--neon-blue);
    margin-right: 10px;
    font-size: 1rem;
}

/* Ensure icons in badges are visible */
.badge i {
    font-family: "Font Awesome 6 Free" !important;
    color: var(--neon-blue);
}

/* Ensure icons in buttons are visible */
.btn i {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Ensure icons in service cards are visible */
.service-icon i {
    font-family: "Font Awesome 6 Free" !important;
}

/* Ensure icons in contact section are visible */
.contact-icon i,
.social-link i {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Ensure icons in FAQ are visible */
.faq-icon {
    font-family: "Font Awesome 6 Free" !important;
}

/* Ensure icons in pricing are visible */
.pricing-features i {
    font-family: "Font Awesome 6 Free" !important;
}

/* Ensure icons in video cards are visible */
.video-play i,
.video-meta i {
    font-family: "Font Awesome 6 Free" !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ========================
   ANIMATED BACKGROUNDS
   ======================== */
#grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: 
        linear-gradient(45deg, var(--bg-primary) 25%, transparent 25%) 0 0,
        linear-gradient(-45deg, var(--bg-primary) 25%, transparent 25%) 0 0,
        linear-gradient(45deg, transparent 75%, var(--bg-primary) 75%) 0 0,
        linear-gradient(-45deg, transparent 75%, var(--bg-primary) 75%) 0 0;
    background-color: var(--bg-secondary);
    background-size: 40px 40px;
    opacity: 0.3;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
}

#hologram-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--hologram-blue) 10%,
        transparent 20%,
        var(--hologram-blue) 30%,
        transparent 40%,
        var(--hologram-blue) 50%,
        transparent 60%,
        var(--hologram-blue) 70%,
        transparent 80%,
        var(--hologram-blue) 90%,
        transparent 100%
    );
    opacity: 0.1;
    animation: hologramMove 20s linear infinite;
}

@keyframes hologramMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

.display-1 {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.display-2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.display-3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 1px;
}

.lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 300%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--neon-pink);
    animation: glitch-1 2s infinite linear alternate-reverse;
    z-index: -1;
}

.glitch::after {
    color: var(--neon-blue);
    animation: glitch-2 3s infinite linear alternate-reverse;
    z-index: -2;
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    10% { transform: translate(2px, -2px); }
    30% { transform: translate(-2px, 2px); }
    50% { transform: translate(2px, 2px); }
    70% { transform: translate(-2px, -2px); }
    90% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* ========================
   CONTAINER & SECTIONS
   ======================== */
.container {
    width: min(1200px, 95%);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    position: relative;
}

.section-head {
    margin-bottom: 4rem;
    text-align: center;
}

.section-head .sub {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--text-tertiary);
}

/* ========================
   TOP MARQUEE (CYBER TICKER)
   ======================== */
.cyber-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--marquee-height);
    background: linear-gradient(90deg, #000, var(--bg-secondary), #000);
    border-bottom: 1px solid var(--border-color);
    z-index: 2000;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.ticker-content {
    display: flex;
    animation: tickerMove 40s linear infinite;
    white-space: nowrap;
    padding: 0 20px;
}

.ticker-item {
    display: flex;
    align-items: center;
    margin: 0 40px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticker-item i {
    color: var(--neon-blue);
    margin-right: 10px;
    font-size: 1rem;
}

.ticker-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 50%;
    margin: 0 15px;
    box-shadow: 0 0 10px var(--neon-blue);
}

@keyframes tickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================
   NAVBAR (HOLOGRAM)
   ======================== */
.navbar {
    position: fixed;
    top: var(--marquee-height);
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(5, 5, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.2);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 10px 15px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 243, 255, 0.1) 50%, transparent 70%);
    animation: logoShine 3s infinite linear;
}

@keyframes logoShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.logo-img {
    width: 180px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
    z-index: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 5px;
}

.nav-link {
    position: relative;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--neon-blue);
    box-shadow: inset 0 0 10px rgba(0, 243, 255, 0.2);
}

.nav-link.active {
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

/* NAV CONTROLS */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: rgba(0, 243, 255, 0.05);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.icon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.icon-btn:hover::before {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}

.icon-btn:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    transform: translateY(-2px);
}

.nav-cta {
    padding: 12px 25px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 243, 255, 0.5);
}

.mobile-toggle {
    display: none;
}

/* MOBILE MENU */
.mobile-panel {
    display: none;
    position: fixed;
    top: calc(var(--marquee-height) + var(--navbar-height));
    left: 0;
    right: 0;
    background: rgba(5, 5, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    z-index: 999;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
    margin-top: calc(var(--marquee-height) + var(--navbar-height));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-description {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    color: white;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 243, 255, 0.5);
}

.btn-secondary {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--neon-blue);
}

.btn-secondary:hover {
    background: rgba(0, 243, 255, 0.2);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.stat {
    padding: 20px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-fast);
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================
   WORK SECTION
   ======================== */
.work-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 20px;
}

.work-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.filter-btn.active {
    background: rgba(0, 243, 255, 0.1);
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.search-box {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    min-width: 300px;
}

.search-box i {
    color: var(--neon-blue);
    margin-right: 10px;
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.video-card:hover::before {
    opacity: 1;
}

.video-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: all var(--transition-fast);
}

.video-card:hover .video-play {
    opacity: 1;
}

.video-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.video-tag {
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-blue);
}

.video-content {
    padding: 20px;
}

.video-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.video-description {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

/* ========================
   GALLERY SECTION
   ======================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 243, 255, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

/* ========================
   SERVICES SECTION
   ======================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all var(--transition-base);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--neon-blue);
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-tertiary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--neon-blue);
    font-size: 0.8rem;
}

/* ========================
   PROCESS SECTION
   ======================== */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--neon-blue), transparent);
}

.process-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-item:nth-child(odd) {
    flex-direction: row;
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-content {
    flex: 1;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    position: relative;
}

.process-item:nth-child(odd) .process-content {
    margin-right: 30px;
    text-align: right;
}

.process-item:nth-child(even) .process-content {
    margin-left: 30px;
    text-align: left;
}

.process-step {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.process-item:nth-child(odd) .process-step {
    right: -25px;
}

.process-item:nth-child(even) .process-step {
    left: -25px;
}

.process-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--neon-blue);
}

.process-description {
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ========================
   PRICING SECTION
   ======================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
}

.pricing-card.popular {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.pricing-card.popular::before {
    content: 'POPULAR';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--neon-blue);
    color: black;
    padding: 5px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-tertiary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--neon-blue);
    margin-right: 10px;
}

/* ========================
   FAQ SECTION
   ======================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item.active {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.faq-question {
    width: 100%;
    padding: 20px 30px;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--neon-blue);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
    color: var(--text-tertiary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 500px;
}

.faq-icon {
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--neon-blue);
}

/* ========================
   CONTACT SECTION
   ======================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.contact-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-list {
    list-style: none;
    margin-bottom: 30px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.contact-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-text p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ========================
   FOOTER
   ======================== */
footer {
    background: rgba(5, 5, 10, 0.9);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-tertiary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
}

.footer-link:hover {
    color: var(--neon-blue);
}

.footer-copyright {
    text-align: center;
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================
   MODALS
   ======================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: min(90%, 800px);
    background: rgba(20, 20, 35, 0.95);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 243, 255, 0.3);
    transform: translateY(30px);
    transition: transform var(--transition-base);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 243, 255, 0.05);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
}

.modal-close {
    width: 40px;
    height: 40px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

.modal-body {
    padding: 30px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.image-container {
    text-align: center;
}

.image-container img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--radius-lg);
}

/* ========================
   BACK TO TOP
   ======================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.5);
}

/* ========================
   MOUSE EFFECT
   ======================== */
.mouse-effect {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-blue), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s;
}

.mouse-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-blue);
    pointer-events: none;
    z-index: 9998;
    opacity: 0.5;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 1200px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-item {
        flex-direction: row !important;
    }
    
    .process-content {
        margin-left: 80px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .process-step {
        left: 5px !important;
        right: auto !important;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-panel .nav-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .nav-controls .nav-cta {
        display: none;
    }

    .mobile-cta {
        text-align: center;
        display: block;
        margin-bottom: 20px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-panel.active {
        display: block;
    }
    
    .work-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-box {
        width: 100%;
        min-width: auto;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 2.5rem;
    }
    
    .display-2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .video-grid,
    .gallery-grid,
    .services-grid,
    .pricing-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-item {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }
    
    .process-content {
        margin: 0 0 20px 0 !important;
        text-align: center !important;
        width: 100%;
    }
    
    .process-step {
        position: static;
        transform: none;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .logo-img {
        width: 140px;
        height: 40px;
    }
    
    .mobile-panel .nav-links {
        padding: 0 10px;
    }
}

/* ========================
   UTILITY CLASSES
   ======================== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add this to your existing CSS file */
.footer-copyright {
    text-align: center;
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-copyright p {
    line-height: 1.6;
}

.prodo-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    display: inline-block;
    margin-left: 5px;
}

.prodo-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--neon-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.prodo-link:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(157, 0, 255, 0.5);
}

.prodo-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background: var(--neon-purple);
}

/* Optional: Add a small icon before the link */
.prodo-link::before {
    content: '⚡';
    margin-right: 5px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-copyright {
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}