/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Modern Futuristic Color Palette */
    --future-black: #0a0a0b;
    --future-dark: #12141a;
    --future-darker: #1a1d26;
    --future-blue: #1e293b;
    --future-deep-blue: #0f172a;
    
    /* Modern Accent Colors */
    --accent-blue: #3b82f6;
    --accent-indigo: #6366f1;
    --accent-purple: #8b5cf6;
    --accent-teal: #14b8a6;
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    
    /* Futuristic Gradients */
    --future-gradient-1: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --future-gradient-2: linear-gradient(135deg, #14b8a6, #3b82f6);
    --future-gradient-3: linear-gradient(135deg, #6366f1, #14b8a6);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-accent: #3b82f6;
    --text-highlight: #8b5cf6;
    
    /* Glass Morphism */
    --glass-primary: rgba(248, 250, 252, 0.08);
    --glass-border: rgba(59, 130, 246, 0.2);
    --glass-shadow: rgba(59, 130, 246, 0.25);
    --glass-backdrop: rgba(30, 41, 59, 0.8);
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: 
        /* Subtle dot pattern */
        radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.15) 1px, transparent 0),
        /* Geometric mesh */
        linear-gradient(45deg, transparent 49%, rgba(59, 130, 246, 0.03) 50%, transparent 51%),
        /* Floating orbs */
        radial-gradient(800px 600px at 15% 25%, rgba(59, 130, 246, 0.08), transparent 50%),
        radial-gradient(600px 800px at 85% 75%, rgba(139, 92, 246, 0.06), transparent 50%),
        radial-gradient(400px 500px at 50% 0%, rgba(20, 184, 166, 0.05), transparent 50%),
        /* Base gradient */
        linear-gradient(180deg, var(--future-black) 0%, var(--future-dark) 50%, var(--future-darker) 100%);
    background-size: 40px 40px, 60px 60px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
    animation: subtleFloat 8s ease-in-out infinite alternate;
}

@keyframes subtleFloat {
    0% {
        background-position: 0 0, 0 0, 0% 0%, 100% 100%, 50% 50%, 0% 0%;
    }
    100% {
        background-position: 40px 40px, 60px 60px, 20% 10%, 80% 90%, 60% 40%, 0% 0%;
    }
}

/* Cyberpunk grid animation */
@keyframes gridPulse {
    0% {
        background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    }
    100% {
        background-size: 55px 55px, 55px 55px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    }
}

/* Futuristic particle overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(59, 130, 246, 0.4), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(139, 92, 246, 0.4), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(20, 184, 166, 0.4), transparent),
        radial-gradient(1px 1px at 60% 10%, rgba(59, 130, 246, 0.3), transparent),
        radial-gradient(2px 2px at 10% 80%, rgba(139, 92, 246, 0.3), transparent);
    background-size: 300px 300px, 250px 250px, 200px 200px, 350px 350px, 400px 400px;
    pointer-events: none;
    z-index: 1000;
    animation: particleFloat 20s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes scanLines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

@keyframes particleFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 0% 100%, 100% 0%, 50% 50%;
        transform: translateY(0px);
    }
    33% {
        background-position: 30% 30%, 70% 70%, 20% 80%, 80% 20%, 40% 60%;
        transform: translateY(-5px);
    }
    66% {
        background-position: 60% 10%, 40% 90%, 10% 60%, 90% 40%, 70% 30%;
        transform: translateY(5px);
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 25px;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(248, 250, 252, 0.05);
    overflow: hidden;
    animation: navFloat 6s ease-in-out infinite alternate;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.05) 50%,
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes navFloat {
    0% {
        box-shadow: 
            0 0 0 1px var(--glass-border),
            0 8px 32px rgba(59, 130, 246, 0.12),
            0 0 0 0 transparent;
        transform: translateY(0px);
    }
    100% {
        box-shadow: 
            0 0 0 1px rgba(59, 130, 246, 0.3),
            0 8px 32px rgba(59, 130, 246, 0.18),
            0 4px 16px rgba(139, 92, 246, 0.1);
        transform: translateY(-1px);
    }
}

.nav-container {
    padding: 12px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    position: relative;
    z-index: 2;
}

.nav-logo h2 {
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: -3px;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.nav-logo h2:hover {
    color: var(--text-highlight);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    transform: translateY(-1px);
}

.nav-logo span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 50px;
    border-radius: 15px;
    background: transparent;
    overflow: hidden;
    z-index: 3;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-primary);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: var(--text-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0,255,240,0.08), rgba(255,45,242,0.08));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for floating navbar */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

