:root {
  --gold: #C9A227;
  --gold-light: #E8D48B;
  --gold-dark: #8B7355;
  --gold-glow: rgba(201, 162, 39, 0.45);
  --white: #FFFFFF;
  --text-dark: #2C2C2C;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

#aura-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.content {
  position: relative;
  z-index: 1;
  animation: page-fade 0.28s ease;
}

@keyframes page-fade {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

/* Announcement Bar */
.announce-bar {
  position: relative;
  z-index: 200;
  background: linear-gradient(90deg, #8B7355, #C9A227, #8B7355);
  color: #fff;
  text-align: center;
  padding: 0.65rem 3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.announce-bar p { margin: 0; }

.announce-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.3rem;
  white-space: nowrap;
}

.announce-bar a:hover { color: #2C2C2C; }

.announce-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.announce-close:hover { opacity: 1; }

@media (max-width: 600px) {
  .announce-bar { padding: 0.65rem 2.4rem; font-size: 0.78rem; }
  .announce-bar a { display: block; margin-left: 0; margin-top: 0.15rem; }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.7rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: nowrap;
  gap: 0.8rem 1.4rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 18px rgba(201, 162, 39, 0.12);
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-area img {
  height: 84px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--gold-glow));
  transition: filter 0.3s, transform 0.3s;
}

.logo-area:hover img {
  filter: drop-shadow(0 0 16px var(--gold-glow));
  transform: scale(1.05);
}

.site-title-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-title {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-shadow: 0 0 10px var(--gold-glow);
}

.chapter-name {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.9;
}

/* Header organization logos */
.header-org-logos {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: 0.8rem;
  margin-right: auto;
}

.header-org-logos a {
  display: inline-block;
  transition: transform 0.25s ease;
}

.header-org-logos a:hover {
  transform: scale(1.08);
}

.header-org-logo {
  height: 78px;
  width: auto;
  opacity: 0.95;
}

nav {
  display: flex;
  gap: 1.7rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-left: auto;
}

nav a {
  font-family: 'Cinzel', serif;
  color: var(--gold-dark);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
  padding-bottom: 3px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s;
}

nav a:hover,
nav a.active {
  color: var(--gold);
  text-shadow: 0 0 8px var(--gold-glow);
}

nav a:hover::after,
nav a.active::after { width: 100%; }

/* Page Hero */
.page-hero {
  text-align: center;
  padding: 3rem 2rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 18px var(--gold-glow);
  margin-bottom: 0.6rem;
}

.page-hero .subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold-dark);
  font-style: italic;
}

.founder-photo {
  margin-bottom: 1.5rem;
}

.founder-photo img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 28px var(--gold-glow);
}

/* Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  max-width: 240px;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  border: 3px solid var(--gold);
  box-shadow: 0 6px 20px rgba(201,162,39,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(201,162,39,0.3);
}

.gallery-item p {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold-dark);
  margin-top: 0.6rem;
}

/* Video Section */
.video-section {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(201,162,39,0.2);
  border: 2px solid rgba(201,162,39,0.25);
  background: #1a1a2e;
}

.video-wrapper iframe,
.video-wrapper video,
.video-wrapper .video-facade {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-facade {
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-facade::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,20,30,0.35);
  transition: background 0.3s;
}

.video-facade:hover::before { background: rgba(20,20,30,0.5); }

.video-facade .play-icon {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(201,162,39,0.3);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  padding-left: 5px;
  backdrop-filter: blur(2px);
  transition: transform 0.3s, background 0.3s;
}

.video-facade:hover .play-icon {
  transform: scale(1.08);
  background: rgba(201,162,39,0.5);
}

.video-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
  color: #E8D48B;
  text-align: center;
}

.video-placeholder .play-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201,162,39,0.25);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-left: 4px;
}

.video-placeholder p {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin: 0.2rem 0;
}

.video-placeholder .video-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(232,212,139,0.7);
  font-weight: 300;
}

