/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #7b68ee;
    --secondary-color: #6a5acd;
    --accent-color: #fb8500;
    --light-color: #f8f9fa;
    --dark-color: #333333;
    --grey-color: #6c757d;
    --light-grey: #e9ecef;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --border-radius: 5px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

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;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

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

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo span {
    color: var(--primary-color);
}

nav .nav-links {
    display: flex;
}

nav .nav-links li {
    margin-left: 1.5rem;
}

nav .nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav .nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

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

nav .nav-links a.active {
    color: var(--primary-color);
}

/* Mobile menu */
.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

#check {
    display: none;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../aasets/images/photo-1510894347713-fc3ed6fdf539.jpg') no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../aasets/images/photo-1667890786022-83bca6c4f4c2.jpg') no-repeat center center/cover;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Video Showcase Section */
.video-showcase {
    padding: 80px 0;
    background-color: var(--light-color);
}

.video-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center;
}

.video-container video {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.video-description {
    padding: 20px;
}

.video-description h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.video-description p {
    margin-bottom: 25px;
    color: var(--grey-color);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .video-container {
        grid-template-columns: 1fr;
    }
    
    .video-description {
        text-align: center;
    }
}

/* Featured Classes */
.featured-classes {
    padding: 80px 0;
}

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

.class-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.class-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.class-card:hover img {
    transform: scale(1.05);
}

.class-card .class-content {
    padding: 20px;
}

.class-card .class-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.class-card .tag {
    background-color: #f0f8ff;
    color: #4a90e2;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.class-card h3 {
    margin-top: 0;
    font-size: 22px;
    color: #333;
}

.class-card .class-info {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

.class-card .class-info i {
    margin-right: 5px;
    color: #6a9739;
}

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

/* Button Containers */
.buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.class-info .buttons {
    justify-content: flex-start;
}

/* Buy Now Button Styling */
.btn.buy-now {
    background-color: var(--accent-color);
}

.btn.buy-now:hover {
    background-color: #e07700;
}

.btn-small.buy-now {
    background-color: var(--accent-color);
    color: white;
}

.btn-small.buy-now:hover {
    background-color: #e07700;
    color: white;
}

.btn.learn-more {
    background-color: #4a90e2;
}

.btn.learn-more:hover {
    background-color: #3a7bc8;
}

/* Button styles for workshop cards */
.workshop-card .buttons {
    margin-top: 10px;
}

.btn-small {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #6a9739;
    color: white;
    text-align: center;
}

.btn-small:hover {
    background-color: #5a8329;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--light-grey);
    position: absolute;
    left: -10px;
    top: -20px;
    opacity: 0.5;
}

.author {
    font-weight: 700;
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../aasets/images/pexels-photo-3823075.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* About Page */
.about-story {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.philosophy-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.our-philosophy {
    padding: 5rem 0;
    background-color: var(--light-color);
}

/* Team Section */
.team {
    padding: 5rem 0;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.3rem;
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.team-member .social-icons {
    margin-bottom: 1.5rem;
}

/* Achievements */
.achievements {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
}

.achievements .section-title {
    color: white;
}

.achievements .section-title::after {
    background-color: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item .count {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Services Page */
.services-intro {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.services-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.class-types {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.class-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.class-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.class-image {
    height: 100%;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.class-details {
    padding: 2rem;
}

.tag {
    display: inline-block;
    background-color: var(--light-grey);
    color: var(--dark-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.class-benefits {
    margin: 1rem 0;
}

.class-benefits li {
    margin-bottom: 0.5rem;
}

.class-benefits i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
}

/* Membership Plans */
.membership {
    padding: 5rem 0;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.plan-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

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

.plan-header {
    background-color: var(--light-grey);
    padding: 2rem;
    text-align: center;
}

.plan-header h3 {
    margin-bottom: 0.5rem;
}

.plan-header .price {
    font-size: 2rem;
    color: var(--primary-color);
}

.plan-header .price span {
    font-size: 1rem;
    color: var(--grey-color);
}

.plan-features {
    padding: 2rem;
}

.plan-features ul li {
    margin-bottom: 1rem;
}

.plan-features i {
    margin-right: 0.5rem;
}

.plan-features .fa-check {
    color: var(--success-color);
}

.plan-features .fa-times {
    color: var(--danger-color);
}

.plan-card .btn {
    display: block;
    margin: 0 2rem 2rem;
    text-align: center;
}

.plan-card.featured {
    transform: scale(1.05);
    z-index: 1;
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--grey-color);
}

/* Workshops */
.workshops {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.workshop-card {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.workshop-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: white;
    min-width: 100px;
    text-align: center;
}

.month {
    font-size: 1.2rem;
    font-weight: 700;
}

.day {
    font-size: 2rem;
    font-weight: 700;
}

.workshop-details {
    padding: 1.5rem;
    flex-grow: 1;
}

.workshop-details h3 {
    margin-bottom: 0.5rem;
}

.instructor {
    color: var(--grey-color);
    margin-bottom: 1rem;
}

.time-location {
    margin: 1rem 0;
    color: var(--grey-color);
}

.workshop-details .price {
    margin-bottom: 1rem;
}

/* Private Sessions */
.private-sessions {
    padding: 5rem 0;
}

.private-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.private-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.benefits-list {
    margin: 1.5rem 0;
}

.benefits-list li {
    margin-bottom: 0.8rem;
}

.benefits-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.price-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

/* FAQ Page */
.faq-content {
    padding: 5rem 0;
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.category-btn {
    background-color: var(--light-grey);
    color: var(--dark-color);
    border: none;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    flex-grow: 1;
}

.toggle-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

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

.faq-item.active .faq-answer {
    display: block;
}

/* Still Have Questions */
.still-have-questions {
    padding: 5rem 0;
    background-color: var(--light-color);
    text-align: center;
}

.questions-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-option {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-option i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-content {
    padding: 5rem 0;
}

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

.contact-info {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.contact-info h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--accent-color);
}

.info-item h3 {
    color: white;
    margin-bottom: 0.3rem;
}

.social-media h3 {
    margin-bottom: 1rem;
    color: white;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-grey);
    border-radius: var(--border-radius);
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.map-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-placeholder {
    position: relative;
    height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.map-overlay p {
    margin-bottom: 1.5rem;
}

/* FAQ Preview */
.faq-preview {
    padding: 5rem 0;
}

.faq-preview p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-preview-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-preview-item h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.faq-preview-item i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Legal Pages */
.legal-content {
    padding: 5rem 0;
}

.legal-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.legal-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.legal-section h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-section h3 {
    margin: 1.5rem 0 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-contact h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: #aaa;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-contact .social-icons {
    margin-top: 1.5rem;
}

.footer-contact .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    color: white;
    transition: var(--transition);
}

.footer-contact .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s forwards;
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 1s ease-in;
}

.slide-in-right {
    animation: slideInRight 1s ease-in;
}

.zoom-in {
    animation: zoomIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .class-item {
        grid-template-columns: 1fr;
    }
    
    .class-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: white;
        top: 80px;
        left: -100%;
        text-align: center;
        padding-top: 2rem;
        transition: all 0.3s ease;
        flex-direction: column;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    #check:checked ~ .nav-links {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .contact-info, .contact-form {
        padding: 1.5rem;
    }
    
    .workshop-card {
        flex-direction: column;
    }
    
    .workshop-date {
        padding: 1rem;
        flex-direction: row;
    }
    
    .month, .day {
        margin: 0 0.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .benefit-card, .philosophy-card, .team-member, .plan-card, .contact-option {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links, .footer-contact {
        margin-top: 2rem;
    }
}

/* Yoga Benefits Section */
.yoga-benefits {
    padding: 80px 0;
    background: #f9f7fe;
}

.benefits-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.benefits-image {
    flex: 1;
    position: relative;
}

.benefits-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    border: 3px solid #6d28d9;
    z-index: 1;
    border-radius: 10px;
}

.benefits-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.benefits-content {
    flex: 1;
}

.benefits-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.benefits-list-detailed {
    margin: 30px 0;
}

.benefits-list-detailed li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.benefits-list-detailed i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #6d28d9;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
}

.benefits-list-detailed h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #444;
}

/* Yoga Philosophy Section */
.yoga-philosophy {
    padding: 80px 0;
}

.philosophy-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.philosophy-principles {
    margin: 30px 0;
}

.principle-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.principle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f1e9fe;
    border-radius: 50%;
    color: #6d28d9;
    font-size: 1.3rem;
}

.principle-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #444;
}

.yoga-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #6d28d9;
    border-left: 3px solid #6d28d9;
    padding-left: 20px;
    margin: 30px 0;
}

.yoga-quote cite {
    display: block;
    font-size: 0.9rem;
    margin-top: 10px;
    color: #666;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive styles for new sections */
@media (max-width: 991px) {
    .benefits-flex, .philosophy-flex {
        flex-direction: column;
    }
    
    .philosophy-flex {
        flex-direction: column-reverse;
    }
    
    .benefits-image, .benefits-content,
    .philosophy-image, .philosophy-content {
        width: 100%;
    }
    
    .classes-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .classes-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 576px) {
    .classes-grid {
        grid-template-columns: 1fr;
    }
    
    .yoga-benefits, .yoga-philosophy {
        padding: 60px 0;
    }
    
    .benefits-content h3, .philosophy-content h3 {
        font-size: 1.8rem;
    }
}

/* Service Styles */
/* Buttons in service cards */
.class-details .buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.service-details .buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.service-details .btn {
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-details .btn.learn-more {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.service-details .btn.learn-more:hover {
    background-color: var(--primary-color);
    color: white;
}

.service-details .btn.buy-now {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: white;
}

.service-details .btn.buy-now:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Make sure the buttons are responsive */
@media (max-width: 768px) {
    .service-details .buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .service-details .buttons .btn {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
} 