/* Base Styles */
:root {
    --primary-color: #5cb85c;
    --secondary-color: #3d8b3d;
    --accent-color: #8bc34a;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: var(--transition);
}

#header.scrolled {
    padding: 10px 0;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 150px;
}

.logo img {
    width: 100%;
}

.main-menu {
    display: flex;
}

.main-menu li {
    margin-left: 25px;
}

.main-menu a {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-menu a:hover {
    color: var(--primary-color);
}

.main-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin-bottom: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: rgba(92, 184, 92, 0.05);
    padding: 150px 0 80px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Services Section */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(92, 184, 92, 0.1);
    border-radius: 50%;
}

.service-icon img {
    width: 40px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
    color: var(--primary-color);
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Pricing Section */
.pricing {
    background-color: rgba(92, 184, 92, 0.05);
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: white;
    border-radius: 15px;
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background-color: var(--light-color);
    position: relative;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-image {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid white;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0 5px;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.pricing-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-action {
    padding: 0 30px 30px;
    text-align: center;
}

/* Premium card highlighting */
.pricing-card.premium {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.premium .pricing-header {
    background-color: rgba(92, 184, 92, 0.15);
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonials-slider {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.testimonial {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    background-color: white;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* About Us Section */
.about {
    background-color: rgba(92, 184, 92, 0.05);
}

.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    margin: 15px 0 0;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Schedule Section */
.schedule {
    background-color: white;
}

.schedule-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    background-color: var(--light-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.schedule-table {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.schedule-header {
    display: grid;
    grid-template-columns: 80px repeat(7, 1fr);
    background-color: var(--dark-color);
    color: white;
    padding: 15px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 80px repeat(7, 1fr);
    border-bottom: 1px solid var(--border-color);
}

.schedule-time, .schedule-day {
    padding: 15px;
    font-weight: 500;
    text-align: center;
}

.schedule-class {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
}

.schedule-class:hover:not(.empty) {
    background-color: rgba(92, 184, 92, 0.1);
}

.schedule-class.fytoterapi {
    background-color: rgba(92, 184, 92, 0.1);
    color: var(--secondary-color);
}

.schedule-class.ortterapi {
    background-color: rgba(139, 195, 74, 0.1);
    color: #689f38;
}

.schedule-class.detox {
    background-color: rgba(0, 150, 136, 0.1);
    color: #00796b;
}

/* Newsletter Section */
.newsletter {
    background-color: rgba(92, 184, 92, 0.1);
    padding: 80px 0;
}

.newsletter .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.newsletter-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.newsletter-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 30px 0 0 30px;
    font-size: 16px;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.form-check input {
    width: 18px;
    height: 18px;
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(92, 184, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon img {
    width: 25px;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary-color);
}

.map-container {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: 80px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-links {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
}

.social-link img {
    width: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero .container,
    .about .container,
    .newsletter .container {
        flex-direction: column;
    }
    
    .hero-content,
    .about-content,
    .newsletter-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .pricing-card.premium {
        transform: scale(1);
    }
    
    .pricing-card.premium:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .schedule-header,
    .schedule-row {
        grid-template-columns: 80px repeat(3, 1fr);
    }
    
    .schedule-day:nth-child(n+5),
    .schedule-class:nth-child(n+5) {
        display: none;
    }
    
    .main-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .main-menu.active {
        left: 0;
    }
    
    .main-menu li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-group input[type="email"] {
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
        border-radius: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}