/* Energy Mandala */
.mandala-section {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(180deg, #F9F6F0 0%, #fff 100%);
}

.mandala-img {
  max-width: 380px;
  width: 90%;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(201,162,39,0.25);
  border: 3px solid rgba(201,162,39,0.3);
}

.mandala-caption {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dark);
  margin-top: 1.2rem;
  font-size: 1.05rem;
}

/* Great Invocation */
.invocation-section {
  text-align: center;
  padding: 3rem 2rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.invocation-note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.invocation-image img {
  max-width: 100%;
  width: 480px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: 2px solid rgba(201,162,39,0.25);
}

/* Home Hero */
.hero {
  max-width: 900px;
  margin: 2.5rem auto 3.5rem;
  padding: 0 2rem;
  text-align: center;
}

.hero-logo {
  margin-bottom: 1.2rem;
}

.hero-logo img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
  animation: gentle-pulse 4s ease-in-out infinite;
}

@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 0 18px var(--gold-glow); transform: scale(1); }
  50% { box-shadow: 0 0 32px var(--gold-glow); transform: scale(1.03); }
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  margin: 1.2rem 0 0.4rem;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 18px var(--gold-glow);
}

.hero .subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-dark);
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-text {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #444;
  max-width: 720px;
  margin: 0 auto 2.2rem;
  font-weight: 300;
}

.hero-text strong { color: var(--gold-dark); font-weight: 500; }

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Cinzel', serif;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #C9A227, #E8D48B);
  color: #1a1a1a;
  box-shadow: 0 4px 18px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--gold-glow);
}

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

.btn-secondary:hover {
  background: var(--gold);
  color: #1a1a1a;
  box-shadow: 0 4px 18px var(--gold-glow);
}

/* Features / Cards */
.features {
  background: linear-gradient(180deg, #fff 0%, #F9F6F0 100%);
  padding: 3.5rem 2rem;
}

.features-inner { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px var(--gold-glow);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 6px 24px rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.18);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4FC3F7, #66BB6A, #C9A227);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(201,162,39,0.2);
}

.card-icon { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; }

.card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
  font-weight: 300;
}

/* Content sections */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.content-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 2rem 0 1rem;
}

.content-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.content-section ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: #444;
  line-height: 1.8;
}

/* Course categories + WhatsApp buttons */
.course-category {
  margin-bottom: 2.5rem;
}

.category-title {
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(201,162,39,0.25);
}

.course-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.course-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(201,162,39,0.06);
  flex-wrap: wrap;
}

.course-name {
  font-size: 1.02rem;
  color: #333;
  font-weight: 500;
}

.btn-whatsapp {
  display: inline-block;
  background: #25D366;
  color: #fff !important;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 3px 10px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(37,211,102,0.4);
}

/* Schedule table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2.5rem;
  font-size: 0.95rem;
}

.schedule-table th {
  background: linear-gradient(135deg, #C9A227, #E8D48B);
  color: #1a1a1a;
  font-family: 'Cinzel', serif;
  padding: 0.9rem 1rem;
  text-align: left;
}

.schedule-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(201,162,39,0.2);
  color: #444;
}

.schedule-table tr:hover td {
  background: rgba(201,162,39,0.06);
}

/* Event cards */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.event-card {
  background: #fff;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 18px rgba(201,162,39,0.08);
}

