/* ============================================
   YOGRATNA — Premium Yoga Website Design System
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Premium Colors */
  --green-primary: #1e4a36;
  --green-dark: #102e21;
  --green-light: #2c6e51;
  --green-pale: #eef5f1;
  --gold-primary: #C5A059;
  --gold-dark: #a68444;
  --gold-light: #e8d7b3;
  --bg-cream: #FCFCF9;
  --bg-white: #ffffff;
  --text-dark: #111111;
  --text-muted: #4a4a4a;
  --text-light: #888888;
  --white: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.65);
  
  /* Modern High-End Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 30px 60px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 30px rgba(197, 160, 89, 0.3);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1240px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Border Radius - Premium Soft */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50%;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

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

button, input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
}

.section-alt {
  background: var(--bg-white);
}

.section-green {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: var(--white);
}

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

.section-header .section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.section-green .section-header p {
  color: rgba(255,255,255,0.8);
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: #FFCC80;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 204, 128, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #ffb84d;
  box-shadow: 0 12px 35px rgba(255, 204, 128, 0.6);
  color: #000;
}

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

.btn-secondary:hover {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

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

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(45,106,79,0.3);
}

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

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

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 5px 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 5px 0;
}

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

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

.brand-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-base);
  margin-top: 0;
}

.header.scrolled .brand-logo {
  height: 90px;
  margin-top: 0;
}

.brand-logo-footer {
  height: 300px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0px;
  white-space: nowrap;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
}

.header.scrolled .main-nav > li > a {
  color: var(--text-dark);
}

.main-nav > li > a:hover {
  color: var(--gold-primary);
}

.main-nav > li > a .arrow {
  font-size: 0.6rem;
  transition: transform var(--transition-fast);
}

.main-nav > li:hover > a .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  border: 1px solid rgba(0,0,0,0.05);
}

.main-nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.dropdown li a:hover {
  background: var(--green-pale);
  color: var(--green-primary);
  padding-left: 26px;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: all var(--transition-base);
}

.header.scrolled .menu-toggle span {
  background: var(--text-dark);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
@keyframes textFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/banner.png') center 30% / cover no-repeat;
  background-color: var(--green-dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,50,35,0.82) 0%, rgba(10,25,18,0.65) 50%, rgba(0,0,0,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  animation: textFadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
}

.hero-badge span {
  font-size: 0.6rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
  animation: textFadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.15s forwards;
  opacity: 0;
}

.hero h1 .highlight {
  color: var(--gold-primary);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
  animation: textFadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: textFadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.45s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: block;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 50px 36px;
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(0,0,0,0.02);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold-primary));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

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

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
  background: var(--green-primary);
  transform: scale(1.05);
}

.benefit-card:hover .benefit-icon span {
  filter: brightness(0) invert(1);
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   COURSES SECTION
   ============================================ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.course-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(0,0,0,0.02);
  box-shadow: var(--shadow-sm);
}

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

.course-image {
  height: 200px;
  background: linear-gradient(135deg, var(--green-pale), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.course-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}

.course-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 14px;
  background: var(--gold-primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.course-body {
  padding: 24px;
}

.course-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.course-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.course-meta span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.course-meta .btn-sm {
  font-size: 0.78rem;
  padding: 8px 18px;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius-lg);
  height: 500px;
  background: linear-gradient(135deg, var(--green-pale), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.why-image::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-lg);
  padding: 4px;
  background: linear-gradient(135deg, var(--green-primary), var(--gold-primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.why-content .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.why-content h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.why-content > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-item-icon {
  min-width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-primary);
}

.why-item-text h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-item-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================
   RESULTS / TRANSFORMATIONS
   ============================================ */
.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.04);
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-primary);
  display: block;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.result-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.02);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.result-image {
  height: 220px;
  background: linear-gradient(135deg, var(--green-pale), #e8e1d0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--green-primary);
}

.result-body {
  padding: 24px;
}

.result-body h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.result-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 46px 36px;
  border: 1px solid rgba(0,0,0,0.02);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-base);
}

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

