@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #0a0a0a;
    color: #00ffff;
    line-height: 1.6;
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: hidden;
}

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

/* Hero Section - Cyberpunk Style */
#hero {
    background: linear-gradient(135deg, #000000 0%, #1a0033 25%, #003366 50%, #000033 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    min-height: 430px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 60px #00ffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

#hero h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff00ff;
    text-shadow: 0 0 15px #ff00ff;
    margin-bottom: 1.5rem;
    animation: neonGlow 2s ease-in-out infinite alternate;
    animation-delay: 0.5s;
}

@keyframes neonGlow {
    from { text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor; }
    to { text-shadow: 0 0 20px currentColor, 0 0 30px currentColor, 0 0 40px currentColor; }
}

#hero p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #ffffff;
    opacity: 0.9;
}

#hero ul {
    list-style: none;
    margin-bottom: 2rem;
}

#hero ul li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #00ffff;
    position: relative;
    padding-left: 25px;
}

#hero ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff00ff;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000000;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.8);
}

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

section:nth-child(even) {
    background: linear-gradient(135deg, #001122 0%, #000033 100%);
}

section:nth-child(odd) {
    background: linear-gradient(135deg, #110033 0%, #220044 100%);
}

section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px #00ffff;
}

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

.specialist {
    background: rgba(0, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.specialist:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.specialist h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff00ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #ff00ff;
}

.specialist p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Subscription Form */
#subscribe {
    background: linear-gradient(135deg, #001a33 0%, #003366 100%);
    text-align: center;
}

#subscribe form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#subscribe input[type="email"] {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00ffff;
    color: #00ffff;
    padding: 15px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

#subscribe input[type="email"]:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

#subscribe input[type="email"]::placeholder {
    color: #666;
}

#subscribe button {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000000;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    font-family: 'Rajdhani', sans-serif;
}

#subscribe button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

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

.review {
    background: rgba(255, 0, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.review h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ffff;
}

.review p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product {
    background: rgba(0, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.product h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff00ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #ff00ff;
}

.product p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    margin-bottom: 1.5rem;
}

.product ul {
    list-style: none;
    text-align: left;
}

.product ul li {
    padding: 0.5rem 0;
    color: #ffffff;
    position: relative;
    padding-left: 25px;
}

.product ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

/* Article Highlight */
.article {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
    margin-top: 3rem;
}

.article h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #ff00ff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px #ff00ff;
    text-align: center;
}

.article p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #000033 0%, #001122 100%);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.address h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ffff;
}

.address p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.map iframe {
    border-radius: 10px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000000 0%, #001122 100%);
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid #00ffff;
}

footer p {
    color: #00ffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero h2 {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .specialists-grid,
    .reviews-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article {
        padding: 2rem;
    }

    .article h3 {
        font-size: 1.5rem;
    }

    .article p {
        font-size: 1.1rem;
    }

    #subscribe form {
        max-width: 100%;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #hero {
        min-height: 400px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero h2 {
        font-size: 1.3rem;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .specialist,
    .review,
    .product {
        padding: 1.5rem;
    }

    .article {
        padding: 1.5rem;
    }

    .price {
        font-size: 1.5rem;
    }
}