.event-card .date {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.event-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.event-card p { font-size: 0.92rem; color: #555; line-height: 1.6; }

/* Shop */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 14px;
  padding: 1.3rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(201,162,39,0.08);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover { transform: translateY(-5px); }

.book-cover {
  width: 140px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  margin-bottom: 1rem;
  border: 1px solid rgba(201,162,39,0.2);
}

.product-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.product-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-card .price {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0.8rem 0;
}

.product-card .btn-whatsapp {
  margin-top: auto;
}

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 1.5rem auto 0;
}

.contact-form label {
  display: block;
  font-family: 'Cinzel', serif;
  color: var(--gold-dark);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  margin-top: 1.1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

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

.contact-form button {
  margin-top: 1.5rem;
  width: 100%;
}

/* Quote */
.quote-section {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  position: relative;
}

.quote::before {
  content: '"';
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -1.3rem;
  left: -0.8rem;
}

.quote-author {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  background: #1a1a1a;
  color: var(--gold-light);
  padding: 2.8rem 2rem 1.8rem;
  text-align: center;
}

.footer-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Left side logos */
.footer-left-logos {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-left-logos a {
  display: inline-block;
  transition: transform 0.25s ease;
}

.footer-left-logos a:hover {
  transform: scale(1.04);
}

/* Balanced logo sizes */
.footer-org-logo {
  height: auto;
  width: 290px;
  object-fit: contain;
  opacity: 0.95;
  border-radius: 10px;
  transition: opacity 0.25s ease;
}

.footer-org-logo:hover {
  opacity: 1;
}

.footer-left-logos a:first-child .footer-org-logo {
  width: 300px;
}

.footer-left-logos a:last-child .footer-org-logo {
  width: 290px;
}

/* Center content */
.footer-center {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

/* Full brand logo + text */
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.footer-brand .footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 0;
  filter: brightness(1.1);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.footer-site-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer-chapter {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

footer p {
  font-size: 0.88rem;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

footer .copyright {
  margin-top: 1.3rem;
  font-size: 0.78rem;
  opacity: 0.55;
}

footer .footer-links {
  margin: 1rem 0;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.8;
}

footer .footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-legal {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.2rem 0 0.8rem;
}

.footer-legal a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.82rem;
  opacity: 0.75;
  transition: color 0.25s, opacity 0.25s;
}

.footer-legal a:hover {
  color: var(--gold);
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.2rem 0 0.5rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gold);
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(201,162,39,0.4);
}

/* Floating Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.chat-launcher {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, #E8D48B, var(--gold) 55%, var(--gold-dark));
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(201,162,39,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.chat-launcher::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  transform: translate(-50%, -50%) scale(1);
  animation: float-whatsapp-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

.chat-launcher:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(201,162,39,0.6);
}

.chat-launcher svg { position: absolute; transition: opacity 0.2s, transform 0.2s; }

.chat-launcher .icon-close {
  opacity: 0;
  transform: scale(0.6) rotate(-45deg);
}

.chat-widget.open .chat-launcher .icon-chat {
  opacity: 0;
  transform: scale(0.6) rotate(45deg);
}

.chat-widget.open .chat-launcher .icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

@keyframes float-whatsapp-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
  70% { transform: translate(-50%, -50%) scale(1.55); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1.55); opacity: 0; }
}

.chat-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 310px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.85) translateY(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
}

.chat-widget.open .chat-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.chat-panel-header {
  background: linear-gradient(135deg, #2C2C2C, #3a3327 60%, var(--gold-dark));
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.chat-panel-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}

.chat-panel-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin: 0;
}

.chat-panel-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  margin: 0.1rem 0 0;
  letter-spacing: 0.03em;
}

.chat-panel-body {
  padding: 1.1rem 1.1rem 0.3rem;
}

.chat-panel-body p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #444;
  margin: 0 0 0.5rem;
}

.chat-panel-body strong {
  font-family: 'Cinzel', serif;
  color: var(--gold-dark);
}

.chat-panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}

.chat-panel-cta:hover { background: #1fb955; transform: translateY(-2px); }

.chat-bubble {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 220px;
  background: #fff;
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  padding: 0.85rem 1.9rem 0.85rem 1rem;
  box-shadow: 0 10px 30px rgba(201,162,39,0.3);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  animation: chat-bubble-in 0.5s ease 1s both;
}

.chat-widget.open .chat-bubble,
.chat-widget.dismissed .chat-bubble { display: none; }

.chat-bubble::after {
  content: '';
  position: absolute;
  bottom: -9px;
  right: 26px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

.chat-bubble p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #2C2C2C;
}

.chat-bubble p strong {
  font-family: 'Cinzel', serif;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.chat-bubble-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: #999;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem;
  z-index: 1;
}

.chat-bubble-close:hover { color: var(--gold-dark); }

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

.float-top {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1a1a;
  border: none;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(201,162,39,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
}

.float-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-top:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 3.5rem 1.5rem 2.4rem;
  background: linear-gradient(180deg, #F4EFE4 0%, #F9F6F0 100%);
}

.testimonials-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.testimonials-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
}

.testimonials-intro {
  text-align: center;
  color: var(--text-dark);
  margin: -1.2rem auto 2.2rem;
  max-width: 640px;
  font-size: 0.98rem;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: #fff;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: 0 8px 24px rgba(201,162,39,0.12);
  min-height: 280px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A227, #E8D48B);
  color: #1a1a1a;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Cinzel', serif;
  color: var(--text-dark);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  margin: 0;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.3rem;
  padding: 0 0.2rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.45rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(201,162,39,0.28);
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--gold);
}

.testimonial-arrows {
  display: flex;
  gap: 0.6rem;
}

.testimonial-arrow {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.2rem 0.35rem;
}

.testimonial-arrow:hover {
  color: var(--gold-dark);
}

@media (max-width: 1100px) {
  .testimonial-card {
    flex-basis: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-basis: 100%;
    min-height: auto;
  }
}

/* ===== Session Promo ===== */
.session-promo {
  padding: 3.5rem 1.5rem;
  background: linear-gradient(180deg, #fff 0%, #F9F6F0 100%);
}

.session-promo-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 2.8rem 2.5rem;
  box-shadow: 0 20px 50px rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.2);
  position: relative;
  overflow: hidden;
}

.session-promo-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  pointer-events: none;
}

.session-header { text-align: center; margin-bottom: 2.2rem; }

.session-ph-logo { height: 56px; margin-bottom: 0.6rem; filter: drop-shadow(0 0 8px var(--gold-glow)); }

.session-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold-glow);
}

