/* ========== YOGA WEBSITE — CALM THEME ========== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --primary: #a8d5ba;
  --primary-dark: #7db89a;
  --secondary: #d4a5a5;
  --accent: #e8c9a0;
  --bg-light: #f9f6f2;
  --bg-cream: #faf8f5;
  --text-dark: #3d3d3d;
  --text-muted: #7a7a7a;
  --text-light: #b0b0b0;
  --white: #ffffff;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.1);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

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

/* ========== PRELOADER ========== */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-lotus {
  width: 60px; height: 60px;
  border: 3px solid var(--primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== FLOATING PARTICLES ========== */
.particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.15;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(249, 246, 242, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  padding: 0.8rem 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600; color: var(--text-dark);
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo span { color: var(--primary-dark); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted);
  position: relative; padding: 0.3rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--primary-dark);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--text-dark); }
.nav-cta {
  background: var(--primary) !important; color: var(--white) !important;
  padding: 0.6rem 1.5rem !important; border-radius: 50px;
  font-size: 0.8rem !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--text-dark); transition: var(--transition); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0eb 50%, var(--bg-cream) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; padding-top: 5rem;
}
.hero-text { animation: slideInLeft 1s ease-out; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(168, 213, 186, 0.2); border: 1px solid rgba(168, 213, 186, 0.3);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary-dark);
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary-dark); animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title { margin-bottom: 1.5rem; color: var(--text-dark); }
.hero-title em {
  font-style: italic; color: var(--primary-dark);
  position: relative;
}
.hero-title em::after {
  content: ''; position: absolute; bottom: 2px; left: 0;
  width: 100%; height: 8px; background: rgba(168, 213, 186, 0.3);
  z-index: -1;
}
.hero-subtitle {
  font-size: 1.05rem; color: var(--text-muted);
  margin-bottom: 2.5rem; max-width: 480px; line-height: 1.9;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary); color: var(--white);
  padding: 0.9rem 2.5rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; background: var(--primary-dark);
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-primary:hover::before { width: 300px; height: 300px; }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  background: transparent; color: var(--text-dark);
  padding: 0.9rem 2.5rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; border: 1.5px solid var(--primary);
  cursor: pointer; transition: var(--transition);
}
.btn-secondary:hover { background: var(--primary); color: var(--white); }

.hero-image { animation: slideInRight 1s ease-out; position: relative; }
.hero-img-wrapper {
  position: relative; border-radius: 200px 200px 30px 30px;
  overflow: hidden; box-shadow: var(--shadow-hover);
}
.hero-img-wrapper img {
  width: 100%; height: 550px; object-fit: cover;
  display: block;
}
.hero-img-wrapper::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(168,213,186,0.15) 0%, transparent 50%);
}
.hero-float-card {
  position: absolute; background: var(--white);
  padding: 1rem 1.5rem; border-radius: 16px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.8rem;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: -20px; left: -30px; }
.hero-float-card.card-2 { top: 40px; right: -30px; animation-delay: 2s; }
.hero-float-card .card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(168,213,186,0.15); display: flex;
  align-items: center; justify-content: center; font-size: 1.2rem;
}
.hero-float-card .card-text { font-size: 0.8rem; }
.hero-float-card .card-text strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.hero-float-card .card-text span { color: var(--text-muted); font-size: 0.75rem; }

@keyframes slideInLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ========== SECTION GENERAL ========== */
section { padding: 6rem 0; position: relative; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--primary-dark);
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc { max-width: 600px; margin: 0 auto; color: var(--text-muted); font-size: 0.95rem; }

/* ========== ABOUT ========== */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-image { position: relative; }
.about-img-main {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 500px; object-fit: cover; display: block; }
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px; border-radius: 20px;
  overflow: hidden; border: 5px solid var(--white); box-shadow: var(--shadow);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-badge { text-align: left; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.2rem; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(168,213,186,0.2);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: var(--primary-dark); font-weight: 600;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ========== CLASSES ========== */
.classes { background: var(--bg-light); }
.classes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.class-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  position: relative;
}
.class-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.class-card-img { height: 250px; overflow: hidden; position: relative; }
.class-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.class-card:hover .class-card-img img { transform: scale(1.08); }
.class-card-img .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
}
.class-card-body { padding: 1.8rem; }
.class-card-body h3 { margin-bottom: 0.5rem; }
.class-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.class-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px solid rgba(168,213,186,0.2);
}
.class-meta span { font-size: 0.8rem; color: var(--text-muted); }
.class-meta .price { color: var(--primary-dark); font-weight: 600; }

/* ========== BENEFITS ========== */
.benefits { background: linear-gradient(135deg, #e8f0eb 0%, var(--bg-cream) 100%); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.benefit-card {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--white); border-radius: 20px;
  box-shadow: var(--shadow); transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-5px); }
