@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&family=Noto+Serif+Georgian:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');
@import url('https://db.onlinewebfonts.com/c/95cecf452d3208890088a5b4c19c7ecf?family=Helvetica+Neue+ME');

@font-face {
  font-family: 'BPG Banner Caps';
  src: url('../fonts/bpg_banner_caps_alpha.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BPG Banner Caps Alpha';
  src: url('../fonts/bpg_banner_caps_alpha.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BPG Glaho Arial';
  src: url('../fonts/bpg_glaho_arial.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geo Script';
  src: url('../fonts/geo_script.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geo Script';
  src: url('../fonts/geo_script.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@keyframes rotate-sunburst {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

:root {
  /* Dala Design System Tokens */
  --color-void: #000000;
  --color-bone-white: #ffffff;
  --color-ash-gray: #9a9a9a;
  --color-silver-mist: #bdbdbd;
  --color-electric-iris: #8052ff;
  --color-saffron-spark: #ffb829;
  --color-deep-verdant: #15846e;

  --primary-teal: #1a241f;
  /* Deep Olive Canvas */
  --teal-dark: #121a16;
  --teal-deep: #0b110e;
  --teal-light: #2c3a33;
  --gold-accent: #efc32f;
  /* Warm Golden Saffron Accent */
  --plum-accent: #4a1525;
  --plum-light: #6b2138;
  --plum-glow: rgba(107, 33, 56, 0.4);
  --gold-mute: #d4a922;
  --gold-glow: rgba(239, 195, 47, 0.3);
  --bg-dark: #0d1411;

  --surface-glass: rgba(255, 255, 255, 0.04);
  --surface-glass-hover: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(239, 195, 47, 0.4);
  --border-plum: rgba(107, 33, 56, 0.5);

  --text-primary: #f5f5f0;
  /* Soft Ivory Text */
  --text-secondary: #d1d5cf;
  /* Off-White Subtext */
  --text-muted: #959c94;

  --font-heading: 'BPG Banner Caps', 'BPG Banner Caps Alpha', 'Noto Serif Georgian', sans-serif;
  --font-serif: 'BPG Banner Caps', 'BPG Banner Caps Alpha', 'Noto Serif Georgian', 'Helvetica Neue ME', serif;
  --font-sans: 'BPG Glaho Arial', 'BPG Glaho', 'Helvetica Neue ME', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-script: 'Geo Script', cursive, sans-serif;

  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.6);
  --radius-lg: 20px;
  --radius-md: 14px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  zoom: 80%;
  -webkit-zoom: 80%;
  background-color: var(--primary-teal);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.pillar-title,
.course-card-title,
.retreat-title,
.blog-card-title,
.podcast-title,
.lms-course-title,
.footer-heading,
.footer-newsletter-title,
.brand-text {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

/* BACKGROUND AMBIENT BLOBS */
.bg-blobs-wrapper {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  animation: float-blob 22s infinite alternate ease-in-out;
}

.blob-1 {
  width: 550px;
  height: 550px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, #52b1a2 0%, #1e453f 80%);
}

.blob-2 {
  width: 650px;
  height: 650px;
  bottom: 5%;
  right: -150px;
  background: radial-gradient(circle, rgba(226, 193, 97, 0.3) 0%, rgba(61, 137, 125, 0.5) 70%);
  animation-delay: -6s;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 40px) scale(1.06);
  }

  100% {
    transform: translate(-30px, 60px) scale(0.96);
  }
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}

.glass-card {
  background: rgba(18, 28, 24, 0.65);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  will-change: transform, box-shadow;
  position: relative;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 195, 47, 0.25) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 25px rgba(239, 195, 47, 0.05) !important;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 30px;
  background: var(--gold-accent);
  color: #0b1411;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(239, 195, 47, 0.4);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(239, 195, 47, 0.6);
  background: #f5cf47;
  color: #0b1411;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* F1 EDITORIAL SCROLL REVEAL ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* FAST RACE PULSE ACCENT */
@keyframes race-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 195, 47, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(239, 195, 47, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 195, 47, 0);
  }
}

.pulse-accent {
  animation: race-pulse 2s infinite;
}

/* NAVBAR FIXED CLEAN EDITORIAL */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(18, 26, 22, 0.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(239, 195, 47, 0.15);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(239, 195, 47, 0.25));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 3px 15px rgba(239, 195, 47, 0.5));
}

.brand-icon {
  font-size: 1.5rem;
  color: var(--gold-accent);
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--gold-accent);
  display: block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-accent);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(10, 20, 15, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  padding: 3px;
  gap: 4px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 7px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.5;
  border: 1px solid transparent;
}

