/* ===== FONTS & RESET ===== */
@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;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

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

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --sage: #6B7F5E;
  --sage-dark: #566A4B;
  --sage-light: #E8EDE4;
  --sage-lighter: #F2F5F0;
  --sand: #C4956A;
  --sand-dark: #A87D56;
  --sand-light: #F5EDE4;
  --lavender: #9B8EA0;
  --charcoal: #2D3436;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --gold: #B8965A;
  --gray: #7A7A7A;
  --light-gray: #F0EDE8;
  --success: #7BAF6B;

  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===== UTILITY ===== */
.section-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--sage);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 127, 94, 0.3);
}

.btn-sand {
  background: var(--sand);
  color: var(--white);
  border-color: var(--sand);
}

.btn-sand:hover {
  background: var(--sand-dark);
  border-color: var(--sand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 149, 106, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-outline-sage {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}

.btn-outline-sage:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

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

.logo-icon {
  font-size: 1.6rem;
  color: var(--sage);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
  color: var(--gray);
}

.nav-links a:hover {
  color: var(--sage);
  background: var(--sage-light);
}

.nav-links a.active {
  background: var(--sage);
  color: var(--white);
}

.nav-links .btn-book {
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #1a2420 0%, #243028 30%, #2d3d32 60%, #3d5040 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-circle-1 {
  width: 500px;
  height: 500px;
  animation: spin 80s linear infinite;
}

.hero-circle-2 {
  width: 350px;
  height: 350px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.04);
  animation: spin 60s linear infinite reverse;
}

.hero-circle-3 {
  width: 200px;
  height: 200px;
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 127, 94, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-lotus {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  display: block;
  animation: breatheLotus 6s ease-in-out infinite;
}

@keyframes breatheLotus {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  opacity: 0.85;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  opacity: 0.65;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 24px;
  background: var(--white);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.teacher-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--sage);
  font-weight: 500;
  font-style: italic;
  margin-top: 20px;
}

.about-photo {
  flex-shrink: 0;
}

.photo-placeholder {
  width: 360px;
  height: 440px;
  border-radius: 80px 24px 80px 24px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sand-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.photo-placeholder i {
  font-size: 3.5rem;
  color: var(--sage);
  opacity: 0.35;
}

.photo-placeholder span {
  font-size: 0.85rem;
  color: var(--gray);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== CLASSES SECTION ===== */
.classes-section {
  padding: 100px 24px;
  background: var(--cream);
  text-align: center;
}

.classes-inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.class-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.class-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

a.class-card {
  text-decoration: none;
  color: inherit;
}

.class-day {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--sage);
  margin-bottom: 8px;
}

.class-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.class-time small {
  font-size: 1.4rem;
  font-weight: 400;
}

.class-divider {
  width: 40px;
  height: 1px;
  background: var(--sand);
  margin: 20px 0;
  opacity: 0.5;
}

.class-venue {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1rem;
  margin-bottom: 6px;
}

.class-location {
  font-size: 0.85rem;
  color: var(--gray);
}

.class-location i {
  color: var(--sand);
  margin-right: 4px;
  transition: var(--transition);
}

.class-location.has-map {
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
}

.class-location.has-map:hover {
  color: var(--sage);
  background: var(--sage-light);
}

.class-location.has-map:hover i {
  color: var(--sage);
  transform: scale(1.2);
}

/* Map Popup */
.map-popup {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.map-popup.open {
  opacity: 1;
  visibility: visible;
}

.map-popup-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  position: relative;
}

.map-popup.open .map-popup-content {
  transform: scale(1);
}

.map-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: var(--transition);
}

.map-popup-close:hover {
  color: var(--charcoal);
  background: var(--light-gray);
}

.map-popup-icon {
  font-size: 2.5rem;
  color: var(--sand);
  margin-bottom: 16px;
  display: block;
}

.map-popup-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.classes-description {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 680px;
  margin: 50px auto 0;
  line-height: 1.8;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.classes-cta {
  margin-top: 40px;
}

/* ===== BOOK SECTION ===== */
.book-section {
  padding: 100px 24px;
  background: var(--white);
  text-align: center;
}

.book-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

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

.book-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.book-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.book-buttons-secondary {
  margin-bottom: 24px;
}

/* ===== REGISTER FORM ===== */
.register-interest-wrapper {
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.register-form-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
  opacity: 0;
  padding: 0 20px;
}

.register-form-container.open {
  max-height: 1200px;
  opacity: 1;
  padding: 30px 20px;
}

.register-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 2px solid var(--sage-light);
  text-align: left;
}

.register-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 28px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--charcoal);
}