/* 3D background canvas */
#three-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

#three-bg canvas { width: 100%; height: 100%; display: block; }

/* Decorative camera graphic */
.camera-graphic {
    position: absolute;
    top: -30px;
    right: -30px;
    opacity: 0.25;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 12px rgba(0,255,240,0.6)) drop-shadow(0 0 24px rgba(255,45,242,0.35));
    transform: rotateX(15deg) rotateY(-25deg);
    transform-style: preserve-3d;
    animation: camFloat 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.camera-graphic .camera-svg { width: 260px; height: auto; }

@keyframes camFloat {
    0% { transform: rotateX(12deg) rotateY(-22deg) translateZ(0); }
    100% { transform: rotateX(18deg) rotateY(-28deg) translateZ(12px); }
}

/* Xerox photocopy effect card */
.xerox-card {
    position: relative;
    isolation: isolate;
    filter: contrast(1.25) saturate(0.85) grayscale(0.15);
}

.xerox-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: repeating-linear-gradient(
        180deg,
        rgba(0,0,0,0.12) 0px,
        rgba(0,0,0,0.12) 1px,
        transparent 2px,
        transparent 3px
    );
    mix-blend-mode: multiply;
    opacity: 0.45;
    z-index: -1;
    animation: scanPan 6s linear infinite;
    border-radius: 20px;
}

.xerox-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120px 80px at 20% 15%, rgba(255,255,255,0.25), transparent 60%),
                linear-gradient(120deg, rgba(255,255,255,0.12), transparent 60%);
    pointer-events: none;
    border-radius: 20px;
}

@keyframes scanPan {
    0% { background-position-y: 0px; }
    100% { background-position-y: 120px; }
}

/* Hero Brand Name Style 1 - Glowing Neon */
.hero-brand-name.style-1 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-teal), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    margin-bottom: 1rem;
    animation: neonPulse 3s ease-in-out infinite;
}

.brand-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(10px);
    opacity: 0.7;
    z-index: -1;
}

.brand-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--accent-teal);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.brand-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.3), transparent);
    animation: scan 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 20px rgba(59, 130, 246, 0.5)); }
    50% { filter: brightness(1.2) drop-shadow(0 0 30px rgba(20, 184, 166, 0.8)); }
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease;
    background: var(--future-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight {
    background: var(--future-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 16px 32px;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--future-gradient-1);
    color: var(--text-primary);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(248, 250, 252, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--future-gradient-2);
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.3),
        0 8px 24px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(248, 250, 252, 0.2);
}

.btn-secondary {
    background: var(--glass-primary);
    color: var(--text-accent);
    border-color: var(--glass-border);
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(248, 250, 252, 0.1);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.2),
        0 8px 24px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(248, 250, 252, 0.2);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 20px;
    z-index: 2;
}

.floating-card {
    background: var(--glass-primary);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    text-align: center;
    color: var(--text-primary);
    min-width: 260px;
    position: relative;
    overflow: hidden;
    animation: float 4.5s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(248, 250, 252, 0.1);
}

