/* Cyberpunk/Neon Aesthetic */

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

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 255, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Header */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff00ff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px #00ffff);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.company-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    text-decoration: none;
}

.company-name a {
    color: inherit;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.2), transparent);
    transition: left 0.5s;
}

nav a:hover::before {
    left: 100%;
}

nav a:hover {
    color: #ff00ff;
    border-color: #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
    text-shadow: 0 0 5px #ff00ff;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: #00ffff;
    text-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 40px #00ffff;
    margin-bottom: 1.5rem;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 40px #00ffff;
    }
    to {
        text-shadow: 
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 60px #00ffff;
    }
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #b0b0b0;
    font-weight: 300;
}

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

section:nth-child(even) {
    background: rgba(255, 0, 255, 0.02);
}

section:nth-child(odd) {
    background: rgba(0, 255, 255, 0.02);
}

h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff00ff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #ff00ff;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover::before {
    opacity: 1;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    border-color: #ff00ff;
}

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

.service-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border: 1px solid #ff00ff;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.service-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #00ffff;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.3);
    border-color: #00ffff;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-left: 4px solid #00ffff;
    border-radius: 10px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ff00ff;
    font-family: 'Orbitron', monospace;
    opacity: 0.3;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.testimonial cite {
    color: #00ffff;
    font-weight: 600;
    text-shadow: 0 0 5px #00ffff;
}

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

.team-member {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border: 1px solid #00ffff;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.team-member:hover::before {
    opacity: 1;
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px #ff00ff);
    position: relative;
    z-index: 1;
}

.team-member h3 {
    font-family: 'Orbitron', monospace;
    color: #ff00ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px #ff00ff;
    position: relative;
    z-index: 1;
}

.member-role {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #00ffff;
    position: relative;
    z-index: 1;
}

.team-member p:last-child {
    color: #c0c0c0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
    border-color: #ff00ff;
}

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

.news-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border: 1px solid #ff00ff;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00ffff, #ff00ff);
}

.news-item h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px #00ffff;
}

.news-date {
    color: #ff00ff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-item p:last-child {
    color: #c0c0c0;
    line-height: 1.6;
}

.news-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(255, 0, 255, 0.3);
}

/* Contact */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border: 1px solid #00ffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item h3 {
    font-family: 'Orbitron', monospace;
    color: #ff00ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #ff00ff;
}

.contact-item p {
    color: #c0c0c0;
    margin-bottom: 0.5rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    border-color: #ff00ff;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 2rem auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem;
    border: 1px solid #00ffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.legal-content h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ff00ff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #ff00ff;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: #00ffff;
    margin: 2rem 0 1rem 0;
    text-shadow: 0 0 5px #00ffff;
    text-align: left;
}

.legal-content h2::after {
    display: none;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #d0d0d0;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #c0c0c0;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content strong {
    color: #00ffff;
    text-shadow: 0 0 3px #00ffff;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #00ffff;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

footer p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

footer a {
    color: #ff00ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav {
        gap: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .stats-grid,
    .services-grid,
    .testimonials-grid,
    .team-grid,
    .news-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card,
    .team-member,
    .contact-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    nav a {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
}