/* 
 * ZenBegin Yoga Studio - Stylesheet
 * Modern, calming design for beginners yoga studio
 */

/* ====== Base Variables ====== */
:root {
    /* Colors */
    --primary: #657c71;
    --primary-light: #8aa99c;
    --primary-dark: #435c51;
    --secondary: #e2c0a2;
    --secondary-light: #f4dac4;
    --secondary-dark: #c4a080;
    --accent: #a06b4e;
    --dark: #2d3a35;
    --light: #f8f5f2;
    --text: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --success: #6b9080;
    --warning: #d9ae79;
    --error: #c56b5e;
    --white: #ffffff;
    --black: #000000;
    --grey-100: #f5f5f5;
    --grey-200: #eeeeee;
    --grey-300: #e0e0e0;
    --grey-400: #bdbdbd;
    --grey-500: #9e9e9e;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Sizing */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-circle: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.1);
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

h1 {
    font-size: 4.8rem;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: 3.6rem;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition-medium);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: 1.6rem;
}

/* ====== Container ====== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.page-container {
    position: relative;
    overflow: hidden;
}

/* ====== Typography Helpers ====== */
.text-center, .centered {
    text-align: center;
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition-medium);
}

.text-link i {
    margin-left: var(--space-xs);
    transition: var(--transition-medium);
}

.text-link:hover {
    color: var(--primary-dark);
}

.text-link:hover i {
    transform: translateX(4px);
}

/* ====== Buttons ====== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 500px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.4rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: rgba(101, 124, 113, 0.1);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.8rem 1.6rem;
    font-size: 1.2rem;
}

/* ====== Header & Navigation ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    background-color: rgba(248, 245, 242, 0.95);
    transition: var(--transition-medium);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header.sticky {
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    color: var(--dark);
}

.logo-circle {
    width: 4rem;
    height: 4rem;
    border-radius: var(--border-radius-circle);
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-sm);
}

.logo-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin-left: var(--space-md);
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-medium);
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-button a {
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 500px;
}

.nav-button a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.nav-button a::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition-medium);
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 11px;
}

.nav-toggle span:nth-child(3) {
    bottom: 0;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ====== Section Styles ====== */
.section {
    padding: var(--space-xl) 0;
}

.section-title {
    position: relative;
    margin-bottom: var(--space-lg);
    color: var(--dark);
}

.section-title.centered {
    text-align: center;
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    font-weight: 400;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    align-items: center;
}

.section-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decoration {
    position: absolute;
    border: 2px solid var(--primary-light);
    z-index: -1;
}

.decoration.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: -30px;
    left: -30px;
}

.decoration.square {
    width: 120px;
    height: 120px;
    right: -40px;
    bottom: -40px;
    border-color: var(--secondary);
}

.section-content h2 {
    position: relative;
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-md);
}

.section-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--primary);
}

/* ====== Hero Section ====== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1588286840104-8957b019727f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 58, 53, 0.8), rgba(45, 58, 53, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hero h1 {
    font-size: 5.6rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--white);
    line-height: 1.2;
}

.hero p {
    font-size: 2.2rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

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

.hero-scroll {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition-medium);
}

.hero-scroll a:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.hero-scroll span {
    margin-bottom: var(--space-xs);
    font-size: 1.4rem;
}

.hero-scroll i {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-mandala {
    position: absolute;
    bottom: -50px;
    right: -50px;
    opacity: 0.1;
    z-index: 1;
    transform: scale(3);
}

/* ====== About Section ====== */
.about-section {
    background-color: var(--white);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    border-radius: var(--border-radius-circle);
    background-color: rgba(101, 124, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-size: 2.4rem;
    transition: var(--transition-medium);
}

.feature:hover .feature-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
}