@keyframes cardGlow {
    0% {
        box-shadow: 
            0 0 20px rgba(0, 255, 255, 0.3),
            0 10px 30px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(0, 255, 255, 0.2),
            inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 
            0 0 30px rgba(0, 255, 255, 0.5),
            0 10px 30px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(0, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    }
}

.floating-card:nth-child(2) { animation-delay: .6s; }
.floating-card:nth-child(3) { animation-delay: 1.2s; }
.floating-card:nth-child(4) { animation-delay: 1.8s; }
.floating-card:nth-child(5) { animation-delay: 2.4s; }
.floating-card:nth-child(6) { animation-delay: 3s; }
.floating-card:nth-child(7) { animation-delay: 3.6s; }
.floating-card:nth-child(8) { animation-delay: 4.2s; }

.floating-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(28px) saturate(200%);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.2),
        0 8px 32px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(248, 250, 252, 0.2);
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(0, 255, 255, 0.4) 50%, 
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
}

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

.floating-card i { 
    font-size: 3rem; 
    margin-bottom: 1.5rem; 
    color: var(--text-accent); 
    background: var(--future-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.floating-card:hover i {
    color: var(--neon-pink);
    text-shadow: 
        0 0 5px var(--neon-pink),
        0 0 10px var(--neon-pink),
        0 0 15px var(--neon-pink);
    filter: drop-shadow(0 0 15px var(--neon-pink));
    transform: scale(1.1) rotateY(5deg);
}

.floating-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    color: var(--text-primary);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--future-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    position: relative;
}

@keyframes titleGlitch {
    0%, 90%, 100% {
        text-shadow: 
            0 0 5px var(--neon-cyan),
            0 0 10px var(--neon-cyan),
            0 0 15px var(--neon-cyan),
            0 0 20px var(--neon-cyan);
        transform: translateX(0);
    }
    2% {
        text-shadow: 
            2px 0 var(--neon-pink),
            -2px 0 var(--neon-cyan),
            0 0 5px var(--neon-cyan);
        transform: translateX(1px);
    }
    4% {
        text-shadow: 
            -1px 0 var(--neon-pink),
            1px 0 var(--neon-cyan),
            0 0 5px var(--neon-cyan);
        transform: translateX(-1px);
    }
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About Brand Name Style 2 - Matrix Digital */
.about-brand-name.style-2 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.brand-matrix {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}

.matrix-char {
    display: inline-block;
    background: var(--glass-primary);
    color: var(--accent-emerald);
    padding: 12px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    position: relative;
    animation: matrixFlicker 2s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.2),
        inset 0 0 20px rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
}

.matrix-char:nth-child(odd) {
    animation-delay: 0.5s;
}

.matrix-char:nth-child(even) {
    animation-delay: 1s;
}

.matrix-space {
    width: 20px;
    height: 50px;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    position: relative;
}

@keyframes matrixFlicker {
    0%, 90%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
    }
    5%, 15% {
        opacity: 0.7;
        text-shadow: 0 0 5px rgba(16, 185, 129, 0.4);
    }
}