.session-title span { color: var(--gold-dark); }

.session-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  margin-top: 0.3rem;
}

.session-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.session-cards { display: flex; flex-direction: column; gap: 1.1rem; }

.session-card {
  background: #F9F6F0;
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  position: relative;
  overflow: hidden;
}

.session-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4FC3F7, #66BB6A, #C9A227);
}

.session-card-icon { font-size: 1.6rem; margin-right: 0.3rem; }

.session-card h3 {
  font-family: 'Cinzel', serif;
  display: inline-block;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  vertical-align: middle;
}

.session-card-sub {
  font-weight: 600;
  color: #2c2c2c;
  margin: 0.4rem 0 0.35rem;
  font-size: 0.95rem;
}

.session-card p:not(.session-card-sub) {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #555;
  font-weight: 300;
}

.session-languages {
  margin-top: 0.4rem;
  text-align: center;
}

.session-languages-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.7rem;
}

.lang-badges { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }

.lang-badge {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  background: linear-gradient(135deg, #C9A227, #E8D48B);
}

.session-cta {
  background: linear-gradient(165deg, #2C2C2C 0%, #3a3327 60%, #4a3f22 100%);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(201,162,39,0.25);
  border: 1px solid rgba(201,162,39,0.35);
}

.join-today-label {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: -0.3rem;
}

.join-today {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: #fff;
}

.session-clock { margin: 1.1rem auto; width: 130px; }

.clock-svg { width: 100%; height: auto; }

.clock-face {
  fill: #1a1a1a;
  stroke: var(--gold-light);
  stroke-width: 2;
}

.clock-hand {
  stroke: var(--gold-light);
  stroke-width: 4;
  stroke-linecap: round;
}

.minute-hand { stroke-width: 3; }

.clock-center { fill: var(--gold-light); }

.session-time-label {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.4rem;
}

.session-time {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  color: #fff;
}

.session-benefits {
  list-style: none;
  text-align: left;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.session-benefits li {
  font-size: 0.92rem;
  font-weight: 600;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,162,39,0.3);
}

.session-benefits li span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.session-scan {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.45);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: #fff;
  text-align: left;
  transition: background 0.3s, transform 0.3s;
}

.session-scan:hover { background: rgba(201,162,39,0.22); transform: translateY(-2px); }

.session-scan .scan-icon {
  font-size: 1.3rem;
  color: #25D366;
  flex-shrink: 0;
}

.session-scan small { display: block; font-weight: 300; opacity: 0.8; margin-top: 0.15rem; }

.session-facilitator {
  text-align: center;
  margin-top: 2.3rem;
}

.session-facilitator p { font-size: 0.85rem; color: #666; letter-spacing: 0.05em; }

.session-facilitator .chapter {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

.session-facilitator .facilitator-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin-top: 0.1rem;
}

.session-link-note {
  max-width: 560px;
  margin: 1.6rem auto 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 50px;
  padding: 0.7rem 1.3rem;
  font-size: 0.85rem;
  color: #444;
}

.session-link-note .link-icon {
  background: var(--gold);
  color: #1a1a1a;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.session-footer-tagline {
  text-align: center;
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: var(--gold-dark);
  line-height: 1.7;
}

.session-footer-tagline strong {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.06em;
  color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .footer-left-logos {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 1.8rem;
  }
  
  .footer-org-logo {
    width: 210px;
  }
  
  .footer-left-logos a:first-child .footer-org-logo {
    width: 220px;
  }
  
  .footer-center {
    max-width: 100%;
  }
  
  .footer-brand {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-brand-text {
    text-align: center;
  }
}

@media (max-width: 860px) {
  .session-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  header { flex-direction: column; }
  nav { gap: 0.9rem; }
  .hero-logo img { width: 159px; height: 159px; }
  .founder-photo img { width: 160px; height: 160px; }
  .gallery-item img { height: 200px; }
  .mandala-img { max-width: 280px; }
  .course-row { flex-direction: column; align-items: flex-start; }
  .btn-whatsapp { width: 100%; text-align: center; }
  .schedule-table { font-size: 0.85rem; }
  .schedule-table th, .schedule-table td { padding: 0.65rem 0.6rem; }
  .session-promo-inner { padding: 2rem 1.3rem; }
  
  .header-org-logos {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0.4rem;
    gap: 1rem;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
    gap: 0.9rem;
  }
  
  .header-org-logo {
    height: 42px;
  }
}

@media (max-width: 600px) {
  .chat-widget { right: 16px; bottom: 16px; }
  .chat-bubble { width: 190px; }
}


/* ===== Course catalog (Our Courses page) ===== */
.course-catalog {
  max-width: 1100px;
}

.course-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.2rem 0 2.6rem;
}

.course-detail-card {
  background: #fff;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 16px;
  padding: 1.6rem 1.4rem 1.5rem;
  box-shadow: 0 6px 22px rgba(201,162,39,0.1);
}

.course-detail-card h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.course-detail-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444;
  margin-bottom: 0.8rem;
}

.course-meta {
  font-size: 0.88rem !important;
  color: var(--gold-dark) !important;
  font-weight: 500;
}

.course-detail-card ul {
  margin: 0.4rem 0 0 1.15rem;
  color: #555;
  line-height: 1.7;
  font-size: 0.92rem;
}

.course-detail-wide {
  grid-column: 1 / -1;
}


/* Contact thank-you card */
.contact-thanks {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 16px;
  padding: 2.2rem 1.6rem;
  box-shadow: 0 8px 24px rgba(201,162,39,0.12);
}
.contact-thanks-blessing {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.contact-thanks h2 {
  font-family: 'Cinzel', serif;
  color: var(--gold-dark);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}
.contact-thanks p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.3rem;
}
.contact-thanks .btn {
  margin: 0.35rem 0.4rem;
}