.benefit-icon {
  width: 70px; height: 70px; margin: 0 auto 1.5rem;
  background: rgba(168,213,186,0.15); border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; transition: var(--transition);
}
.benefit-card:hover .benefit-icon { background: var(--primary); }
.benefit-card:hover .benefit-icon span { filter: brightness(10); }
.benefit-card h4 { margin-bottom: 0.8rem; font-size: 1.1rem; }
.benefit-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--white); overflow: hidden; }
.testimonial-slider { position: relative; max-width: 800px; margin: 0 auto; }
.testimonial-card {
  text-align: center; padding: 3rem 2rem;
  display: none;
}
.testimonial-card.active { display: block; animation: fadeIn 0.6s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-style: italic; line-height: 1.8; color: var(--text-dark);
  margin-bottom: 2rem; position: relative;
}
.testimonial-quote::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--primary); opacity: 0.3;
  position: absolute; top: -2rem; left: -0.5rem; line-height: 1;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial-avatar {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--primary);
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); opacity: 0.3; cursor: pointer;
  transition: var(--transition); border: none;
}
.slider-dot.active { opacity: 1; width: 30px; border-radius: 5px; }

/* ========== BLOG PREVIEW ========== */
.blog-section { background: var(--bg-light); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--primary-dark);
  background: rgba(168,213,186,0.15); padding: 0.3rem 0.8rem;
  border-radius: 50px; margin-bottom: 0.8rem;
}
.blog-card-body h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.blog-card-body p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.blog-link {
  font-size: 0.8rem; font-weight: 600; color: var(--primary-dark);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.blog-link:hover { gap: 0.6rem; }

/* ========== JOIN / CTA ========== */
.join-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #5a9e7e 50%, var(--primary) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.join-section::before {
  content: '🧘'; position: absolute; font-size: 20rem; opacity: 0.05;
  top: -5rem; right: -5rem;
}
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.join-text h2 { margin-bottom: 1rem; color: var(--white); }
.join-text p { opacity: 0.9; margin-bottom: 1rem; }
.join-features { margin: 1.5rem 0; }
.join-features li {
  padding: 0.3rem 0; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem;
}
.join-features li::before { content: '✓'; font-weight: 700; }

.join-form {
  background: var(--white); padding: 2.5rem; border-radius: 20px;
  box-shadow: var(--shadow-hover); color: var(--text-dark);
}
.join-form h3 { text-align: center; margin-bottom: 1.5rem; color: var(--text-dark); }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 0.4rem; color: var(--text-dark);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid #e0e0e0;
  border-radius: 10px; font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem; transition: var(--transition); background: var(--bg-light);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(168,213,186,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; padding: 0.9rem; background: var(--primary);
  color: var(--white); border: none; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
}
.btn-submit:hover { background: var(--primary-dark); }

/* ========== GALLERY ========== */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item {
  border-radius: 15px; overflow: hidden; position: relative;
  height: 250px; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(168,213,186,0); transition: var(--transition);
}
.gallery-item:hover::after { background: rgba(168,213,186,0.2); }

/* ========== FOOTER ========== */
.footer { background: #2a2a2a; color: #ccc; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; opacity: 0.7; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1.2rem; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { font-size: 0.85rem; opacity: 0.7; }
.footer ul a:hover { opacity: 1; color: var(--primary); }
.footer-bottom {
  margin-top: 3rem; padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; opacity: 0.5;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }

/* ========== BLOG PAGE ========== */
.blog-page { padding: 8rem 0 4rem; background: var(--bg-light); }
.blog-page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.blog-post-full {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow);
}
.blog-post-full .blog-hero-img { height: 400px; overflow: hidden; }
.blog-post-full .blog-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-full .blog-content { padding: 3rem; }
.blog-post-full .blog-content h2 { font-size: 2rem; margin-bottom: 1rem; }
.blog-post-full .blog-content .blog-meta {
  display: flex; gap: 1.5rem; font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #eee;
}
.blog-post-full .blog-content p { color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.9; }
.blog-post-full .blog-content h3 { margin: 2rem 0 1rem; }
.blog-post-full .blog-content blockquote {
  border-left: 3px solid var(--primary); padding-left: 1.5rem;
  margin: 1.5rem 0; font-style: italic; color: var(--text-muted);
}
.sidebar .widget {
  background: var(--white); border-radius: 15px; padding: 1.5rem;
  box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.sidebar .widget h4 { margin-bottom: 1rem; font-size: 1.1rem; }
.sidebar .widget ul li {
  padding: 0.5rem 0; border-bottom: 1px solid #f0f0f0;
  font-size: 0.85rem; color: var(--text-muted);
}
.sidebar .widget ul li:last-child { border: none; }
.sidebar .widget ul li a:hover { color: var(--primary-dark); }

/* ========== LEGAL PAGES ========== */
.legal-page { padding: 8rem 0 4rem; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { margin-bottom: 1rem; }
.legal-page .updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 3rem; }
.legal-page h2 { font-size: 1.4rem; margin: 2rem 0 1rem; }
.legal-page p { color: var(--text-muted); margin-bottom: 1rem; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page ul li { list-style: disc; color: var(--text-muted); margin-bottom: 0.3rem; }

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-buttons { justify-content: center; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .about-grid, .join-grid { grid-template-columns: 1fr; }
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .blog-page-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-light); flex-direction: column; justify-content: center;
    align-items: center; gap: 2rem; z-index: 999; }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero-img-wrapper { border-radius: 100px 100px 20px 20px; }
  .hero-img-wrapper img { height: 400px; }
  .hero-float-card { display: none; }
  .classes-grid, .benefits-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .about-img-accent { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { height: 180px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
