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

:root {
    --primary-color: #654321;
    --primary-dark: #4a3216;
    --secondary-color: #8b5a2b;
    --accent-color: #d4af37;
    --text-dark: #2c1810;
    --text-light: #6b4423;
    --bg-light: #faf8f3;
    --bg-cream: #f5f1e8;
    --green-primary: #4a7c59;
    --green-light: #7ba888;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(101, 67, 33, 0.1);
    --shadow-lg: 0 10px 40px rgba(101, 67, 33, 0.15);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', serif;
    font-weight: 700;
    line-height: 1.3;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo h1 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.1rem;
}

.logo .tagline {
    color: var(--accent-color);
    font-size: 0.75rem;
    font-style: italic;
}

.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav a:hover,
.nav a.active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav a.shop-btn {
    background: var(--green-primary);
    padding: 0.6rem 1.5rem;
}

.nav a.shop-btn:hover {
    background: var(--green-light);
}

.nav a.cta-btn {
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
}

.nav a.cta-btn:hover {
    background: #e6c450;
    transform: scale(1.05);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.slide-content .subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-style: italic;
    color: var(--accent-color);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #e6c450;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255,255,255,0.5);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-header .subtitle,
.subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
}

/* About Preview Section */
.about-preview {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.leaf-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.2;
}

.intro-text {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.intro-text-en {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.read-more-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
}

/* Services Section */
.services {
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--green-light);
    transform: translateX(5px);
}

/* Team Section */
.team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-cream);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.image-placeholder {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
}