.lang-btn:hover {
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.08);
}

.lang-btn.active {
  opacity: 1;
  background: rgba(226, 193, 97, 0.18);
  border-color: rgba(226, 193, 97, 0.6);
  box-shadow: 0 2px 8px rgba(226, 193, 97, 0.25);
}

.lang-flag {
  width: 21px;
  height: 14px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
  display: block;
}

/* Mobile Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1005;
  margin-left: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, background-color 0.3s ease;
}

.mobile-menu-toggle:hover span {
  background: var(--gold-accent);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--gold-accent);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--gold-accent);
}

/* NAVIGATION PORTAL CARDS WITH SOFT CHROMATIC SPECTRUM */
.portal-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.portal-card {
  padding: 28px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  min-height: 140px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  opacity: 0.65;
  transition: all 0.35s ease;
  border-radius: 2px;
}

.portal-card:hover {
  transform: translateY(-6px);
}

.portal-card:hover::before {
  left: 5%;
  right: 5%;
  opacity: 1;
}

.portal-card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.portal-card-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

/* 1: Soft Indigo-Blue (ნაზი ინდიგო/ლურჯი) */
.portal-card-1 {
  background: linear-gradient(155deg, rgba(59, 130, 246, 0.13) 0%, rgba(18, 30, 36, 0.48) 65%, rgba(13, 22, 25, 0.62) 100%);
  border: 1px solid rgba(96, 165, 250, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(147, 197, 253, 0.18);
}

.portal-card-1::before {
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.8), rgba(96, 165, 250, 0.8), transparent);
}

.portal-card-1:hover {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 26px rgba(59, 130, 246, 0.25);
}

/* 2: Soft Ocean Sky (ჰარმონიული ცისფერ-ლურჯი) */
.portal-card-2 {
  background: linear-gradient(155deg, rgba(14, 165, 233, 0.13) 0%, rgba(16, 32, 36, 0.48) 65%, rgba(13, 22, 25, 0.62) 100%);
  border: 1px solid rgba(56, 189, 248, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(125, 211, 252, 0.18);
}

.portal-card-2::before {
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.8), rgba(56, 189, 248, 0.8), transparent);
}

.portal-card-2:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 26px rgba(14, 165, 233, 0.25);
}

/* 3: Pure Sky Cyan (ცისფერი ლაჟვარდი) */
.portal-card-3 {
  background: linear-gradient(155deg, rgba(6, 182, 212, 0.13) 0%, rgba(15, 34, 36, 0.48) 65%, rgba(13, 22, 25, 0.62) 100%);
  border: 1px solid rgba(34, 211, 238, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(103, 232, 249, 0.18);
}

.portal-card-3::before {
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.8), rgba(34, 211, 238, 0.8), transparent);
}

.portal-card-3:hover {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 26px rgba(6, 182, 212, 0.25);
}

/* 4: Aqua Crystal (კაშკაშა აკვა/ცისფერი) */
.portal-card-4 {
  background: linear-gradient(155deg, rgba(45, 212, 191, 0.13) 0%, rgba(14, 35, 36, 0.48) 65%, rgba(13, 22, 25, 0.62) 100%);
  border: 1px solid rgba(94, 234, 212, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(153, 246, 228, 0.18);
}

.portal-card-4::before {
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.8), rgba(94, 234, 212, 0.8), transparent);
}