/* About Section */
.about { background: transparent; }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    background: var(--future-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--glass-primary);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(248, 250, 252, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.2),
        0 8px 32px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(248, 250, 252, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat h4 {
    font-size: 2.5rem;
    background: var(--future-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: var(--text-muted);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0,255,240,0.08), rgba(255,45,242,0.08));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Front-only floating info card (no hover flip) */
.floating-info-card {
    width: 100%;
    max-width: 560px;
    height: 360px;
    border-radius: 20px;
    background: var(--glass-primary);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(248, 250, 252, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: float 5s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-info-card i {
    font-size: 3rem;
    background: var(--future-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.floating-info-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.floating-info-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.floating-info-card .front-map-link {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    background: var(--future-gradient-1);
    color: var(--text-primary);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 4px 16px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(248, 250, 252, 0.1);
    transition: all 0.3s ease;
}

.floating-info-card .front-map-link:hover {
    transform: translateY(-2px);
    background: var(--future-gradient-2);
    box-shadow: 
        0 8px 24px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(248, 250, 252, 0.2);
}

/* Map embed inside about card */
.map-embed {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    filter: grayscale(20%) contrast(1.1) brightness(0.9);
}

.map-caption {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 8px 14px;
    backdrop-filter: blur(8px);
}

.map-caption i { color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0,255,240,.6); }
.map-caption span { font-weight: 600; }
.map-caption .map-open {
    margin-left: 8px;
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 600;
}

/* Flip card styles */
.flip-card {
    width: 100%;
    max-width: 560px;
    height: 360px;
    perspective: 1200px;
}

.flip-card.floating { animation: float 5s ease-in-out infinite; }

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    border-radius: 20px;
}

.flip-card:hover .flip-inner,
.flip-card:focus-within .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    backface-visibility: hidden;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--card-glass);
    border: 1px solid var(--card-stroke);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.flip-front i { font-size: 3rem; color: var(--neon-cyan); text-shadow: 0 0 16px rgba(0,255,240,.6); }
.flip-front h3 { font-family: 'Orbitron', sans-serif; margin-top: .8rem; }
.flip-front p { color: var(--text-secondary); margin-top: .25rem; }
.flip-front .front-map-link {
    margin-top: 1rem;
    color: #0a0b10;
    text-decoration: none;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 0 14px rgba(0,255,240,.4), 0 0 18px rgba(255,45,242,.3);
}

.flip-back { transform: rotateY(180deg); padding: 0; position: relative; }
.card-hit-area {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: radial-gradient(600px 300px at 50% 50%, rgba(0,255,240,0.15), rgba(255,45,242,0.12) 40%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity .25s ease;
    border: 1px solid var(--card-stroke);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.04);
}
.card-hit-area span { padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.9); color: #0a0b10; font-weight: 800; letter-spacing: .5px; box-shadow: 0 0 14px rgba(0,255,240,.4), 0 0 18px rgba(255,45,242,.3); }
.flip-card:hover .card-hit-area, .flip-card:focus-within .card-hit-area { opacity: .95; }

/* Fallback visual when map embed is blocked */
.map-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0,255,240,0.08), rgba(255,45,242,0.08));
}
.map-fallback i { font-size: 2rem; color: var(--neon-cyan); text-shadow: 0 0 14px rgba(0,255,240,.6); }
.map-fallback p { color: var(--text-secondary); }

/* Studio Image Container */
.studio-image-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(248, 250, 252, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: float 5s ease-in-out infinite;
}

.studio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.studio-image-container:hover .studio-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(59, 130, 246, 0.8), 
        rgba(139, 92, 246, 0.8)
    );
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.studio-image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--text-primary);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.studio-image-container:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--future-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overlay-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.map-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Full-card button to open maps */
.full-map-link {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0a0b10;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, box-shadow .25s ease;
    font-weight: 800;
    letter-spacing: .5px;
}
.full-map-link span { padding: 10px 18px; background: rgba(255,255,255,.9); border-radius: 999px; }
.flip-card:hover .full-map-link,
.flip-card:focus-within .full-map-link { opacity: 0.92; pointer-events: auto; box-shadow: 0 0 28px rgba(0,255,240,.45), 0 0 32px rgba(255,45,242,.35) inset; cursor: pointer; }

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}


