/* CSS Variables - Earthy, Pastel, Sophisticated Yoga Studio */
:root {
    /* Earthy Pastel Color Palette - Inspired by nature and zen */
    --primary-color: #8B7355; /* Warm taupe - earthy, grounding */
    --secondary-color: #A68B5B; /* Golden beige - warm, organic */
    --accent-color: #E8D5C4; /* Soft cream - gentle, calming */
    --sage-green: #B8C5A6; /* Sage green - natural, peaceful */
    --dusty-rose: #D4A5A5; /* Dusty rose - soft, feminine */
    --lavender-mist: #D4C5E8; /* Lavender mist - ethereal, spiritual */
    --warm-white: #FDFCF8; /* Warm white - cream undertones */
    --pure-white: #FFFFFF; /* Pure white - clean, modern */
    --light-cream: #F9F7F4; /* Light cream - organic background */
    --border-color: #E8D5C4; /* Soft cream border - gentle separation */
    
    /* Text colors - Earthy, readable */
    --text-primary: #5D4E37; /* Warm brown - earthy, readable */
    --text-secondary: #8B7355; /* Taupe - secondary text */
    --text-muted: #A68B5B; /* Golden beige - muted text */
    --text-light: #FFFFFF;
    --text-accent: #8B7355; /* Primary color for emphasis */
    
    /* Background colors - Earthy, organic */
    --background-primary: #FDFCF8; /* Warm white with cream undertones */
    --background-secondary: #F9F7F4; /* Light cream - organic background */
    --background-accent: #F5F2ED; /* Very light cream - subtle accent */
    --background-hero: linear-gradient(135deg, #FDFCF8 0%, #F9F7F4 50%, #F5F2ED 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Typography - Yoga-inspired fonts */
    --font-family-primary: 'Playfair Display', serif; /* Elegant serif for headings */
    --font-family-secondary: 'Source Sans Pro', sans-serif; /* Clean sans-serif for body */
    --font-family-script: 'Dancing Script', cursive; /* Script font for special elements */
    --font-family-logo: 'Crimson Text', serif; /* High-contrast serif for logo */
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Border radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 0.75rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family-secondary);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-primary);
    font-weight: 300;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Typography - Yoga-inspired, sophisticated */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

h1 { font-size: var(--font-size-4xl); font-weight: 200; }
h2 { font-size: var(--font-size-3xl); font-weight: 300; }
h3 { font-size: var(--font-size-2xl); font-weight: 400; }
h4 { font-size: var(--font-size-xl); font-weight: 400; }

p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background-primary);
    border-bottom: 1px solid var(--light-green);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand .logo-link {
    text-decoration: none;
    display: inline-block;
    transition: opacity var(--transition-fast);
}

.nav-brand .logo-link:hover {
    opacity: 0.8;
}

.nav-brand .logo {
    font-family: var(--font-family-logo);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    margin: 0;
    position: relative;
    cursor: pointer;
}

/* Logo styling without emoji */

.nav-brand .tagline {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-style: normal;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-fast);
    padding: var(--spacing-xs) 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Hero Section - Earthy, Organic, Yoga-inspired */
.hero {
    padding: calc(80px + var(--spacing-xxl)) 0 var(--spacing-xxl);
    background: var(--background-hero);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::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 100 100"><defs><pattern id="yoga-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(139,115,85,0.05)"/><circle cx="50" cy="50" r="3" fill="none" stroke="rgba(184,197,166,0.08)" stroke-width="0.5"/><circle cx="50" cy="50" r="8" fill="none" stroke="rgba(212,165,165,0.05)" stroke-width="0.3"/><path d="M20,20 Q50,10 80,20" stroke="rgba(139,115,85,0.03)" stroke-width="0.5" fill="none"/><path d="M20,80 Q50,90 80,80" stroke="rgba(184,197,166,0.03)" stroke-width="0.5" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23yoga-pattern)"/></svg>');
    opacity: 0.6;
}

