/* ==========================================================================
   1. CSS VARIABLES & BASE STYLES
   ========================================================================== */
:root {
  --primary: #2D7A3A;
  --primary-hover: #23682E;
  --accent: #D4A373;
  --dark: #1F2421;
  --text-muted: #555E58;
  --light-bg: #F4F7F4;
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.98);
  --glass-border: #EAEAEA;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #FFF;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
}

body.menu-open {
  overflow: hidden;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.header {
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 1rem 1.5rem;
}

.logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark) !important;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  display: inline-flex;
  align-items: center;
}

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

.desktop-nav .nav-list {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  gap: 1.8rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.header-right {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}

/* Mobile Drawer & Overlay */
.mobile-toggle,
.mobile-drawer,
.nav-overlay {
  display: none !important;
}

/* ==========================================================================
   3. BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn-primary {
  background: linear-gradient(135deg, #d97706, #f59e0b, #b45309) !important;
  background-size: 200% 200% !important;
  color: var(--white) !important;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease !important;
  display: inline-block;
  white-space: nowrap;
}

.btn-primary:hover {
  background-position: right center !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 58, 0.25);
}

.btn-secondary {
  background: #fff0;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
}

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

.btn-main-cta {
  background: #10b981;
  color: #ffffff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
  transition: all 0.35s ease;
}

.btn-main-cta:hover,
.btn-main-cta:active {
  background: #e67e22 !important;
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.35) !important;
  transform: translateY(-2px);
}

.btn-link-interactive {
  color: #10b981 !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 8px;
}

.btn-link-interactive:hover,
.btn-link-interactive:active {
  color: #e67e22 !important;
  background-color: rgba(230, 126, 34, 0.08);
  transform: translateX(4px);
}

.floating-cta-btn {
  position: fixed;
  left: 20px;
  bottom: 25px;
  z-index: 999;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.floating-cta-btn:hover {
  transform: scale(1.05);
}

a.whatsapp-float {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  width: 55px !important;
  height: 55px !important;
  background-color: #25D366 !important;
  color: #FFFFFF !important;
  border-radius: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
  z-index: 9999 !important;
  text-decoration: none !important;
  transition: transform 0.3s ease !important;
}

a.whatsapp-float:hover {
  transform: scale(1.1) !important;
}

/* ==========================================================================
   4. LAYOUT & SECTIONS GENERAL
   ========================================================================== */
.section {
  padding: 90px 20px;
}

.bg-light {
  background-color: var(--light-bg);
}

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

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  font-weight: 800;
}

.section-title p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
#hero.hero-section,
section#hero.hero-section,
.hero-section {
  background-color: #f7fbf8 !important;
  padding-top: 140px !important;
  padding-bottom: 70px !important;
  width: 100% !important;
  overflow: hidden !important;
  display: block !important;
  min-height: auto !important;
}

#hero .hero-container,
section#hero .hero-container,
.hero-section .hero-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

#hero .hero-content,
section#hero .hero-content,
.hero-section .hero-content {
  flex: 1.2 !important;
  max-width: 550px !important;
  text-align: left !important;
}

#hero .hero-badge,
section#hero .hero-badge,
.hero-section .hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #e8f5e9 !important;
  color: #2d7a3a !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}

#hero .hero-title,
section#hero .hero-title,
.hero-section .hero-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 3.2rem !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
  color: #1a3323 !important;
  margin-bottom: 18px !important;
  text-align: left !important;
}

#hero .hero-title span,
section#hero .hero-title span,
.hero-section .hero-title span {
  color: #2d7a3a !important;
}

#hero .hero-description,
section#hero .hero-description,
.hero-section .hero-description {
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
  color: #55655a !important;
  margin-bottom: 28px !important;
  text-align: left !important;
}

#hero .hero-buttons,
section#hero .hero-buttons,
.hero-section .hero-buttons {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 15px !important;
}

