/* ===== BASE STYLES ===== */
:root {
  --primary-color: #83AFA8;
  --primary-light: #A6C9C4;
  --primary-dark: #5D837E;
  --secondary-color: #D9BC8C;
  --secondary-light: #EAD6B9;
  --secondary-dark: #B79761;
  --text-dark: #2D3436;
  --text-medium: #636E72;
  --text-light: #B2BEC3;
  --background-light: #F5F6F7;
  --background-dark: #333B3F;
  --white: #FFFFFF;
  --black: #000000;
  --gray-100: #F7FAFC;
  --gray-200: #EDF2F7;
  --gray-300: #E2E8F0;
  --gray-400: #CBD5E0;
  --gray-500: #A0AEC0;
  --gray-600: #718096;
  --gray-700: #4A5568;
  --gray-800: #2D3748;
  --gray-900: #1A202C;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-slow: 0.5s all ease;
  --transition-medium: 0.3s all ease;
  --transition-fast: 0.15s all ease;
  --border-radius-sm: 0.125rem;
  --border-radius-md: 0.25rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 1rem;
  --container-width: 1200px;
  --container-padding: 1.5rem;
  --section-spacing: 6rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.75rem;
  position: relative;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

h1 span, h2 span, h3 span {
  color: var(--primary-color);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

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

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

section {
  padding: var(--section-spacing) 0;
  position: relative;
}

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

.section-heading.light {
  color: var(--white);
}

.section-heading.light h2 span {
  color: var(--secondary-light);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-md);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  cursor: pointer;
  text-align: center;
  border: none;
}

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

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

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

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.logo a span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  position: relative;
}

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

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-links a.cta-button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-md);
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  background-color: var(--gray-100);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
  margin-bottom: 2rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.9) 70%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-dark);
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}

.mouse::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-dark);
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

.scroll-indicator p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

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

/* ===== PRACTICES SECTION ===== */
.practices {
  background-color: var(--white);
}

.practices-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.practice-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-medium);
}

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

.practice-card:hover::before {
  opacity: 0.05;
}

.practice-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background-color: var(--gray-100);
  color: var(--primary-color);
  transition: var(--transition-medium);
}

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

.practice-card h3 {
  margin-bottom: 1rem;
  transition: var(--transition-medium);
}

.practice-card p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  transition: var(--transition-medium);
}

.practice-link {
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  position: relative;
}

.practice-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

.practice-link:hover::after {
  height: 2px;
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  align-items: center;
}

.philosophy-content h2 {
  margin-bottom: 2rem;
}

.philosophy-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.philosophy-content blockquote {
  margin: 3rem 0;
  padding-left: 2rem;
  border-left: 3px solid var(--primary-color);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--primary-dark);
  font-style: italic;
}

.philosophy-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-medium);
  font-style: normal;
}

.philosophy-image {
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.philosophy-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0));
  z-index: 2;
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: var(--transition-slow);
}

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

/* ===== SCHEDULE SECTION ===== */
.schedule {
  background-color: var(--gray-100);
}

.schedule-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.schedule-day {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.schedule-day h3 {
  color: var(--primary-color);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-300);
  font-weight: 600;
}

.schedule-class {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.schedule-class:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.schedule-class.special-class {
  background-color: var(--gray-100);
  padding: 1rem;
  border-radius: var(--border-radius-md);
  margin-top: 1.5rem;
}

.schedule-class .time {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  margin-bottom: 0.25rem;
}

.schedule-class .class-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.schedule-class .instructor {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-color);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content span {
  color: var(--secondary-light);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-content .btn {
  background-color: var(--white);
  color: var(--primary-color);
}

.cta-content .btn:hover {
  background-color: var(--secondary-light);
  color: var(--text-dark);
}

/* ===== INSTRUCTORS SECTION ===== */
.instructors {
  background-color: var(--white);
}

.instructors-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.instructor-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

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

.instructor-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.instructor-info {
  padding: 2rem;
}

.instructor-info h3 {
  margin-bottom: 0.5rem;
}

.instructor-title {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.instructor-info p:last-child {
  margin-bottom: 0;
  color: var(--text-medium);
}

/* ===== PRICING SECTION ===== */
.pricing {
  background-color: var(--gray-100);
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

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

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

.pricing-header {
  background-color: var(--white);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.pricing-header h3 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.price {
  margin-bottom: 0.5rem;
}

.price .amount {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-color);
}

.price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  color: var(--text-medium);
  margin-left: 0.25rem;
}

.pricing-header p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.pricing-features {
  padding: 2rem;
  flex-grow: 1;
}

.pricing-features ul {
  list-style-type: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-medium);
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: var(--primary-light);
  border-radius: 50%;
}

.pricing-features li::after {
  content: '';
  position: absolute;
  top: 0.9rem;
  left: 0.4rem;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.pricing-card .btn {
  margin: 0 2rem 2rem 2rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background-color: var(--primary-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition-medium);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  background-color: rgba(255, 255, 255, 0.15);
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  opacity: 0.2;
  color: var(--white);
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  color: var(--white);
}

.testimonial-author p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  margin-right: 1.25rem;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--gray-100);
  flex-shrink: 0;
}

.info-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.info-item p {
  color: var(--text-medium);
  margin-bottom: 0;
  line-height: 1.5;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius-md);
  background-color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(131, 175, 168, 0.2);
}

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

.checkbox-group input {
  width: auto;
  margin-right: 0.75rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 300;
  line-height: 1.4;
}

.contact-form .btn {
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
}

.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--background-dark);
  color: var(--white);
  padding: 3rem 0;
}

.footer-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-logo a span {
  color: var(--primary-light);
}

.footer-links {
  display: flex;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--gray-400);
  margin: 0 1rem;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-info p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

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

/* ===== RESPONSIVE DESIGNS ===== */
@media screen and (max-width: 1024px) {
  :root {
    --section-spacing: 5rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .philosophy {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .philosophy-image {
    height: 500px;
    order: -1;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    order: -1;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --section-spacing: 4rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .main-nav {
    padding: 0 1.5rem;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
    z-index: 999;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-links li {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
  
  .nav-links li:last-child {
    margin-bottom: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .hero {
    min-height: 600px;
    padding: 0 1.5rem;
  }
  
  .hero-content {
    margin-bottom: 3rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section-heading {
    margin-bottom: 3rem;
  }
  
  .practices-container,
  .instructors-container,
  .pricing-container,
  .testimonials-container {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .philosophy-content blockquote {
    font-size: 1.25rem;
    padding-left: 1.5rem;
  }
  
  .schedule-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-links a {
    margin: 0.5rem 0;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --section-spacing: 3rem;
    --container-padding: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .main-nav {
    height: 70px;
    padding: 0 1rem;
  }
  
  .nav-links {
    top: 70px;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .practice-card,
  .schedule-day,
  .testimonial,
  .contact-form {
    padding: 1.5rem;
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-form .btn {
    font-size: 0.9rem;
  }
}
