:root {
    --primary: #8B5CF6;
    --secondary: #D8B4FE;
    --accent: #F59E0B;
    --dark: #1E293B;
    --light: #FAF7F2;
    --rose: #F43F5E;
    --teal: #14B8A6;
    --indigo: #6366F1;
}

* {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

body {
    background-color: var(--light);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FAF7F2 0%, #F3E8FF 40%, #FEF3C7 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOutPreloader 0.8s ease-in-out 2s forwards;
}

@keyframes fadeOutPreloader {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.lotus-loader {
    width: 80px;
    height: 80px;
    position: relative;
}

.lotus-petal {
    position: absolute;
    width: 20px;
    height: 30px;
    background: linear-gradient(135deg, #8B5CF6, #D8B4FE);
    border-radius: 50% 50% 50% 0;
    left: 30px;
    top: 25px;
    transform-origin: 0 -20px;
    animation: lotusRotate 3s infinite ease-in-out;
}

.lotus-petal:nth-child(1) {
    animation-delay: 0s;
    transform: rotate(0deg);
}

.lotus-petal:nth-child(2) {
    animation-delay: 0.3s;
    transform: rotate(72deg);
}

.lotus-petal:nth-child(3) {
    animation-delay: 0.6s;
    transform: rotate(144deg);
}

.lotus-petal:nth-child(4) {
    animation-delay: 0.9s;
    transform: rotate(216deg);
}

.lotus-petal:nth-child(5) {
    animation-delay: 1.2s;
    transform: rotate(288deg);
}

@keyframes lotusRotate {

    0%,
    100% {
        transform: rotate(0deg) translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: rotate(180deg) translateY(-10px);
        opacity: 1;
    }
}

/* Floating particles */
.floating-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp 6s infinite ease-in-out;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-40px) translateX(15px) scale(1.4);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-80px) translateX(-10px) scale(1);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-40px) translateX(-20px) scale(1.3);
        opacity: 0.6;
    }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    max-height: 600px;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(160deg, #FAF7F2 0%, #F3E8FF 35%, #FEF3C7 70%, #FCE7F3 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-blob {
    position: absolute;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: blobMove 10s infinite ease-in-out;
}

.hero-blob:nth-child(1) {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.12), rgba(216, 180, 254, 0.18));
    top: -150px;
    right: -120px;
    animation-delay: 0s;
}

.hero-blob:nth-child(2) {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.1), rgba(244, 63, 94, 0.08));
    bottom: -80px;
    left: -80px;
    animation-delay: 3s;
}

.hero-blob:nth-child(3) {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, rgba(20, 184, 166, 0.1), rgba(99, 102, 241, 0.1));
    top: 40%;
    left: 55%;
    animation-delay: 5s;
}

@keyframes blobMove {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(40px, -40px) rotate(120deg) scale(1.1);
    }

    66% {
        transform: translate(-25px, 25px) rotate(240deg) scale(0.95);
    }
}

/* Cards */
.card-wellness {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.card-wellness::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #8B5CF6, #F59E0B, #14B8A6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    border-radius: 0 0 20px 20px;
}

.card-wellness:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.card-wellness:hover::before {
    transform: scaleX(1);
}

.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.card-glass:hover {
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-4px);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.45);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: #8B5CF6;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: 2.5px solid #8B5CF6;
    cursor: pointer;
    transition: all 0.35s ease;
    letter-spacing: 0.01em;
}

.btn-outline:hover {
    background: #8B5CF6;
    color: white;
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, #F59E0B, #F97316);
    color: white;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(245, 158, 11, 0.45);
}

/* Section Padding */
.section-padding {
    padding: 100px 20px;
}

.section-padding-sm {
    padding: 60px 20px;
}

/* Instructor Card */
.instructor-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.instructor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.18);
}

.instructor-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 90px;
    position: relative;
    overflow: hidden;
}

.gallery-img img {
    height: 200px;
    border-radius: 40px;
}

.instructor-image::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(0deg);
    }

    100% {
        transform: translateX(100%) rotate(0deg);
    }
}

/* Pricing Card */
.pricing-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 44px 32px;
    border: 2px solid rgba(139, 92, 246, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.pricing-card.featured {
    transform: scale(1.06);
    border-color: #8B5CF6;
    box-shadow: 0 30px 70px rgba(139, 92, 246, 0.2);
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF5FF 100%);
    z-index: 2;
}