#hero .hero-image-wrapper,
section#hero .hero-image-wrapper,
.hero-section .hero-image-wrapper {
  flex: 0.8 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

#hero .hero-card,
section#hero .hero-card,
.hero-section .hero-card {
  position: relative !important;
  width: 380px !important;
  height: 420px !important;
  background: #ffffff !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

#hero .hero-img,
section#hero .hero-img,
.hero-section .hero-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  display: block !important;
}

/* ==========================================================================
   6. ABOUT & SERVICES & CLASSES
   ========================================================================== */
.about-grid,
.services-grid,
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.about-card,
.service-card,
.teacher-card,
.testimonial-card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: 16px;
  border: 1px solid #EFEFEF;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover,
.about-card:hover,
.teacher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-counter {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

/* Yog Classes Grid */
.yv-classes-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
}

.yv-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.yv-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #e67e22;
}

.yv-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.yv-service-card h3 {
  font-size: 20px;
  color: #1F2421;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.yv-service-card p {
  color: #555E58;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 15px 0;
}

.yv-read-more {
  color: #e67e22;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}

/* YV About Custom Layout */
.yv-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.yv-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.yv-about-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.yv-image-wrapper:hover .yv-about-img {
  transform: scale(1.03);
}

.yv-experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  color: #2e7d32;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.yv-why-us-list {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.yv-why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f8fafc;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #edf2f7;
}

.yv-check-icon {
  background: #e8f5e9;
  color: #2e7d32;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.yv-why-item strong {
  display: block;
  font-size: 14px;
  color: #1e293b;
}

.yv-why-item p {
  font-size: 12px;
  color: #64748b;
  margin: 2px 0 0;
  line-height: 1.4;
}

.yv-sub-heading {
  color: #e67e22;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}

.yv-about-content h3 {
  font-size: 26px;
  color: #1a202c;
  margin: 8px 0 15px;
  line-height: 1.3;
}

.yv-about-text {
  color: #4a5568;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 25px;
}

.yv-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.yv-stat-card {
  background: #fff;
  padding: 18px 15px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.yv-stat-card h2 {
  color: #2e7d32;
  font-size: 28px;
  margin: 0;
  font-weight: 800;
}

.yv-stat-card strong {
  display: block;
  font-size: 13px;
  color: #1a202c;
  margin: 4px 0;
}

.yv-stat-card p {
  font-size: 11px;
  color: #718096;
  margin: 0;
  line-height: 1.3;
}

.yv-about-btn {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.25);
}

.yv-about-btn:hover {
  background: #d35400;
  transform: translateY(-2px);
}

/* ==========================================================================
   7. TEACHERS & CARDS
   ========================================================================== */
.teacher-avatar {
  width: 80px !important;
  height: 80px !important;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700;
  margin-bottom: 1.2rem !important;
  border: 3px solid #2D7A3A !important;
}

.teacher-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

#teachers .teacher-card .teacher-avatar {
  width: 160px !important;
  height: 160px !important;
  min-width: 160px !important;
  min-height: 160px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  margin: 0 auto 1.5rem auto !important;
  border: 4px solid #2D7A3A !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) !important;
  display: block !important;
  position: relative !important;
}

#teachers .teacher-card .teacher-avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 20% !important;
  display: block !important;
}

.teacher-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: rgba(45, 122, 58, 0.15);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

/* Interactive Yog Cards */
.yog-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.yog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #e67e22);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.yog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(230, 126, 34, 0.3);
}

.yog-card:hover::before {
  opacity: 1;
}

.yog-card-popular {
  border: 2px solid #10b981 !important;
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.12);
}

.yog-card-popular:hover {
  border-color: #e67e22 !important;
  box-shadow: 0 20px 45px rgba(230, 126, 34, 0.18);
}

.yog-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.yog-card:hover .yog-icon {
  transform: scale(1.15) rotate(-5deg);
}