.hero::after {
    content: '☯';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 3rem;
    color: var(--sage-green);
    opacity: 0.1;
    transform: rotate(15deg);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-family-primary);
    font-size: 4.5rem;
    font-weight: 200;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    position: relative;
}

/* Hero title styling without emojis */

.hero-subtitle {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xl);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    font-style: italic;
}

/* Psychology: Social proof stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 169, 201, 0.2);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

/* Psychology: Trust and risk reversal */
.hero-guarantee {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--spacing-md);
}

/* Buttons - Earthy, Organic, Yoga-inspired */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 400;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: var(--font-size-base);
    font-family: var(--font-family-secondary);
    letter-spacing: 0.02em;
    text-transform: none;
    font-size: var(--font-size-sm);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sage-green), var(--dusty-rose));
    color: var(--text-light);
    border-color: var(--sage-green);
    box-shadow: 0 4px 15px rgba(184, 197, 166, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dusty-rose), var(--lavender-mist));
    color: var(--text-light);
    border-color: var(--dusty-rose);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-color);
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
    font-family: var(--font-family-secondary);
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--sage-green));
    color: var(--text-light);
    border-color: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 213, 196, 0.4);
}

/* Sections */
.section {
    padding: var(--spacing-xxl) 0;
}

.section.bg-light {
    background-color: var(--background-accent);
}


.section-title {
    text-align: center;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid - Psychology: Visual hierarchy and conversion focus */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-card {
    background-color: var(--background-primary);
    padding: var(--spacing-xl);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(139, 115, 85, 0.08);
    transition: all var(--transition-normal);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-green), var(--dusty-rose), var(--lavender-mist));
    border-radius: 20px 20px 0 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

/* Psychology: Featured card stands out */
.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--peace-mint) 100%);
    transform: scale(1.02);
}

.service-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--primary-color);
    color: var(--text-light);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sage-green), var(--dusty-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 8px 24px rgba(139, 115, 85, 0.15);
    position: relative;
    border: 3px solid var(--accent-color);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--lavender-mist);
    border-radius: 50%;
    opacity: 0.3;
}