/* Contact Brand Name Style 3 - Holographic */
.contact-brand-name.style-3 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.hologram-brand {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.holo-layer {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: holoShift 4s ease-in-out infinite;
}

.holo-1 {
    color: rgba(59, 130, 246, 0.8);
    z-index: 1;
    animation-delay: 0s;
}

.holo-2 {
    color: rgba(139, 92, 246, 0.6);
    z-index: 2;
    animation-delay: 0.5s;
    filter: blur(1px);
}

.holo-3 {
    color: rgba(20, 184, 166, 0.4);
    z-index: 3;
    animation-delay: 1s;
    filter: blur(2px);
}

.brand-scan-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    margin: 1rem 0;
    animation: scanMove 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.brand-footer {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes holoShift {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.8;
    }
    25% {
        transform: translateX(-48%) translateY(-2px);
        opacity: 1;
    }
    50% {
        transform: translateX(-52%) translateY(1px);
        opacity: 0.6;
    }
    75% {
        transform: translateX(-49%) translateY(-1px);
        opacity: 0.9;
    }
}

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

/* Contact Section */
.contact {
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* map-container removed */

/* contact-form-section removed */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Trendy Navigation Bar Styling */
.trendy-nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.trendy-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 25px;
    padding: 12px 16px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(248, 250, 252, 0.05);
    overflow: hidden;
}

.trendy-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.05) 50%,
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    font-size: 1.4rem;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-primary);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
    opacity: 1;
}

.nav-item i {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.nav-item:hover i,
.nav-item.active i {
    color: var(--text-accent);
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
}

.nav-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.nav-item.active {
    color: var(--text-accent);
    background: var(--glass-primary);
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(248, 250, 252, 0.1);
}

.tooltip {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: var(--future-black);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--future-black);
}

.nav-item:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(5px);
}

.nav-indicator {
    position: absolute;
    bottom: -2px;
    left: 16px;
    width: 60px;
    height: 4px;
    background: var(--future-gradient-1);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    opacity: 0;
}

.contact-info {
    text-align: center;
    max-width: 500px;
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    background: var(--future-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Old CTA styling removed - now using trendy navigation bar */

/* Old contact button styling removed */

/* Contact buttons now use consistent btn-secondary styling */



.cta.wp .wp-number { 
    display: none; 
    font-weight: 800; 
    letter-spacing: .5px;
    position: relative;
    z-index: 3;
}

.cta.wp:hover .wp-label { display: none; }
.cta.wp:hover .wp-number { display: inline; }

/* Add subtle pulsing animation for extra 3D effect */
@keyframes pulse3d {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 16px rgba(0,0,0,0.2),
            0 4px 8px rgba(0,0,0,0.1),
            inset 0 1px 0 rgba(255,255,255,0.2),
            inset 0 -1px 0 rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 10px 20px rgba(0,0,0,0.25),
            0 6px 12px rgba(0,0,0,0.15),
            inset 0 1px 0 rgba(255,255,255,0.25),
            inset 0 -1px 0 rgba(0,0,0,0.25);
    }
}

.cta:focus {
    outline: none;
    animation: pulse3d 2s ease-in-out infinite;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* contact-form removed */

/* form-group removed */

/* inputs removed */

/* inputs focus removed */

/* textarea removed */

/* Footer */
.footer {
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
    color: var(--text-primary);
    padding: 3rem 0 1rem;
}

.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(--neon-cyan);
    text-shadow: 0 0 12px rgba(0,255,240,0.6);
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover { background: rgba(0,255,240,0.15); transform: translateY(-3px); box-shadow: 0 0 14px rgba(0,255,240,0.5); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Advanced cyberpunk effects overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: 
        repeating-linear-gradient(
            to bottom,
            rgba(0, 255, 255, 0.02),
            rgba(0, 255, 255, 0.02) 1px,
            transparent 2px,
            transparent 4px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 0, 128, 0.01) 20px,
            rgba(255, 0, 128, 0.01) 40px
        );
    mix-blend-mode: screen;
    opacity: 0.6;
    z-index: 999;
    animation: matrixRain 20s linear infinite;
}

@keyframes matrixRain {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 100px, 40px 40px; }
}

/* Tiny glitch text hover for titles */
.section-header h2:hover, .nav-logo h2:hover {
    animation: glitch 0.5s linear 1;
}