.portal-card-4:hover {
  border-color: rgba(94, 234, 212, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 26px rgba(45, 212, 191, 0.25);
}

/* 5: Ice Light Cyan (კრისტალური ღია ცისფერი) */
.portal-card-5 {
  background: linear-gradient(155deg, rgba(125, 211, 252, 0.14) 0%, rgba(16, 36, 38, 0.48) 65%, rgba(13, 22, 25, 0.62) 100%);
  border: 1px solid rgba(186, 230, 253, 0.25);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(224, 242, 254, 0.2);
}

.portal-card-5::before {
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.85), rgba(186, 230, 253, 0.85), transparent);
}

.portal-card-5:hover {
  border-color: rgba(186, 230, 253, 0.6);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 26px rgba(125, 211, 252, 0.28);
}

/* HERO SECTION */
.hero-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(226, 193, 97, 0.12);
  border: 1px solid var(--gold-mute);
  border-radius: 20px;
  color: var(--gold-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #efc32f;
  color: #0d1a0d;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(239, 195, 47, 0.4);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background: #f5cf47;
  box-shadow: 0 14px 30px rgba(239, 195, 47, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition);
}

.portrait-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 180px 180px 40px 40px;
  overflow: hidden;
  border: 2.5px solid rgba(239, 195, 47, 0.7);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(239, 195, 47, 0.25), inset 0 0 15px rgba(239, 195, 47, 0.15);
  position: relative;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-floating-card {
  position: relative;
  margin-top: -24px;
  padding: 20px 24px;
  background: rgba(15, 31, 28, 0.9);
}

.bio-quote {
  font-family: 'Noto Serif Georgian', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--gold-accent);
}

/* SECTION TITLES */
.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  color: var(--gold-accent);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.98rem;
}

/* PILLARS OF WONDERLANDER GRID */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pillar-card {
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--gold-accent);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: #55ff99;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.pillar-number {
  font-size: 1.6rem;
  color: var(--gold-accent);
  font-weight: 800;
  margin-bottom: 12px;
  display: block;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}

.pillar-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* CONSULTATIONS SECTION (ინდივიდუალური კონსულტაციები) */
.consultations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 26px;
  align-items: stretch;
}

.consultation-card {
  background: rgba(18, 28, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.consultation-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 195, 47, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(239, 195, 47, 0.08);
}

.consultation-header {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.consultation-tag {
  color: var(--gold-accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}

.consultation-title {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.consultation-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 26px;
  flex-grow: 1;
}

.consultation-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.consultation-pill-btn:hover {
  background: rgba(239, 195, 47, 0.15);
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(239, 195, 47, 0.15);
}

/* RETREATS FLEX & CLEAN GRID */
.retreats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.retreat-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.retreat-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.retreat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retreat-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-accent);
  color: #0b140b;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(239, 195, 47, 0.45);
}

.retreat-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.retreat-date {
  color: var(--gold-accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.retreat-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.retreat-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FEEDBACK CLEAN GRID */
.feedback-section {
  padding: 60px 0;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feedback-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feedback-stars {
  color: var(--gold-accent);
  margin-bottom: 10px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.feedback-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.6;
}

.feedback-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-accent);
}

.user-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
}

.user-role {
  font-size: 0.75rem;
  color: var(--gold-accent);
}

/* MODAL OVERLAY */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 28, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 100%;
  max-width: 480px;
  padding: 28px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.4rem;
  cursor: pointer;
}

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

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-accent);
}

/* ULTRA-LUXURY EDITORIAL FOOTER */
.footer {
  padding: 70px 0 32px;
  border-top: 1px solid rgba(239, 195, 47, 0.25);
  background: radial-gradient(circle at 50% 0%, rgba(18, 36, 28, 0.98), rgba(9, 15, 12, 1));
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  box-shadow: 0 0 20px var(--gold-glow);
}

.footer-newsletter-card {
  padding: 36px 44px;
  border-radius: 24px;
  border: 1px solid rgba(239, 195, 47, 0.3);
  background: radial-gradient(circle at top right, rgba(239, 195, 47, 0.08), rgba(15, 24, 20, 0.85));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  flex-wrap: wrap;
}