.service-icon i {
    font-size: 2.8rem;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

/* Psychology: Benefit bullets create urgency and clarity */
.service-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.benefit {
    font-size: var(--font-size-sm);
    color: var(--text-accent);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

/* Psychology: Different button styles for different actions */

/* About Preview */
.about-preview {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(232, 213, 196, 0.3);
    box-shadow: 0 8px 32px rgba(139, 115, 85, 0.1);
}


.about-preview h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.about-preview p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

/* Page Header */
.page-header {
    padding: calc(80px + var(--spacing-xxl)) 0 var(--spacing-xl);
    background: var(--background-hero);
    color: var(--text-primary);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    font-weight: 300;
}

/* Schedule Grid */
.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 100px repeat(7, 1fr);
    gap: 1px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
    margin-bottom: var(--spacing-xl);
}

.time-column {
    background-color: var(--background-primary);
}

.time-header {
    background-color: var(--text-primary);
    color: var(--text-light);
    padding: var(--spacing-md);
    font-weight: 500;
    font-size: var(--font-size-sm);
    text-align: center;
    letter-spacing: 0.05em;
}

.time-slot {
    padding: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-column {
    background-color: var(--background-primary);
}

.day-header {
    background-color: var(--text-primary);
    color: var(--text-light);
    padding: var(--spacing-md);
    font-weight: 500;
    font-size: var(--font-size-sm);
    text-align: center;
    letter-spacing: 0.05em;
}

.class-slot {
    height: 60px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.class-slot.empty {
    background-color: var(--background-primary);
}

.class-slot.vinyasa {
    background: linear-gradient(135deg, var(--sage-green), var(--accent-color));
    border-left: 4px solid var(--sage-green);
    color: var(--text-light);
}

.class-slot.hatha {
    background: linear-gradient(135deg, var(--dusty-rose), var(--accent-color));
    border-left: 4px solid var(--dusty-rose);
    color: var(--text-light);
}

.class-slot.restorative {
    background: linear-gradient(135deg, var(--lavender-mist), var(--accent-color));
    border-left: 4px solid var(--lavender-mist);
    color: var(--text-light);
}

.class-slot:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.class-info {
    padding: var(--spacing-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.class-name {
    font-weight: 500;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    margin-bottom: 2px;
}

.class-time {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

/* Class Legend */
.class-legend {
    background-color: var(--background-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-xl);
}

.class-legend h3 {
    font-size: var(--font-size-lg);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.legend-items {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 2px;
}

.legend-color.vinyasa {
    background: linear-gradient(135deg, var(--sage-green), var(--accent-color));
    border-left: 4px solid var(--sage-green);
}

.legend-color.hatha {
    background: linear-gradient(135deg, var(--dusty-rose), var(--accent-color));
    border-left: 4px solid var(--dusty-rose);
}

.legend-color.restorative {
    background: linear-gradient(135deg, var(--lavender-mist), var(--accent-color));
    border-left: 4px solid var(--lavender-mist);
}

/* Booking CTA */
.booking-cta {
    text-align: center;
    background-color: var(--background-primary);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
}

.booking-cta h3 {
    font-size: var(--font-size-xl);
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.booking-cta p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

/* About/Contact Page Styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.instructor-info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-bottom: var(--spacing-xxl);
}

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

.instructor-headshot {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 24%;
    transform: scale(1.42);
    transform-origin: center;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.15);
    display: block;
    margin: 0 auto;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background-color: var(--background-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--text-muted);
}

.instructor-details h2 {
    font-size: var(--font-size-2xl);
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.instructor-title {
    font-size: var(--font-size-lg);
    color: var(--text-accent);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
}

.credentials, .teaching-philosophy {
    margin-top: var(--spacing-xl);
}

.credentials h3, .teaching-philosophy h3 {
    font-size: var(--font-size-lg);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--spacing-lg);
}

.credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--text-accent);
    font-weight: 600;
}

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

.studio-info h2 {
    font-size: var(--font-size-2xl);
    font-weight: 300;
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
}

.studio-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.studio-feature {
    text-align: center;
    padding: var(--spacing-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--background-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--text-accent);
}

.studio-feature h3 {
    font-size: var(--font-size-lg);
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.studio-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    font-size: var(--font-size-2xl);
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.contact-section > p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: var(--background-secondary);
    border-radius: var(--border-radius-lg);
    text-align: left;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.contact-details h3 {
    font-size: var(--font-size-lg);
    font-weight: 400;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

.form-section {
    background-color: var(--background-secondary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-xl);
}

.form-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.form-section p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.form-container {
    background-color: var(--background-primary);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: var(--text-light);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    color: var(--warm-green);
    line-height: 1.7;
}

.footer-section p {
    margin: 0 0 var(--spacing-xs);
}

.footer-section p:last-child {
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--warm-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--secondary-color);
    color: var(--warm-green);
}

/* Responsive Design - Tablet and Below */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-md);
    }
    
    .instructor-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .studio-details {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .contact-methods {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background-primary);
        flex-direction: column;
        padding: var(--spacing-md);
        border-top: 1px solid var(--light-green);
        box-shadow: var(--shadow-md);
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .hero {
        padding: calc(70px + var(--spacing-xl)) 0 var(--spacing-xl);
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
        padding: 0 var(--spacing-sm);
    }
    
    .om-symbol {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
        width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-card {
        padding: var(--spacing-lg);
    }

    .section-title {
        font-size: var(--font-size-2xl);
        padding: 0 var(--spacing-sm);
    }
    
    .section-subtitle {
        padding: 0 var(--spacing-sm);
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: var(--font-size-base);
    }
    
    .floating-header .container {
        padding: 0.75rem var(--spacing-md);
    }
    
    .floating-header .nav-menu {
        gap: 1rem;
    }
    
    .floating-header .nav-menu li a {
        font-size: 0.85rem;
    }
    
    .nav-outline {
        width: 200px;
        top: 70px;
        right: 10px;
    }
    
    .nav-toggle-outline {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
    }
    
    .scroll-indicator,
    .down-indicator {
        width: 45px;
        height: 45px;
        bottom: 20px;
    }
    
    .scroll-indicator {
        left: 20px;
    }
    
    .down-indicator {
        right: 20px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero {
        padding: calc(60px + var(--spacing-lg)) 0 var(--spacing-lg);
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .om-symbol {
        font-size: 2.5rem;
        margin: var(--spacing-md) 0;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        padding: var(--spacing-md);
    }
    
    .page-header {
        padding: calc(60px + var(--spacing-lg)) 0 var(--spacing-lg);
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
        min-height: 44px; /* Touch target size */
    }
    
    .booking-helper {
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .btn-wrapper {
        width: 100%;
    }
    
    .nav-brand .logo {
        font-size: 1.5rem;
    }
    
    .nav-brand .tagline {
        font-size: 0.7rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
        padding: calc(60px + var(--spacing-md)) 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: calc(60px + var(--spacing-md)) 0 var(--spacing-md);
    }
    
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.contact-intro h2 {
    margin-bottom: var(--spacing-md);
}

.questions-section {
    background: linear-gradient(180deg, rgba(168, 181, 151, 0.14) 0%, rgba(168, 181, 151, 0.06) 100%);
    border-top: 1px solid rgba(168, 181, 151, 0.3);
    border-bottom: 1px solid rgba(168, 181, 151, 0.3);
}

.questions-section .contact-intro h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    margin: var(--spacing-sm) auto 0;
    border-radius: 999px;
    background: var(--sage-green);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.contact-method {
    background: linear-gradient(135deg, var(--background-primary), var(--accent-color));
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(139, 115, 85, 0.08);
    transition: all var(--transition-normal);
    border: 2px solid var(--accent-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 115, 85, 0.15);
    border-color: var(--sage-green);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage-green), var(--dusty-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    position: relative;
    border: 3px solid var(--accent-color);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--lavender-mist);
    border-radius: 50%;
    opacity: 0.3;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-details h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-family: var(--font-family-primary);
    text-align: center;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    text-align: center;
}

.contact-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-style: italic;
}

.contact-action {
    margin-top: var(--spacing-md);
    justify-content: center;
    min-height: 44px;
}

/* Studio Hours */
.studio-hours {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hours-grid {
    display: grid;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--background-primary), var(--accent-color));
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    transition: all var(--transition-normal);
}

.hours-day:hover {
    border-color: var(--sage-green);
    transform: translateX(5px);
}

.day {
    font-weight: 500;
    color: var(--text-primary);
}

.hours {
    color: var(--text-secondary);
    font-weight: 400;
}

.hours-note {
    font-style: italic;
    color: var(--text-muted);
    margin-top: var(--spacing-md);
}

.further-timings-box {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--background-primary), var(--accent-color));
    border-radius: 15px;
    border: 2px solid var(--sage-green);
    text-align: center;
}

.further-timings-box p {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
    font-size: var(--font-size-base);
}

/* Booking Section */
.booking-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.booking-header {
    margin-bottom: var(--spacing-xl);
}

.form-container {
    background: linear-gradient(135deg, var(--background-primary), var(--accent-color));
    border-radius: 20px;
    padding: var(--spacing-xxl);
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 32px rgba(139, 115, 85, 0.08);
}

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

.form-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sage-green), var(--dusty-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    border: 3px solid var(--accent-color);
}

.form-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.form-placeholder h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-family: var(--font-family-primary);
}

.form-placeholder p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
}

.contact-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Booking Form Styles */
.booking-form {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.booking-form h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    font-family: var(--font-family-primary);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    background-color: var(--background-primary);
    color: var(--text-primary);
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(184, 197, 166, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--accent-color);
}

.form-note p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* About Page Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--background-primary), var(--accent-color));
    border-radius: 20px;
    border: 2px solid var(--accent-color);
    transition: all var(--transition-normal);
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-color: var(--sage-green);
    box-shadow: 0 12px 40px rgba(139, 115, 85, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--sage-green), var(--dusty-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    border: 3px solid var(--accent-color);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.benefit-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-family: var(--font-family-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--spacing-xs);
}

/* Schedule Note */
.schedule-note {
    max-width: 1000px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--sage-green), var(--accent-color));
    border-radius: 15px;
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: center;
    border: 2px solid var(--sage-green);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
}

