@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;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: #00ffff;
    background: #0a0a0a;
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #00ff41;
    text-shadow: 0 0 20px #00ff41, 0 0 40px #00ff41;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Hero Section - Block 1 */
.hero-section {
    min-height: 430px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f0f23 75%, #000000 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 255, 255, 0.03) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(0, 255, 65, 0.03) 100px
        );
    pointer-events: none;
}

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

.cta-section {
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #00ff41, #00ffff);
    color: #000000;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.cta-button:hover {
    background: transparent;
    color: #00ff41;
    border: 2px solid #00ff41;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.8), inset 0 0 20px rgba(0, 255, 65, 0.1);
    transform: translateY(-2px);
}

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

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

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

.review-card {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

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

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
}

.rating {
    color: #00ff41;
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Specialists Section */
.specialists-section {
    background: #16213e;
}

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

.specialist-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.3);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.specialist-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #00ff41);
}

.specialist-card:hover {
    border-color: #00ff41;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.3);
}

/* Subscribe Section */
.subscribe-section {
    background: #0f0f23;
    text-align: center;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.form-group input[type="email"]::placeholder {
    color: rgba(0, 255, 255, 0.6);
}

.subscribe-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #00ffff, #00ff41);
    color: #000000;
    border: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.subscribe-button:hover {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

/* Products Section */
.products-section {
    background: #1a1a2e;
}

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

.product-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.product-card.featured {
    border-color: #00ff41;
    transform: scale(1.05);
}

.product-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff41, #00ffff);
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff41;
    margin: 20px 0;
    text-shadow: 0 0 15px #00ff41;
}

.product-card ul {
    list-style: none;
    margin: 30px 0;
}

.product-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.product-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ff41;
}

.popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00ff41, #00ffff);
    color: #000000;
    padding: 8px 20px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Article Section */
.article-section {
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid rgba(0, 255, 65, 0.3);
    padding: 40px;
    margin-top: 60px;
    position: relative;
}

.article-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff41, #00ffff, #00ff41);
}

.article-section h3 {
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    margin-bottom: 25px;
    text-align: center;
}

.article-section p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.address h3 {
    color: #00ff41;
    margin-bottom: 20px;
}

.map iframe {
    border: 2px solid rgba(0, 255, 255, 0.3);
    filter: hue-rotate(180deg) saturate(0.7) brightness(0.8);
}

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

.footer p {
    color: rgba(0, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 400px;
        padding: 40px 0;
    }

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

    .product-card.featured {
        transform: none;
    }

    .product-card.featured:hover {
        transform: translateY(-10px);
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    section {
        padding: 40px 0;
    }

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

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

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

    h2 {
        font-size: 1.6rem;
    }

    .hero-section {
        min-height: 350px;
        padding: 30px 0;
    }

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

    .article-section {
        padding: 20px;
    }

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00ff41, #00ffff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00ffff, #00ff41);
}

/* Selection Styling */
::selection {
    background: rgba(0, 255, 65, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(0, 255, 65, 0.3);
    color: #ffffff;
}
