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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
}

p {
    line-height: 1.6;
    color: #666;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-ghost {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e5e5e5;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-ghost:hover {
    background: #f9f9f9;
    border-color: #d4d4d4;
}

.btn-outline {
    background: transparent;
    color: #6366f1;
    border: 1px solid #6366f1;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-outline:hover {
    background: #6366f1;
    color: white;
}

.btn-secondary-small {
    background: #f3f4f6;
    color: #374151;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-small:hover {
    background: #e5e7eb;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

/* Logo Section */
.nav-logo {
    flex: 0 0 auto;
    z-index: 1001;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.header-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(77, 182, 172, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    background: rgba(77, 182, 172, 0.2);
    transform: rotate(5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 160px;
}

.logo-main {
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, #4DB6AC 0%, #FF7043 50%, #3949AB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: -2px;
}

/* Navigation Center */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-link {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #1a1a1a;
    background: rgba(77, 182, 172, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, #4DB6AC 0%, #FF7043 100%);
    box-shadow: 0 4px 12px rgba(77, 182, 172, 0.3);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.btn-secondary-nav {
    background: transparent;
    color: #666;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary-nav:hover {
    background: #f8f9fa;
    border-color: #4DB6AC;
    color: #4DB6AC;
    transform: translateY(-1px);
}

.btn-primary-nav {
    background: linear-gradient(135deg, #4DB6AC 0%, #FF7043 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(77, 182, 172, 0.3);
    white-space: nowrap;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 182, 172, 0.4);
    background: linear-gradient(135deg, #4DB6AC 0%, #FF7043 80%, #3949AB 100%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(77, 182, 172, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: linear-gradient(135deg, #4DB6AC, #FF7043);
    margin: 2px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Header Scroll Effect */
.header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

.header.scrolled .logo-main {
    font-size: 18px;
}

.header.scrolled .nav-menu {
    padding: 10px 20px;
}

/* Mobile Navigation */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 32px;
}

.mobile-nav-menu .nav-link {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 16px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.mobile-nav-menu .nav-link:hover,
.mobile-nav-menu .nav-link.active {
    background: linear-gradient(135deg, #4DB6AC 0%, #FF7043 100%);
    color: white;
    transform: scale(1.05);
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.section-description {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(248, 250, 252, 0.85), rgba(241, 245, 249, 0.85)), url('images/reformer-background.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.8;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #6366f1;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 24px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Services Overview */
.services-overview {
    padding: 120px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    background: white;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e0e7ff;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.service-duration {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.service-price {
    font-size: 16px;
    font-weight: 600;
    color: #4DB6AC;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: white;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header .section-title {
    font-size: 42px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Journey Section */
.journey-section {
    margin-bottom: 100px;
    background: #f8fafc;
    border-radius: 24px;
    padding: 60px;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.journey-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.journey-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.journey-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e0e7ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-width: 120px;
}

.stat-box .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #4DB6AC, #FF7043);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.journey-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #9ca3af;
    font-weight: 500;
    border: 2px dashed #d1d5db;
}

/* Actual Images */
.portrait-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    transform: scale(0.9);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.teaching-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.lifestyle-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.portrait-image:hover,
.teaching-image:hover,
.lifestyle-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Philosophy Section */
.philosophy-section {
    margin-bottom: 100px;
    padding: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 24px;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.philosophy-text > p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.philosophy-benefits h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4DB6AC, #FF7043);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-text strong {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Core Principles */
.principles-section {
    margin-bottom: 100px;
    text-align: center;
}

.principles-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.principles-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 48px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.principle-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #4DB6AC;
}

.principle-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.principle-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.principle-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    margin-bottom: 100px;
    background: #f8fafc;
    padding: 60px;
    border-radius: 24px;
}

.certifications-section h3 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.certifications-subtitle {
    font-size: 20px;
    color: #666;
    text-align: center;
    margin-bottom: 48px;
}

.certifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.certifications-column h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.cert-list, .specialization-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cert-item, .specialization-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #4DB6AC;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cert-item strong, .specialization-item strong {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.cert-item span, .specialization-item span {
    font-size: 14px;
    color: #666;
}

/* Achievement Stats */
.achievement-stats {
    margin-bottom: 100px;
    background: linear-gradient(135deg, #4DB6AC 0%, #FF7043 50%, #3949AB 100%);
    border-radius: 24px;
    padding: 60px;
    color: white;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.stat-item-large {
    text-align: center;
}

.stat-number-large {
    display: block;
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.stat-label-large {
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.stat-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.stat-item-small {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-number-small {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
}

.stat-label-small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Beyond the Studio */
.beyond-studio-section {
    margin-bottom: 100px;
    background: #f8fafc;
    padding: 60px;
    border-radius: 24px;
}

.beyond-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.beyond-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.beyond-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.personal-values {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #FF7043;
    margin: 32px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.personal-values p {
    margin: 0;
    font-style: italic;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 24px;
}

.about-cta h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.about-cta p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Schedule Section */
.schedule-section {
    padding: 120px 0;
    background: white;
}

.schedule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.schedule-day {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.schedule-day:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #4DB6AC;
}

.schedule-day h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 2px solid #4DB6AC;
}

.class-time-slot {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.class-time-slot:hover {
    border-color: #4DB6AC;
    box-shadow: 0 4px 12px rgba(77, 182, 172, 0.1);
}

.time {
    font-weight: 600;
    color: #4DB6AC;
    font-size: 14px;
    min-width: 70px;
}

.class-info {
    display: flex;
    flex-direction: column;
}

.class-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.class-level {
    font-size: 12px;
    color: #666;
    background: #e2e8f0;
    padding: 2px 8px;
    border-radius: 12px;
    width: fit-content;
}

.btn-small {
    background: #4DB6AC;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: #FF7043;
    transform: translateY(-1px);
}

.schedule-note {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.schedule-note p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.schedule-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Classes Section - Keep original for other pages if needed */
.classes-section {
    padding: 120px 0;
    background: white;
}

.classes-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid #e5e5e5;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.class-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.class-card.featured {
    border: 2px solid #6366f1;
    transform: scale(1.02);
}

.class-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.class-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.class-placeholder {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.class-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #6366f1;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.class-content {
    padding: 24px;
}

.class-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.class-level {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.class-duration {
    color: #666;
    font-size: 14px;
}

.class-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.class-content p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.class-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.class-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Testimonials */
.testimonials-section {
    padding: 120px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #666;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: white;
}

/* Pricing Guarantee */
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    padding: 16px 24px;
    background: #f0fdf4;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #bbf7d0;
}

.pricing-guarantee .guarantee-icon {
    color: #16a34a;
    font-weight: bold;
    font-size: 18px;
}

.pricing-guarantee span:last-child {
    color: #166534;
    font-weight: 500;
    font-size: 15px;
}

/* Feature Comparison */
.feature-comparison {
    margin-top: 80px;
    text-align: center;
}

.feature-comparison h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-comparison p {
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.feature-column,
.plan-column {
    padding: 20px;
    font-weight: 600;
    color: #1a1a1a;
    border-right: 1px solid #e2e8f0;
}

.plan-column:last-child,
.feature-column:last-child {
    border-right: none;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    padding: 16px 20px;
    text-align: left;
    font-weight: 500;
    color: #374151;
    border-right: 1px solid #e2e8f0;
}

.feature-value {
    padding: 16px 20px;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    color: #16a34a;
    font-weight: 600;
}

.feature-value:last-child {
    border-right: none;
}

/* Updated Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.pricing-card .savings-badge {
    background: #16a34a;
    color: white;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: inline-block;
    font-weight: 600;
}

.card-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.feature-icon {
    color: #16a34a;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span:last-child {
    color: #374151;
    line-height: 1.5;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-weight: 500;
    color: #666;
}

.savings-badge {
    background: #10b981;
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    display: block;
    width: 50px;
    height: 28px;
    background: #e5e5e5;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-switch label::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch input:checked + label {
    background: #6366f1;
}

.toggle-switch input:checked + label::after {
    transform: translateX(22px);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.pricing-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #6366f1;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.pricing-card.featured {
    border-color: #6366f1;
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.card-header {
    margin-bottom: 32px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price-display {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
}

.price-period {
    font-size: 16px;
    color: #666;
}

.price-description {
    color: #666;
    font-size: 16px;
}

.card-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.feature-icon {
    color: #10b981;
    font-weight: 600;
}

.pricing-footer {
    text-align: center;
}

.money-back {
    color: #666;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
}

.cta-description {
    font-size: 20px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 16px;
}

.guarantee-icon {
    font-size: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header .section-title {
    font-size: 42px;
    text-align: left;
    margin-bottom: 24px;
}

.contact-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.contact-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.contact-value {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-form-container {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-tagline {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 32px;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.social-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: #9ca3af;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .about-content,
    .contact-content,
    .footer-main,
    .journey-content,
    .philosophy-content,
    .beyond-content,
    .certifications-content,
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .journey-section,
    .philosophy-section,
    .certifications-section,
    .beyond-studio-section,
    .about-cta {
        padding: 40px;
    }
    
    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-actions .btn-secondary-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .logo-main {
        font-size: 18px;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 18px;
    }
    
    .services-grid,
    .classes-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-row,
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-header,
    .comparison-row {
        min-width: 600px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .classes-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .testimonial-card,
    .faq-item {
        padding: 24px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-item {
        padding: 24px;
    }
    
    .pricing-item .price {
        font-size: 36px;
    }
    
    .membership-card {
        padding: 24px;
    }
    
    .membership-card .price {
        font-size: 40px;
    }
    
    .package-item {
        padding: 20px;
    }
    
    .pricing-notes {
        padding: 24px;
    }
    
    /* About section mobile styles */
    .journey-section,
    .philosophy-section,
    .certifications-section,
    .beyond-studio-section,
    .about-cta,
    .achievement-stats {
        padding: 24px;
    }
    
    .journey-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .journey-text h3,
    .philosophy-text h3,
    .beyond-text h3 {
        font-size: 24px;
    }
    
    .principles-section h3,
    .certifications-section h3,
    .about-cta h3 {
        font-size: 24px;
    }
    
    .stat-number-large {
        font-size: 40px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-header .section-title {
        font-size: 28px;
    }
}