/* Global Styles */
:root {
    --primary-color: #39796b;
    --secondary-color: #e9c4c7;
    --dark-color: #1e2a2a;
    --light-color: #f5f5f5;
    --background-color: #fff;
    --text-color: #333;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Quicksand', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-color);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--body-font);
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--dark-color);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.wave-divider {
    position: relative;
    width: 100%;
    height: 60px;
    margin-top: -1px;
}

.wave-divider svg {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
}

.wave-fill {
    fill: var(--light-color);
}

.wave-divider.inverted {
    transform: rotate(180deg);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    opacity: 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
    opacity: 1;
}

.contact-btn {
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
}

.contact-btn:hover {
    background-color: var(--dark-color);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 100vh;
    padding: 120px 5% 60px;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.9) 0%, rgba(233, 196, 199, 0.2) 100%);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 5%;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Essence Section */
.essence {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--light-color);
}

.essence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.essence-item {
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.essence-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.essence-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* Practices Section */
.practices {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--background-color);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.practice-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: white;
    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.practice-image {
    height: 200px;
    overflow: hidden;
}

.practice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.practice-card:hover .practice-image img {
    transform: scale(1.1);
}

.practice-card h3 {
    padding: 20px 20px 10px;
}

.practice-card p {
    padding: 0 20px;
    color: #666;
}

.practice-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px 20px;
}

.practice-benefits span {
    font-size: 0.8rem;
    padding: 5px 10px;
    background-color: rgba(57, 121, 107, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
}

/* Benefits Section */
.benefits {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--light-color);
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.benefits-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.benefits-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.benefits-list {
    flex: 1;
    min-width: 300px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.benefit-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 10px;
}

.benefit-text p {
    color: #666;
    margin-bottom: 0;
}

/* Chakras Section */
.chakras {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--background-color);
}

.chakras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.chakra-item {
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 3px solid var(--chakra-color, var(--primary-color));
}

.chakra-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.chakra-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.chakra-item h3 {
    color: var(--chakra-color, var(--primary-color));
}

/* Asanas Section */
.asanas {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--light-color);
}