.feature-text p {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ====== Philosophy Section ====== */
.philosophy-section {
    position: relative;
    background-color: var(--grey-100);
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.5;
}

.philosophy-content {
    position: relative;
    z-index: 1;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.philosophy-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

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

.card-icon {
    width: 7rem;
    height: 7rem;
    border-radius: var(--border-radius-circle);
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(101, 124, 113, 0.1);
    color: var(--primary);
    font-size: 3rem;
    transition: var(--transition-medium);
}

.philosophy-card:hover .card-icon {
    background-color: var(--primary);
    color: var(--white);
}

.philosophy-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 2rem;
}

.philosophy-card p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0;
}

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

.philosophy-quote blockquote {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-style: italic;
    color: var(--primary-dark);
    position: relative;
    padding: 0 var(--space-md);
    margin-bottom: var(--space-md);
}

.philosophy-quote blockquote::before,
.philosophy-quote blockquote::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 6rem;
    position: absolute;
    color: var(--primary);
    opacity: 0.2;
}

.philosophy-quote blockquote::before {
    top: -2rem;
    left: 0;
}

.philosophy-quote blockquote::after {
    bottom: -4rem;
    right: 0;
}

.philosophy-quote cite {
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
}

/* ====== Yoga Styles Section ====== */
.yoga-styles-section {
    background-color: var(--white);
}

.styles-container {
    margin-top: var(--space-lg);
}

.styles-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background-color: var(--grey-200);
    border-radius: 500px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition-medium);
}

.tab-btn:hover {
    background-color: var(--grey-300);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.styles-content {
    position: relative;
}

.style-tab {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.style-tab.active {
    display: grid;
    opacity: 1;
}

.style-info h3 {
    position: relative;
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-md);
}

.style-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.style-description {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.style-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.benefit {
    display: flex;
    align-items: center;
}

.benefit i {
    color: var(--success);
    margin-right: var(--space-xs);
    font-size: 1.8rem;
}

.style-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-md);
}

.style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.style-image:hover img {
    transform: scale(1.05);
}

/* ====== Journey Section ====== */
.journey-section {
    background-color: var(--grey-100);
    position: relative;
    overflow: hidden;
}

.journey-path {
    position: relative;
    padding: var(--space-xl) 0;
}

.journey-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-light);
    z-index: 1;
}

.journey-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: var(--space-xl);
    z-index: 2;
}

.journey-step:nth-child(even) {
    direction: rtl;
}

.journey-step:nth-child(even) .step-content {
    direction: ltr;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 5rem;
    border-radius: var(--border-radius-circle);
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.step-content {
    padding: var(--space-lg);
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
}

.journey-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.step-content p {
    margin-bottom: var(--space-md);
}

.step-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.journey-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.journey-cta p {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
}

/* ====== Breathing Animation Section ====== */
.breath-section {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: var(--space-xl) 0;
}

.breath-section h2 {
    color: var(--white);
}

.breath-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: var(--space-lg) 0;
}

.breath-circle {
    width: 20rem;
    height: 20rem;
    border-radius: var(--border-radius-circle);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: var(--space-lg);
    transition: transform 4s ease, box-shadow 4s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.circle-inner {
    width: 70%;
    height: 70%;
    border-radius: var(--border-radius-circle);
    background-color: rgba(255, 255, 255, 0.2);
}

.breath-text {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breath-instructions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.instruction {
    text-align: center;
    opacity: 0.7;
    transition: var(--transition-medium);
}

.instruction.active {
    opacity: 1;
    transform: scale(1.1);
}

.count {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    border-radius: var(--border-radius-circle);
    background-color: rgba(255, 255, 255, 0.2);
    line-height: 3rem;
    margin-left: var(--space-xs);
}

.breath-quote {
    font-style: italic;
    font-size: 2rem;
    margin-top: var(--space-lg);
    font-family: var(--font-heading);
    opacity: 0.9;
}

/* ====== Classes Schedule Section ====== */
.classes-section {
    background-color: var(--white);
}

.schedule-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.6rem;
    background-color: var(--grey-200);
    border-radius: 500px;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--text);
    transition: var(--transition-medium);
}