.schedule-note p {
    color: var(--text-light);
    margin: 0;
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.schedule-note strong {
    font-weight: 600;
    opacity: 1;
}

/* Featured Classes + Live Calendar */
.featured-classes {
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
}

.featured-classes h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.featured-class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
}

.featured-class-card {
    border-radius: 16px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 8px 24px rgba(139, 115, 85, 0.12);
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, var(--sage-green), var(--accent-color));
    color: var(--text-light);
}

.featured-class-card.hatha {
    background: linear-gradient(135deg, var(--dusty-rose), var(--accent-color));
}

.featured-class-card.restorative {
    background: linear-gradient(135deg, var(--lavender-mist), var(--accent-color));
}

.featured-day {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.featured-class-card h4 {
    margin: var(--spacing-xs) 0;
    color: var(--text-light);
}

.featured-time {
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.featured-location {
    font-size: var(--font-size-sm);
    opacity: 0.95;
}

.schedule-live-note {
    text-align: center;
    margin-top: var(--spacing-md);
    font-style: italic;
    color: var(--text-secondary);
}

.google-calendar-shell {
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
    border-radius: 20px;
    border: 2px solid var(--accent-color);
    background: var(--background-primary);
    box-shadow: 0 8px 32px rgba(139, 115, 85, 0.08);
    overflow: hidden;
}

.google-calendar-header {
    padding: var(--spacing-lg);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--background-secondary), var(--accent-color));
}