.footer-newsletter-text {
  max-width: 580px;
}

.footer-badge {
  background: rgba(239, 195, 47, 0.15);
  color: var(--gold-accent);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.footer-newsletter-subtitle {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.footer-newsletter-form {
  flex-grow: 1;
  max-width: 440px;
  min-width: 280px;
}

.footer-input-group {
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.45);
  padding: 6px;
  border-radius: 30px;
  border: 1px solid rgba(239, 195, 47, 0.25);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

.footer-email-input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 18px;
  font-size: 0.92rem;
  width: 100%;
  outline: none;
}

.footer-email-input::placeholder {
  color: var(--text-muted);
}

.footer-submit-btn {
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 24px;
  white-space: nowrap;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-heading {
  color: var(--gold-accent);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 2px;
  background: rgba(239, 195, 47, 0.4);
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-accent);
  background: rgba(239, 195, 47, 0.08);
  border: 1px solid rgba(239, 195, 47, 0.2);
  padding: 4px 10px;
  border-radius: 8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-accent);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  font-size: 1rem;
  color: var(--gold-accent);
}

.footer-contact-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--gold-accent);
  text-decoration: underline;
}

.footer-social-wrapper {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-social-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-badge:hover {
  background: rgba(239, 195, 47, 0.15);
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  transform: translateY(-2px);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-payments-secure {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-icons-strip {
  display: flex;
  gap: 8px;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e0e0e0;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.navigation-portal-section {
  margin-top: -180px;
}

/* ==========================================================================
   LMS DASHBOARD & LEARNING PORTAL STYLES
   ========================================================================== */
.lms-wrapper {
  padding: 40px 0 80px;
}

.lms-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 32px;
  align-items: flex-start;
}

/* SIDEBAR */
.lms-sidebar {
  position: sticky;
  top: 96px;
  background: rgba(18, 28, 24, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lms-student-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lms-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-accent), #d9a71e);
  color: #121a16;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-serif);
  box-shadow: 0 0 16px rgba(239, 195, 47, 0.35);
  flex-shrink: 0;
}

.lms-student-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.lms-badge-vip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(239, 195, 47, 0.15);
  color: var(--gold-accent);
  border: 1px solid rgba(239, 195, 47, 0.35);
  padding: 3px 9px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* LMS NAV MENU */
.lms-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.lms-nav-item {
  position: relative;
}

.lms-nav-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.lms-nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transform: translateX(3px);
}

.lms-nav-btn.active {
  background: linear-gradient(90deg, rgba(239, 195, 47, 0.15), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(239, 195, 47, 0.3);
  border-left: 4px solid var(--gold-accent);
  color: #fff;
  font-weight: 700;
}

.lms-nav-btn.active .lms-nav-icon {
  color: var(--gold-accent);
  filter: drop-shadow(0 0 6px rgba(239, 195, 47, 0.5));
}

.lms-nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lms-nav-icon {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.lms-nav-btn:hover .lms-nav-icon {
  transform: scale(1.15);
}

.lms-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.lms-pill.accent {
  background: rgba(239, 195, 47, 0.2);
  color: var(--gold-accent);
}

.lms-pill.live {
  background: rgba(255, 75, 75, 0.2);
  color: #ff6b6b;
  animation: pulse-glow 2s infinite;
}

/* SIDEBAR FOOTER WIDGET */
.lms-sidebar-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lms-sms-status-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(85, 255, 153, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.78rem;
}

.lms-sms-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55ff99;
  box-shadow: 0 0 8px #55ff99;
  margin-right: 6px;
}

/* MAIN LMS CONTENT */
.lms-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* TOPBAR */
.lms-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(18, 28, 24, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 14px 22px;
}

.lms-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 14px;
  flex: 1;
  max-width: 360px;
}

.lms-search-box input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.88rem;
  width: 100%;
  outline: none;
}

.lms-search-box input::placeholder {
  color: var(--text-muted);
}

.lms-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* KPI CARDS (PROMINENT ELEVATED GLASS) */
.lms-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.lms-kpi-card {
  background: linear-gradient(145deg, rgba(28, 44, 37, 0.9) 0%, rgba(15, 25, 21, 0.96) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lms-kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239, 195, 47, 0.45), transparent);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lms-kpi-card:hover {
  border-color: rgba(239, 195, 47, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(239, 195, 47, 0.15);
}

.lms-kpi-card:hover::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.lms-kpi-card.kpi-vip {
  border-color: rgba(239, 195, 47, 0.45);
  background: linear-gradient(145deg, rgba(32, 50, 41, 0.92) 0%, rgba(18, 28, 23, 0.96) 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(239, 195, 47, 0.12), inset 0 1px 0 rgba(239, 195, 47, 0.3);
}

.lms-kpi-card.kpi-vip::before {
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  opacity: 1;
}

.lms-kpi-card.kpi-retreat {
  border-color: rgba(85, 255, 153, 0.35);
  background: linear-gradient(145deg, rgba(25, 46, 38, 0.92) 0%, rgba(15, 26, 21, 0.96) 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(85, 255, 153, 0.1), inset 0 1px 0 rgba(85, 255, 153, 0.25);
}

.lms-kpi-card.kpi-retreat::before {
  background: linear-gradient(90deg, transparent, #55ff99, transparent);
  opacity: 1;
}

.lms-kpi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.lms-kpi-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
  font-weight: 700;
}

.lms-kpi-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(239, 195, 47, 0.12);
  border: 1px solid rgba(239, 195, 47, 0.25);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.lms-kpi-value {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.lms-kpi-sub {
  font-size: 0.84rem;
  color: #d1d5cf;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lms-kpi-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.lms-kpi-badge.gold {
  background: rgba(239, 195, 47, 0.16);
  color: var(--gold-accent);
  border: 1px solid rgba(239, 195, 47, 0.35);
}

.lms-kpi-badge.emerald {
  background: rgba(85, 255, 153, 0.16);
  color: #55ff99;
  border: 1px solid rgba(85, 255, 153, 0.35);
}

/* PROGRESS BAR */
.lms-progress-wrap {
  width: 100%;
  margin: 10px 0;
}

.lms-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 600;
}

.lms-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lms-progress-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #15846e, var(--gold-accent));
  box-shadow: 0 0 10px rgba(239, 195, 47, 0.4);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* LMS COURSE CARDS */
.lms-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.lms-course-card {
  background: rgba(18, 28, 24, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.lms-course-card:hover {
  border-color: rgba(239, 195, 47, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.lms-course-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.lms-course-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 8px;
  background: rgba(239, 195, 47, 0.15);
  color: var(--gold-accent);
}

.lms-course-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 10px;
}

.lms-course-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.lms-course-modules {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lms-module-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lms-module-item:last-child {
  border-bottom: none;
}

.lms-module-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.lms-module-item.completed .lms-module-title {
  color: #55ff99;
}

.lms-module-item.current .lms-module-title {
  color: var(--gold-accent);
  font-weight: 600;
}

/* MODAL FOR LMS LESSON PLAYER */
.lms-player-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lms-player-modal.active {
  display: flex;
}

.lms-player-box {
  background: #121a16;
  border: 1px solid rgba(239, 195, 47, 0.3);
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  position: relative;
  display: flex;
  flex-direction: column;
}

.lms-video-mock {
  width: 100%;
  aspect-ratio: 16/9;
  background: radial-gradient(circle at center, #24352c 0%, #0d1411 100%);
  border-radius: 24px 24px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lms-video-play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(239, 195, 47, 0.9);
  color: #121a16;
  border: none;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(239, 195, 47, 0.6);
  transition: transform 0.25s ease, background 0.25s ease;
}

.lms-video-play-btn:hover {
  transform: scale(1.1);
  background: #ffd84d;
}

/* TAB VISIBILITY LOGIC */
.lms-tab-pane {
  display: none;
  animation: fadeInPane 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lms-tab-pane.active {
  display: block;
}

@keyframes fadeInPane {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE LAYOUT BREAKPOINTS */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .navbar {
    padding: 12px 0;
  }

  .nav-container {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(16, 24, 20, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(239, 195, 47, 0.25);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, padding 0.25s ease;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    z-index: 1000;
  }

  .nav-links.active {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
    padding: 12px;
  }

  .nav-link {
    display: block;
    padding: 10px 16px;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(239, 195, 47, 0.15);
  }

  .lms-layout {
    grid-template-columns: 1fr;
  }

  .lms-sidebar {
    position: static;
  }

  .lms-nav-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
  }

  .lms-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .lms-search-box {
    max-width: 100%;
  }

  .hero-section {
    min-height: auto !important;
    padding-top: 30px !important;
    margin-top: 0 !important;
  }

  .hero-section .container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .hero-section .container>div:first-child {
    margin-top: 0 !important;
    text-align: center;
  }

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

  .hero-subtitle {
    margin: 0 auto 24px !important;
  }

  .hero-cta-group {
    justify-content: center !important;
  }

  .navigation-portal-section {
    margin-top: -85px !important;
  }
}

@media (max-width: 768px) {
  .brand-text {
    font-size: 1.15rem;
  }

  .brand-tag {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .brand-logo-img {
    height: 38px;
  }

  .lms-nav-list {
    grid-template-columns: 1fr;
  }

  .lms-kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .glass-card {
    padding: 24px 18px !important;
  }

  div[style*="grid-template-columns: 1fr 1.2fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 480px) {
  .brand-tag {
    display: none;
  }

  .brand-logo-img {
    height: 34px;
  }

  .brand-text {
    font-size: 1.02rem;
  }

  .nav-user-btn {
    padding: 5px 10px !important;
    font-size: 0.76rem !important;
  }

  .lang-btn {
    padding: 3px 5px;
  }

  .lang-flag {
    width: 18px;
    height: 12px;
  }

  .lms-kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* ORACLE CARD FLIP ANIMATIONS */
@keyframes flipInOracleCard {
  0% {
    opacity: 0;
    transform: rotateY(-90deg) scale(0.85);
  }

  60% {
    transform: rotateY(10deg) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
}

.oracle-revealed-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.oracle-revealed-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.35), inset 0 0 30px rgba(212, 175, 55, 0.2) !important;
}

/* COMPREHENSIVE RESPONSIVE MOBILE FIXES FOR ALL PAGES & CHECKOUT */
html {
  overflow-x: hidden !important;
  width: 100% !important;
}

body {
  overflow-x: hidden !important;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: flex-start;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

@media (max-width: 768px) {

  h1,
  .hero-title {
    font-size: 1.7rem !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  h2,
  .section-title {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  h3 {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.88rem !important;
    padding: 10px 20px !important;
    white-space: nowrap !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    justify-content: center !important;
    width: auto !important;
    display: inline-flex !important;
  }

  .btn-block,
  .btn-full-width {
    width: 100% !important;
    white-space: normal !important;
  }

  .glass-card {
    padding: 20px 16px !important;
    border-radius: 20px !important;
  }

  .form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  div[style*="padding: 44px"],
  div[style*="padding: 36px"] {
    padding: 20px 16px !important;
  }

  div[style*="height: 380px"],
  div[style*="height: 360px"] {
    height: 220px !important;
  }

  section[style*="padding-top: 130px"],
  section[style*="padding-top: 90px"],
  section[style*="padding-top: 140px"] {
    padding-top: 50px !important;
    padding-bottom: 40px !important;
  }
}

@media (max-width: 480px) {

  h1,
  .hero-title {
    font-size: 1.45rem !important;
  }

  h2,
  .section-title {
    font-size: 1.25rem !important;
  }

  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.82rem !important;
    padding: 9px 16px !important;
    border-radius: 24px !important;
    width: auto !important;
  }
}