.pricing-card:hover {
    border-color: #8B5CF6;
    box-shadow: 0 25px 55px rgba(139, 92, 246, 0.13);
    transform: translateY(-6px);
}

.pricing-card.featured:hover {
    transform: scale(1.07) translateY(-6px);
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    padding: 22px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s ease;
    gap: 16px;
}

.faq-question:hover {
    color: #8B5CF6;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
    flex-shrink: 0;
    background: rgba(139, 92, 246, 0.06);
    border-radius: 50%;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: rgba(139, 92, 246, 0.15);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #64748B;
    line-height: 1.7;
    padding-right: 40px;
}

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

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 40;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.5);
}

/* Stat Counter */
.stat-counter {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
}

/* Schedule Table */
.schedule-table {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(216, 180, 254, 0.06));
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--dark);
    border-bottom: 2px solid rgba(139, 92, 246, 0.12);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.02em;
}

.schedule-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.04);
    font-weight: 500;
}

.schedule-table tr {
    transition: background 0.3s ease;
}

.schedule-table tbody tr:hover {
    background: rgba(139, 92, 246, 0.04);
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(216, 180, 254, 0.08));
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #7C3AED;
    border: 1px solid rgba(139, 92, 246, 0.12);
    transition: all 0.3s ease;
}

.badge:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(216, 180, 254, 0.15));
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-1px);
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.13);
    transform: translateY(-8px);
}

.blog-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image .blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

/* Newsletter */
.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 2.5px solid rgba(139, 92, 246, 0.18);
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    transition: all 0.35s ease;
    font-weight: 500;margin-right: 2%;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.06);
}

/* Pulse ring for CTA */
.pulse-ring {
    animation: pulseRing 2.5s infinite;
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

/* Gallery image */
.gallery-img {
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    filter: brightness(0.95);
}

.gallery-img:hover {
    transform: scale(1.04);
    filter: brightness(1.05);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
    z-index: 5;
}

/* Responsive */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 16px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-4px);
    }

    .hero-blob:nth-child(1) {
        width: 280px;
        height: 280px;
    }

    .hero-blob:nth-child(2) {
        width: 200px;
        height: 200px;
    }

    .stat-counter {
        font-size: 2rem;
    }
}



/* Vinyasa hero */
.vinyasa-hero {
    background: linear-gradient(160deg, #FFF7ED 0%, #FFEDD5 30%, #FEF3C7 70%, #FCE7F3 100%);
    position: relative;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
}

.blob1 {
    width: 450px;
    height: 450px;
    background: #FBBF24;
    top: -120px;
    right: -100px;
}

.blob2 {
    width: 350px;
    height: 350px;
    background: #F97316;
    bottom: -80px;
    left: -80px;
}

.blob3 {
    width: 280px;
    height: 280px;
    background: #EF4444;
    top: 40%;
    left: 55%;
    opacity: 0.15;
}

.stat-counter {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F59E0B, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
}

/* Schedule table */
.schedule-table {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    background: white;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(249, 115, 22, 0.06));
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--dark);
    border-bottom: 2px solid rgba(245, 158, 11, 0.12);
    font-family: 'Outfit', sans-serif;
}

.schedule-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.04);
    font-weight: 500;
}

.schedule-table tbody tr:hover {
    background: rgba(245, 158, 11, 0.04);
}

.instructor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(245, 158, 11, 0.15);
}

.instructor-img {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.instructor-img::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.section-padding {
    padding: 80px 20px;
}

.privacy-content,.terms-content,.faq-content{
     background: white;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
button[type="submit"] {
    color: #fff !important;
}

.privacy-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1E293B;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    font-family: 'Outfit', sans-serif;
}

.privacy-content p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.privacy-content ul {
    list-style-type: disc;
    padding-left: 1.8rem;
    color: #334155;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.privacy-content a {
    color: #8B5CF6;
    text-decoration: underline;
}

.privacy-content a:hover {
    color: #7C3AED;
}


/* Cards & Buttons */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.12);
}

