/* ============================================
   Heal With Priyamvada — Brand Stylesheet
   Mystic Purple, Blush Pink, Gold — Tarot Poster Theme
   ============================================ */

:root {
  /* New brand palette (as supplied) */
  --primary: #5A2A70;
  --secondary: #3D1B52;
  --accent: #E8A0D8;
  --bg-light: #FDEAFB;
  --bg-soft: #F6C9EA;
  --highlight: #EFC5E8;
  --text-dark: #3D1B52;
  --gold: #A67608;

  /* Existing variable names mapped onto the new palette
     (kept so every rule below picks up the new colors automatically) */
  --rose: var(--primary);
  --rose-light: var(--accent);
  --rose-pale: var(--bg-light);
  --cream: var(--bg-soft);
  --gold-light: #A67608;
  --gold-dark: #A67608;
  --dark: var(--text-dark);
  --text: #000;
  --text-muted: #000;
  --white: #FFFFFF;
  --border: var(--highlight);
  --nav-h: 80px;

  /* Gradients */
  --grad-rose: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
  --grad-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  --grad-soft: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-light) 100%);
  --grad-hero: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-soft) 60%, var(--highlight) 100%);
  --grad-dark: linear-gradient(135deg, var(--text-dark) 0%, var(--secondary) 100%);

  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(90, 42, 112, 0.08);
  --shadow-md: 0 8px 40px rgba(90, 42, 112, 0.14);
  --shadow-lg: 0 16px 60px rgba(61, 27, 82, 0.18);
  --shadow-gold: 0 8px 30px rgba(194, 128, 50, 0.35);

  /* Shape */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Type */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  /* background: var(--cream); */
  overflow-x: hidden;
}

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

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

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

.container {
  width: 100%;
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 0 3%;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
}

/* ============================================ MANDALA BG */
.mandala-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%235A2A70' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='%235A2A70' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%235A2A70' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='30' fill='none' stroke='%235A2A70' stroke-width='0.5'/%3E%3Cpath d='M100 10 L100 190 M10 100 L190 100 M30 30 L170 170 M170 30 L30 170' stroke='%235A2A70' stroke-width='0.3' fill='none'/%3E%3C/svg%3E");
  background-size: 400px 400px;
}

/* ============================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  /* padding: 10px 22px; */
  font-size: 12px;
}

.btn-lg {
  padding: 5px 10px;
  font-size: 14px;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--white);
  /* box-shadow: var(--shadow-gold); */
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(194, 128, 50, 0.5);
  color: var(--dark);
}

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

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

/* alias so existing php btn-purple still works */
.btn-purple {
  background: var(--grad-rose);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
}

.btn-outline:hover {
  background: rgba(90, 42, 112, 0.08);
  border-color: var(--rose);
  color: var(--rose);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline1 {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

/* alias used in cta-banner */
.btn-gold1 {
  background: var(--white);
  color: var(--gold-dark);
  border: 2px solid var(--white);
}

.btn-gold1:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--border);
}

.btn-outline-dark:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.heal-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.heal-section-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ============================================ HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 5px 0;
  background: #fff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  /* transition: all var(--transition); */
}

.site-header.scrolled {
  padding: 5px 0;
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(90, 42, 112, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  width: 300px;
}

.logo-icon {
  font-size: 24px;
  color: var(--gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-left: 10px;
}

.logo-sub-footer {
  font-size: 10px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: var(--white);
  padding-left: 10px;
  margin-bottom: 10px;
  font-weight: 100;
}

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

.nav-menu a {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--rose);
  background: rgba(90, 42, 112, 0.07);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ============================================ HERO */
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.hero {
  margin-top: 90px;
  background-color: var(--cream);
  padding: 60px 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;

}

.hero-deco {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(194, 128, 50, 0.25);
  animation: float 8s ease-in-out infinite;
}

.hero-deco-1 {
  width: 320px;
  height: 320px;
  top: 8%;
  right: 2%;
  animation-delay: 0s;
}

.hero-deco-2 {
  width: 200px;
  height: 200px;
  bottom: 18%;
  left: -3%;
  animation-delay: 2s;
}

.hero-deco-3 {
  width: 150px;
  height: 150px;
  top: 42%;
  right: 14%;
  animation-delay: 4s;
  border-color: rgba(232, 160, 216, 0.3);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 50px;
  color: var(--primary);
  margin-bottom: 8px;
  /* font-weight: 700; */
}

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

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 13px;
}

.trust-item i {
  color: var(--primary);
  font-size: 16px;
}

/* ============================================ ELEMENTS STRIP */
.elements-strip {
  padding: 20px 0;
  background: var(--white);
  /* border-bottom: 1px solid var(--border); */
}

.elements-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

.element-item {
  text-align: center;
  color: var(--text);
}

.element-item i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.element-item span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================ SECTION COMMON */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  padding: 5px 16px;
  background: rgba(194, 128, 50, 0.1);
  border-radius: 50px;
  border: 1px solid var(--gold);
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 12px;
  color: var(--primary);
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--grad-rose);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================================ ABOUT PREVIEW */
.about-preview {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--grad-rose);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder {
  text-align: center;
  color: var(--white);
  padding: 40px;
}

