
.projects-quantum-hero {
    background: radial-gradient(circle at center, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.projects-quantum-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    animation: quantum-pulse 8s ease-in-out infinite;
}

/* Quantum Field Animation */
.quantum-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 217, 255, 0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(138, 43, 226, 0.03) 50%, transparent 100%);
    background-size: 100px 100px, 80px 80px;
    animation: quantum-drift 20s linear infinite;
}

.neural-matrix {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 217, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(138, 43, 226, 0.1) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    animation: neural-flow 15s ease-in-out infinite;
}

.holographic-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(0, 217, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-shift 25s linear infinite;
}

.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.data-streams::before,
.data-streams::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(0, 217, 255, 0.8), transparent);
    animation: data-flow 3s linear infinite;
}

.data-streams::before {
    left: 20%;
    animation-delay: 0s;
}

.data-streams::after {
    right: 30%;
    animation-delay: 1.5s;
}

/* Terminal Interface */
.quantum-terminal {
    background: rgba(0, 12, 24, 0.95);
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.3);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
}

.terminal-header {
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.1), rgba(138, 43, 226, 0.1));
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.control-btn.close { background: #ff5f57; }
.control-btn.minimize { background: #ffbd2e; }
.control-btn.maximize { background: #28ca42; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-cyan);
}

.terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
}

.terminal-line {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prompt {
    color: var(--accent-green);
    font-weight: 600;
}

.command {
    color: var(--accent-cyan);
}

.output {
    padding-left: 20px;
}

.success { color: var(--accent-green); }
.info { color: var(--accent-purple); }

/* Cyber Badge */
.cyber-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(0, 217, 255, 0.1), rgba(138, 43, 226, 0.1));
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-cyan);
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.cyber-badge:hover .badge-glow {
    left: 100%;
}

/* Quantum Title */
.quantum-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-display);
}

.title-main {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.glitch-subtitle {
    font-size: 1.4rem;
    color: var(--accent-green);
    font-weight: 400;
    position: relative;
    animation: subtle-glitch 4s infinite;
}

.quantum-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Quantum Buttons */
.btn-quantum {
    position: relative;
    background: linear-gradient(45deg, rgba(0, 217, 255, 0.1), rgba(138, 43, 226, 0.1));
    border: 2px solid rgba(0, 217, 255, 0.4);
    color: var(--text-primary);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-quantum:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.8);
    color: var(--text-primary);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.3);
}

.btn-quantum-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-quantum:hover .btn-quantum-glow {
    left: 100%;
}

.btn-particles {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 10px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 2s infinite;
}

/* Holographic Interface */
.quantum-categories {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
}

.quantum-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(138, 43, 226, 0.06) 0%, transparent 50%);
}

.holographic-interface {
    background: rgba(10, 20, 35, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.15);
    padding: 40px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.holographic-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 217, 255, 0.05) 50%, transparent 70%);
    animation: holo-sweep 8s ease-in-out infinite;
}

.interface-header {
    text-align: center;
    margin-bottom: 40px;
}

.holo-title {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    position: relative;
}

.title-icon {
    font-size: 2rem;
    animation: icon-pulse 2s ease-in-out infinite;
}

.title-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
    opacity: 0;
    animation: title-glow 3s ease-in-out infinite;
}

/* Simple Project Filters */
.project-filters-section {
    background: rgba(5, 15, 25, 0.95);
    backdrop-filter: blur(20px);
    position: relative;
}

.project-filters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    pointer-events: none;
}

.simple-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.filter-btn {
    background: rgba(10, 20, 35, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 15px;
    padding: 12px 24px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn:hover {
    border-color: rgba(0, 217, 255, 0.4);
    color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.15);
}

.filter-btn.active {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.5);
    color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.filter-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover .filter-glow,
.filter-btn.active .filter-glow {
    left: 100%;
}

/* Quantum Project Cards */
.quantum-projects-matrix {
    background: linear-gradient(180deg, #16213e 0%, #1a1a2e 50%, #0a0a0a 100%);
    min-height: 80vh;
    position: relative;
}

.quantum-projects-matrix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.04) 0%, transparent 60%);
}