.blog-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.blog-img .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3));
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.45);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(216, 180, 254, 0.08));
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7C3AED;
    border: 1px solid rgba(139, 92, 246, 0.12);
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(139, 92, 246, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Hatha specific hero */
.hatha-hero {
    background: linear-gradient(160deg, #F5F3FF 0%, #EDE9FE 30%, #FEF9E7 70%, #FAF5FF 100%);
    position: relative;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}

.blob1 {
    width: 400px;
    height: 400px;
    background: #C084FC;
    top: -100px;
    right: -100px;
}

.blob2 {
    width: 300px;
    height: 300px;
    background: #FDE047;
    bottom: -50px;
    left: -50px;
}

.blob3 {
    width: 250px;
    height: 250px;
    background: #A78BFA;
    top: 40%;
    left: 60%;
}

.stat-counter {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
}

/* Schedule table */
.schedule-table {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    background: white;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(216, 180, 254, 0.06));
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--dark);
    border-bottom: 2px solid rgba(139, 92, 246, 0.12);
    font-family: 'Outfit', sans-serif;
}

.schedule-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.04);
    font-weight: 500;
}

.schedule-table tbody tr:hover {
    background: rgba(139, 92, 246, 0.04);
}

.instructor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.18);
}

.instructor-img {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.instructor-img::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Coaching hero */
.coaching-hero {
    background: linear-gradient(160deg, #F0FDFA 0%, #CCFBF1 30%, #FEF9E7 70%, #FCE7F3 100%);
    position: relative;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.2;
}

.blob1 {
    width: 400px;
    height: 400px;
    background: #2DD4BF;
    top: -100px;
    right: -100px;
}

.blob2 {
    width: 350px;
    height: 350px;
    background: #FBBF24;
    bottom: -80px;
    left: -80px;
}

.blob3 {
    width: 300px;
    height: 300px;
    background: #F472B6;
    top: 50%;
    left: 60%;
    opacity: 0.12;
}

.stat-counter {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0D9488, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
}

/* Process steps */
.step-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(13, 148, 136, 0.08);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: relative;
}

.step-card:hover {
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.2);
    transform: translateY(-5px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0D9488, #14B8A6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 16px;
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
}

.instructor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(13, 148, 136, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(13, 148, 136, 0.15);
}

.instructor-img {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.instructor-img::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Article Content Typography */
.article-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E293B;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.article-body p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-body ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: #334155;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-body blockquote {
    border-left: 4px solid #8B5CF6;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #475569;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.article-body .pose-card {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 1rem;
    border-left: 4px solid #8B5CF6;
}

.related-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.08);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(139, 92, 246, 0.1);
}

/* FAQ Category Tabs */
.faq-tab {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    background: white;
    color: #64748B;
}

.faq-tab.active {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    border-color: #8B5CF6;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.faq-tab:hover:not(.active) {
    background: #F5F3FF;
    color: #7C3AED;
    border-color: #D8B4FE;
}

.faq-item {
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    padding: 22px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s;
    gap: 16px;
}

.faq-question:hover {
    color: #8B5CF6;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s;
    background: rgba(139, 92, 246, 0.06);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: rgba(139, 92, 246, 0.15);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #64748B;
    line-height: 1.7;
    padding-right: 20px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-top: 14px;
}


/* Meditation hero */
.meditation-hero {
    background: linear-gradient(160deg, #F5F3FF 0%, #E0E7FF 30%, #F0F9FF 70%, #ECFDF5 100%);
    position: relative;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.2;
}

.blob1 {
    width: 400px;
    height: 400px;
    background: #A5B4FC;
    top: -100px;
    right: -100px;
}

.blob2 {
    width: 350px;
    height: 350px;
    background: #C4B5FD;
    bottom: -80px;
    left: -80px;
}

.blob3 {
    width: 300px;
    height: 300px;
    background: #6EE7B7;
    top: 50%;
    left: 60%;
    opacity: 0.15;
}

.stat-counter {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
}

/* Schedule table */
.schedule-table {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    background: white;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(139, 92, 246, 0.06));
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--dark);
    border-bottom: 2px solid rgba(99, 102, 241, 0.12);
    font-family: 'Outfit', sans-serif;
}

.schedule-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.04);
    font-weight: 500;
}

.schedule-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.04);
}

.instructor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.12);
}

.instructor-img {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.instructor-img::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


.terms-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1E293B;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    font-family: 'Outfit', sans-serif;
}

.terms-content p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.terms-content ul {
    list-style-type: disc;
    padding-left: 1.8rem;
    color: #334155;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.terms-content a {
    color: #8B5CF6;
    text-decoration: underline;
}

.terms-content a:hover {
    color: #7C3AED;
}

.activepage {
    color: #8855f5 !important;
    border-bottom: 2px solid;
}