.filter-btn:hover {
    background-color: var(--grey-300);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.schedule-container {
    overflow-x: auto;
    margin-bottom: var(--space-md);
}

.schedule-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-sm);
    min-width: 1000px;
}

.day-column {
    background-color: var(--grey-100);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.day-header {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: var(--space-sm);
    font-weight: 600;
}

.day-classes {
    padding: var(--space-sm);
}

.class-card {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

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

.class-card.special {
    background-color: rgba(101, 124, 113, 0.1);
    border-left: 3px solid var(--primary);
}

.class-time {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xs);
    font-size: 1.4rem;
}

.class-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
}

.class-info p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: var(--space-xs);
}

.class-level {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 1.2rem;
}

.level-indicator {
    padding: 0.2rem 0.8rem;
    border-radius: 500px;
    font-weight: 500;
}

.level-indicator.beginner {
    background-color: rgba(107, 144, 128, 0.2);
    color: var(--success);
}

.level-indicator.all-levels {
    background-color: rgba(217, 174, 121, 0.2);
    color: var(--warning);
}

.schedule-note {
    text-align: center;
    margin-bottom: var(--space-md);
    font-style: italic;
    color: var(--text-light);
}

.schedule-note i {
    color: var(--primary);
    margin-right: var(--space-xs);
}

.schedule-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

/* ====== Team Section ====== */
.teachers-section {
    background-color: var(--grey-100);
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--space-lg);
}

.teacher-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 180px 1fr;
    transition: var(--transition-medium);
}

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

.teacher-image {
    height: 100%;
    overflow: hidden;
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.teacher-card:hover .teacher-image img {
    transform: scale(1.1);
}

.teacher-info {
    padding: var(--space-md);
}

.teacher-info h3 {
    margin-bottom: var(--space-xs);
}

.teacher-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.teacher-bio {
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.teacher-specialties, 
.teacher-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.teacher-specialties span, 
.teacher-certifications span {
    background-color: rgba(101, 124, 113, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 500px;
    font-size: 1.2rem;
    font-weight: 500;
}

.teacher-certifications span {
    background-color: rgba(226, 192, 162, 0.2);
    color: var(--accent);
}

/* ====== Pricing Section ====== */
.pricing-section {
    background-color: var(--white);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.toggle-option {
    padding: 0 var(--space-md);
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition-medium);
}

.toggle-option.active {
    color: var(--primary);
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--grey-300);
    transition: var(--transition-medium);
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition-medium);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.pricing-group {
    display: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.pricing-group.active {
    display: block;
    opacity: 1;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    position: relative;
    border: 1px solid var(--grey-200);
}

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

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-ribbon {
    position: absolute;
    top: 2rem;
    right: -4rem;
    background-color: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
    padding: 0.5rem 4rem;
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.pricing-header {
    text-align: center;
    padding: var(--space-md);
    border-bottom: 1px solid var(--grey-200);
}

.pricing-header h3 {
    margin-bottom: var(--space-sm);
    font-size: 2.2rem;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-heading);
}

.price-note {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-top: var(--space-xs);
}

.pricing-features {
    padding: var(--space-md);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-md);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
}

.pricing-features li i {
    color: var(--success);
    margin-right: var(--space-sm);
    margin-top: 0.4rem;
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background-color: var(--grey-100);
    border-radius: var(--border-radius-md);
    color: var(--text-light);
    font-style: italic;
}

.pricing-note i {
    color: var(--primary);
    margin-right: var(--space-xs);
}

/* ====== Testimonials ====== */
.testimonials-section {
    background-color: var(--grey-100);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slides {
    position: relative;
    min-height: 350px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.1;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

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

.author-image {
    width: 6rem;
    height: 6rem;
    border-radius: var(--border-radius-circle);
    overflow: hidden;
    margin-right: var(--space-md);
}

.author-info h3 {
    margin-bottom: 0.2rem;
    font-size: 1.8rem;
}

.author-info p {
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: normal;
    margin: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-md);
    gap: var(--space-md);
}

.slide-arrow {
    width: 4rem;
    height: 4rem;
    border-radius: var(--border-radius-circle);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    transition: var(--transition-medium);
}

.slide-arrow:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.slide-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: var(--border-radius-circle);
    background-color: var(--grey-300);
    cursor: pointer;
    transition: var(--transition-medium);
}

.dot.active {
    background-color: var(--primary);
}

/* ====== FAQ Section ====== */
.faq-section {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    margin-bottom: var(--space-lg);
}

.faq-item {
    border-bottom: 1px solid var(--grey-200);
    margin-bottom: var(--space-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    cursor: pointer;
    transition: var(--transition-medium);
}

.faq-question h3 {
    font-size: 1.8rem;
    margin: 0;
    transition: var(--transition-medium);
}

.faq-icon {
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition-medium);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--space-md);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question h3 {
    color: var(--primary);
}

.faq-cta {
    text-align: center;
    padding: var(--space-md);
    background-color: var(--grey-100);
    border-radius: var(--border-radius-md);
}

.faq-cta p {
    margin-bottom: var(--space-md);
}

/* ====== CTA Section ====== */
.cta-section {
    padding: var(--space-lg) 0;
    background-color: var(--grey-100);
}

.cta-box {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0) 10px,
        rgba(255, 255, 255, 0) 20px
    );
    animation: moveBg 30s linear infinite;
    opacity: 0.5;
}