.quantum-project-item {
    opacity: 0;
    transform: translateY(50px);
    animation: quantum-fade-in 0.8s ease forwards;
    animation-delay: var(--delay);
}

.quantum-project-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: all 0.6s ease;
}

.project-quantum-card {
    height: 100%;
    position: relative;
    cursor: pointer;
    transition: all 0.6s ease;
}

.project-quantum-card:hover {
    transform: translateY(-15px) rotateX(5deg);
}

/* 3D Holographic Frame */
.holo-frame {
    background: rgba(10, 20, 35, 0.95);
    border-radius: 20px;
    position: relative;
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    transition: all 0.6s ease;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.project-quantum-card:hover .holo-frame {
    box-shadow: 
        0 25px 60px rgba(0, 217, 255, 0.2),
        0 10px 30px rgba(138, 43, 226, 0.1),
        inset 0 0 0 1px rgba(0, 217, 255, 0.3);
    border-color: rgba(0, 217, 255, 0.25);
}

.holo-edges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.edge {
    position: absolute;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    opacity: 0;
    transition: all 0.4s ease;
}

.edge-top {
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
}

.edge-right {
    top: 0;
    right: 0;
    bottom: 0;
    width: 2px;
    transform: scaleY(0);
    transform-origin: top;
}

.edge-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
}

.edge-left {
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    transform: scaleY(0);
    transform-origin: bottom;
}

.project-quantum-card:hover .edge-top {
    opacity: 1;
    transform: scaleX(1);
    transition-delay: 0s;
}

.project-quantum-card:hover .edge-right {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.1s;
}

.project-quantum-card:hover .edge-bottom {
    opacity: 1;
    transform: scaleX(1);
    transition-delay: 0.2s;
}

.project-quantum-card:hover .edge-left {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.3s;
}

/* Project Visual Zone */
.project-visual-zone {
    height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.08) 0%,
        rgba(138, 43, 226, 0.06) 50%,
        rgba(16, 33, 62, 0.8) 100%);
}

.project-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 15px 15px 0 0;
    transition: transform 0.6s ease;
    background: rgba(10, 20, 35, 0.9);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.1) 0%,
        rgba(138, 43, 226, 0.08) 50%,
        rgba(16, 33, 62, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-quantum-card:hover .project-overlay {
    opacity: 1;
}

.project-quantum-card:hover .project-image {
    transform: scale(1.05);
}

.quantum-projection {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projection-layers {
    position: relative;
    width: 120px;
    height: 120px;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layer-1 {
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.2);
    animation: layer-rotate-1 20s linear infinite;
}

.layer-2 {
    background: rgba(138, 43, 226, 0.06);
    border: 1px solid rgba(138, 43, 226, 0.2);
    transform: scale(0.8);
    animation: layer-rotate-2 15s linear infinite reverse;
}

.layer-3 {
    background: rgba(16, 33, 62, 0.4);
    border: 1px solid rgba(0, 217, 255, 0.15);
    transform: scale(0.6);
    animation: layer-rotate-3 10s linear infinite;
}

.quantum-icon {
    font-size: 3rem;
    z-index: 5;
    position: relative;
}

.design-icon { color: var(--accent-purple); }
.dev-icon { color: var(--accent-cyan); }
.seo-icon { color: var(--accent-green); }

/* Data Visualization */
.data-visualization {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.data-points {
    position: relative;
    width: 100%;
    height: 100%;
}

.data-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: data-point-float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.data-point:nth-child(odd) {
    background: var(--accent-purple);
}

.data-point:nth-child(1) { top: 20%; left: 15%; }
.data-point:nth-child(2) { top: 30%; right: 20%; }
.data-point:nth-child(3) { bottom: 25%; left: 25%; }
.data-point:nth-child(4) { bottom: 35%; right: 15%; }
.data-point:nth-child(5) { top: 45%; left: 45%; }
.data-point:nth-child(6) { top: 60%; right: 40%; }

/* Holographic Overlay */
.holo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 12, 24, 0.95) 85%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-quantum-card:hover .holo-overlay {
    opacity: 1;
}

.tech-display {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-quantum-badge {
    background: rgba(0, 217, 255, 0.12);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 217, 255, 0.2);
    font-family: var(--font-mono);
}

/* Project Info Panel */
.project-info-panel {
    padding: 25px;
    background: rgba(10, 20, 35, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category-quantum {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-mono);
}

.category-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: quantum-pulse 2s ease-in-out infinite;
}

.featured-quantum {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
}

.featured-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: featured-glow 2s ease-in-out infinite;
}

.project-quantum-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.project-quantum-desc {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Holographic Buttons */
.btn-holo {
    position: relative;
    background: linear-gradient(45deg, rgba(0, 217, 255, 0.1), rgba(138, 43, 226, 0.1));
    border: 1px solid rgba(0, 217, 255, 0.4);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.btn-holo:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 217, 255, 0.8);
    color: var(--text-primary);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.3);
}

