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

:root {
    --primary-color: #019c7c;
    --secondary-color: #009f00;
    --accent-color: #006332;
    --dark-bg: #0a0e0d;
    --light-text: #f0f4f3;
    --gray-text: #b8c4c1;
    --card-bg: #151918;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--light-text);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0e0d 0%, #1a2e27 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/main-foto.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.hero-abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-color);
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 50px;
    color: var(--gray-text);
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
}

.hero-feature span {
    font-size: 16px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(1, 156, 124, 0.4);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f1512 100%);
}

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

.about-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(1, 156, 124, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(1, 156, 124, 0.2);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon {
    width: 40px;
    height: 40px;
    color: white;
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.about-card p {
    color: var(--gray-text);
    line-height: 1.7;
}

/* Techniques Section */
.techniques-section {
    background: var(--dark-bg);
}

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

.technique-item {
    position: relative;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.technique-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.03);
}

.technique-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    z-index: 2;
}

.technique-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #333;
}

.technique-item h3 {
    padding: 20px 25px 10px;
    font-size: 22px;
    color: var(--primary-color);
}

.technique-item p {
    padding: 0 25px 25px;
    color: var(--gray-text);
    line-height: 1.6;
}

.external-link-wrapper {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    background: rgba(1, 156, 124, 0.1);
    border-radius: 10px;
}

.external-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.external-link:hover {
    color: var(--secondary-color);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, #0f1512 0%, var(--dark-bg) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(1, 156, 124, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(1, 156, 124, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 20px;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--gray-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Trial Section */
.trial-section {
    background: linear-gradient(135deg, #0a0e0d 0%, #1a2e27 100%);
    position: relative;
}

.trial-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trial-text {
    flex: 1;
}

.trial-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trial-text p {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.7;
}

.trial-benefits {
    list-style: none;
}

.trial-benefits li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--light-text);
}

.trial-form-wrapper {
    flex: 1;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.trial-form h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--light-text);
    text-align: center;
}

.trial-form input,
.trial-form select,
.trial-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(1, 156, 124, 0.3);
    border-radius: 8px;
    color: var(--light-text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
}

.trial-form input:focus,
.trial-form select:focus,
.trial-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Memberships Section */
.memberships-section {
    background: var(--dark-bg);
}

.memberships-content {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.membership-benefit {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(1, 156, 124, 0.2);
    transition: all 0.3s ease;
}

.membership-benefit:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.membership-benefit h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.membership-benefit p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Events Section */
.events-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f1512 100%);
}

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

.event-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(1, 156, 124, 0.2);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.date-day {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--light-text);
}

.event-info p {
    color: var(--gray-text);
    margin-bottom: 10px;
}

.event-time {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--dark-bg);
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(1, 156, 124, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-avatar svg {
    width: 35px;
    height: 35px;
    color: white;
}

.testimonial-content p {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--light-text);
    font-size: 18px;
}

.testimonial-author span {
    display: block;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 5px;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, #0f1512 0%, var(--dark-bg) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(1, 156, 124, 0.2);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(1, 156, 124, 0.1);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--light-text);
    font-weight: 500;
}

.faq-toggle {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--dark-bg);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(1, 156, 124, 0.3);
    border-radius: 8px;
    color: var(--light-text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0e0d 0%, #050706 100%);
    padding: 60px 0 30px;
    border-top: 2px solid var(--primary-color);
}

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

.footer-logo {
    width: 50px;
    margin-bottom: 15px;
}

.footer-desc {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(1, 156, 124, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(1, 156, 124, 0.3);
    border-radius: 25px;
    color: var(--light-text);
    font-family: 'Rajdhani', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.newsletter-form button svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 14, 13, 0.98);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-features {
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .trial-content {
        flex-direction: column;
    }
    
    .contact-form .form-row {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .logo-text {
        display: none;
    }
    
    .about-grid,
    .techniques-grid,
    .pricing-grid,
    .events-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}