/* ==========================================================================
   8. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 80px 0 !important;
  background-color: #f7fbf8 !important;
}

.testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 25px !important;
  margin-top: 40px !important;
}

.program-style-card {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 30px 25px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid #e2e8f0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

.program-style-card:hover {
  transform: translateY(-5px) !important;
  border-color: #2D7A3A !important;
  box-shadow: 0 12px 30px rgba(45, 122, 58, 0.1) !important;
}

.program-style-card .card-badge {
  align-self: flex-start !important;
  background-color: #e8f5e9 !important;
  color: #2D7A3A !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  margin-bottom: 18px !important;
}

.program-style-card .review-text {
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
  color: #4a5568 !important;
  margin-bottom: 25px !important;
}

.program-style-card .card-footer-user {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  border-top: 1px solid #f0f0f0 !important;
  padding-top: 15px !important;
}

.program-style-card .user-avatar-initials {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: #2D7A3A !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.program-style-card .user-details h4 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #1a3323 !important;
  margin: 0 !important;
}

.program-style-card .user-details span {
  font-size: 0.82rem !important;
  color: #718096 !important;
}

/* ==========================================================================
   9. FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 90px 0 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9f5 100%) !important;
}

.faq-badge {
  background: #e8f5e9 !important;
  color: #2D7A3A !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  padding: 6px 16px !important;
  border-radius: 30px !important;
  display: inline-block !important;
  margin-bottom: 12px !important;
}

.faq-container,
.faq-accordion {
  max-width: 860px !important;
  margin: 45px auto 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #EFEFEF;
  box-shadow: var(--shadow);
}

.faq-item h4 {
  color: var(--dark);
  font-weight: 700;
}

.faq-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 20px 26px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
  overflow: hidden !important;
  cursor: pointer !important;
}

.faq-card:hover {
  transform: translateY(-4px) scale(1.01) !important;
  border-color: #2D7A3A !important;
  box-shadow: 0 12px 28px rgba(45, 122, 58, 0.12) !important;
}

.faq-card[open] {
  border-color: #2D7A3A !important;
  box-shadow: 0 12px 30px rgba(45, 122, 58, 0.1) !important;
  background: #ffffff !important;
}

.faq-header {
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
  list-style: none !important;
  outline: none !important;
}

.faq-header::-webkit-details-marker {
  display: none !important;
}

.faq-number {
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: #2D7A3A !important;
  background: #f0f7f1 !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 18px !important;
  flex-shrink: 0 !important;
}

.faq-card:hover .faq-number {
  background: #2D7A3A !important;
  color: #ffffff !important;
  transform: scale(1.1) rotate(-5deg) !important;
  transition: all 0.3s ease !important;
}

.faq-title {
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  color: #1a3323 !important;
  flex-grow: 1 !important;
  padding-right: 15px !important;
}

.faq-icon {
  position: relative !important;
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
}

.faq-icon::before,
.faq-icon::after {
  content: '' !important;
  position: absolute !important;
  background-color: #2D7A3A !important;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.faq-icon::before {
  width: 14px !important;
  height: 2px !important;
}

.faq-icon::after {
  width: 2px !important;
  height: 14px !important;
}

.faq-card[open] .faq-icon::after,
.faq-card:hover .faq-icon::after {
  transform: translate(-50%, -50%) rotate(180deg) !important;
  opacity: 0 !important;
}

.faq-card[open] .faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg) !important;
}

.faq-content {
  margin-top: 16px !important;
  padding-top: 16px !important;
  padding-left: 54px !important;
  border-top: 1px dashed #e2e8f0 !important;
}

.faq-content p {
  font-size: 0.98rem !important;
  line-height: 1.7 !important;
  color: #4a5568 !important;
  margin: 0 !important;
}

.faq-card[open] .faq-content {
  animation: fadeInSlideDown 0.4s ease-out forwards !important;
}

.faq-card:hover .faq-content {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  max-height: 500px !important;
  margin-top: 16px !important;
  padding-top: 16px !important;
  transition: all 0.4s ease-in-out !important;
}

.faq-card:not([open]) .faq-content {
  display: block !important;
  opacity: 0 !important;
  visibility: hidden !important;
  max-height: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  overflow: hidden !important;
  transition: all 0.3s ease-in-out !important;
}

@keyframes fadeInSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   10. CONTACT SECTION & FORMS
   ========================================================================== */
.contact-section {
  padding: 90px 0 !important;
  background: #f7fbf8 !important;
}

.contact-badge {
  background: #e8f5e9 !important;
  color: #2D7A3A !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  padding: 6px 16px !important;
  border-radius: 30px !important;
  display: inline-block !important;
  margin-bottom: 12px !important;
}