.btn-holo-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-holo:hover .btn-holo-glow {
    left: 100%;
}

.btn-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-cyan);
    opacity: 0;
    animation: scan-line 2s ease-in-out infinite;
}

/* Quantum Field Effect */
.quantum-field-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-quantum-card:hover .quantum-field-effect {
    opacity: 1;
}

/* Enhanced CTA Section */
.enhanced-cta-section {
    background: linear-gradient(180deg, #16213e 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.enhanced-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.04) 0%, transparent 60%);
}

.futuristic-cta-card {
    background: rgba(10, 20, 35, 0.9);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
}

.futuristic-cta-card:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 217, 255, 0.15);
    transform: translateY(-5px);
}

.cta-main-content {
    position: relative;
    z-index: 10;
}

.cta-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 8s infinite linear;
}

.floating-particles .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-particles .particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 2s; }
.floating-particles .particle:nth-child(3) { top: 40%; left: 80%; animation-delay: 4s; }
.floating-particles .particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 6s; }
.floating-particles .particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 1s; }

.energy-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: wave-pulse 4s ease-in-out infinite;
}

.wave-1 { width: 200px; height: 200px; animation-delay: 0s; }
.wave-2 { width: 350px; height: 350px; animation-delay: 1.3s; }
.wave-3 { width: 500px; height: 500px; animation-delay: 2.6s; }

.cta-header {
    margin-bottom: 2rem;
}

.pulse-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.pulse-icon i {
    font-size: 3rem;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
}

.pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    position: absolute;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-expand 2s ease-out infinite;
}

.pulse-ring:nth-child(1) { animation-delay: 0s; }
.pulse-ring:nth-child(2) { animation-delay: 0.7s; }
.pulse-ring:nth-child(3) { animation-delay: 1.4s; }

.cta-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.title-underline {
    position: relative;
    height: 4px;
    margin: 1rem auto;
    width: 100px;
}

.underline-core {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 2px;
}

.underline-glow {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.4), transparent);
    border-radius: 4px;
    filter: blur(2px);
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.enhanced-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 35px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(138, 43, 226, 0.15) 100%);
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 15px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-mono);
}

.enhanced-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 217, 255, 0.25);
    border-color: rgba(0, 217, 255, 0.6);
    color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
}

.btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
}

