/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600;700&display=swap');

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

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

.container {
    padding: 0 20px;
    position: relative;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff0080);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff0080;
}

/* Hero Section - Block 1 */
.hero-section {
    min-height: 430px;
    background:
        linear-gradient(135deg,
            rgba(0, 255, 255, 0.1) 0%,
            rgba(255, 0, 128, 0.1) 25%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 255, 255, 0.1) 75%,
            rgba(255, 0, 128, 0.1) 100%
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.03) 2px,
            rgba(0, 255, 255, 0.03) 4px
        );
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 255, 255, 0.1),
        transparent
    );
    animation: scan 3s infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.hero-section h1 {
    background: linear-gradient(45deg, #00ffff, #ff0080, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-pulse 2s infinite alternate;
}

@keyframes glow-pulse {
    0% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    100% { text-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 40px rgba(255, 0, 128, 0.3); }
}

.hero-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #b0b0b0;
    max-width: 600px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #00ffff, #ff0080);
    color: #000;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.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 ease;
}

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

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

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

/* Products Section */
.products-section {
    background: linear-gradient(135deg, #1a0033, #000);
    border-top: 1px solid #ff0080;
    border-bottom: 1px solid #ff0080;
}

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

.product-card {
    background: linear-gradient(135deg, #0d1421, #1a0033);
    border: 1px solid #00ffff;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff0080);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

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

.price {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.product-card ul {
    list-style: none;
    margin-top: 20px;
}

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

.product-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff0080;
    font-size: 0.8rem;
}

/* Article Styling */
.investment-article {
    background: linear-gradient(135deg, #001122, #002244);
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.investment-article::before {
    content: '< ARTICLE >';
    position: absolute;
    top: -15px;
    left: 30px;
    background: #000;
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 15px;
    letter-spacing: 2px;
}

.investment-article h3 {
    color: #00ffff;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.investment-article p {
    margin-bottom: 20px;
    color: #d0d0d0;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #000, #1a001a);
    border-top: 1px solid #00ffff;
    border-bottom: 1px solid #00ffff;
}

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

.review-card {
    background: linear-gradient(135deg, #0a0a1a, #1a0a1a);
    border: 1px solid #ff0080;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 128, 0.2);
}

.review-stars {
    color: #ffcc00;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.reviewer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 0, 128, 0.3);
}

.reviewer strong {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
}

.reviewer span {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Specialists Section */
.specialists-section {
    background: linear-gradient(135deg, #001100, #000022);
}

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

.specialist-card {
    background: linear-gradient(135deg, #0f0f1f, #001122);
    border: 1px solid #00ffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.15);
}

.position {
    color: #ff0080;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credentials {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: #00ffff;
    letter-spacing: 1px;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #2a0040, #000);
    border-top: 2px solid #ff0080;
    border-bottom: 2px solid #ff0080;
    text-align: center;
}

.subscription-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.subscription-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00ffff;
    border-radius: 30px;
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.subscription-form input[type="email"]:focus {
    border-color: #ff0080;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

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

.subscription-form button {
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff0080, #00ffff);
    color: #000;
    border: none;
    border-radius: 30px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.subscription-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.4);
}

/* Location Section */
.location-section {
    background: linear-gradient(135deg, #001122, #000);
    padding-bottom: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info h3 {
    color: #00ffff;
    margin-bottom: 10px;
}

.map-container {
    border: 3px solid #00ffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.map-container iframe {
    filter: hue-rotate(180deg) invert(90%) contrast(120%);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000011, #110000);
    border-top: 2px solid #ff0080;
    padding: 30px 0;
    text-align: center;
}

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

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

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

    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        min-height: 450px;
        padding: 40px 0;
        text-align: center;
    }

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

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

    .product-card {
        padding: 25px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .specialists-grid {
        grid-template-columns: 1fr;
    }

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

    .investment-article {
        padding: 25px;
        margin-top: 30px;
    }

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

    section {
        padding: 60px 0;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: 430px;
    }

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

    .product-card {
        padding: 20px;
    }

    .investment-article {
        padding: 20px;
    }

    .price {
        font-size: 1.5rem;
    }

    section {
        padding: 40px 0;
    }
}