.contact-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1.4fr !important;
  gap: 35px !important;
  margin-top: 45px !important;
  align-items: stretch !important;
}

.contact-info-card {
  background: #2D7A3A !important;
  color: #ffffff !important;
  padding: 40px 35px !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 35px rgba(45, 122, 58, 0.2) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.contact-info-card h3 {
  color: #ffffff !important;
  font-size: 1.6rem !important;
  margin-bottom: 10px !important;
}

.info-desc {
  color: #e2f0e5 !important;
  font-size: 0.95rem !important;
  margin-bottom: 30px !important;
}

.info-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
}

.info-item {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.info-icon {
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  flex-shrink: 0 !important;
}

.info-item h4 {
  color: #ffffff !important;
  font-size: 0.9rem !important;
  margin: 0 0 2px 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  opacity: 0.85 !important;
}

.info-item p,
.info-item a {
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  margin: 0 !important;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form-card {
  background: #ffffff !important;
  padding: 40px !important;
  border-radius: 20px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.contact-form .form-group {
  margin-bottom: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

.contact-form label {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #2d3748 !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100% !important;
  padding: 1.1rem;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  font-size: 0.95rem !important;
  color: #2d3748 !important;
  background: #f8faf8 !important;
  outline: none;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #2D7A3A !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(45, 122, 58, 0.1) !important;
}

.btn-contact-submit {
  width: 100% !important;
  background: #2D7A3A !important;
  color: #ffffff !important;
  padding: 14px 24px !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  transition: all 0.3s ease !important;
  margin-top: 10px !important;
}

.btn-contact-submit:hover {
  background: #23612e !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(45, 122, 58, 0.25) !important;
}

.submission-success-msg {
  background: #e8f5e9 !important;
  border: 2px solid #2D7A3A !important;
  color: #1b4d24 !important;
  padding: 16px 22px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  max-width: 860px !important;
  margin: 0 auto 25px auto !important;
  box-shadow: 0 6px 18px rgba(45, 122, 58, 0.15) !important;
  animation: slideDownFade 0.5s ease-out !important;
}

.submission-success-msg .success-icon {
  background: #2D7A3A !important;
  color: #ffffff !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: bold !important;
  font-size: 1.1rem !important;
  flex-shrink: 0 !important;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   11. MODALS & OVERLAYS
   ========================================================================== */
.modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(4px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
  z-index: 10000 !important;
}

.modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.modal-card {
  background: #FFFFFF !important;
  padding: 2.5rem !important;
  border-radius: 16px !important;
  width: 90% !important;
  max-width: 480px !important;
  position: relative !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
}

/* YV Details Modal */
.yv-details-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.yv-details-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.yv-details-modal-box {
  background: #fff;
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transform: scale(0.85);
  transition: all 0.3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.yv-details-modal-overlay.active .yv-details-modal-box {
  transform: scale(1);
}

.yv-details-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  font-size: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  color: #64748b;
}

.yv-modal-icon {
  font-size: 40px;
  margin-bottom: 8px;
}

.yv-modal-title {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 700;
}

.yv-modal-desc {
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.yv-modal-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}

.yv-modal-features li {
  padding: 6px 0;
  color: #1e293b;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.yv-modal-features li::before {
  content: "✓";
  color: #27ae60;
  font-weight: 700;
}

.yv-modal-book-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 13px;
  background: #e67e22;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

/* ==========================================================================
   12. ARTICLES & CONTENT LAYOUT
   ========================================================================== */
.site-main-content {
  width: 100%;
  padding-top: 140px;
  padding-bottom: 80px;
  background-color: #fff;
  min-height: calc(100vh - 300px);
  box-sizing: border-box;
}

.article-container {
  max-width: 800px;
  margin: 0 auto !important;
  padding: 0 24px;
  box-sizing: border-box;
}

.article-badge {
  background: #d97706;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.article-meta-date {
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 500;
  margin-left: 8px;
}

.article-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 20px 0 25px 0;
  letter-spacing: -0.02em;
}

.article-author-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f1f5f9;
}

.article-author-avatar {
  width: 46px;
  height: 46px;
  background: #0f172a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.article-author-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.article-author-role {
  margin: 2px 0 0 0;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  font-weight: 400;
}

.article-content p {
  margin-bottom: 22px;
}

.article-content h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.35;
}

.article-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 24px;
  margin-bottom: 12px;
}

.article-content ol,
.article-content ul {
  padding-left: 24px;
  margin-top: 10px;
  margin-bottom: 28px;
}

.article-content li {
  margin-bottom: 10px;
  padding-left: 4px;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.footer,
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 0 25px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-top: 3px solid #d97706;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer .logo,
.footer-logo {
  color: var(--white) !important;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer h4,
.footer-heading {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 1.2rem;
  position: relative;
  font-weight: 600;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #d97706;
  margin-top: 8px;
}

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

.footer ul li,
.footer-links li {
  margin-bottom: 0.6rem;
}

.footer a,
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer a:hover,
.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.contact-item {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 15px;
  line-height: 1.5;
}

.contact-item a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #d97706;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #d97706;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #64748b;
}

.footer-legal a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #cbd5e1;
}

.footer-legal span {
  margin: 0 8px;
}

/* ==========================================================================
   14. MEDIA QUERIES (RESPONSIVE STYLES)
   ========================================================================== */
@media screen and (max-width: 992px) {
  /* Navigation */
  .nav-list,
  .desktop-nav,
  .desktop-btn {
    display: none !important;
  }

  .header-container,
  header .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0.8rem 1rem !important;
  }

  .mobile-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 30px !important;
    height: 22px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 10001 !important;
    position: relative !important;
  }

  .mobile-toggle span {
    width: 100% !important;
    height: 3px !important;
    background-color: #2e7d32 !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
    display: block !important;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg) !important;
  }

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

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg) !important;
  }

  .nav-overlay {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.5) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 9998 !important;
  }

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

  .mobile-drawer {
    display: block !important;
    position: fixed !important;
    top: 65px !important;
    left: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease !important;
    z-index: 9999 !important;
    border-bottom: 3px solid #2e7d32 !important;
  }

  .mobile-drawer.active {
    max-height: 85vh !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow-y: auto !important;
  }

  .mobile-nav-list {
    list-style: none !important;
    padding: 1.2rem 1.5rem !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .mobile-link {
    text-decoration: none !important;
    color: #1a202c !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    display: block !important;
    padding: 8px 10px !important;
    border-radius: 6px !important;
  }

  .mobile-link:hover {
    background-color: #f0fdf4 !important;
    color: #2e7d32 !important;
  }

  /* Hero Section Mobile */
  #hero.hero-section {
    padding-top: 120px !important;
    padding-bottom: 50px !important;
  }

  #hero .hero-title {
    font-size: 2.2rem !important;
  }

  #hero .hero-description {
    font-size: 0.98rem !important;
  }

  .hero-section .hero-container,
  section#hero .hero-container {
    flex-direction: column !important;
    text-align: center !important;
  }

  .hero-section .hero-content,
  section#hero .hero-content {
    text-align: center !important;
    max-width: 100% !important;
  }

  .hero-section .hero-title,
  .hero-section .hero-description,
  section#hero .hero-title,
  section#hero .hero-description {
    text-align: center !important;
  }

  .hero-section .hero-buttons,
  section#hero .hero-buttons {
    justify-content: center !important;
  }

  .hero-section .hero-image-wrapper,
  section#hero .hero-image-wrapper {
    justify-content: center !important;
    width: 100% !important;
  }

  .hero-section .hero-card {
    width: 100% !important;
    max-width: 320px !important;
    height: 360px !important;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  /* Grids */
  .about-grid,
  .services-grid,
  .teachers-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr !important;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }

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

  .yv-classes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .yv-about-grid {
    grid-template-columns: 1fr;
  }

  .yv-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .site-main-content {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .article-container {
    padding: 0 16px;
  }

  .article-title {
    font-size: 1.75rem;
  }

  .article-content {
    font-size: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .section {
    padding: 60px 15px;
  }

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

  .modal-card {
    padding: 1.8rem 1.2rem !important;
    width: 92% !important;
  }

  a.whatsapp-float {
    bottom: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
  }

  .faq-card {
    padding: 16px 18px !important;
  }

  .faq-content {
    padding-left: 0 !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .yv-classes-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Card Hover Effect */
.instructor-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Modal Background Overlay */
.instructor-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  padding: 15px;
}

.instructor-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Popup Window */
.instructor-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.instructor-modal-overlay.active .instructor-modal-content {
  transform: scale(1);
}

/* Modal Close Button */
.instructor-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}

/* Modal Interior Elements */
.instructor-modal-body {
  text-align: center;
}

.instructor-modal-body img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #2e7d32; /* Match YogVistaar Theme */
  margin-bottom: 12px;
}