.about-image-placeholder i {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  display: block;
}

.about-image-placeholder p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
}

.about-frame-deco {
  position: absolute;
  inset: -12px;
  /* border: 1px solid rgba(194, 128, 50, 0.4); */
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-content>p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.credential-tag {
  padding: 7px 16px;
  background: var(--rose-pale);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose);
}

/* ============================================ SERVICES */
.services-section {
  background: var(--grad-soft);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-light);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-pale);
  border-radius: 16px;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--rose);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.service-duration {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  flex-grow: 1;
  margin-bottom: 24px;
}

.service-card .btn {
  width: 100%;
}

/* ============================================ VIDEO SECTION */
.video-section {
  background: var(--dark);
  padding: 96px 0;
  overflow: hidden;
  position: relative;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(90, 42, 112, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(194, 128, 50, 0.1) 0%, transparent 50%);
}

.video-section .section-header {
  position: relative;
  z-index: 1;
}

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

.video-section .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.video-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 42, 112, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  cursor: pointer;
}

.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(90, 42, 112, 0.2) 0%, rgba(61, 27, 82, 0.8) 100%);
}

.video-thumb-placeholder i {
  font-size: 48px;
  color: var(--rose-light);
  margin-bottom: 12px;
}

.video-thumb-placeholder span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Play button overlay */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 27, 82, 0.5);
  transition: all var(--transition);
  cursor: pointer;
}

.video-play-btn:hover {
  background: rgba(61, 27, 82, 0.3);
}

.video-play-btn i {
  width: 60px;
  height: 60px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  transition: transform var(--transition);
  box-shadow: 0 0 30px rgba(90, 42, 112, 0.5);
}

.video-play-btn:hover i {
  transform: scale(1.1);
}

.video-info {
  padding: 20px;
}

.video-info h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.video-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ============================================ TESTIMONIAL SECTION */
/* ============================================
   TESTIMONIALS SECTION — COMPLETE FIXED CSS
   Vendor prefixes added for all properties
   ============================================ */

.heal-testimonials-section {
  background: transparent;
  padding: 50px 20px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Inner wrapper — was missing from CSS */
.heal-testimonials-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Section header — was missing from CSS */
.heal-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.heal-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 14px;
  font-weight: 700;
}

.heal-section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  /* max-width: 480px; */
  /* margin: 0 auto; */
  line-height: 1.6;
}

/* ----------------------------------------
   Swiper Container
---------------------------------------- */


.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  height: auto;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.swiper-slide-active {
  opacity: 1;
}

/* ----------------------------------------
   Testimonial Card
---------------------------------------- */
.heal-testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-transition: all var(--transition);
  -o-transition: all var(--transition);
  transition: all var(--transition);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.swiper-slide-active .heal-testimonial-card {
  border-color: var(--rose);
  -webkit-box-shadow: 0 12px 32px rgba(232, 160, 216, 0.15);
  box-shadow: 0 12px 32px rgba(232, 160, 216, 0.15);
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

/* Decorative Quote Mark */
.heal-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 100px;
  color: var(--rose-pale);
  line-height: 1;
  pointer-events: none;
  opacity: 0.7;
}

/* ----------------------------------------
   Stars
---------------------------------------- */
.heal-testimonial-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  z-index: 1;
  position: relative;
}

.heal-testimonial-stars i {
  color: var(--gold);
  font-size: 18px;
}