.google-calendar-header h3 {
    margin-bottom: var(--spacing-xs);
}

.google-calendar-header p {
    margin: 0 0 var(--spacing-md);
    color: var(--text-secondary);
}

.google-calendar-footer {
    padding: var(--spacing-lg);
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--background-secondary), var(--accent-color));
}

.calendar-arushi-note {
    margin: 0 0 var(--spacing-md);
    color: var(--text-primary);
    font-size: var(--font-size-base);
}

.calendar-arushi-note strong {
    font-weight: 700;
}

.calendar-book-btn {
    animation: gentlePulse 2.4s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.google-calendar-frame-wrap {
    min-height: 720px;
    background: var(--background-primary);
}

#googleCalendarFrame {
    width: 100%;
    height: 720px;
    border: 0;
}

.google-calendar-help {
    margin: 0;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    background: var(--background-secondary);
}

.google-calendar-help.hidden {
    display: none;
}

/* Booking Helper Text */
.booking-helper {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}

.booking-helper-icon {
    font-size: var(--font-size-base);
    opacity: 0.8;
}

.booking-helper-text {
    display: inline;
}

.booking-helper strong {
    color: var(--text-primary);
    font-weight: 600;
    font-style: normal;
}

/* Booking helper for buttons */
.btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

/* Service card booking helper */
.service-card .booking-helper {
    margin-top: var(--spacing-sm);
    text-align: center;
    justify-content: center;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.booking-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal-content {
    background-color: var(--background-primary);
    margin: auto;
    padding: 0;
    border-radius: var(--border-radius-xl);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    overflow: hidden;
}

.booking-modal-header {
    background: linear-gradient(135deg, var(--sage-green), var(--accent-color));
    padding: var(--spacing-lg);
    text-align: center;
    color: var(--text-light);
}

.booking-modal-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.booking-modal-header h3 {
    color: var(--text-light);
    margin: 0;
    font-size: var(--font-size-2xl);
    font-weight: 600;
}

.booking-modal-body {
    padding: var(--spacing-xl);
    color: var(--text-primary);
}

.booking-modal-body p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.booking-modal-body ol {
    margin: var(--spacing-md) auto;
    padding-left: var(--spacing-lg);
    line-height: 2;
    text-align: left;
}

.booking-modal-body li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

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

.booking-modal-footer {
    padding: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    background-color: var(--background-accent);
    border-top: 1px solid var(--border-color);
}

.booking-modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
    transition: transform var(--transition-fast);
}