.instructor-modal-body h3 {
  margin: 5px 0;
  font-size: 1.4rem;
  color: #1b1b1b;
}

.modal-inst-role {
  display: inline-block;
  color: #d97706; /* Accent Gold/Brown */
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.modal-info-block {
  text-align: left;
  margin-top: 15px;
  background: #f9f9f9;
  padding: 12px 15px;
  border-radius: 10px;
}

.modal-info-block h4 {
  margin: 0 0 5px 0;
  font-size: 0.95rem;
  color: #2e7d32;
}

.modal-info-block p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}
/* Card Pointer */
.instructor-card {
  cursor: pointer;
}
/* Instructors Section Layout */
.instructors-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.instructor-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.instructor-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.instructor-card h3 {
  margin: 10px 0 5px;
  font-size: 1.25rem;
  color: #333;
}

.instructor-card .role {
  font-size: 0.9rem;
  color: #eb7c22; /* Matching theme color */
  font-weight: 600;
  margin-bottom: 10px;
}

.instructor-card .desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.4;
}

.view-bio-btn {
  margin-top: auto;
  background-color: #eb7c22;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.view-bio-btn:hover {
  background-color: #d66b1a;
}

/* Modal Styling (Isse modal fix aur hide rahega jab tak click na ho) */
.instructor-modal-overlay {
  display: none; /* Default Hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.instructor-modal-overlay.active {
  display: flex; /* Click hone par dikhega */
}