@keyframes moveBg {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50%, 50%);
    }
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
    position: relative;
}

.cta-box p {
    margin-bottom: var(--space-lg);
    font-size: 1.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-box .btn-primary {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
    position: relative;
}

.cta-box .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

/* ====== Contact Section ====== */
.contact-section {
    background-color: var(--grey-100);
}

.contact-info {
    padding-right: var(--space-lg);
}

.info-items {
    margin-bottom: var(--space-lg);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.info-icon {
    width: 4.5rem;
    height: 4.5rem;
    background-color: rgba(101, 124, 113, 0.1);
    color: var(--primary);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    font-size: 1.8rem;
}

.info-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.opening-hours {
    margin-bottom: var(--space-lg);
}

.opening-hours h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.8rem;
}

.hours-list {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: var(--space-xs);
    margin-bottom: var(--space-xs);
    border-bottom: 1px dashed var(--grey-300);
}

.hours-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.day {
    font-weight: 600;
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-form {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--grey-300);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-medium);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(101, 124, 113, 0.1);
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    width: auto;
    margin-right: var(--space-sm);
}

.checkbox label {
    margin-bottom: 0;
}

/* ====== Footer ====== */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-md);
}

.footer-logo a {
    color: var(--white);
}

.footer-logo p {
    margin-top: var(--space-sm);
    opacity: 0.7;
}

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

.footer-column h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-xs);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
}

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

.footer-column ul li {
    margin-bottom: var(--space-xs);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-medium);
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: var(--space-xs);
}

.footer-bottom {
    text-align: center;
    font-size: 1.4rem;
    opacity: 0.5;
}

.footer-bottom p:first-child {
    margin-bottom: var(--space-xs);
}

/* ====== Responsive Styles ====== */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
    
    .teachers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .style-tab.active {
        grid-template-columns: 1fr;
    }
    
    .style-image {
        height: 300px;
    }
    
    .journey-step {
        grid-template-columns: 1fr;
    }
    
    .journey-step:nth-child(even) {
        direction: ltr;
    }
    
    .step-number {
        position: relative;
        margin-bottom: var(--space-md);
        left: auto;
        transform: none;
    }
    
    .journey-line {
        left: 2.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-medium);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: var(--space-sm) 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .philosophy-cards {
        grid-template-columns: 1fr;
    }
    
    .style-benefits {
        grid-template-columns: 1fr;
    }
    
    .teacher-card {
        grid-template-columns: 1fr;
    }
    
    .teacher-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }
    
    .philosophy-quote blockquote {
        font-size: 2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto var(--space-sm);
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}
