@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: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
}

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

/* Cyber animations */
@keyframes neonGlow {
    0%, 100% { text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 15px #00ffff; }
    50% { text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff; }
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Hero Section */
.hero-section {
    min-height: 430px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #e94560 100%);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(83, 52, 131, 0.1) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px, 150px 150px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-50px, -50px); }
    50% { transform: translate(50px, -100px); }
    75% { transform: translate(-100px, 50px); }
    100% { transform: translate(0, 0); }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 1rem;
    animation: neonGlow 2s ease-in-out infinite alternate;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #00ffff, #0099cc);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    border: 2px solid #00ffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

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

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
    background: linear-gradient(45deg, #00ccff, #0077aa);
}

/* Section Styling */
section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

/* Reviews Section */
.reviews-section {
    background: #111111;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(0, 255, 255, 0.03) 50%, transparent 51%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-item {
    background: rgba(22, 33, 62, 0.3);
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #e94560);
}

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

.review-item h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    background: #1a1a2e;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: rgba(15, 52, 96, 0.4);
    padding: 40px 30px;
    border: 2px solid rgba(233, 69, 96, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e94560, #00ffff);
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 69, 96, 0.8);
    background: rgba(15, 52, 96, 0.6);
}

.service-item h3 {
    font-family: 'Orbitron', monospace;
    color: #e94560;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ffff;
    margin-top: 20px;
    animation: neonGlow 3s ease-in-out infinite alternate;
}

/* Article Section */
.article-section {
    margin-top: 60px;
    padding: 40px;
    background: rgba(83, 52, 131, 0.2);
    border: 2px solid rgba(83, 52, 131, 0.5);
    position: relative;
}

.article-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #533483, #e94560, #00ffff, #533483);
    z-index: -1;
    animation: borderRotate 4s linear infinite;
}

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

.article-section h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* Specialists Section */
.specialists-section {
    background: #0f3460;
    position: relative;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.specialist-item {
    background: rgba(26, 26, 46, 0.6);
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.specialist-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #e94560);
}

.specialist-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.7);
    background: rgba(26, 26, 46, 0.8);
}

.specialist-item h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.specialist-item p:first-of-type {
    color: #e94560;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form Section */
.contact-form-section {
    background: #16213e;
    position: relative;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    max-width: 600px;
    margin: 30px auto 0;
    justify-content: center;
    align-items: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.7);
}

.newsletter-form input[type="email"]::placeholder {
    color: #888;
}

.subscribe-button {
    padding: 15px 30px;
    background: linear-gradient(45deg, #e94560, #533483);
    color: #ffffff;
    border: 2px solid #e94560;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
    background: linear-gradient(45deg, #ff5577, #664499);
}

/* Contact Section */
.contact-section {
    background: #111111;
    position: relative;
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.contact-info strong {
    color: #00ffff;
}

.map-container {
    border: 2px solid rgba(0, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #e94560, #533483, #00ffff);
    z-index: -1;
    animation: borderRotate 6s linear infinite;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 30px 0;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    text-align: center;
}

.footer p {
    font-family: 'Orbitron', monospace;
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Headings */
h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

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

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

    .hero-section {
        min-height: 450px;
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-section h2 {
        font-size: 1.4rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .reviews-grid,
    .services-grid,
    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    .subscribe-button {
        width: 100%;
    }

    section {
        padding: 60px 0;
    }

    .service-item,
    .review-item,
    .specialist-item {
        padding: 25px;
    }

    .article-section {
        padding: 30px 20px;
        margin-top: 40px;
    }

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

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-section h2 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .service-item,
    .review-item,
    .specialist-item {
        padding: 20px;
    }

    .article-section {
        padding: 20px 15px;
    }

    .newsletter-form input[type="email"],
    .subscribe-button {
        padding: 12px 15px;
    }
}
