/* Sacred Serenity Theme - White Light Wellness Studios */

/* Section Dividers - Wave & Spiritual */
.section-divider {
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 80"><path d="M0,40 Q300,10 600,40 T1200,40 L1200,80 L0,80 Z" fill="%23FEFEFE" opacity="0.8"/></svg>');
    background-size: cover;
    margin: -1px 0;
}

.section-divider-lotus {
    position: relative;
    height: 60px;
    overflow: hidden;
}

.section-divider-lotus::before {
    content: '🪷';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0.15;
}

/* Premium Background Decorations */
.spiritual-bg {
    position: relative;
    overflow: hidden;
}

.spiritual-bg::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 70, 193, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.spiritual-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Chakra Background Element */
.chakra-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%236B46C1" stroke-width="0.5" opacity="0.1"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23F59E0B" stroke-width="0.5" opacity="0.1"/><circle cx="50" cy="50" r="20" fill="none" stroke="%236B46C1" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

/* Gold Accent Lines */
.gold-accent {
    position: relative;
}

.gold-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--soft-gold), transparent);
    opacity: 0.3;
}

:root {
    /* Enhanced Color Palette */
    --primary-purple: #7C3AED;
    --deep-purple: #5B21B6;
    --soft-white: #FEFEFE;
    --burgundy: #991B1B;
    --soft-gold: #F59E0B;
    --light-purple: #F3E8FF;
    --accent-purple: #A78BFA;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --gradient-1: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    --gradient-2: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    --gradient-3: linear-gradient(135deg, #7C3AED 0%, #F59E0B 50%, #EC4899 100%);

    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Dancing Script', cursive;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 16px;
    --border-radius-small: 8px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(107, 70, 193, 0.1);
    --shadow-medium: 0 8px 30px rgba(107, 70, 193, 0.15);
    --shadow-strong: 0 12px 40px rgba(107, 70, 193, 0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--soft-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5), 0 0 20px rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5), 0 0 20px rgba(236, 72, 153, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(124, 58, 237, 0.7), 0 0 30px rgba(236, 72, 153, 0.5);
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.6), 0 0 40px rgba(236, 72, 153, 0.5);
    animation: none;
}

.btn-secondary {
    background: white;
    color: var(--primary-purple);
    border: 3px solid var(--primary-purple);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.btn-outline {
    background: white;
    color: var(--primary-purple);
    border: 3px solid var(--primary-purple);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
}

.btn-outline:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.6), 0 0 30px rgba(236, 72, 153, 0.4);
    border-radius: 16px;
}

.btn-social {
    background: white;
    border: 1px solid rgba(107, 70, 193, 0.2);
    color: var(--text-dark);
    gap: 8px;
    box-shadow: var(--shadow-soft);
}



/* Announcement Bar */
.announcement-bar {
    background: var(--gradient-1);
    color: white;
    padding: 14px 0;
    text-align: center;
    font-size: 0.95rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    backdrop-filter: blur(10px);
}

@keyframes announceGlow {
    0% { box-shadow: 0 2px 10px rgba(107, 70, 193, 0.3); }
    100% { box-shadow: 0 2px 20px rgba(107, 70, 193, 0.6); }
}

.announcement-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: textFloat 4s ease-in-out infinite;
}

@keyframes textFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.announcement-icons {
    display: flex;
    gap: 8px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.icon {
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.1);
}

/* Page Header Fix */
.page-header {
    padding: 180px 0 80px !important;
    margin-top: 0 !important;
    background: linear-gradient(135deg, rgba(243, 232, 255, 0.9), rgba(254, 254, 254, 0.95)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%237C3AED;stop-opacity:0.15" /><stop offset="50%" style="stop-color:%23EC4899;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23F59E0B;stop-opacity:0.15" /></linearGradient></defs><circle cx="150" cy="150" r="120" fill="url(%23grad)" opacity="0.4"/><circle cx="1050" cy="250" r="150" fill="url(%23grad)" opacity="0.3"/><circle cx="600" cy="80" r="90" fill="url(%23grad)" opacity="0.35"/></svg>');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--soft-white));
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--text-dark) !important;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--soft-gold), var(--primary-purple));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(107, 70, 193, 0.4);
}

.page-header p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-light) !important;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: none;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header {
        top: 0;
    }
    
    .page-header {
        padding: 140px 0 60px !important;
    }
    
    .page-header h1::after {
        width: 60px;
        height: 3px;
    }
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    align-items: center;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section - 4K Slideshow */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 3rem 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(107, 70, 193, 0.3);
    letter-spacing: -1px;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(245, 158, 11, 0.6);
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { left: 40%; top: 60%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(5) { left: 50%; top: 30%; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(6) { left: 60%; top: 70%; animation-delay: 5s; animation-duration: 17s; }
.particle:nth-child(7) { left: 70%; top: 50%; animation-delay: 2.5s; animation-duration: 14.5s; }
.particle:nth-child(8) { left: 80%; top: 25%; animation-delay: 4.5s; animation-duration: 16.5s; }
.particle:nth-child(9) { left: 90%; top: 65%; animation-delay: 1.5s; animation-duration: 13.5s; }
.particle:nth-child(10) { left: 15%; top: 45%; animation-delay: 3.5s; animation-duration: 15.5s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) translateX(50px) scale(1.5);
        opacity: 0.8;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) translateX(-30px) scale(0.5);
        opacity: 0;
    }
}