.booking-modal-close:hover {
    transform: rotate(90deg);
}

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

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

/* Calendar Grid Styles */
.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--background-primary);
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 8px 32px rgba(139, 115, 85, 0.08);
    border: 2px solid var(--accent-color);
}

.calendar-grid {
    display: grid;
    grid-template-columns: 100px repeat(7, 1fr);
    gap: 2px;
    background-color: var(--border-color);
    border-radius: 15px;
    overflow: hidden;
}

.calendar-header {
    display: contents;
}

.time-label {
    background: var(--text-primary);
    color: var(--text-light);
    padding: var(--spacing-md);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-label {
    background: var(--text-primary);
    color: var(--text-light);
    padding: var(--spacing-md);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-row {
    display: contents;
}

.time-slot {
    background: var(--sage-green);
    padding: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--text-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-right: 2px solid var(--accent-color);
    font-family: var(--font-family-secondary);
    position: relative;
}

.time-slot::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--accent-color);
    opacity: 0.3;
}

.day-slot {
    background: var(--background-primary);
    padding: var(--spacing-sm);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
    cursor: pointer;
}

.day-slot.empty {
    background: var(--background-primary);
    color: var(--text-muted);
    font-size: var(--font-size-xs);
}

.day-slot.break-slot {
    background: linear-gradient(135deg, var(--background-secondary), var(--accent-color));
    color: var(--text-muted);
    font-size: var(--font-size-xs);
    font-style: italic;
    text-align: center;
    opacity: 0.6;
    position: relative;
}

.day-slot.break-slot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--text-muted);
    opacity: 0.3;
}

.class-slot {
    background: linear-gradient(135deg, var(--sage-green), var(--accent-color));
    color: var(--text-light);
    border-radius: 8px;
    margin: 2px;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.15);
    border: 2px solid transparent;
}

.class-slot.hatha {
    background: linear-gradient(135deg, var(--dusty-rose), var(--accent-color));
}

.class-slot.restorative {
    background: linear-gradient(135deg, var(--lavender-mist), var(--accent-color));
}

.class-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.25);
    border-color: var(--sage-green);
}

.class-name {
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 2px;
    font-family: var(--font-family-primary);
    line-height: 1.2;
}

.class-time {
    font-size: 10px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.1;
}

.class-location {
    font-size: 9px;
    opacity: 0.85;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 2px;
    font-style: italic;
}

/* Modal Styles */
.class-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--background-primary);
    margin: 15% auto;
    padding: var(--spacing-xl);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent-color);
    position: relative;
}

.close-modal {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-lg);
    font-size: 28px;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-normal);
}

.close-modal:hover {
    color: var(--text-primary);
}

.modal-content h3 {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* Break Row Styling */
.break-row .time-slot {
    background: var(--accent-color);
    color: var(--text-light);
    font-style: italic;
    font-size: var(--font-size-xs);
}

/* Quick Booking Section */
.quick-booking {
    background: linear-gradient(135deg, var(--sage-green), var(--accent-color));
    border-radius: 20px;
    padding: var(--spacing-xxl);
    margin-top: var(--spacing-xxl);
    box-shadow: 0 8px 32px rgba(139, 115, 85, 0.15);
    border: 2px solid var(--sage-green);
}

.booking-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.booking-text h3 {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
}

.booking-text p {
    color: var(--text-light);
    font-size: var(--font-size-lg);
    margin: 0;
    opacity: 0.9;
}

.booking-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}