.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--charcoal);
  resize: vertical;
  min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 127, 94, 0.12);
}

.class-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.checkbox-label:hover {
  border-color: var(--sage);
  background: var(--sage-lighter);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--sage);
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--charcoal);
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.form-submit-btn:hover {
  background: var(--sage-dark);
  transform: scale(1.02);
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}

.form-success i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 12px;
}

.form-success h3 {
  color: var(--sage);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage-lighter) 100%);
}

.reviews-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.reviews-inner .section-title {
  display: block;
}

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

.reviews-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
  perspective: 1000px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--sage);
  text-align: left;
}

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

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.review-author {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.88rem;
}

.review-date {
  color: #aaa;
  font-size: 0.78rem;
  margin-top: 4px;
}

/* Leave a review */
.leave-review-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 2px dashed var(--sage-light);
  max-width: 600px;
  margin: 0 auto;
}

.leave-review-box h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--sage);
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}

.star-rating {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.star-rating i {
  font-size: 1.8rem;
  color: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.star-rating i.active,
.star-rating i:hover {
  color: var(--gold);
  transform: scale(1.15);
}

.leave-review-box textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  resize: vertical;
  min-height: 100px;
  transition: var(--transition);
  margin-bottom: 16px;
  background: var(--cream);
  color: var(--charcoal);
}

.leave-review-box textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 127, 94, 0.12);
}

.leave-review-box input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: var(--transition);
  background: var(--cream);
  color: var(--charcoal);
}

.leave-review-box input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 127, 94, 0.12);
}

.review-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.review-submit-btn:hover {
  background: var(--sage-dark);
  transform: scale(1.02);
}

/* ===== VIDEOS SECTION ===== */
.videos-section {
  padding: 80px 24px;
  background: var(--white);
  text-align: center;
}

.videos-inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

.videos-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  perspective: 1000px;
}

.videos-placeholder {
  grid-column: 1 / -1;
  padding: 60px 20px;
  color: var(--gray);
  text-align: center;
}

.videos-placeholder i {
  font-size: 2.5rem;
  opacity: 0.3;
  margin-bottom: 12px;
  display: block;
}

.videos-placeholder p {
  font-size: 0.9rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.video-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.08);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(107, 127, 94, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(107, 127, 94, 0.4);
}

.play-btn i {
  margin-left: 3px;
}

.video-card:hover .play-btn {
  background: var(--sage);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 6px 30px rgba(107, 127, 94, 0.5);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 24px 30px;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-logo i {
  font-size: 2rem;
  color: var(--sage);
  opacity: 0.8;
}

.footer h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 1rem;
  opacity: 0.5;
  margin-bottom: 40px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-link i {
  font-size: 1.1rem;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.82rem;
  opacity: 0.4;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.open .video-modal-content {
  transform: scale(1);
}

.video-modal-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-modal-close:hover {
  background: var(--sage);
  transform: scale(1.1);
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal.open {
  opacity: 1;
  visibility: visible;
}

.booking-modal-content {
  position: relative;
  width: 90vw;
  max-width: 800px;
  height: 85vh;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.booking-modal.open .booking-modal-content {
  transform: scale(1);
}

.booking-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.booking-modal-toolbar {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 10;
  display: flex;
  gap: 6px;
}

.booking-modal-close,
.booking-modal-newtab {
  background: var(--sage);
  border: none;
  color: white;
  font-size: 0.85rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  text-decoration: none;
}

.booking-modal-close:hover {
  background: var(--sage-dark);
}

.booking-modal-newtab {
  background: var(--sand);
  font-size: 0.75rem;
}

.booking-modal-newtab:hover {
  background: var(--sand-dark);
}

/* ===== IMAGE LIGHTBOX ===== */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}

.image-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  cursor: default;
}

.image-lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ===== ADMIN LOGIN ===== */
.admin-login-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: adminFadeIn 0.2s ease;
}

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

.admin-login-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  width: 340px;
  text-align: center;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  animation: adminPopIn 0.25s ease forwards;
}

@keyframes adminPopIn {
  to { transform: scale(1); }
}

.admin-login-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 20px;
}

.admin-login-box h3 i {
  margin-right: 8px;
}

.admin-login-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  text-align: center;
  transition: border-color 0.2s;
  color: var(--charcoal);
}

.admin-login-input:focus {
  border-color: var(--sage);
  outline: none;
}

.admin-login-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.admin-login-actions button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.admin-login-cancel {
  background: var(--light-gray);
  color: var(--gray);
}