.asanas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.asana-card {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.asana-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.asana-image {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.asana-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: var(--transition);
}

.asana-card:hover .asana-image img {
    transform: scale(1.05);
}

.asana-content {
    flex: 2;
    min-width: 300px;
    padding: 30px;
}

.asana-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.asana-benefits span {
    font-size: 0.85rem;
    padding: 5px 12px;
    background-color: rgba(57, 121, 107, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--background-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 20px;
}

.testimonial-stars {
    display: flex;
    margin-bottom: 15px;
}

.testimonial-content h3 {
    margin-bottom: 10px;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

/* Locations Section */
.locations {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--light-color);
}

.locations-map {
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.location-address {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.location-description {
    color: #666;
    margin-bottom: 20px;
}

.location-schedule {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.day {
    font-weight: 500;
}

.time {
    color: #666;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 80px 0 40px;
    background-color: var(--background-color);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 5px;
}

.contact-text p {
    color: #666;
    margin-bottom: 0;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: span 2;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background-color: #f9f9f9;
    font-family: var(--body-font);
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(57, 121, 107, 0.2);
}

textarea {
    resize: vertical;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #f1f1f1;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.full-width {
    width: 100%;
}

/* Footer */
.footer {
    position: relative;
    background-color: var(--dark-color);
    color: white;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
}

.footer h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(233, 196, 199, 0.3);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact, .footer-schedule {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-subscribe {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-subscribe input {
    flex: 1;
    min-width: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-subscribe input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe .btn {
    padding: 12px 20px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-designed {
    color: rgba(255, 255, 255, 0.5);
}

.footer-pattern {
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 100px 5% 60px;
    }
    
    .hero-content, .hero-image {
        padding: 0;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .benefits-container, .contact-container {
        justify-content: center;
    }
    
    .benefits-image, .benefits-list, .contact-info, .contact-form-container {
        text-align: center;
    }
    
    .benefit-item, .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-icon, .contact-icon {
        margin: 0 0 15px 0;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 5%;
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .asana-card {
        flex-direction: column;
    }
    
    .asana-image {
        max-width: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .container {
        width: 95%;
    }
    
    .hero {
        padding: 100px 5% 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .footer-subscribe {
        flex-direction: column;
    }
    
    .footer-subscribe .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 375px) {
    .logo span {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 90px 5% 30px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .practice-benefits, .asana-benefits {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .practice-benefits span, .asana-benefits span {
        margin-bottom: 5px;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Interactive Effects */
.logo svg {
    transition: var(--transition);
}

.logo:hover svg {
    transform: rotate(45deg);
}

.hero-content, .hero-image {
    animation: fadeIn 1s ease-out forwards;
}

.hero-image {
    animation-delay: 0.3s;
}

.btn:active {
    transform: scale(0.98);
}

.essence-item:nth-child(1):hover {
    background-color: rgba(57, 121, 107, 0.05);
}

.essence-item:nth-child(2):hover {
    background-color: rgba(233, 196, 199, 0.05);
}

.essence-item:nth-child(3):hover {
    background-color: rgba(57, 121, 107, 0.05);
}

.essence-item:nth-child(4):hover {
    background-color: rgba(233, 196, 199, 0.05);
}

.chakra-item:hover .chakra-icon svg {
    animation: pulse 2s infinite;
}

.practice-card:nth-child(odd):hover {
    border-left: 3px solid var(--primary-color);
}

.practice-card:nth-child(even):hover {
    border-left: 3px solid var(--secondary-color);
}

.testimonial-card:hover {
    background-color: rgba(57, 121, 107, 0.05);
}

.location-card:hover {
    background-color: rgba(57, 121, 107, 0.05);
}

.primary-btn:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 80%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.primary-btn:hover:after {
    opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-color);
}

/* Mandala Background Elements */
.essence::before,
.benefits::before,
.chakras::before,
.testimonials::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M150 25C150 25 167.5 75 150 75C132.5 75 150 25 150 25Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M150 25C150 25 167.5 75 185 75C202.5 75 150 25 150 25Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M150 25C150 25 132.5 75 115 75C97.5 75 150 25 150 25Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M150 25C150 25 115 75 85 58.5C55 42 150 25 150 25Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M150 25C150 25 185 75 215 58.5C245 42 150 25 150 25Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M150 275C150 275 167.5 225 150 225C132.5 225 150 275 150 275Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M150 275C150 275 167.5 225 185 225C202.5 225 150 275 150 275Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M150 275C150 275 132.5 225 115 225C97.5 225 150 275 150 275Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M150 275C150 275 115 225 85 241.5C55 258 150 275 150 275Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M150 275C150 275 185 225 215 241.5C245 258 150 275 150 275Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M25 150C25 150 75 167.5 75 150C75 132.5 25 150 25 150Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M25 150C25 150 75 167.5 75 185C75 202.5 25 150 25 150Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M25 150C25 150 75 132.5 75 115C75 97.5 25 150 25 150Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M25 150C25 150 75 115 58.5 85C42 55 25 150 25 150Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M25 150C25 150 75 185 58.5 215C42 245 25 150 25 150Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M275 150C275 150 225 167.5 225 150C225 132.5 275 150 275 150Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M275 150C275 150 225 167.5 225 185C225 202.5 275 150 275 150Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M275 150C275 150 225 132.5 225 115C225 97.5 275 150 275 150Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M275 150C275 150 225 115 241.5 85C258 55 275 150 275 150Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M275 150C275 150 225 185 241.5 215C258 245 275 150 275 150Z' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Ccircle cx='150' cy='150' r='100' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Ccircle cx='150' cy='150' r='75' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Ccircle cx='150' cy='150' r='50' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3Ccircle cx='150' cy='150' r='25' stroke='%2339796b' stroke-width='1' stroke-opacity='0.1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.essence::before {
    top: -150px;
    left: -150px;
    transform: rotate(15deg);
}

.benefits::before {
    bottom: -150px;
    right: -150px;
    transform: rotate(45deg);
}

.chakras::before {
    top: -150px;
    right: -150px;
    transform: rotate(75deg);
}

.testimonials::before {
    bottom: -150px;
    left: -150px;
    transform: rotate(105deg);
}

/* Energy Flow Lines */
.hero::after,
.practices::after,
.asanas::after,
.locations::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 C25,30 75,70 100,50' stroke='%2339796b' stroke-width='0.5' fill='none' stroke-opacity='0.1'/%3E%3Cpath d='M0,30 C25,10 75,50 100,30' stroke='%2339796b' stroke-width='0.5' fill='none' stroke-opacity='0.1'/%3E%3Cpath d='M0,70 C25,50 75,90 100,70' stroke='%2339796b' stroke-width='0.5' fill='none' stroke-opacity='0.1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

/* Lotus Pattern for Footer */
.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 30C60 30 70 45 60 60C50 45 60 30 60 30Z' fill='%23e9c4c7' fill-opacity='0.05'/%3E%3Cpath d='M60 30C60 30 50 45 40 45C50 30 60 30 60 30Z' fill='%23e9c4c7' fill-opacity='0.05'/%3E%3Cpath d='M60 30C60 30 70 45 80 45C70 30 60 30 60 30Z' fill='%23e9c4c7' fill-opacity='0.05'/%3E%3Cpath d='M30 60C30 60 45 70 60 60C45 50 30 60 30 60Z' fill='%23e9c4c7' fill-opacity='0.05'/%3E%3Cpath d='M30 60C30 60 45 50 45 40C30 50 30 60 30 60Z' fill='%23e9c4c7' fill-opacity='0.05'/%3E%3Cpath d='M30 60C30 60 45 70 45 80C30 70 30 60 30 60Z' fill='%23e9c4c7' fill-opacity='0.05'/%3E%3Cpath d='M90 60C90 60 75 70 60 60C75 50 90 60 90 60Z' fill='%23e9c4c7' fill-opacity='0.05'/%3E%3Cpath d='M90 60C90 60 75 50 75 40C90 50 90 60 90 60Z' fill='%23e9c4c7' fill-opacity='0.05'/%3E%3Cpath d='M90 60C90 60 75 70 75 80C90 70 90 60 90 60Z' fill='%23e9c4c7' fill-opacity='0.05'/%3E%3Cpath d='M60 90C60 90 50 75 60 60C70 75 60 90 60 90Z' fill='%23e9c4c7' fill-opacity='0.05'/%3E%3Cpath d='M60 90C60 90 70 75 80 75C70 90 60 90 60 90Z' fill='%23e9c4c7' fill-opacity='0.05'/%3E%3Cpath d='M60 90C60 90 50 75 40 75C50 90 60 90 60 90Z' fill='%23e9c4c7' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 120px 120px;
    opacity: 0.05;
    z-index: 0;
}

/* Additional Hover Effects */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
}

/* Custom Focus Styles */
*:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(57, 121, 107, 0.3);
}

/* Selection Color */
::selection {
    background-color: var(--primary-color);
    color: white;
}