/* Coming Soon Banner Styles */
.coming-soon-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 5;
}

.coming-soon-content h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, white, var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-content p {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.coming-soon-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.coming-soon-features span:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Trust Bar */
.trust-bar {
    padding: 40px 0;
    background: var(--soft-white);
    border-bottom: 1px solid rgba(107, 70, 193, 0.1);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: var(--border-radius-small);
}

.trust-item:hover {
    background: var(--light-purple);
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.2);
    animation: pulse 1s ease-in-out infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
    text-shadow: none;
}

.section-header h2::before {
    content: '✨';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.section-header h2::after {
    content: '✨';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite 1.5s;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), var(--soft-gold), transparent);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Overview */
/* Services Overview */
.services-overview {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FEFEFE 0%, #F3E8FF 50%, #FEFEFE 100%);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="g1"><stop offset="0%" style="stop-color:%237C3AED;stop-opacity:0.05"/><stop offset="100%" style="stop-color:%237C3AED;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23g1)"/><circle cx="1000" cy="600" r="200" fill="url(%23g1)"/><circle cx="600" cy="100" r="100" fill="url(%23g1)"/></svg>');
    background-size: cover;
    opacity: 0.6;
    pointer-events: none;
}

.services-overview .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(124, 58, 237, 0.1);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.15), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover::after {
    opacity: 1;
    animation: rotate 20s linear infinite;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.3), 0 0 40px rgba(236, 72, 153, 0.2);
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(107, 70, 193, 0.3));
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    animation: float 2s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(107, 70, 193, 0.5));
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
}

/* About Preview */
.about-preview {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(107, 70, 193, 0.1) 50%, transparent 70%);
    z-index: 1;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Gallery Preview */
.gallery-preview {
    padding: var(--section-padding);
    background: var(--light-purple);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
 max-height: 500px; min-height: 400px;}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
    flex-shrink: 0;
 display: flex; align-items: center; justify-content: center;}

.gallery-slide img {
    width: 100%;
    height:  400px;
    object-fit: contain;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius-small);
    font-weight: 500;
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-prev:hover, .gallery-next:hover {
    background: white;
    box-shadow: var(--shadow-soft);
}

/* Practitioners Preview */
.practitioners-preview {
    padding: var(--section-padding);
}

/* Practitioners Home Section */
.practitioners-home {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--soft-white) 50%, var(--light-purple) 100%);
    position: relative;
    overflow: hidden;
}

.practitioners-home::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 L60,40 L90,40 L65,60 L75,90 L50,70 L25,90 L35,60 L10,40 L40,40 Z" fill="%23F59E0B" opacity="0.05"/></svg>');
    background-size: contain;
    pointer-events: none;
    animation: rotate 60s linear infinite;
}

.practitioners-home::after {
    content: '🌸';
    position: absolute;
    bottom: 10%;
    left: 10%;
    font-size: 4rem;
    opacity: 0.06;
    animation: float 8s ease-in-out infinite;
}

.practitioners-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.practitioner-card-home {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(124, 58, 237, 0.1);
}

.practitioner-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(236, 72, 153, 0.08));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.practitioner-card-home:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.25), 0 0 50px rgba(236, 72, 153, 0.15);
    border-color: var(--primary-purple);
}

.practitioner-card-home:hover::before {
    opacity: 1;
}