.admin-login-cancel:hover {
  background: #e0ddd8;
}

.admin-login-submit {
  background: var(--sage);
  color: var(--white);
}

.admin-login-submit:hover {
  background: var(--sage-dark);
}

.admin-login-error {
  color: #c0402a;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
  min-height: 1.2em;
}

/* ===== COPY TOAST ===== */
.copy-toast {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(107, 127, 94, 0.3);
  z-index: 9999;
  transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.copy-toast i {
  font-size: 1.1rem;
}

.copy-toast.show {
  bottom: 40px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CAROUSEL TRANSITIONS ===== */
.carousel-fade .video-card,
.carousel-fade .review-card {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.video-card,
.review-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.video-card:nth-child(1) { transition-delay: 0s; }
.video-card:nth-child(2) { transition-delay: 0.08s; }
.video-card:nth-child(3) { transition-delay: 0.16s; }
.video-card:nth-child(4) { transition-delay: 0.24s; }

.review-card:nth-child(1) { transition-delay: 0s; }
.review-card:nth-child(2) { transition-delay: 0.06s; }
.review-card:nth-child(3) { transition-delay: 0.12s; }
.review-card:nth-child(4) { transition-delay: 0.18s; }
.review-card:nth-child(5) { transition-delay: 0.24s; }
.review-card:nth-child(6) { transition-delay: 0.3s; }

/* ===== RESPONSIVE — TABLET (1024px) ===== */
@media (max-width: 1024px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 6px 10px;
    font-size: 0.82rem;
  }


  .about-inner {
    gap: 40px;
  }

  .photo-placeholder {
    width: 280px;
    height: 340px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .classes-grid {
    gap: 16px;
  }
}

/* ===== RESPONSIVE — MOBILE (768px) ===== */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    gap: 6px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
    text-align: center;
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--charcoal);
  }

  .nav-links a:hover {
    background: var(--sage);
    color: var(--white);
  }

  .nav-links a.active {
    background: var(--sage);
    color: var(--white);
  }


  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* Hero */
  .hero-section {
    min-height: 90vh;
    padding: 100px 24px 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-circle-1 { width: 350px; height: 350px; }
  .hero-circle-2 { width: 250px; height: 250px; }
  .hero-circle-3 { width: 150px; height: 150px; }
  .hero-glow { width: 300px; height: 300px; }

  /* About */
  .about-section {
    padding: 60px 24px;
  }

  .about-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

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

  .photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }

  .photo-placeholder i {
    font-size: 2.5rem;
  }

  .photo-placeholder span {
    display: none;
  }

  /* Classes */
  .classes-section {
    padding: 60px 24px;
  }

  .classes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .class-card {
    padding: 30px 24px;
  }

  .classes-description {
    font-size: 1.05rem;
    margin-top: 30px;
  }

  /* Section titles */
  .section-title {
    font-size: 2.2rem;
  }

  /* Book */
  .book-section {
    padding: 60px 24px;
  }

  .book-buttons .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  /* Reviews */
  .reviews-section {
    padding: 60px 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .leave-review-box {
    padding: 28px;
  }

  /* Videos */
  .videos-section {
    padding: 60px 16px;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .play-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  /* Footer */
  .footer {
    padding: 60px 24px 24px;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  /* Register form */
  .register-form {
    padding: 24px;
  }

  /* Booking modal */
  .booking-modal-content {
    width: 100vw;
    height: 100vh;
    max-width: none;
    border-radius: 0;
  }
}

/* ===== RESPONSIVE — SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
  .hero-section {
    min-height: 85vh;
    padding: 90px 16px 50px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-lotus {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-cta .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .hero-circle-1 { width: 250px; height: 250px; }
  .hero-circle-2 { width: 180px; height: 180px; }
  .hero-circle-3 { width: 120px; height: 120px; }
  .hero-glow { width: 200px; height: 200px; }

  .scroll-indicator {
    display: none;
  }

  .about-section {
    padding: 40px 16px;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .classes-section {
    padding: 40px 16px;
  }

  .book-section {
    padding: 40px 16px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .class-time {
    font-size: 2.2rem;
  }

  .classes-description {
    font-size: 1rem;
  }

  .reviews-section {
    padding: 40px 16px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .play-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .register-form {
    padding: 20px 16px;
  }

  .footer {
    padding: 40px 16px 20px;
  }

  .footer h2 {
    font-size: 1.6rem;
  }

  .nav-logo .logo-text {
    font-size: 1.15rem;
  }

  .logo-icon {
    font-size: 1.3rem;
  }
}