/* ----------------------------------------
   Text Content
---------------------------------------- */
.heal-testimonial-text {
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  max-height: 200px;
  overflow: hidden;
}

.heal-testimonial-text.truncated {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 100px;
}

.heal-testimonial-text.expanded {
  max-height: none;
  display: block;
}

/* ----------------------------------------
   Read More Button
---------------------------------------- */
.heal-read-more-btn {
  -ms-flex-item-align: start;
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--rose);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
  /* margin-bottom: 24px; */
  -webkit-transition: all var(--transition);
  -o-transition: all var(--transition);
  transition: all var(--transition);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.heal-read-more-btn:hover {
  color: #8A3D92;
  gap: 10px;
}

.heal-read-more-btn::after {
  content: '→';
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.heal-read-more-btn:hover::after {
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}

.heal-read-more-btn.expanded::before {
  content: '← ';
}

.heal-read-more-btn.expanded::after {
  content: '';
}

/* ----------------------------------------
   Author Section
---------------------------------------- */
.heal-testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.heal-testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-rose);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0 4px 12px rgba(232, 160, 216, 0.25);
  box-shadow: 0 4px 12px rgba(232, 160, 216, 0.25);
  overflow: hidden;
  border: 2px solid var(--white);
}

.heal-testimonial-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.heal-testimonial-avatar.no-img {
  background: var(--grad-rose);
}

.heal-testimonial-avatar.no-img span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.heal-testimonial-meta {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.heal-testimonial-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
}

.heal-testimonial-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ----------------------------------------
   Swiper Navigation Buttons
---------------------------------------- */
.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  color: var(--rose);
  font-size: 18px;
  -webkit-transition: all var(--transition);
  -o-transition: all var(--transition);
  transition: all var(--transition);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
  font-weight: 600;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

/* ----------------------------------------
   Pagination
---------------------------------------- */
.swiper-pagination {
  bottom: 0 !important;
  position: relative !important;
  margin-top: 40px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--border);
  opacity: 0.6;
  -webkit-transition: all var(--transition);
  -o-transition: all var(--transition);
  transition: all var(--transition);
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background: var(--rose);
  opacity: 1;
  width: 32px;
  border-radius: 6px;
}

/* ----------------------------------------
   Responsive — 1024px
---------------------------------------- */
@media (max-width: 1024px) {
  .heal-testimonials-section {
    padding: 60px 20px;
  }

  .heal-testimonial-card {
    padding: 40px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

/* ----------------------------------------
   Responsive — 768px
---------------------------------------- */
@media (max-width: 768px) {
  .heal-testimonials-section {
    padding: 50px 16px;
    min-height: auto;
  }

  .heal-section-header {
    margin-bottom: 40px;
  }

  .heal-section-header h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 12px;
  }

  .heal-testimonial-card {
    padding: 32px;
  }

  .heal-testimonial-text {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .heal-testimonial-card::before {
    font-size: 70px;
    top: 10px;
    right: 20px;
  }
}

/* ----------------------------------------
   Responsive — 640px
---------------------------------------- */
@media (max-width: 640px) {
  .swiper-button-prev {
    left: -8px;
  }

  .swiper-button-next {
    right: -8px;
  }
}

/* ============================================ COURSES PREVIEW */
.courses-preview {
  background: var(--white);
  color: var(--dark);
  position: relative;
  overflow: hidden;
}

.courses-preview::before {
  content: '';
  position: absolute;
  inset: 0;

}

.courses-preview .section-header {
  position: relative;
  z-index: 1;
}

.courses-preview .section-header h2,
.courses-preview .section-header p {
  color: #3D1B52;
}

.courses-preview .section-label {
  color: var(--gold-dark);
  background: rgba(194, 128, 50, 0.12);
  border-color: var(--gold);
}

.courses-preview .section-divider {
  background: var(--grad-gold);
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.level-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.level-card:hover {
  background: rgba(90, 42, 112, 0.12);
  border-color: rgba(90, 42, 112, 0.3);
  transform: translateY(-4px);
}

.level-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose-light);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 12px;
}

.level-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.level-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 20px;
}

.level-card ul {
  list-style: none;
  margin-bottom: 28px;
}

.level-card li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0 6px 20px;
  position: relative;
}

.level-card li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 8px;
}