.btn-hologram {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-cta-btn:hover .btn-hologram {
    opacity: 1;
}

.btn-scan-line {
    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.6s ease;
}

.enhanced-cta-btn:hover .btn-scan-line {
    left: 100%;
}

/* Animations */
@keyframes quantum-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes quantum-drift {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(-20px); }
    75% { transform: translateX(-5px) translateY(10px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes neural-flow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes grid-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes data-flow {
    0% { transform: translateY(-100vh); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes subtle-glitch {
    0%, 90%, 100% { transform: translateX(0); }
    95% { transform: translateX(-2px); }
    97% { transform: translateX(2px); }
}

@keyframes particle-float {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-10px); }
}

@keyframes holo-sweep {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes title-glow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes quantum-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes layer-rotate-1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes layer-rotate-2 {
    from { transform: scale(0.8) rotate(0deg); }
    to { transform: scale(0.8) rotate(-360deg); }
}

@keyframes layer-rotate-3 {
    from { transform: scale(0.6) rotate(0deg); }
    to { transform: scale(0.6) rotate(360deg); }
}

@keyframes data-point-float {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-15px); opacity: 1; }
}

@keyframes featured-glow {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes scan-line {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(20px); }
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

@keyframes wave-pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

@keyframes pulse-expand {
    0% { width: 40px; height: 40px; opacity: 1; }
    100% { width: 80px; height: 80px; opacity: 0; }
}

@keyframes ring-rotate-1 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ring-rotate-2 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes ring-rotate-3 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes energy-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .quantum-title {
        font-size: 2.8rem;
    }
    
    .glitch-subtitle {
        font-size: 1.2rem;
    }
    
    .simple-filters {
        gap: 12px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .project-visual-zone {
        height: 250px;
    }
    
    .cta-quantum-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .quantum-title {
        font-size: 2.2rem;
    }
    
    .glitch-subtitle {
        font-size: 1rem;
    }
    
    .quantum-description {
        font-size: 1rem;
    }
    
    .simple-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .project-visual-zone {
        height: 200px;
    }
    
    .projection-layers {
        width: 100px;
        height: 100px;
    }
    
    .quantum-icon {
        font-size: 2.5rem;
    }
    
    .cta-quantum-title {
        font-size: 1.8rem;
    }
    
    .cta-quantum-desc {
        font-size: 1rem;
    }
    
    .holographic-interface {
        padding: 25px;
    }
    
    .futuristic-cta-card {
        padding: 40px 25px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .pulse-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .quantum-title {
        font-size: 1.8rem;
    }
    
    .quantum-terminal {
        margin: 0 10px;
    }
    
    .terminal-body {
        padding: 15px;
    }
    
    .simple-filters {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .filter-btn {
        width: 180px;
        text-align: center;
        padding: 10px 20px;
    }
    
    .project-info-panel {
        padding: 20px;
    }
    
    .project-quantum-title {
        font-size: 1.2rem;
    }
    
    .cta-quantum-title {
        font-size: 1.5rem;
    }
    
    .btn-portal {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

/* Quantum Modal Styles */
.quantum-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.quantum-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    animation: backdropFadeIn 0.4s ease;
}

.quantum-modal-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    z-index: 10001;
}

.quantum-modal-frame {
    background: linear-gradient(135deg, rgba(10, 20, 35, 0.95) 0%, rgba(16, 33, 62, 0.95) 100%);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 25px;
    max-width: 1000px;
    width: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
    box-shadow: 
        0 50px 100px rgba(0, 217, 255, 0.2),
        inset 0 0 0 1px rgba(0, 217, 255, 0.1);
    animation: modalSlideIn 0.5s ease;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
}

.modal-close-btn:hover {
    background: rgba(255, 50, 50, 0.2);
    border-color: rgba(255, 50, 50, 0.5);
    transform: scale(1.1);
}

.close-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.close-ring {
    position: absolute;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: closeRingPulse 2s infinite;
}

.close-ring:nth-child(1) { width: 40px; height: 40px; }
.close-ring:nth-child(2) { width: 60px; height: 60px; animation-delay: 0.5s; }
.close-ring:nth-child(3) { width: 80px; height: 80px; animation-delay: 1s; }

.quantum-modal-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    position: relative;
}

.modal-image-section {
    position: relative;
    width: 100%;
    max-height: 40vh;
    overflow: hidden;
}

.quantum-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.2);
    background: rgba(10, 20, 35, 0.8);
}

.modal-project-image {
    width: 100%;
    height: auto;
    max-height: 40vh;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 20px;
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0, 217, 255, 0.1) 2px,
        rgba(0, 217, 255, 0.1) 4px
    );
    animation: scanMove 3s linear infinite;
}

.modal-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quantum-header {
    text-align: center;
}

.category-badge {
    display: inline-block;
    background: rgba(0, 217, 255, 0.2);
    color: var(--accent-cyan);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: var(--font-mono);
    border: 1px solid rgba(0, 217, 255, 0.3);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quantum-divider {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 217, 255, 0.5) 50%,
        transparent 100%);
    margin: 1rem 0;
}

.divider-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.modal-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
}