@keyframes glitch {
    0% { text-shadow: 2px 0 var(--neon-cyan), -2px 0 var(--neon-pink); }
    20% { text-shadow: -2px 0 var(--neon-cyan), 2px 0 var(--neon-pink); }
    40% { text-shadow: 2px 0 var(--neon-pink), -2px 0 var(--neon-cyan); }
    60% { text-shadow: -2px 0 var(--neon-pink), 2px 0 var(--neon-cyan); }
    80% { text-shadow: 2px 0 var(--neon-cyan), -2px 0 var(--neon-pink); }
    100% { text-shadow: 0 0 14px rgba(255,45,242,0.6); }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* 
     * MOBILE NAVIGATION: Navigation bar is completely hidden on mobile devices
     * This provides a cleaner, more focused mobile experience without navigation clutter
     */
    .navbar {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 11, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(59, 130, 246, 0.2);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        z-index: 9999;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        /* Remove top padding since navbar is hidden on mobile */
        padding-top: 2rem;
    }

    .hero-image {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1rem 10px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* Make hero MA KALLYANI brand title smaller on mobile */
    .brand-title {
        font-size: 2.2rem !important;
        letter-spacing: 4px !important;
        margin-bottom: 0.8rem;
    }

    .brand-subtitle {
        font-size: 0.8rem !important;
        letter-spacing: 2px !important;
    }

    .hero-buttons {
        display: none !important;
    }

    .floating-card { 
        padding: 1.2rem 1.4rem;
        min-width: 180px;
        max-width: 200px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Make MA KALLYANI text display in one line on mobile */
    .brand-matrix {
        font-size: 1.4rem;
        gap: 3px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: center;
        padding: 0 10px;
    }

    .matrix-char {
        padding: 6px 4px;
        font-size: 1.4rem;
        min-width: auto;
        flex-shrink: 0;
    }

    .matrix-space {
        width: 8px;
        height: auto;
        flex-shrink: 0;
    }


    /* map-container removed */

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

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

    /* Responsive image styling */
    .studio-image-container {
        height: 250px;
        max-width: 100%;
    }

    .overlay-content h3 {
        font-size: 1.2rem;
    }

    .overlay-content i {
        font-size: 2.5rem;
    }

    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    /* Ensure navigation is hidden on smaller screens too */
    .navbar {
        display: none !important;
    }

    /* Make MA KALLYANI smaller on 480px screens */
    .brand-matrix {
        font-size: 1.2rem !important;
        gap: 2px !important;
    }

    .matrix-char {
        padding: 5px 3px !important;
        font-size: 1.2rem !important;
    }

    .matrix-space {
        width: 6px !important;
    }

    /* Make hero brand title smaller on 480px screens */
    .brand-title {
        font-size: 1.8rem !important;
        letter-spacing: 3px !important;
    }

    .brand-subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 1.5px !important;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .floating-card {
        padding: 1rem;
        min-width: 140px;
        max-width: 160px;
        flex: 0 1 auto;
    }

    .floating-card i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .floating-card h3 {
        font-size: 0.9rem;
        line-height: 1.2;
    }
}

/* Extra small screens - optimize for very small phones */
@media (max-width: 360px) {
    .floating-card {
        min-width: 120px;
        max-width: 140px;
        padding: 0.8rem;
    }

    .floating-card i {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .floating-card h3 {
        font-size: 0.8rem;
    }

    .hero-image {
        gap: 0.6rem;
        padding: 0.5rem 5px;
    }

    /* Make MA KALLYANI even more compact on very small screens */
    .brand-matrix {
        font-size: 1.1rem;
        gap: 2px;
        padding: 0 5px;
    }

    .matrix-char {
        padding: 4px 3px;
        font-size: 1.1rem;
    }

    .matrix-space {
        width: 6px;
    }

    /* Make hero brand title smallest on very small screens */
    .brand-title {
        font-size: 1.5rem !important;
        letter-spacing: 2px !important;
    }

    .brand-subtitle {
        font-size: 0.6rem !important;
        letter-spacing: 1px !important;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}