/* ============================================ CTA BANNER */
.cta-banner {
  background: var(--grad-soft);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '☥';
  position: absolute;
  font-size: 220px;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--dark);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--primary);
  font-size: 40px;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: var(--text);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
}

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

/* ============================================ PAGE HERO (inner pages) */
.page-hero {
  padding: 130px 0 20px;
  background: var(--grad-rose);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: 35px;
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero .hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
}

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

.breadcrumb span {
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================ ABOUT PAGE */
/* Hero */
.about-page-hero {
  padding: 140px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 30%, rgba(90, 42, 112, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(194, 128, 50, 0.08) 0%, transparent 50%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(194, 128, 50, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(194, 128, 50, 0.3);
}

.about-hero-content h1 {
  font-size: 50px;
  color: var(--gold);
  /* margin-bottom: 10px; */
}

.about-hero-role {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--rose);
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-hero-intro {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 32px;
}

.about-hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.about-stat strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose);
}

.about-stat span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.about-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Portrait */
.about-hero-portrait {
  position: relative;
  z-index: 1;
}

.portrait-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  /* width: 340px; */
  height: auto;
  background: var(--rose-pale);
  border-radius: 50% 40% 60% 30% / 40% 60% 40% 60%;
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
}

.portrait-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  /* aspect-ratio: 2/2; */
  background: var(--grad-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.portrait-inner {
  text-align: center;
  color: var(--white);
  padding: 40px;
}

.portrait-inner i {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  display: block;
}

.portrait-inner span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
}

.portrait-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  color: var(--rose);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.portrait-badge i {
  color: var(--gold);
  margin-right: 6px;
}

.breadcrumb-light a {
  color: var(--rose);
}

.breadcrumb-light span {
  color: var(--text-muted);
}

/* Pillars */
.about-pillars {
  background: var(--white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.pillar-card:hover {
  background: var(--rose-pale);
  border-color: var(--rose-light);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background: var(--rose-pale);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--rose);
  transition: all var(--transition);
}

.pillar-card:hover .pillar-icon {
  background: var(--rose);
  color: var(--white);
}

.pillar-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Journey */
.about-journey {
  background: var(--grad-soft);
}

.about-journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.journey-content .section-label {
  display: inline-block;
}

.journey-content h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.journey-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 16px;
}

.journey-quote-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 30px 40px;
  /* border: 1px solid var(--border); */
  /* box-shadow: var(--shadow-sm); */
  position: relative;
  align-self: start;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 100px;
  font-weight: 700;
  color: var(--rose-pale);
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
}

.journey-quote-card blockquote {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.journey-quote-card cite {
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.5px;
}

.quote-deco {
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 12px;
}

/* Approach */
.about-approach {
  background: var(--white);
}

.approach-content {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.approach-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.journey-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 100%;
}

.journey-step {
  text-align: center;
  padding: 32px 40px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex: 1;
  min-width: 160px;
}

.step-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--rose-light);
  margin-bottom: 6px;
  line-height: 1;
}

.journey-step h4 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.journey-step p {
  font-size: 13px;
  color: var(--text-muted);
}

.journey-step-arrow {
  color: var(--rose-light);
  font-size: 20px;
  padding: 0 12px;
  flex-shrink: 0;
}

/* Certifications */
.about-certifications {
  background: var(--grad-soft);
}

.cert-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cert-showcase-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.cert-showcase-card:hover {
  border-color: var(--rose-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.cert-showcase-icon {
  width: 56px;
  height: 56px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--rose);
  margin: 0 auto 16px;
}

.cert-showcase-card h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.cert-showcase-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Location */
.about-location {
  background: var(--white);
}

.location-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 40px;
  background: var(--rose-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}

.location-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
}

.location-card>div {
  flex: 1;
  min-width: 200px;
}

.location-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.location-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.location-note {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--rose) !important;
  font-size: 13px !important;
}

.location-note i {
  font-size: 14px;
}

/* ============================================ COURSES PAGE */
.page-hero-courses {
  background: var(--grad-rose);
}

.courses-intro {
  background: var(--white);
}

.courses-intro-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}

.courses-intro-text .section-label {
  display: inline-block;
}

.courses-intro-text h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.courses-intro-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.courses-intro-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