.tech-matrix {
    text-align: center;
}

.tech-title {
    font-size: 1.3rem;
    color: var(--accent-purple);
    font-family: var(--font-mono);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tech-badge {
    background: rgba(138, 43, 226, 0.2);
    color: var(--accent-purple);
    padding: 0.7rem 1.2rem;
    border-radius: 15px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.2), transparent);
    transition: left 0.5s ease;
}

.tech-badge:hover::before {
    left: 100%;
}

@keyframes backdropFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes closeRingPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes scanMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 768px) {
    .quantum-modal-content {
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .modal-image-section {
        max-height: 35vh;
    }
    
    .modal-project-image {
        max-height: 35vh;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .modal-description {
        font-size: 0.9rem;
    }
    
    .tech-title {
        font-size: 1.1rem;
    }
    
    .tech-grid {
        gap: 0.5rem;
    }
    
    .tech-badge {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }
}

/* ===== FUTURISTIC FOOTER STYLES ===== */
.futuristic-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-quantum-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.footer-quantum-bg .quantum-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.footer-quantum-bg .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 12s infinite linear;
}

.footer-quantum-bg .particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.footer-quantum-bg .particle:nth-child(2) { top: 45%; left: 30%; animation-delay: 3s; }
.footer-quantum-bg .particle:nth-child(3) { top: 25%; left: 70%; animation-delay: 6s; }
.footer-quantum-bg .particle:nth-child(4) { top: 65%; left: 80%; animation-delay: 9s; }
.footer-quantum-bg .particle:nth-child(5) { top: 85%; left: 20%; animation-delay: 1.5s; }


/* Brand Section */
.footer-brand-section {
    text-align: center;
}

.brand-logo-container {
    display: inline-block;
    margin-bottom: 2rem;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}


.tech-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
}

/* Social Matrix */
.footer-social-matrix {
    margin-top: 2rem;
}

.social-title {
    color: var(--accent-purple);
    font-size: 0.9rem;
    font-family: var(--font-mono);
    margin-bottom: 1rem;
    text-align: center;
}

.social-quantum-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.quantum-social-btn {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(10, 20, 35, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.quantum-social-btn:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
}

.btn-quantum-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.quantum-social-btn:hover .btn-quantum-effect {
    left: 100%;
}

/* Section Titles */
.footer-section-title {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    font-family: var(--font-mono);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Navigation Links */
.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-quantum-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(10, 20, 35, 0.3);
    border: 1px solid transparent;
}

.nav-quantum-link:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(10, 20, 35, 0.6);
    transform: translateX(5px);
}

.link-icon {
    color: var(--accent-purple);
    font-family: var(--font-mono);
    font-weight: bold;
}

/* Tools Grid */
.footer-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.tool-quantum-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 12px;
    background: rgba(10, 20, 35, 0.4);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.tool-quantum-link:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(10, 20, 35, 0.7);
    transform: translateY(-2px);
}

.tool-quantum-link i {
    width: 16px;
    text-align: center;
    color: var(--accent-purple);
}

/* Contact Info */
.contact-quantum-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: rgba(10, 20, 35, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.contact-item:hover {
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(10, 20, 35, 0.6);
}

.contact-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
}

.contact-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    line-height: 1.2;
}

.contact-value {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.3;
    word-break: break-word;
}

.contact-value:hover {
    color: var(--accent-cyan);
}


/* Footer Bottom */
.footer-bottom-section {
    margin-top: 50px;
}