.testimonial-card .quote-mark {
  font-size: 3rem;
  color: var(--gold-primary);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green-pale), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-primary);
}

.testimonial-info h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ============================================
   FREE CLASS CTA
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--gold-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   TEACHER TRAINING HIGHLIGHT
   ============================================ */
.training-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.training-content .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.training-content h2 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.training-content > p {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.training-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.training-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.training-feature .check {
  color: var(--green-primary);
  font-size: 1rem;
}

.training-image {
  border-radius: var(--radius-lg);
  height: 450px;
  background: linear-gradient(135deg, var(--green-pale), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active {
  box-shadow: var(--shadow-sm);
  border-color: var(--green-primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--green-primary);
}

.faq-question .faq-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform var(--transition-base);
  color: var(--green-primary);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   CONTACT / LEAD FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item-icon {
  min-width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-primary);
}

.contact-item-text h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.lead-form {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}

.lead-form h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.lead-form > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  transition: border-color var(--transition-fast);
  background: var(--bg-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.lead-form .btn {
  width: 100%;
  margin-top: 6px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--white);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transition: transform var(--transition-fast);
  background: transparent;
  animation: float-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes float-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 72px;
  background: var(--white);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   PAGE BANNER (Subpages)
   ============================================ */
.page-banner {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  text-align: center;
  position: relative;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-cream);
  clip-path: ellipse(52% 100% at 50% 100%);
}

.page-banner h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: var(--gold-primary);
}

/* ============================================
   PAGE CONTENT SECTIONS
   ============================================ */
.page-content {
  padding: 80px 0;
}

.content-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 28px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition-base);
}

.content-card:hover {
  box-shadow: var(--shadow-sm);
}

.content-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.content-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.features-list li .check {
  color: var(--green-primary);
  margin-top: 2px;
}

/* Grid layouts for subpages */
.cards-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Blog cards */
.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition-base);
}

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

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, var(--green-pale), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-body {
  padding: 24px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.blog-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-body .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-body .read-more:hover {
  color: var(--gold-primary);
}

/* ============================================
   PRICING / FEES TABLE
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  border: 2px solid rgba(0,0,0,0.05);
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold-primary);
  transform: scale(1.02);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

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

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-primary);
  margin: 16px 0;
}

.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card ul {
  text-align: left;
  margin: 24px 0;
}

.pricing-card ul li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pricing-card ul li .check {
  color: var(--green-primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta .btn {
    display: none;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose,
  .training-highlight {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-image,
  .training-image {
    height: 350px;
  }

  .results-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .cards-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  /* Mobile Nav Overlay */
  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green-dark);
    padding: 90px 30px 30px;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.active > li > a {
    padding: 14px 0;
    font-size: 1.1rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .main-nav.active .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    box-shadow: none;
    border: none;
    margin: 4px 0 10px;
    display: none;
  }

  .main-nav.active .dropdown.show {
    display: block;
  }

  .main-nav.active .dropdown li a {
    color: rgba(255,255,255,0.7);
    padding: 10px 16px;
  }

  .main-nav.active .dropdown li a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--gold-primary);
    padding-left: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: 100vh;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

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

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat .number {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

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

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

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

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

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

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

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

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

  .cards-grid-2,
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

  .training-features {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 28px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }

  .brand-logo {
    height: 90px;
    width: auto;
    margin-top: 0;
  }

  .header.scrolled .brand-logo {
    height: 75px;
    width: auto;
    margin-top: 0;
  }

  .brand-logo-footer {
    height: 140px;
    width: auto;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .container {
    padding: 0 16px;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .stat-card .stat-number {
    font-size: 2.2rem;
  }

  .brand-logo {
    height: 75px;
    width: auto;
    margin-top: 0;
  }

  .header.scrolled .brand-logo {
    height: 60px;
    width: auto;
    margin-top: 0;
  }
}