/* Level Showcase */
.course-levels-showcase {
  background: var(--grad-soft);
}

.level-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.level-showcase-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.level-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Theme variants */
.level-showcase-card.theme-pink {
  border-color: var(--rose-light);
}

.level-showcase-card.theme-gold {
  border-color: var(--gold-light);
}

.level-showcase-card.theme-rose {
  border-color: var(--rose);
}

.level-showcase-card.theme-pink:hover {
  border-color: var(--rose);
}

.level-showcase-card.theme-gold:hover {
  border-color: var(--gold);
}

.level-showcase-card.theme-rose:hover {
  border-color: var(--rose);
}

.level-showcase-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  pointer-events: none;
}

.theme-pink .level-showcase-glow {
  background: radial-gradient(circle, rgba(90, 42, 112, 0.1), transparent);
}

.theme-gold .level-showcase-glow {
  background: radial-gradient(circle, rgba(194, 128, 50, 0.12), transparent);
}

.theme-rose .level-showcase-glow {
  background: radial-gradient(circle, rgba(90, 42, 112, 0.15), transparent);
}

.level-showcase-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.level-showcase-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
}

.theme-pink .level-showcase-num {
  color: var(--rose-light);
}

.theme-gold .level-showcase-num {
  color: var(--gold-light);
}

.theme-rose .level-showcase-num {
  color: var(--rose-light);
}

.level-showcase-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.theme-pink .level-showcase-icon {
  background: var(--rose-pale);
  color: var(--rose);
}

.theme-gold .level-showcase-icon {
  background: rgba(194, 128, 50, 0.1);
  color: var(--gold-dark);
}

.theme-rose .level-showcase-icon {
  background: var(--rose-pale);
  color: var(--rose);
}

.level-showcase-body {
  flex: 1;
}

.level-showcase-for {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.level-showcase-for i {
  font-size: 11px;
}

.level-showcase-card h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.level-showcase-sub {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--rose);
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.level-showcase-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.level-showcase-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.level-showcase-tags li {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--cream);
}

.level-showcase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.level-showcase-actions .btn {
  flex: 1;
  /* min-width: 120px; */
  justify-content: center;
}

/* Path */
.courses-path {
  background: var(--white);
  padding: 48px 0;
}

.path-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 20px;
}

.path-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 32px;
}

.path-step span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.path-step p {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.path-line {
  width: 80px;
  height: 2px;
  background: var(--grad-rose);
  opacity: 0.4;
  flex-shrink: 0;
}

.path-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--rose-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 18px;
}

.contact-card h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  font-size: 15px;
  color: var(--text);
}

.contact-card a:hover {
  color: var(--rose);
}

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.contact-form-wrap>p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(90, 42, 112, 0.1);
}

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

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

.form-message {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  display: block;
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #f48fb1;
}


/* ============================================ FOOTER */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0);
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-mandala {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(194, 128, 50, 0.08);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo img {
  width: 90%;
}

.footer-tagline {
  color: var(--gold-dark);
  font-size: 13px;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--rose);
  color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  color: var(--white);
}

.footer-links a,
.footer-contact a {
  color: var(--white);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--rose-light);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.footer-contact li i {
  color: var(--rose-light);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--gold);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--white);
  margin-top: 2px;
}

.footer-note {
  margin-top: 4px;
}

.mt-3 {
  margin-top: 16px;
}

/* ==========================
   Footer Note Links
========================== */

.footer-note ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-note ul li {
  position: relative;
}

.footer-note ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 14px;
}

.footer-note ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-note ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold-dark);
  transition: width 0.3s ease;
}

.footer-note ul li a:hover {
  color: var(--gold-dark);
}

.footer-note ul li a:hover::after {
  width: 100%;
}

/* ============================================ WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

/* ============================================ SERVICES PAGE */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:nth-child(even) {
  background: var(--cream);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse>* {
  direction: ltr;
}

.service-detail-visual {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: var(--grad-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail-visual i {
  font-size: 100px;
  color: rgba(255, 255, 255, 0.3);
}

.service-detail-visual::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: calc(var(--radius-xl) - 8px);
}

.service-detail-content h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.service-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 50px;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  margin: 24px 0;
}

.service-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
}