.practitioner-image-home {
    width: 180px;
    height: 240px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.practitioner-image-home::before { display: none; }

.practitioner-image-home::after {
    content: 'View Profile';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.practitioner-image-home.placeholder-home {
    background: linear-gradient(135deg, var(--light-purple), var(--primary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.placeholder-text-home {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.practitioner-image-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.practitioner-card-home:hover .practitioner-image-home {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(107, 70, 193, 0.5), 0 0 30px rgba(245, 158, 11, 0.3);
}

.practitioner-card-home:hover .practitioner-image-home::before { display: none; }

.practitioner-card-home:hover .practitioner-image-home::after {
    opacity: 1;
}

.practitioner-card-home:hover .practitioner-image-home img {
    transform: scale(1.1);
}

.practitioner-image-home img,
.practitioner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.about-image img,
.gallery-slide img,
.product-image img,
.social-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.practitioner-card-home h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.practitioner-card-home .practitioner-title {
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.practitioner-card-home .practitioner-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.practitioners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.practitioner-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.practitioner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.practitioner-image {
    width: 150px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: none;
    
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.25);
    transition: all 0.4s ease;
    cursor: pointer;
}

.practitioner-image::before { display: none; }

.practitioner-card:hover .practitioner-image {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.4), 0 0 25px rgba(245, 158, 11, 0.2);
}

.practitioner-card:hover .practitioner-image::before { display: none; }

.practitioner-card:hover .practitioner-image img {
    transform: scale(1.1);
}

.practitioner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.practitioner-image .placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-weight: 500;
}

.practitioner-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.practitioner-title {
    color: var(--primary-purple);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.practitioner-specialty {
    color: var(--text-light);
    font-size: 0.9rem;
}

.coming-soon {
    opacity: 0.7;
}

.section-cta {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--soft-white) 100%);
}

.testimonials-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: slideTestimonials 15s linear infinite;
}

@keyframes slideTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonial-card {
    min-width: 420px;
    padding: 2.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-purple), var(--soft-gold), var(--burgundy));
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong), 0 0 30px rgba(107, 70, 193, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
    animation: glow 2s ease-in-out infinite;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card cite {
    color: var(--primary-purple);
    font-weight: 500;
}

/* Shop Preview */
.shop-preview {
    padding: var(--section-padding);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: var(--light-purple);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-card p {
    padding: 0 1rem 1.5rem;
    color: var(--text-light);
    margin: 0;
}

/* Events Preview */
.events-preview {
    padding: var(--section-padding);
    background: var(--light-purple);
}

.events-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-date .month {
    display: block;
    background: var(--primary-purple);
    color: white;
    padding: 0.5rem;
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.event-date .day {
    display: block;
    background: var(--soft-white);
    color: var(--text-dark);
    padding: 1rem 0.5rem;
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    font-size: 1.5rem;
    font-weight: 600;
    border: 1px solid var(--primary-purple);
    border-top: none;
}

.event-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.event-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.event-time {
    color: var(--primary-purple);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Social Feed */
.social-feed {
    padding: var(--section-padding);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-post {
    aspect-ratio: 1;
    border-radius: var(--border-radius-small);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    background: var(--light-purple);
}

.social-post:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.social-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    font-size: 1.2rem;
}

/* Newsletter */
.newsletter {
    padding: var(--section-padding);
    background: var(--gradient-1);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius-small);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Final CTA */
.final-cta {
    padding: calc(var(--section-padding) * 1.5);
    background: linear-gradient(135deg, #F3E8FF 0%, #FEFEFE 50%, #FEF3C7 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '✨';
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 5rem;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.final-cta::after {
    content: '🌟';
    position: absolute;
    bottom: 10%;
    right: 10%;
    font-size: 5rem;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite 4s;
}

.cta-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--soft-gold);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-purple);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-icons a:hover::before {
    width: 100%;
    height: 100%;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.hours p {
    margin-bottom: 0.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--soft-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--soft-gold);
}

/* Mobile Book Button */
.mobile-book-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

/* Tablet Responsiveness (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 0 20px;
    }
    
    h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
    h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
    h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .practitioners-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-items {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.3rem);
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .service-card {
        padding: 3rem 2.5rem;
    }
    
    .service-icon {
        font-size: 4rem;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .announcement-bar {
        display: none;
    }
    
    .header {
        top: 0;
        padding: 12px 0;
    }
    
    .header .container {
        justify-content: space-between;
    }
    
    .logo {
        height: 40px;
    }
    
    .page-header {
        padding: 120px 0 60px !important;
    }
    
    .hero {
        min-height: 70vh;
        margin-top: 0;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header .btn-primary {
        display: none;
    }
    
    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-medium);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav.active {
        top: 70px;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .practitioners-grid-home {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        gap: 1.5rem;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        align-self: center;
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-book-btn {
        display: block;
    }
    
    .mobile-book-btn .btn {
        padding: 15px 25px;
        border-radius: 50px;
        box-shadow: var(--shadow-strong);
    }
}

@media (max-width: 480px) {
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-prev, .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(107, 70, 193, 0.5); }
    50% { box-shadow: 0 0 20px rgba(107, 70, 193, 0.8), 0 0 30px rgba(245, 158, 11, 0.5); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--soft-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-light: var(--text-dark);

    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .service-card::before,
    .testimonial-card::before,
    .about-image::before {
        display: none;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}


/* Additional Mobile Responsive Fixes */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    body, html {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        overflow-x: hidden;
        width: 100%;
    }
    
    form {
        width: 100%;
    }
    
    input, textarea, select {
        width: 100%;
        font-size: 16px !important;
        padding: 12px;
        box-sizing: border-box;
    }
    
    .gallery-slide img {
        height:  400px;
    }
    
    .mission-content,
    .contact-grid,
    .service-detail,
    .story-content,
    .space-content {
        grid-template-columns: 1fr !important;
    }
    
    .values-grid,
    .philosophy-grid {
        grid-template-columns: 1fr !important;
    }
}


/* Mobile Image Optimization */
@media (max-width: 768px) {
    .gallery-slide img {
        height:  400px;
    }
    
    .about-image img {
        height: 350px !important;
    }
    
    .product-image {
        height: 200px !important;
    }
    
    .hero {
        min-height: 60vh;
    }
}

@media (max-width: 480px) {
    .gallery-slide img {
        height:  400px;
    }
    
    .about-image img {
        height: 280px !important;
    }
    
    .product-image {
        height: 180px !important;
    }
}


/* Gallery Slider Height Override */
.gallery-slide img {
    height:  400px;
    
}













