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

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: hidden;
}

.container {
    padding: 0 20px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #64ffda;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
    margin-bottom: 10px;
}

h2 {
    font-size: 2.5rem;
    color: #90cdf4;
    text-shadow: 0 0 15px rgba(144, 205, 244, 0.3);
    margin-bottom: 30px;
}

h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.2rem;
    color: #a0aec0;
}

p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #e2e8f0;
}

/* Hero Section - Block 1 */
#hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-bottom: 3px solid #64ffda;
    overflow: hidden;
}

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

#hero .container {
    position: relative;
    z-index: 1;
}

#hero h2 {
    font-size: 1.8rem;
    color: #90cdf4;
    font-weight: 500;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2rem;
    color: #cbd5e0;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #64ffda 0%, #4fd1c7 100%);
    color: #1a202c;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: linear-gradient(135deg, #4fd1c7 0%, #38b2ac 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.4);
    border-color: #64ffda;
}

/* Specialists Section */
#specialists {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 80px 0;
    border-bottom: 2px solid #4a5568;
}

#specialists h2 {
    text-align: center;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

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

.specialist {
    background: rgba(74, 85, 104, 0.3);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #4a5568;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.specialist:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.2);
    border-color: #64ffda;
}

.specialist h3 {
    color: #64ffda;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

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

/* Services Section */
#services {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 80px 0;
    border-bottom: 2px solid #4a5568;
}

#services h2 {
    text-align: center;
    color: #90cdf4;
}

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

.service {
    background: rgba(45, 55, 72, 0.6);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #4a5568;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service:hover {
    transform: translateY(-5px);
    border-color: #90cdf4;
    box-shadow: 0 15px 35px rgba(144, 205, 244, 0.2);
}

.service h3 {
    color: #90cdf4;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.price {
    color: #ffd700 !important;
    font-family: 'Orbitron', monospace !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    margin-top: 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Article Styling */
.article {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #64ffda;
    margin-top: 50px;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.2);
}

.article h3 {
    color: #64ffda;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

.article p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 20px;
    text-align: justify;
}

/* Reviews Section */
#reviews {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 80px 0;
    border-bottom: 2px solid #4a5568;
}

#reviews h2 {
    text-align: center;
    color: #ffd700;
}

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

.review {
    background: rgba(26, 32, 44, 0.7);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #64ffda;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(100, 255, 218, 0.2);
}

.review p {
    font-style: italic;
    color: #cbd5e0;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.review h4 {
    color: #64ffda;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-align: right;
}

/* Subscribe Section */
#subscribe {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid #4a5568;
}

#subscribe h2 {
    color: #90cdf4;
}

#subscribe p {
    color: #cbd5e0;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    background: rgba(45, 55, 72, 0.8);
    border: 2px solid #4a5568;
    border-radius: 50px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input[type="email"]:focus {
    border-color: #64ffda;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
    background: rgba(45, 55, 72, 1);
}

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

.form-group button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #90cdf4 0%, #63b3ed 100%);
    color: #1a202c;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.form-group button:hover {
    background: linear-gradient(135deg, #63b3ed 0%, #4299e1 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(144, 205, 244, 0.3);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 80px 0;
    border-bottom: 2px solid #4a5568;
}

#contact h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 40px;
}

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

.contact-info p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.contact-info strong {
    color: #64ffda;
    font-family: 'Orbitron', monospace;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #4a5568;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    filter: grayscale(20%) contrast(1.2);
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a202c 0%, #0f1419 100%);
    padding: 30px 0;
    text-align: center;
    border-top: 3px solid #64ffda;
}

footer p {
    color: #a0aec0;
    font-size: 1rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

    #hero p {
        font-size: 1.1rem;
    }

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

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

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

    .article {
        padding: 30px 25px;
    }

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

    .form-group {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }

    .form-group input[type="email"],
    .form-group button {
        width: 100%;
        padding: 12px 20px;
    }

    section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    #hero {
        min-height: 430px;
    }

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

    .article p {
        text-align: left;
    }
}