.service-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.booking-note {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.booking-note i {
  color: var(--rose);
  font-size: 20px;
  margin-top: 2px;
}

.booking-note p {
  font-size: 14px;
  margin: 0;
  color: var(--text-muted);
}

/* Misc shared */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.cert-card {
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.cert-card i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 12px;
}

.cert-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.outcome-box {
  background: var(--grad-rose);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.outcome-box i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.outcome-box h4 {
  color: var(--gold-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.outcome-box p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.waitlist-banner {
  background: var(--rose-pale);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  margin-top: 60px;
  border: 1px solid var(--border);
}

.waitlist-banner h3 {
  color: var(--dark);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.waitlist-banner p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.course-level {
  padding: 80px 0;
}

.course-level:nth-child(odd) {
  background: var(--white);
}

.course-level:nth-child(even) {
  background: var(--cream);
}

.course-level-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.level-badge {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--grad-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.course-level-header h2 {
  font-size: 2rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.course-level-header .subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--rose);
  font-size: 1.1rem;
}

.course-topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.topic-group {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.topic-group h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 8px;
}

.topic-group h4 i {
  color: var(--gold);
  font-size: 13px;
}

.topic-group ul {
  list-style: none;
}

.topic-group li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 5px 0 5px 16px;
  position: relative;
}

.topic-group li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--rose-light);
}

.course-hero-text {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.course-hero-text p {
  color: var(--text-muted);
  font-size: 17px;
}

/* ============================================ RESPONSIVE */
@media (max-width: 1024px) {

  .services-grid,
  .levels-grid,
  .videos-grid,
  .cert-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .levels-grid,
  .videos-grid,
  .level-showcase-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .about-hero-grid,
  .about-grid,
  .about-journey-grid,
  .courses-intro-inner,
  .service-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-portrait {
    display: block;
  }

  .courses-intro-stats {
    flex-direction: row;
  }

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

  .service-detail-grid.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    gap: 4px;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .nav-cta {
    margin-top: 16px;
  }

  .nav-cta .btn {
    width: 100%;
  }

  section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
    margin-top: 30px;
  }

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


  .services-grid,
  .levels-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .cert-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journey-steps {
    flex-direction: column;
  }

  .journey-step-arrow {
    transform: rotate(90deg);
  }

  .testimonial-card {
    padding: 32px 24px;
  }

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

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

  .course-level-header {
    flex-direction: column;
  }

  .outcome-box {
    flex-direction: column;
    text-align: center;
  }

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

  .location-card {
    flex-direction: column;
    text-align: center;
  }

  .location-note {
    justify-content: center;
  }

  .courses-intro-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {

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

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  .pillars-grid,
  .cert-showcase-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .about-hero-stats {
    gap: 24px;
  }

  .testimonial-card::before {
    font-size: 80px;
  }
}


/* =========================
   Course Hero Section
========================= */
.level-hero-1 {
  background-color: var(--cream);
}

.course-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;

}

.course-hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin: 0px 0 10px;
  color: var(--gold);
}

.course-hero-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.course-hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 650px;
  margin-bottom: 35px;
}

.level-pill {
  display: inline-block;
  /* background: linear-gradient(135deg, #C28032, #E4BE86); */
  color: var(--gold);
  padding: 10px 0px;
  font-size: 14px;
  /* font-weight: 700; */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.course-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}

.course-hero-chips span {
  display: flex;
  align-items: center;
  gap: 8px;
  /* background: #fff;
  border: 1px solid #EFC5E8; */
  padding: 12px 0px;
  /* border-radius: 50px; */
  font-size: 14px;
  /* font-weight: 500; */
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
}

.course-hero-chips i {
  color: var(--primary);
}

/* Buttons */

.course-hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}





/* =========================
   Right Visual
========================= */

.course-hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg,
      #FBEAF7,
      #F5DCF0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed #C28032;
  border-radius: 50%;
  animation: rotateRing 20s linear infinite;
}

.visual-icon {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #C28032, #8F5D22);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 55px;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(143, 93, 34, .25);
}

.visual-cards {
  position: absolute;
  inset: 0;
}

.visual-cards span {
  position: absolute;
  font-size: 30px;
  color: #8F5D22;
}

.visual-cards span:nth-child(1) {
  top: 20%;
  left: 15%;
}

.visual-cards span:nth-child(2) {
  top: 15%;
  right: 18%;
}

