/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cyberpunk Color Palette */
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-purple: #9d00ff;
    --neon-blue: #0099ff;
    --neon-green: #00ff41;
    --neon-yellow: #ffff00;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: #0f0f1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-neon: #00ffff;
    --border-neon: rgba(0, 255, 255, 0.3);
    --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3);
    --shadow-pink: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    --shadow-purple: 0 0 20px rgba(157, 0, 255, 0.5), 0 0 40px rgba(157, 0, 255, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

h1, h2, h3, .logo h1, .hero-content h2, .services h2, .about-text h2, .contact h2 {
    font-family: 'Orbitron', sans-serif;
}

/* Cyberpunk Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-neon);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3), inset 0 -2px 0 rgba(0, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    animation: neonGlow 3s ease-in-out infinite alternate, gradientShift 5s ease infinite;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes neonGlow {
    0% {
        filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.logo p {
    font-size: 0.875rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    letter-spacing: 3px;
    font-weight: 300;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
}

.nav-list a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4), inset 0 0 15px rgba(0, 255, 255, 0.1);
}

.nav-list a::before {
    content: '>';
    position: absolute;
    left: -10px;
    opacity: 0;
    color: var(--neon-cyan);
    transition: var(--transition);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.nav-list a:hover::before {
    opacity: 1;
    left: -5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 10px var(--neon-cyan);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 80%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.burger-menu:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    transition: var(--transition);
    transform-origin: center;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.burger-menu:hover span {
    background: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.1) 50%, transparent 100%);
    animation: scanLine 3s linear infinite;
    pointer-events: none;
}

@keyframes scanLine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h1,
.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    animation: gradientShift 5s ease infinite;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.hero-content h1::after,
.hero-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: expandLine 2s ease-in-out infinite;
}

@keyframes expandLine {
    0%, 100% {
        width: 100px;
    }
    50% {
        width: 200px;
    }
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    letter-spacing: 1px;
}

.hero-image {
    text-align: center;
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    overflow: visible;
}

.tools-3d-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.tool-3d {
    position: absolute;
    font-size: 3rem;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.tool-3d:hover {
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 1));
    transform: scale(1.2) !important;
}

.tool-1 {
    top: 10%;
    left: 20%;
    animation: float3d-1 8s ease-in-out infinite, rotate3d-y 15s linear infinite;
    color: var(--neon-cyan);
}

.tool-2 {
    top: 20%;
    right: 15%;
    animation: float3d-2 7s ease-in-out infinite, rotate3d-x 12s linear infinite;
    color: var(--neon-pink);
    font-size: 2.5rem;
}

.tool-3 {
    top: 50%;
    left: 10%;
    animation: float3d-3 9s ease-in-out infinite, rotate3d-z 18s linear infinite;
    color: var(--neon-purple);
    font-size: 2.8rem;
}

.tool-4 {
    top: 60%;
    right: 20%;
    animation: float3d-4 6s ease-in-out infinite, rotate3d-y 20s linear infinite reverse;
    color: var(--neon-cyan);
    font-size: 3.5rem;
}

.tool-5 {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation: float3d-5 8.5s ease-in-out infinite, rotate3d-x 14s linear infinite;
    color: var(--neon-green);
    font-size: 2.2rem;
}

.tool-6 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: float3d-6 7.5s ease-in-out infinite, rotate3d-z 16s linear infinite;
    color: var(--neon-yellow);
    font-size: 2rem;
}

/* 3D Floating Animations */
@keyframes float3d-1 {
    0%, 100% { 
        transform: translate3d(0, 0, 0) rotateY(0deg);
    }
    25% { 
        transform: translate3d(20px, -30px, 50px) rotateY(90deg);
    }
    50% { 
        transform: translate3d(-15px, -50px, 30px) rotateY(180deg);
    }
    75% { 
        transform: translate3d(25px, -20px, 40px) rotateY(270deg);
    }
}

@keyframes float3d-2 {
    0%, 100% { 
        transform: translate3d(0, 0, 0) rotateX(0deg);
    }
    33% { 
        transform: translate3d(-25px, 20px, 60px) rotateX(120deg);
    }
    66% { 
        transform: translate3d(20px, -25px, 40px) rotateX(240deg);
    }
}

@keyframes float3d-3 {
    0%, 100% { 
        transform: translate3d(0, 0, 0) rotateZ(0deg);
    }
    50% { 
        transform: translate3d(30px, 30px, 70px) rotateZ(180deg);
    }
}

@keyframes float3d-4 {
    0%, 100% { 
        transform: translate3d(0, 0, 0) rotateY(0deg);
    }
    25% { 
        transform: translate3d(-20px, 25px, 50px) rotateY(-90deg);
    }
    50% { 
        transform: translate3d(15px, -30px, 80px) rotateY(-180deg);
    }
    75% { 
        transform: translate3d(-25px, 15px, 40px) rotateY(-270deg);
    }
}

@keyframes float3d-5 {
    0%, 100% { 
        transform: translate3d(-50%, 0, 0) rotateX(0deg);
    }
    50% { 
        transform: translate3d(-50%, -40px, 100px) rotateX(180deg);
    }
}

@keyframes float3d-6 {
    0%, 100% { 
        transform: translate3d(-50%, 0, 0) rotateZ(0deg);
    }
    50% { 
        transform: translate3d(-50%, 20px, 60px) rotateZ(180deg);
    }
}

/* 3D Rotation Animations */
@keyframes rotate3d-y {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes rotate3d-x {
    0% { transform: rotateX(0deg); }
    100% { transform: rotateX(360deg); }
}

@keyframes rotate3d-z {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

/* Particles Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: particle-float 15s infinite;
    opacity: 0.6;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    background: var(--neon-cyan);
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.particle:nth-child(5) {
    left: 20%;
    animation-delay: 8s;
    background: var(--neon-cyan);
}

.particle:nth-child(6) {
    left: 80%;
    animation-delay: 10s;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateZ(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateZ(200px) scale(1.5);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--darker-bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.services h2::before,
.services h2::after {
    content: '[';
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    margin-right: 10px;
}

.services h2::after {
    content: ']';
    margin-left: 10px;
    margin-right: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 0;
    border: 2px solid var(--border-neon);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover::before {
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% {
        opacity: 0;
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-neon);
    background: rgba(15, 15, 26, 0.8);
}

.service-card i {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
    transition: var(--transition);
}

.service-card:hover i {
    color: var(--neon-pink);
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.8));
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
    box-shadow: 0 0 20px var(--neon-pink);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    position: relative;
}

.about-text h2::before {
    content: '>';
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    margin-right: 10px;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    padding: 0.75rem;
    border-left: 3px solid transparent;
    transition: var(--transition);
    color: var(--text-secondary);
}

.features li:hover {
    border-left-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.05);
    color: var(--text-primary);
    padding-left: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.features i {
    color: var(--neon-green);
    margin-right: 1rem;
    font-size: 1.25rem;
    filter: drop-shadow(0 0 5px rgba(0, 255, 65, 0.6));
    animation: pulse 2s ease-in-out infinite;
}

.about-image {
    text-align: center;
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.tech-icons-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.tech-icon {
    position: absolute;
    font-size: 3.5rem;
    filter: drop-shadow(0 0 20px currentColor);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: scale(1.3) !important;
    filter: drop-shadow(0 0 40px currentColor);
}

.tech-icon-1 {
    top: 10%;
    left: 20%;
    color: var(--neon-cyan);
    animation: float-tech-1 6s ease-in-out infinite, rotate-tech-y 10s linear infinite;
}

.tech-icon-2 {
    top: 20%;
    right: 25%;
    color: var(--neon-pink);
    font-size: 3rem;
    animation: float-tech-2 7s ease-in-out infinite, rotate-tech-x 12s linear infinite;
}

.tech-icon-3 {
    bottom: 25%;
    left: 15%;
    color: var(--neon-purple);
    font-size: 3.2rem;
    animation: float-tech-3 8s ease-in-out infinite, rotate-tech-z 14s linear infinite;
}

.tech-icon-4 {
    bottom: 15%;
    right: 20%;
    color: var(--neon-green);
    font-size: 2.8rem;
    animation: float-tech-4 6.5s ease-in-out infinite, rotate-tech-y 11s linear infinite reverse;
}

/* Tech Icons Animations */
@keyframes float-tech-1 {
    0%, 100% { 
        transform: translate3d(0, 0, 0) rotateY(0deg);
    }
    50% { 
        transform: translate3d(15px, -20px, 30px) rotateY(180deg);
    }
}

@keyframes float-tech-2 {
    0%, 100% { 
        transform: translate3d(0, 0, 0) rotateX(0deg);
    }
    50% { 
        transform: translate3d(-20px, 15px, 40px) rotateX(180deg);
    }
}

@keyframes float-tech-3 {
    0%, 100% { 
        transform: translate3d(0, 0, 0) rotateZ(0deg);
    }
    50% { 
        transform: translate3d(20px, 20px, 35px) rotateZ(180deg);
    }
}

@keyframes float-tech-4 {
    0%, 100% { 
        transform: translate3d(0, 0, 0) rotateY(0deg);
    }
    50% { 
        transform: translate3d(-15px, -15px, 25px) rotateY(-180deg);
    }
}

@keyframes rotate-tech-y {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes rotate-tech-x {
    0% { transform: rotateX(0deg); }
    100% { transform: rotateX(360deg); }
}

@keyframes rotate-tech-z {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--darker-bg);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    box-shadow: 0 0 20px var(--neon-purple);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(157, 0, 255, 0.5);
    position: relative;
}

.contact h2::before,
.contact h2::after {
    content: '//';
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
    margin-right: 10px;
}

.contact h2::after {
    margin-left: 10px;
    margin-right: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid transparent;
    transition: var(--transition);
    background: rgba(15, 15, 26, 0.5);
}

.contact-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(15, 15, 26, 0.8);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-top: 0.25rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
    transition: var(--transition);
}

.contact-item:hover i {
    color: var(--neon-pink);
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.8));
    transform: scale(1.2);
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Form Styles */
.contact-map {
    background: var(--card-bg);
    padding: 2rem;
    border: 2px solid var(--border-neon);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.contact-map:hover::before {
    left: 100%;
}

.contact-map h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    text-align: center;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    overflow: hidden;
    background: var(--darker-bg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: brightness(0.9) contrast(1.1);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: brightness(1) contrast(1.2);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.map-address {
    margin-top: 1rem;
    text-align: center;
    color: var(--neon-cyan);
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    letter-spacing: 1px;
    font-weight: 500;
}


/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--neon-cyan);
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: rgba(0, 255, 255, 0.1);
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.btn-primary:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.3);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-primary);
    padding: 3rem 0 2rem;
    border-top: 2px solid var(--border-neon);
    box-shadow: 0 -5px 30px rgba(0, 255, 255, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-pink), var(--neon-purple), transparent);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    position: relative;
}