.copyright-quantum {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.copyright-symbol {
    color: var(--accent-purple);
    font-weight: bold;
}

.copyright-year {
    color: var(--accent-cyan);
    font-weight: 600;
}

.copyright-brand {
    color: var(--accent-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.footer-tech-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    font-family: var(--font-mono);
}

.tech-status {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.tech-version {
    color: var(--accent-purple);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Footer Animations */

}

/* Mobile Responsive */
@media (max-width: 768px) {
    .futuristic-footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo-img {
        width: 100px;
        height: auto;
    }
    
    .footer-section-title {
        font-size: 1rem;
        text-align: left;
    }
    
    .social-quantum-links {
        justify-content: flex-start;
    }
    
    .footer-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .copyright-quantum {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-tech-info {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .tech-description {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .footer-nav-links,
    .contact-quantum-info {
        gap: 8px;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-icon {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }
    
    .contact-value {
        font-size: 0.65rem;
    }
    
    .contact-label {
        font-size: 0.6rem;
    }
    
    .contact-item {
        padding: 5px 6px;
    }
}


/* ===== FUTURISTIC FOOTER STYLES ===== */
.futuristic-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-quantum-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.footer-quantum-bg .quantum-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.footer-quantum-bg .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 12s infinite linear;
}

.footer-quantum-bg .particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.footer-quantum-bg .particle:nth-child(2) { top: 45%; left: 30%; animation-delay: 3s; }
.footer-quantum-bg .particle:nth-child(3) { top: 25%; left: 70%; animation-delay: 6s; }
.footer-quantum-bg .particle:nth-child(4) { top: 65%; left: 80%; animation-delay: 9s; }
.footer-quantum-bg .particle:nth-child(5) { top: 85%; left: 20%; animation-delay: 1.5s; }

/* Brand Section */
.footer-brand-section {
    text-align: center;
}

.brand-logo-container {
    display: inline-block;
    margin-bottom: 2rem;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.tech-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
}

/* Social Matrix */
.footer-social-matrix {
    margin-top: 2rem;
}

.social-title {
    color: var(--accent-purple);
    font-size: 0.9rem;
    font-family: var(--font-mono);
    margin-bottom: 1rem;
    text-align: center;
}

.social-quantum-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.quantum-social-btn {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(10, 20, 35, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.quantum-social-btn:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
}

.btn-quantum-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.quantum-social-btn:hover .btn-quantum-effect {
    left: 100%;
}

/* Section Titles */
.footer-section-title {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    font-family: var(--font-mono);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Navigation Links */
.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-quantum-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(10, 20, 35, 0.3);
    border: 1px solid transparent;
}

.nav-quantum-link:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(10, 20, 35, 0.6);
    transform: translateX(5px);
}

.link-icon {
    color: var(--accent-purple);
    font-family: var(--font-mono);
    font-weight: bold;
}

/* Tools Grid */
.footer-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.tool-quantum-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 12px;
    background: rgba(10, 20, 35, 0.4);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.tool-quantum-link:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(10, 20, 35, 0.7);
    transform: translateY(-2px);
}

.tool-quantum-link i {
    width: 16px;
    text-align: center;
    color: var(--accent-purple);
}

/* Contact Info */
.contact-quantum-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: rgba(10, 20, 35, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.contact-item:hover {
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(10, 20, 35, 0.6);
}

.contact-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
}

.contact-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    line-height: 1.2;
}

.contact-value {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.3;
    word-break: break-word;
}

.contact-value:hover {
    color: var(--accent-cyan);
}

/* Footer Bottom */
.footer-bottom-section {
    margin-top: 50px;
}

.copyright-quantum {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.copyright-symbol {
    color: var(--accent-purple);
    font-weight: bold;
}

.copyright-year {
    color: var(--accent-cyan);
    font-weight: 600;
}

.copyright-brand {
    color: var(--accent-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.footer-tech-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    font-family: var(--font-mono);
}

.tech-status {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.tech-version {
    color: var(--accent-purple);
    font-weight: 600;
    font-size: 0.85rem;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 1; }
    50% { transform: translateY(-40px) translateX(-10px); opacity: 0.8; }
    75% { transform: translateY(-20px) translateX(15px); opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .futuristic-footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo-img {
        width: 100px;
        height: auto;
    }
    
    .footer-section-title {
        font-size: 1rem;
        text-align: left;
    }
    
    .social-quantum-links {
        justify-content: flex-start;
    }
    
    .footer-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .copyright-quantum {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-tech-info {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .tech-description {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .footer-nav-links,
    .contact-quantum-info {
        gap: 8px;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-icon {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }
    
    .contact-value {
        font-size: 0.65rem;
    }
    
    .contact-label {
        font-size: 0.6rem;
    }
    
    .contact-item {
        padding: 5px 6px;
    }
}