.visual-cards span:nth-child(3) {
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {

  .course-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .course-hero-content h1 {
    font-size: 2.8rem;
  }

  .course-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .course-hero-chips,
  .course-hero-btns {
    justify-content: center;
  }

  .course-hero-visual {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 576px) {

  .course-hero-grid {
    padding: 50px 0;
  }

  .course-hero-content h1 {
    font-size: 2.2rem;
  }

  .course-hero-tagline {
    font-size: 1.1rem;
  }

  .course-hero-desc {
    font-size: 15px;
  }

  .course-hero-visual {
    width: 280px;
    height: 280px;
  }

  .visual-icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
}

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

.curriculum-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid #EFC5E8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
}

.curriculum-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary)
}

.curriculum-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 20px 45px rgba(143, 93, 34, 0.15); */
  border-color: var(--primary);
}

/* Icon */

.curriculum-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.curriculum-icon i {
  font-size: 28px;
  color: #fff;
}

/* Heading */

.curriculum-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin-bottom: 20px;
}

/* List */

.curriculum-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.curriculum-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

.curriculum-card ul li:last-child {
  margin-bottom: 0;
}

.curriculum-card ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

/* ===================================
   Animation
=================================== */

.curriculum-card.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===================================
   Tablet
=================================== */

@media (max-width: 991px) {

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

  .curriculum-card {
    padding: 30px 25px;
  }
}

/* ===================================
   Mobile
=================================== */

@media (max-width: 767px) {

  .curriculum-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .curriculum-card {
    padding: 25px 20px;
  }

  .curriculum-card h3 {
    font-size: 1.2rem;
  }

  .curriculum-icon {
    width: 60px;
    height: 60px;
  }

  .curriculum-icon i {
    font-size: 24px;
  }
}

/* ============================
   Course Outcome Section
============================ */

.course-outcome-section {
  padding: 80px 0;
}

.outcome-banner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(143, 93, 34, 0.15);
  box-shadow: 0 15px 40px rgba(143, 93, 34, 0.08);
  position: relative;
  overflow: hidden;
}

.outcome-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary);
}

.outcome-icon {
  min-width: 90px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(143, 93, 34, 0.25);
}

.outcome-icon i {
  font-size: 36px;
  color: #fff;
}

.outcome-banner h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.outcome-banner p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
  max-width: 800px;
}

/* ============================
   Responsive
============================ */

@media (max-width: 768px) {

  .outcome-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
    gap: 20px;
  }

  .outcome-banner h3 {
    font-size: 24px;
  }

  .outcome-banner p {
    font-size: 15px;
  }

  .outcome-icon {
    width: 75px;
    height: 75px;
    min-width: 75px;
  }

  .outcome-icon i {
    font-size: 30px;
  }
}

/* ==========================
   Course Level Navigation
========================== */

.course-nav-levels {
  padding: 40px 0;
}

.level-nav-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.level-nav-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 10px 25px;
  background: #fff;
  border: 1px solid #EFC5E8;
  border-radius: 16px;
  text-decoration: none;
  color: #3D1B52;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.level-nav-card span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  /* background: #f5f5f5; */
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.35s ease;
}

/* Hover Effect */

.level-nav-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  /* box-shadow: 0 15px 35px rgba(143, 93, 34, 0.15); */
}

.level-nav-card:hover span {
  background: var(--gold-dark);
  color: #fff;
}

/* Active Card */

.level-nav-card.active {
  background: var(--gold-dark);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(143, 93, 34, 0.25);
}

.level-nav-card.active span {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ==========================
   Responsive
========================== */

@media (max-width: 991px) {

  .level-nav-card {
    min-width: 180px;
    font-size: 16px;
  }
  
}

@media (max-width: 767px) {

  .level-nav-cards {
    flex-direction: column;
  }

  .level-nav-card {
    width: 100%;
    justify-content: flex-start;
  }
  
}

.whatsapp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.whatsapp-text{
  display: inline;
}

/* Mobile */

@media (max-width: 767px){

  .whatsapp-text{
      display: none;
  }

  .whatsapp-btn{
      width: 42px;
      height: 42px;
      padding: 0;
      border-radius: 50%;
  }

  .whatsapp-btn i{
      font-size: 20px;
      margin: 0;
  }



}
.book-now{
  display: none;;
}