.footer-links a::before {
    content: '>';
    position: absolute;
    left: -10px;
    opacity: 0;
    color: var(--neon-cyan);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -5px;
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        flex: 0 0 auto;
        max-width: calc(100% - 60px);
    }

    .logo h1 {
        font-size: 1.75rem;
    }

    .logo p {
        font-size: 0.75rem;
    }

    .nav {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .nav-list {
        display: none;
    }

    .burger-menu {
        display: flex;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 4px;
        transition: var(--transition);
        margin-left: auto;
    }

    .burger-menu:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-list.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        gap: 1.5rem;
        box-shadow: 0 10px 50px rgba(0, 255, 255, 0.3);
        z-index: 999;
        border-top: 2px solid var(--neon-cyan);
        border-bottom: 2px solid var(--neon-pink);
    }

    .nav-list.active a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition);
    }

    .nav-list.active a:hover {
        color: var(--accent-color);
        border-bottom-color: var(--accent-color);
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        gap: 1rem;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        text-align: center;
        word-wrap: break-word;
    }

    .hero-content h1::after,
    .hero-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .hero-content .btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 320px;
        align-self: center;
    }

    .hero-image {
        height: 300px;
        margin-top: 2rem;
    }

    .tool-3d {
        font-size: 2rem;
    }

    .tool-1 { font-size: 2.5rem; }
    .tool-2 { font-size: 2rem; }
    .tool-3 { font-size: 2.2rem; }
    .tool-4 { font-size: 2.8rem; }
    .tool-5 { font-size: 1.8rem; }
    .tool-6 { font-size: 1.5rem; }

    .services {
        padding: 60px 0;
    }

    .services h2 {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.75rem;
        text-align: center;
    }

    .service-card i {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .service-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .about {
        padding: 60px 0;
    }

    .about h2 {
        font-size: 2.25rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features li {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .about-image {
        height: 250px;
    }

    .tech-icon {
        font-size: 2.5rem;
    }

    .tech-icon-1 { font-size: 2.8rem; }
    .tech-icon-2 { font-size: 2.3rem; }
    .tech-icon-3 { font-size: 2.5rem; }
    .tech-icon-4 { font-size: 2rem; }

    .contact {
        padding: 60px 0;
    }

    .contact h2 {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .contact-item i {
        font-size: 1.25rem;
        margin-top: 0;
    }

    .contact-map {
        padding: 2rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .map-container {
        height: 350px;
    }

    .footer {
        padding: 2.5rem 0 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 0.75rem 0;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        flex: 0 0 auto;
        max-width: calc(100% - 50px);
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo p {
        font-size: 0.7rem;
    }

    .nav {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .burger-menu {
        margin-left: auto;
    }

    .burger-menu span {
        width: 20px;
        height: 2px;
    }

    .hero {
        padding: 100px 0 50px;
        text-align: center;
        overflow-x: hidden;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        padding: 0 20px;
        margin: 0 auto;
        box-sizing: border-box;
        position: relative;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        position: relative;
        left: 0;
        right: 0;
        transform: none;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        position: relative;
        left: 0;
        right: 0;
        transform: none;
        word-wrap: break-word;
        hyphens: auto;
        letter-spacing: 1px;
    }

    .hero-content h1::after,
    .hero-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
        position: relative;
        left: 0;
        right: 0;
        transform: none;
    }

    .hero-content .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
        box-sizing: border-box;
        position: relative;
        left: 0;
        right: 0;
        transform: none;
    }

    .hero-image {
        height: 250px;
        margin-top: 1.5rem;
    }

    .tool-3d {
        font-size: 1.5rem;
    }

    .tool-1 { font-size: 1.8rem; }
    .tool-2 { font-size: 1.5rem; }
    .tool-3 { font-size: 1.6rem; }
    .tool-4 { font-size: 2rem; }
    .tool-5 { font-size: 1.3rem; }
    .tool-6 { font-size: 1.2rem; }

    .services {
        padding: 50px 0;
    }

    .services h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 320px;
    }

    .service-card i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .about {
        padding: 50px 0;
    }

    .about h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-content {
        gap: 2rem;
    }

    .features {
        padding: 0;
    }

    .features li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        padding: 0.5rem 0;
    }

    .about-image {
        height: 200px;
    }

    .tech-icon {
        font-size: 2rem;
    }

    .tech-icon-1 { font-size: 2.2rem; }
    .tech-icon-2 { font-size: 1.8rem; }
    .tech-icon-3 { font-size: 2rem; }
    .tech-icon-4 { font-size: 1.6rem; }

    .contact {
        padding: 50px 0;
    }

    .contact h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-content {
        gap: 2.5rem;
    }

    .contact-info {
        gap: 1.25rem;
    }

    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .contact-map {
        padding: 1.5rem;
        margin: 0;
    }

    .contact-map h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .map-container {
        height: 300px;
    }

    .map-address {
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }

    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-logo h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links a {
        padding: 0.5rem 0;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        max-width: calc(100% - 45px);
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .hero .container {
        padding: 0 15px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .hero-content h1,
    .hero-content h2 {
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        font-size: 1.3rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-content h1::after,
    .hero-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-content p {
        text-align: center;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .contact-map {
        padding: 1rem;
    }

    .map-container {
        height: 250px;
    }
}

/* Cyberpunk Glitch Effect */
@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

.logo h1:hover,
.hero-content h2:hover {
    animation: glitch 0.3s ease-in-out;
}

/* Cyberpunk Scan Line Effect */
@keyframes scan {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    animation: scan 8s linear infinite;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* Mobile-specific improvements */

/* Safe area support for devices with notches */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .hero {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

/* Improve focus states for keyboard navigation */
.form-group input:focus,
.form-group textarea:focus,
.nav-list a:focus,
.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .service-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .service-card:active {
        transform: scale(0.98);
    }

    .btn:active {
        transform: scale(0.95);
    }

    .nav-list.active a:active {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --neon-cyan: #00ffff;
        --neon-pink: #ff00ff;
        --neon-purple: #9d00ff;
        --dark-bg: #000000;
        --darker-bg: #000000;
    }
}

/* Print styles */
@media print {
    .header,
    .burger-menu,
    .hero-image,
    .btn {
        display: none !important;
    }

    .hero {
        padding: 0;
        background: white !important;
        color: black !important;
    }

    .service-card,
    .contact-item {
        break-inside: avoid;
        border: 1px solid #000 !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.contact-item,
.about-text {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { 
    animation-delay: 0.1s; 
    border-color: rgba(0, 255, 255, 0.3);
}
.service-card:nth-child(2) { 
    animation-delay: 0.2s; 
    border-color: rgba(255, 0, 255, 0.3);
}
.service-card:nth-child(3) { 
    animation-delay: 0.3s; 
    border-color: rgba(157, 0, 255, 0.3);
}
.service-card:nth-child(4) { 
    animation-delay: 0.4s; 
    border-color: rgba(0, 255, 65, 0.3);
}
.service-card:nth-child(5) { 
    animation-delay: 0.5s; 
    border-color: rgba(0, 153, 255, 0.3);
}
.service-card:nth-child(6) { 
    animation-delay: 0.6s; 
    border-color: rgba(255, 255, 0, 0.3);
}

/* Cyberpunk corner brackets */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--neon-cyan);
    border-left: 2px solid var(--neon-cyan);
    opacity: 0;
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--neon-cyan);
    border-right: 2px solid var(--neon-cyan);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::after,
.service-card:hover::before {
    opacity: 1;
    box-shadow: 0 0 10px var(--neon-cyan);
}