.btn-outline:hover {
    background: var(--text-light);
    color: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Form Message Styles */
.form-message {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.form-message-success {
    background: linear-gradient(135deg, var(--sage-green), var(--accent-color));
    color: var(--text-light);
    border: 2px solid var(--sage-green);
}

.form-message-error {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: var(--text-light);
    border: 2px solid #ff6b6b;
}

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

/* Alternative Booking Methods */
.alternative-booking {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--background-primary), var(--accent-color));
    border-radius: 15px;
    border: 2px solid var(--sage-green);
    text-align: center;
}

.alternative-booking h4 {
    font-family: var(--font-family-primary);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.booking-methods {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.booking-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--sage-green);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    transition: all var(--transition-normal);
    font-weight: 500;
    border: 2px solid transparent;
}

.booking-method:hover {
    background: var(--text-light);
    color: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    border-color: var(--sage-green);
}

.method-icon {
    font-size: var(--font-size-lg);
}

.method-text {
    font-family: var(--font-family-secondary);
}

/* Left Down Arrow - Always visible, unclickable */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--text-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 6px 22px rgba(93, 78, 55, 0.45);
    border: 2px solid var(--accent-color);
}


.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-indicator:hover {
    transform: translateY(0);
    box-shadow: 0 8px 28px rgba(93, 78, 55, 0.55);
}

.scroll-indicator::before {
    content: '↓';
    color: var(--background-primary);
    font-size: 20px;
    font-weight: bold;
}

/* Right Up Arrow - Only appears at bottom, clickable */
.down-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--text-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 6px 22px rgba(93, 78, 55, 0.45);
    border: 2px solid var(--accent-color);
}

.down-indicator.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.down-indicator:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(93, 78, 55, 0.6);
}

.down-indicator::before {
    content: '↑';
    color: var(--background-primary);
    font-size: 20px;
    font-weight: bold;
}


/* Floating Header */
.floating-header {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sage-green);
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(139, 115, 85, 0.1);
}

.floating-header.visible {
    top: 0;
}

.floating-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.floating-header .nav-brand {
    font-size: 1.2rem;
    margin: 0;
}

.floating-header .nav-brand .logo {
    font-family: var(--font-family-logo);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.floating-header .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.floating-header .nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.floating-header .nav-menu li a:hover {
    color: var(--sage-green);
}

/* Improved Spacing */
.section {
    padding: 4rem 0;
    width: 100%;
    box-sizing: border-box;
}

.hero {
    padding: 6rem 0 4rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Developer Credit */
.developer-credit {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    opacity: 0.8;
}

.developer-credit a {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Material Symbols Styling */
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
    font-size: 3rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.material-symbols-outlined.filled {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}

/* Om Symbol Styling */
.om-symbol {
    font-family: 'Crimson Text', serif;
    font-size: 4rem;
    color: var(--accent-color);
    text-align: center;
    margin: var(--spacing-lg) 0;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1;
}

.om-symbol:hover {
    opacity: 1;
    transform: scale(1.1);
    color: var(--sage-green);
}

/* Service Card Icons */
.service-card .material-symbols-outlined {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: var(--accent-color);
    display: block;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
}

.service-icon .material-symbols-outlined {
    font-size: 3rem;
    margin-bottom: 0;
    color: var(--accent-color);
    display: block;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
}

.service-card:hover .material-symbols-outlined,
.service-card:hover .service-icon .material-symbols-outlined {
    transform: scale(1.2) rotate(-5deg);
    color: var(--sage-green);
    text-shadow: 0 4px 15px rgba(139, 69, 19, 0.6);
    filter: drop-shadow(0 3px 10px rgba(139, 69, 19, 0.5));
    font-weight: 600;
}

/* Enhanced Service Card Hover Effects */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.service-card h3 {
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--sage-green);
    transform: translateY(-2px);
}

/* Contact and About Page Icons */
.contact-icon .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.feature-icon .material-symbols-outlined,
.benefit-icon .material-symbols-outlined,
.image-placeholder .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.contact-method:hover .material-symbols-outlined,
.studio-feature:hover .material-symbols-outlined,
.benefit-item:hover .material-symbols-outlined {
    color: var(--sage-green);
    transform: scale(1.1);
}

/* Google Docs Style Navigation */
.nav-outline {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 250px;
    max-height: 70vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--sage-green);
    border-radius: 12px;
    padding: 1rem;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(139, 115, 85, 0.2);
    overflow-y: auto;
}

.nav-outline.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-outline h4 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--sage-green);
}