.instructor-modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease;
}

.instructor-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}

.instructor-modal-body img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 15px;
}

.modal-info-block {
  margin-top: 15px;
  text-align: left;
}

.modal-info-block h4 {
  margin-bottom: 5px;
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* ==========================================
   Luxury Instructors Section Styling
   ========================================== */
:root {
  --gold-primary: #c5a059;
  --gold-hover: #b08b46;
  --bg-dark: #12151c;
  --card-bg: rgba(255, 255, 255, 0.85);
  --text-dark: #1c2029;
  --text-muted: #64748b;
  --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 25px 45px rgba(197, 160, 89, 0.15);
}

.instructors-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fbf9f5 0%, #f4f0e8 100%);
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-header .sub-title {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.section-header .main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

/* Card Styling */
.instructor-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.18);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(197, 160, 89, 0.4);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.exp-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(18, 21, 28, 0.75);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.card-content .role {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.card-content .desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.view-bio-btn {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.instructor-card:hover .view-bio-btn {
  background: var(--gold-primary);
  color: #ffffff;
}

.view-bio-btn svg {
  transition: transform 0.3s ease;
}

.instructor-card:hover .view-bio-btn svg {
  transform: translateX(4px);
}


/* ==========================================
   Luxury Modal Styling
   ========================================== */
.instructor-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 18, 25, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 9999;
  padding: 20px;
}

.instructor-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.instructor-modal-content {
  background: #ffffff;
  border-radius: 24px;
  max-width: 820px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.instructor-modal-overlay.active .instructor-modal-content {
  transform: scale(1);
}

.instructor-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.instructor-modal-close:hover {
  background: var(--gold-primary);
  color: #ffffff;
}

.instructor-modal-body {
  display: grid;
  grid-template-columns: 320px 1fr;
}

.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.modal-right {
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-inst-role {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-right h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.modal-info-block {
  margin-bottom: 18px;
}

.modal-info-block h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.modal-info-block p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .instructor-modal-body {
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
  }
  
  .modal-left img {
    height: 250px;
    min-height: auto;
  }
  
  .modal-right {
    padding: 25px 20px;
  }
}