.team-member h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.designation {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Preview */
.products-preview {
    background: var(--bg-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-icon {
    font-size: 4rem;
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.product-subtitle {
    padding: 0 1.5rem 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.product-desc {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.shop-now-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--green-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.shop-now-btn:hover {
    background: var(--green-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-content .subtitle {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.cta-desc-en {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 2rem !important;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    margin-top: 1rem;
}

.phone-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    background: #e6c450;
}

.phone-icon {
    font-size: 1.8rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-col a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-map {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.3); */
}

.footer-map iframe {
    display: block;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header .subtitle {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.page-header .header-desc {
    margin-top: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Treatment & Therapy Pages */
.intro-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.intro-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.subtitle-en {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.intro-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.text-en {
    color: var(--text-light);
    font-style: italic;
}

.treatment-grid,
.therapy-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.treatment-card,
.therapy-small-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--green-primary);
}

.treatment-card:hover,
.therapy-small-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.treatment-header,
.therapy-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.treatment-icon,
.therapy-icon-med {
    font-size: 3rem;
    background: var(--bg-cream);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.treatment-header h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.treatment-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.treatment-body ul {
    list-style: none;
    padding-left: 0;
}

.treatment-body li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--bg-cream);
    line-height: 1.6;
}

.treatment-body li:last-child {
    border-bottom: none;
}

.treatment-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Therapy Detail Cards */
.therapy-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.therapy-icon-large {
    font-size: 4rem;
    background: var(--bg-cream);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.therapy-title h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.therapy-detail-body {
    margin-top: 2rem;
}

.therapy-description,
.therapy-benefits,
.therapy-process {
    margin-bottom: 2rem;
}

.therapy-detail-body h3,
.therapy-detail-body h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.therapy-benefits ul {
    list-style: none;
    padding-left: 0;
}

.therapy-benefits li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.therapy-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: 700;
}

.benefit-tag {
    display: block;
    padding: 0.4rem 0.8rem;
    background: var(--bg-cream);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: var(--green-primary);
}

/* Shatkarma Section */
.shatkarma-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-cream);
    border-radius: 20px;
}

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

.shatkarma-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.shatkarma-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.shatkarma-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: var(--shadow);
}

.shatkarma-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.shatkarma-card p {
    line-height: 1.7;
}

/* Process Steps */
.process-section {
    margin-top: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: var(--bg-cream);
    border-radius: 15px;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.process-step h3 {
    margin-top: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

/* Products Page */
.products-header {
    padding: 5rem 0;
}

.products-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.product-showcase-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 2fr;
    transition: all 0.3s ease;
}

.product-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(101, 67, 33, 0.2);
}

.product-showcase-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.product-badge.natural {
    background: var(--green-primary);
    color: var(--white);
}

.product-badge.health {
    background: var(--secondary-color);
    color: var(--white);
}

.product-badge.premium {
    background: #9b59b6;
    color: var(--white);
}

.product-showcase-icon {
    font-size: 8rem;
}

.product-showcase-content {
    padding: 3rem;
}

.product-showcase-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-subtitle-en {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: var(--bg-cream);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--green-primary);
    font-weight: 600;
}

.product-description ul,
.product-benefits ul {
    list-style: none;
    padding-left: 0;
}

.product-description li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-description li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.product-description h4,
.product-benefits h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.product-order-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: var(--green-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.product-order-btn:hover {
    background: var(--green-light);
    transform: scale(1.05);
}

/* Why Choose Section */
.why-choose-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-cream);
    border-radius: 20px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.why-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

/* Order Process */
.order-process {
    margin-top: 4rem;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.order-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.order-step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.order-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-phone {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-phone:hover {
    transform: scale(1.05);
}

/* About Page Specific */
.about-content {
    padding: 3rem 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.approach-section,
.offerings-section,
.facilities-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-cream);
    border-radius: 20px;
}

.approach-section h2,
.offerings-section h2,
.facilities-section h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.approach-grid,
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card,
.offering-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.approach-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.offering-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-subtitle,
.item-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.team-detail-section {
    margin-top: 4rem;
}

.team-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.team-detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.team-detail-image .image-placeholder.large {
    width: 150px;
    height: 150px;
    font-size: 3.5rem;
}

.team-role {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.team-desc,
.team-desc-en {
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.facility-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Yoga Section */
.yoga-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-cream);
    border-radius: 20px;
}

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

.yoga-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.yoga-type-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.yoga-type-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.yoga-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shatkarma-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-showcase-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        align-items: flex-start;
    }
    
    .nav.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content .subtitle {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .about-grid,
    .about-intro,
    .treatment-grid,
    .approach-grid,
    .offerings-grid,
    .yoga-types {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .team-grid,
    .products-grid,
    .shatkarma-grid,
    .process-steps,
    .why-choose-grid,
    .order-steps,
    .facilities-grid,
    .therapy-grid-small {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2,
    .intro-block h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .team-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-showcase-grid {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo .tagline {
        font-size: 0.7rem;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slider-prev,
    .slider-next {
        padding: 0.5rem 1rem;
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.team-member,
.product-card,
.treatment-card,
.therapy-small-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Gallery Page Styles */
.gallery-slider-section {
    padding: 4rem 0;
    background: var(--bg-cream);
}

.gallery-section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.gallery-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-slider-container {
    position: relative;
    height: 500px;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.gallery-slide-caption h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-slider-prev,
.gallery-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    z-index: 10;
}

.gallery-slider-prev:hover,
.gallery-slider-next:hover {
    background: rgba(0,0,0,0.7);
}

.gallery-slider-prev {
    left: 20px;
}

.gallery-slider-next {
    right: 20px;
}

.gallery-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

.gallery-grid-section {
    padding: 4rem 0;
}

.gallery-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

#lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 1rem 2rem;
    border-radius: 25px;
}

/* Product Tiles Grid */
.product-tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.product-tile {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-tile:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-tile-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-tile:hover .product-tile-image img {
    transform: scale(1.1);
}

.product-tile-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.product-tile-badge.natural {
    background: var(--green-primary);
    color: var(--white);
}

.product-tile-badge.health {
    background: var(--secondary-color);
    color: var(--white);
}

.product-tile-badge.premium {
    background: #9b59b6;
    color: var(--white);
}

.product-tile-content {
    padding: 1.5rem;
}

.product-tile-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-tile-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.product-tile-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-tile-features span {
    font-size: 0.85rem;
    color: var(--green-primary);
    font-weight: 500;
}

.view-details-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    padding: 2rem;
    overflow-y: auto;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.modal-image {
    background: var(--bg-cream);
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

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

.modal-details {
    padding: 3rem;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-details h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.modal-badges {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    background: var(--bg-cream);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--green-primary);
    font-weight: 600;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.modal-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: 700;
}

.modal-section p {
    line-height: 1.8;
}

.modal-order-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: var(--green-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.modal-order-btn:hover {
    background: var(--green-light);
    transform: scale(1.02);
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .product-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        border-radius: 20px 20px 0 0;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .product-tiles-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-slider-container {
        height: 350px;
    }
    
    .modal-details {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-slider-container {
        height: 250px;
    }
}