.nav-outline ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-outline li {
    margin: 0.5rem 0;
}

.nav-outline a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    display: block;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-outline a:hover {
    color: var(--sage-green);
    background: rgba(139, 115, 85, 0.1);
    border-left-color: var(--sage-green);
}

.nav-outline a.active {
    color: var(--sage-green);
    background: rgba(139, 115, 85, 0.15);
    border-left-color: var(--accent-color);
    font-weight: 500;
}

/* Navigation Toggle Button */
.nav-toggle-outline {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sage-green), var(--accent-color));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.3);
    transition: all 0.3s ease;
}

.nav-toggle-outline:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(139, 115, 85, 0.4);
}

.nav-toggle-outline::before {
    content: '≡';
    color: var(--text-light);
    font-size: 20px;
    font-weight: bold;
}

/* Section IDs for navigation */
.section {
    scroll-margin-top: 100px;
}

/* Mobile Responsive Updates - Additional Components */
@media (max-width: 768px) {
    .contact-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hours-day {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .studio-details {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .calendar-container {
        padding: var(--spacing-sm);
        margin: 0;
        border-radius: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .schedule-note {
        margin: 0 auto var(--spacing-md);
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

    .featured-class-grid {
        grid-template-columns: 1fr;
    }

    .google-calendar-frame-wrap,
    #googleCalendarFrame {
        min-height: 560px;
        height: 560px;
    }
    
    .booking-helper {
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .btn-wrapper {
        width: 100%;
    }
    
    .calendar-grid {
        grid-template-columns: 70px repeat(7, minmax(60px, 1fr));
        font-size: 0.7rem;
        min-width: 600px; /* Allow horizontal scroll on very small screens */
    }
    
    .time-slot, .day-label, .time-label {
        padding: var(--spacing-xs);
        font-size: 0.7rem;
        word-break: break-word;
    }
    
    .day-label {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        min-width: 40px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .day-slot {
        min-height: 50px;
        padding: 4px;
        font-size: 0.65rem;
    }
    
    .class-name {
        font-size: 8px;
        line-height: 1.1;
    }
    
    .class-time {
        font-size: 7px;
        line-height: 1;
    }
    
    .class-location {
        font-size: 6px;
        line-height: 1;
        margin-top: 1px;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: var(--spacing-md);
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .booking-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .booking-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
        width: 100%;
    }
    
    .booking-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .quick-booking {
        padding: var(--spacing-md);
        margin-top: var(--spacing-md);
    }
    
    .booking-methods {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .booking-method {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        min-height: 44px;
    }
    
    .form-container {
        padding: var(--spacing-lg);
    }
    
    .booking-form {
        max-width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px; /* Touch target size */
    }
    
    .instructor-info {
        grid-template-columns: 1fr;
    }
    
    .instructor-headshot {
        width: 200px;
        height: 200px;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .about-preview {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .booking-helper {
        font-size: 0.75rem;
        gap: 0.25rem;
    }
    
    .booking-helper-text {
        text-align: center;
    }
    
    .calendar-grid {
        grid-template-columns: 60px repeat(7, minmax(50px, 1fr));
        min-width: 500px;
    }
    
    .day-label {
        font-size: 0.65rem;
        min-width: 35px;
    }
    
    .time-slot {
        font-size: 0.65rem;
        padding: 6px 4px;
    }
    
    .day-slot {
        min-height: 45px;
        padding: 3px;
    }
    
    .class-name {
        font-size: 7px;
    }
    
    .class-time {
        font-size: 6px;
    }
    
    .class-location {
        font-size: 5px;
    }
    
    .schedule-note {
        font-size: 0.85rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .schedule-note p {
        font-size: 0.85rem;
    }
}
