@charset "UTF-8";
/* =========================================
   GOOGLE FONTS
========================================= */
@import url("https://fonts.googleapis.com/css2?family=Gotu&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
/* =========================================
   ROOT VARIABLES
========================================= */
:root {
  /* Colors */
  --primary-color: #783766;
  --primary-dark: #5f2b50;
  --secondary-color: #508086;
  --white-color: #ffffff;
  --text-dark: #1e1e1e;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  /* Typography */
  --font-heading: "Gotu", sans-serif;
  --font-body: "Quicksand", sans-serif;
  /* Animation */
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white-color);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
}

p,
.para {
  font-family: var(--font-body);
  color: var(--text-dark);
  text-align: justify;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 500;
}

/* =========================================
   GLOBAL BUTTONS
========================================= */
.btn-primary-custom,
.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 54px;
  padding: 0 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* =========================================
   PRIMARY BUTTON
========================================= */
.btn-primary-custom {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--white-color);
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white-color);
  transform: translateY(-2px);
}

/* =========================================
   SECONDARY BUTTON
========================================= */
.btn-secondary-custom {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--text-dark);
}

.btn-secondary-custom:hover {
  background: var(--white-color);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* =========================================
   DARK SECONDARY
========================================= */
.btn-secondary-dark {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

/* =========================================
   GLOBAL SECTION
========================================= */
.section-py {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.section-custom-py {
  padding: clamp(3rem, 5vw, 3.2rem) 0;
}

/* =========================================
   SECTION BACKGROUNDS
========================================= */
.bg-section {
  background: var(--white-color);
}

.bg-section-theme {
  background: linear-gradient(135deg, rgba(120, 55, 102, 0.04) 0%, rgba(80, 128, 134, 0.08) 100%);
}

/* =========================================
   GLOBAL SECTION HEADING
========================================= */
.section-heading {
  position: relative;
  padding-bottom: 25px;
}

/* =========================================
   SECTION TITLE
========================================= */
.section-title {
  font-family: var(--font-heading);
  font-size: calc(1.325rem + 0.9vw);
  font-weight: 600;
  line-height: normal;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
}

/* =========================================
   SECTION SUB TITLE
========================================= */
.section-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: normal;
  color: var(--text-dark);
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
  position: relative;
  min-height: 82vh;
  margin-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* =========================================
   HERO IMAGE
========================================= */
.hero-image-wrapper {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========================================
   HERO OVERLAY
========================================= */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.58));
  z-index: 1;
}

/* =========================================
   HERO CONTENT
========================================= */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  color: var(--white-color);
}

.hero-subtitle {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white-color);
}

.hero-description {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.8;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

/* =========================================
   HERO BUTTONS
========================================= */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

/*==========================================
 REVIEW PLATFORMS
==========================================*/
.review-platforms {
  padding: 20px 0;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 170px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.platform-logo {
  display: block;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 16px;
}

.google-logo {
  height: 34px;
}

.trip-logo {
  height: 30px;
}

.trust-logo {
  height: 28px;
}

.rating-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.rating-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1;
}

.rating-stars {
  font-size: 22px;
  color: #f7ae18;
  letter-spacing: 1px;
  line-height: 1;
}

.review-count {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
}

/*==============================
 Tablet
==============================*/
@media (max-width: 991px) {
  .review-card {
    height: 160px;
  }
}
/*==============================
 Mobile
==============================*/
@media (max-width: 767px) {
  .review-platforms {
    padding: 10px 0;
  }
  .review-card {
    height: 150px;
  }
  .google-logo {
    height: 30px;
  }
  .trip-logo {
    height: 28px;
  }
  .trust-logo {
    height: 24px;
  }
  .rating-number {
    font-size: 30px;
  }
  .rating-stars {
    font-size: 18px;
  }
  .review-count {
    font-size: 16px;
  }
}
/* =========================================
   ABOUT REIKI SCHOOL
========================================= */
.about-reiki-school .about-top-line {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.about-reiki-school .about-title {
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.3;
}
.about-reiki-school .about-rating {
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  font-size: 0.95rem;
  font-weight: 600;
}
.about-reiki-school {
  /* =====================================
     IMAGES
  ===================================== */
}
.about-reiki-school .reiki-img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.about-reiki-school .reiki-img:hover {
  transform: translateY(-4px);
}
.about-reiki-school .reiki-img-1 {
  border-radius: 3rem 0.75rem 3rem 0.75rem;
}
.about-reiki-school .reiki-img-2 {
  border-radius: 0.75rem 3rem 0.75rem 2rem;
}
.about-reiki-school .reiki-img-3 {
  border-radius: 0.75rem 2rem 0.75rem 3rem;
}
.about-reiki-school .reiki-img-4 {
  border-radius: 2rem 0.75rem 3rem 0.75rem;
}
.about-reiki-school {
  /* =====================================
     COURSE LEVELS
  ===================================== */
}
.about-reiki-school .course-labels {
  margin: 1.5rem 0;
}
.about-reiki-school .course-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--text-dark);
  background: var(--white-color);
  transition: var(--transition);
}
.about-reiki-school .course-item:hover {
  border-color: rgba(120, 55, 102, 0.2);
}
.about-reiki-school .course-item span {
  flex: 1;
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
}
.about-reiki-school .course-item small {
  min-width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 0.85rem;
  font-weight: 600;
}
.about-reiki-school {
  /* =====================================
     BUTTON
  ===================================== */
}
.about-reiki-school .about-btn {
  margin-top: 1.5rem;
}

/* =========================================
   REIKI SCHOOL INDIA FOOTER
========================================= */
.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, rgba(120, 55, 102, 0.96), rgba(80, 128, 134, 0.96)), var(--primary-color);
}
.site-footer .footer-main {
  padding: clamp(3rem, 5vw, 4.5rem) 0 2.5rem;
}
.site-footer .footer-widget {
  height: 100%;
}
.site-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
.site-footer .footer-logo img {
  max-width: 190px;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  background: var(--white-color);
}
.site-footer .footer-about p {
  max-width: 360px;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}
.site-footer .footer-title {
  position: relative;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  color: var(--white-color);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}
.site-footer .footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}
.site-footer .footer-contact,
.site-footer .footer-links {
  display: grid;
  gap: 0.72rem;
}
.site-footer .footer-contact li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}
.site-footer .footer-contact i {
  margin-top: 0.26rem;
  color: rgba(255, 255, 255, 0.96);
}
.site-footer .footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}
.site-footer .footer-contact a:hover {
  color: var(--white-color);
}
.site-footer .footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  transition: var(--transition);
}
.site-footer .footer-links a::before {
  content: "»";
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.15rem;
  line-height: 1;
}
.site-footer .footer-links a:hover {
  color: var(--white-color);
  transform: translateX(4px);
}
.site-footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.site-footer .footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.site-footer .footer-social a:hover {
  color: var(--primary-color);
  background: var(--white-color);
  transform: translateY(-3px);
}
.site-footer .footer-review-list {
  display: grid;
  gap: 0.8rem;
}
.site-footer .footer-review-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.75rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
}
.site-footer .footer-review-link i {
  color: var(--white-color);
}
.site-footer .footer-review-link:hover {
  color: var(--white-color);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
.site-footer .footer-bottom {
  padding: 1.05rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(31, 18, 38, 0.24);
}
.site-footer .footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.site-footer .footer-copy a {
  color: var(--white-color);
}
.site-footer .footer-copy a:hover {
  text-decoration: underline;
}
.site-footer .footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.site-footer .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.site-footer .footer-bottom-links a:hover {
  color: var(--white-color);
}

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 99;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white-color);
  background: #25d366;
  font-size: 1.65rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}
.whatsapp-float:hover {
  color: var(--white-color);
  transform: translateY(-3px);
}

/* =========================================
   REIKI COURSE CARDS
========================================= */
.reiki-course-showcase {
  margin-top: 2.5rem;
}

.course-showcase-header {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}
.course-showcase-header .course-showcase-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  color: var(--secondary-color);
  background: rgba(80, 128, 134, 0.12);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.course-showcase-header h3 {
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  font-weight: 600;
}
.course-showcase-header p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}

.reiki-course-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(120, 55, 102, 0.14);
  background: var(--white-color);
  box-shadow: 0 14px 32px rgba(31, 18, 38, 0.08);
  transition: var(--transition);
}
.reiki-course-card:hover {
  border-color: rgba(120, 55, 102, 0.28);
  box-shadow: 0 20px 42px rgba(31, 18, 38, 0.13);
  transform: translateY(-6px);
}
.reiki-course-card:hover .course-card-image img {
  transform: scale(1.06);
}

.course-card-radius-1 {
  border-radius: 2.4rem 0.75rem 2.4rem 0.75rem;
}

.course-card-radius-2 {
  border-radius: 0.75rem 2.4rem 0.75rem 2.4rem;
}

.course-card-radius-3 {
  border-radius: 2.4rem 2.4rem 0.75rem 0.75rem;
}

.course-card-radius-4 {
  border-radius: 0.75rem 0.75rem 2.4rem 2.4rem;
}

.course-card-radius-5 {
  border-radius: 2.4rem 0.75rem 0.75rem 2.4rem;
}

.course-card-radius-6 {
  border-radius: 0.75rem 2.4rem 2.4rem 0.75rem;
}

.course-card-image {
  position: relative;
  height: 215px;
  overflow: hidden;
}
.course-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.55s ease;
}
.course-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 18, 38, 0.08), rgba(31, 18, 38, 0.38));
}

.course-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  color: var(--white-color);
  background: rgba(120, 55, 102, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
}

.course-card-content {
  padding: 1.3rem;
}

.course-mode {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--secondary-color);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.course-card-content h3 {
  margin-bottom: 0.55rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
}
.course-card-content p {
  min-height: 48px;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}

.course-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 34px;
  padding: 0.4rem 0.62rem;
  border: 1px solid rgba(80, 128, 134, 0.16);
  border-radius: 999px;
  color: var(--text-dark);
  background: rgba(80, 128, 134, 0.08);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.25;
}
.course-meta i {
  width: auto;
  color: var(--secondary-color);
  text-align: center;
}

.course-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 1.1rem;
  border-radius: 8px;
  color: var(--white-color);
  background: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}
.course-card-btn:hover {
  color: var(--white-color);
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.course-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(80, 128, 134, 0.2);
  border-radius: 8px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
}
.course-note i {
  margin-top: 0.22rem;
  color: var(--secondary-color);
}

/* =========================================
   REIKI MEANING SECTION
========================================= */
.reiki-meaning-section {
  position: relative;
  overflow: hidden;
}

.reiki-meaning-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 3rem 0.75rem 3rem 0.75rem;
  box-shadow: 0 18px 44px rgba(31, 18, 38, 0.12);
}
.reiki-meaning-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 18, 38, 0.04), rgba(31, 18, 38, 0.42));
}

.reiki-main-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.reiki-meaning-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  min-width: 150px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white-color);
  background: rgba(120, 55, 102, 0.86);
  backdrop-filter: blur(8px);
}
.reiki-meaning-badge span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}
.reiki-meaning-badge small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.reiki-meaning-badge-alt {
  left: auto;
  right: 22px;
  background: rgba(80, 128, 134, 0.88);
}

.reiki-meaning-content {
  padding: 2rem;
  border: 1px solid rgba(120, 55, 102, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(120, 55, 102, 0.04), rgba(80, 128, 134, 0.07)), var(--white-color);
  box-shadow: 0 14px 36px rgba(31, 18, 38, 0.07);
}

.reiki-meaning-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.2rem 0 1.5rem;
}
.reiki-meaning-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  color: var(--primary-color);
  background: rgba(120, 55, 102, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
}
.reiki-meaning-points i {
  color: var(--secondary-color);
}

.reiki-small-heading {
  margin-bottom: 0.8rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
}

.reiki-meaning-quote {
  margin: 1.2rem 0 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--secondary-color);
  border-radius: 0 8px 8px 0;
  color: var(--text-dark);
  background: rgba(80, 128, 134, 0.09);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
}

/* =========================================
   TRUST STATS BAR
========================================= */
.trust-stats-section {
  padding: 0 0 clamp(3rem, 5vw, 4rem);
  background: var(--white-color);
}

.trust-stats-wrapper {
  padding: 1rem;
  border: 1px solid rgba(120, 55, 102, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(120, 55, 102, 0.05), rgba(80, 128, 134, 0.08)), var(--white-color);
  box-shadow: 0 18px 42px rgba(31, 18, 38, 0.08);
}

.trust-stat-card {
  height: 100%;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  transition: var(--transition);
}
.trust-stat-card:hover {
  border-color: rgba(120, 55, 102, 0.18);
  box-shadow: 0 12px 28px rgba(31, 18, 38, 0.1);
  transform: translateY(-4px);
}
.trust-stat-card small {
  display: inline-block;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.trust-stat-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--primary-color);
  line-height: 1.15;
  white-space: nowrap;
}
.trust-stat-top i {
  color: var(--primary-color);
  font-size: 1.2rem;
  line-height: 1;
}
.trust-stat-top strong {
  display: inline-block;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
}

/* =========================================
   HEALING TREATMENT CARDS
========================================= */
.healing-treatments {
  background: linear-gradient(180deg, #fff 0%, #faf7fb 100%);
}

.healing-treatment-list {
  display: grid;
  gap: 1.5rem;
}

.healing-treatment-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
  overflow: hidden;
  border: 1px solid rgba(120, 55, 102, 0.14);
  border-radius: 1.25rem;
  background: var(--white-color);
  box-shadow: 0 14px 35px rgba(31, 18, 38, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.healing-treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(31, 18, 38, 0.13);
}
.healing-treatment-card:hover .healing-treatment-media img {
  transform: scale(1.05);
}

.healing-treatment-card-reverse {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
}
.healing-treatment-card-reverse .healing-treatment-media {
  order: 2;
}

.healing-treatment-media {
  min-height: 100%;
  overflow: hidden;
  background: var(--primary-dark);
}
.healing-treatment-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.55s ease;
}

.healing-treatment-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.8rem);
}
.healing-treatment-content h3 {
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}
.healing-treatment-content p {
  margin-bottom: 1.3rem;
  line-height: 1.72;
}

.healing-treatment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: auto;
}

.healing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 43px;
  padding: 0.65rem 1.15rem;
  border: 1px solid var(--primary-color);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

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

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

/* =========================================
   HEALING PROGRAMS SLIDER
========================================= */
.healing-slider-section {
  overflow: hidden;
}

.healing-slider-wrap {
  position: relative;
  padding: 0;
}

.healingProgramsSwiper {
  overflow: hidden;
}
.healingProgramsSwiper .swiper-slide {
  height: auto;
}

.healingProgramsSwiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.healingProgramsSwiper:not(.swiper-initialized) .swiper-slide {
  width: auto !important;
}
.healingProgramsSwiper:not(.swiper-initialized) .swiper-slide:nth-child(n+4) {
  display: none;
}

.healing-slide-card {
  position: relative;
  height: 100%;
  min-height: 330px;
  display: block;
  overflow: hidden;
  border-radius: 0.75rem 2.4rem 0.75rem 2.4rem;
  color: var(--white-color);
  background: var(--primary-dark);
  box-shadow: 0 18px 38px rgba(31, 18, 38, 0.14);
  isolation: isolate;
  transition: var(--transition);
}
.healing-slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(31, 18, 38, 0.08) 10%, rgba(31, 18, 38, 0.76) 100%), linear-gradient(90deg, rgba(120, 55, 102, 0.34), rgba(80, 128, 134, 0.12));
}
.healing-slide-card:hover {
  transform: translateY(-6px);
}
.healing-slide-card:hover img {
  transform: scale(1.06);
}
.healing-slide-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.65s ease;
}

.healing-slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.45rem 1.55rem;
}
.healing-slide-content span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
}
.healing-slide-content h3 {
  margin-bottom: 0.45rem;
  color: var(--white-color);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.healing-slide-content p {
  max-width: 92%;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.healing-slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.healing-slider-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  background: rgba(120, 55, 102, 0.28);
  opacity: 1;
}
.healing-slider-pagination .swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 999px;
  background: var(--primary-color);
}

/* =========================================
   STUDENT REVIEWS SLIDER
========================================= */
.reviews-showcase-section {
  position: relative;
  overflow: hidden;
}

.reviews-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.reviews-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

.reviews-title-block {
  max-width: 620px;
}
.reviews-title-block .section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.18;
}

.reviews-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--secondary-color);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 800;
}

.reviews-google-pill {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  min-width: 390px;
  padding: 1.05rem 1.35rem;
  border: 1px solid rgba(80, 128, 134, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(31, 18, 38, 0.08);
}

.reviews-google-mark,
.review-google-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reviews-google-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
}

.google-icon-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.reviews-google-copy {
  display: grid;
  gap: 0.1rem;
  padding-right: 1.1rem;
  border-right: 1px solid rgba(80, 128, 134, 0.22);
}
.reviews-google-copy small {
  color: var(--text-dark);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-transform: lowercase;
}
.reviews-google-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-dark);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}
.reviews-google-copy strong span {
  color: #f6b91a;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.reviews-avatar-group {
  display: flex;
  align-items: center;
}
.reviews-avatar-group span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -0.55rem;
  border: 3px solid var(--white-color);
  border-radius: 50%;
  color: var(--white-color);
  background: var(--secondary-color);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
}
.reviews-avatar-group span:first-child {
  margin-left: 0;
  background: var(--primary-color);
}
.reviews-avatar-group span:nth-child(2) {
  background: var(--secondary-color);
}
.reviews-avatar-group span:nth-child(3) {
  background: var(--primary-dark);
}
.reviews-avatar-group span:last-child {
  color: var(--secondary-color);
  background: rgba(80, 128, 134, 0.12);
}

.reviews-swiper-wrap {
  position: relative;
  padding: 0 1rem;
}

.studentReviewsSwiper {
  overflow: hidden;
  padding: 3.1rem 0 0.25rem;
}
.studentReviewsSwiper .swiper-slide {
  height: auto;
}

.studentReviewsSwiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.studentReviewsSwiper:not(.swiper-initialized) .swiper-slide {
  width: auto !important;
}

.review-showcase-card {
  position: relative;
  height: 100%;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.15rem 2rem 2rem;
  border: 1px solid rgba(80, 128, 134, 0.24);
  border-radius: 1.5rem 0.75rem 1.5rem 0.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(31, 18, 38, 0.08);
  transition: var(--transition);
}
.review-showcase-card:hover {
  border-color: rgba(120, 55, 102, 0.22);
  box-shadow: 0 20px 42px rgba(31, 18, 38, 0.12);
  transform: translateY(-5px);
}
.review-showcase-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
}
.review-showcase-card p {
  margin: 1rem 0 0;
  color: var(--text-light);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

.review-showcase-card.review-modal-trigger {
  min-height: 286px;
  cursor: pointer;
}
.review-showcase-card.review-modal-trigger:focus-visible {
  outline: 3px solid rgba(80, 128, 134, 0.45);
  outline-offset: 4px;
}
.review-showcase-card.review-modal-trigger p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.review-open-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.85rem;
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
}
.review-open-hint i {
  font-size: 0.72rem;
}

.review-detail-modal .modal-dialog {
  width: min(100% - 2rem, 760px);
  margin-inline: auto;
}
.review-detail-modal .modal-content {
  max-height: min(76vh, 610px);
  overflow: hidden;
  border: 1px solid rgba(80, 128, 134, 0.22);
  border-radius: 1.4rem 0.65rem 1.4rem 0.65rem;
  background: var(--white-color);
  box-shadow: 0 28px 70px rgba(31, 18, 38, 0.24);
}
.review-detail-modal .modal-header {
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(80, 128, 134, 0.14);
  background: linear-gradient(90deg, rgba(120, 55, 102, 0.07), rgba(80, 128, 134, 0.06));
}
.review-detail-modal .btn-close {
  width: 0.8rem;
  height: 0.8rem;
  opacity: 0.72;
}
.review-detail-modal .btn-close:focus {
  box-shadow: 0 0 0 0.22rem rgba(120, 55, 102, 0.2);
}
.review-detail-modal .modal-body {
  position: relative;
  min-height: 0;
  overflow-y: auto;
  padding: 2rem clamp(1.3rem, 5vw, 2.4rem) 2.1rem;
  text-align: center;
  scrollbar-width: thin;
  scrollbar-color: rgba(120, 55, 102, 0.45) transparent;
}
.review-detail-modal .modal-body::-webkit-scrollbar {
  width: 6px;
}
.review-detail-modal .modal-body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(120, 55, 102, 0.45);
}

.review-modal-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--secondary-color);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-modal-avatar {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border: 3px solid;
  border-color: #4285f4 #34a853 #fbbc05 #ea4335;
  border-radius: 50%;
  color: var(--primary-color);
  background: var(--white-color);
  box-shadow: 0 10px 24px rgba(80, 128, 134, 0.18);
  font-size: 1.55rem;
  font-weight: 800;
}

.review-detail-modal h2 {
  position: relative;
  margin-bottom: 0.65rem;
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-weight: 800;
}

.review-modal-stars {
  margin-bottom: 1.2rem;
  color: #f6b91a;
  font-size: 1.1rem;
  letter-spacing: 0.12rem;
}

.review-modal-text {
  max-width: 640px;
  margin: 0 auto !important;
  color: var(--text-light);
  font-size: clamp(0.95rem, 2vw, 1.02rem);
  font-weight: 600;
  line-height: 1.72;
  text-align: center;
}

.review-modal-quote {
  position: absolute;
  top: 0.8rem;
  left: 1.15rem;
  color: rgba(80, 128, 134, 0.09);
  font-family: Georgia, serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .review-detail-modal .modal-dialog {
    width: calc(100% - 1rem);
    margin: 0.625rem auto;
  }
  .review-detail-modal .modal-content {
    max-height: min(68dvh, 520px);
  }
  .review-detail-modal .modal-body {
    padding: 1.65rem 1.15rem 1.8rem;
    overflow-y: auto;
  }
}
.review-avatar {
  position: absolute;
  top: -3.05rem;
  left: 50%;
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 4px solid;
  border-color: #4285f4 #34a853 #fbbc05 #ea4335;
  border-radius: 50%;
  color: var(--primary-color);
  background: var(--white-color);
  font-size: 2.2rem;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(80, 128, 134, 0.22);
  transform: translateX(-50%);
}

.review-google-icon {
  position: absolute;
  top: 1.45rem;
  right: 1.45rem;
  width: 38px;
  height: 38px;
  border: 2px solid;
  border-color: #4285f4 #34a853 #fbbc05 #ea4335;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 10px 22px rgba(120, 55, 102, 0.12);
}
.review-google-icon .google-icon-svg {
  width: 22px;
  height: 22px;
}

.review-quote-mark {
  position: absolute;
  top: 3.1rem;
  left: 1.7rem;
  color: rgba(80, 128, 134, 0.1);
  font-family: Georgia, serif;
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1;
}

.review-stars {
  position: relative;
  display: inline-flex;
  justify-content: center;
  color: #f6b91a;
  font-size: 1.3rem;
  letter-spacing: 0.14rem;
  line-height: 1;
}
.review-stars::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.85rem;
  width: 58px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  transform: translateX(-50%);
}

.reviews-slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.reviews-slider-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  background: rgba(120, 55, 102, 0.28);
  opacity: 1;
}
.reviews-slider-pagination .swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 999px;
  background: var(--primary-color);
}

.reviews-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* =========================================
   WHY CHOOSE SECTION
========================================= */
.why-choose-section {
  overflow: hidden;
}

.why-choose-card {
  position: relative;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid rgba(120, 55, 102, 0.12);
  border-radius: 1.35rem 0.65rem 1.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(31, 18, 38, 0.07);
  transition: var(--transition);
}
.why-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}
.why-choose-card:hover {
  border-color: rgba(120, 55, 102, 0.22);
  box-shadow: 0 22px 44px rgba(31, 18, 38, 0.11);
  transform: translateY(-6px);
}
.why-choose-card .card-title {
  margin: 1.1rem 0 0.75rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.35;
}
.why-choose-card .card-para {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.85;
  text-align: left;
}

.why-choose-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: rgba(120, 55, 102, 0.08);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.why-choose-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(80, 128, 134, 0.2);
  border-radius: 1rem 0.4rem 1rem 0.4rem;
  color: var(--white-color);
  background: var(--primary-color);
  font-size: 1.35rem;
  box-shadow: 0 12px 24px rgba(80, 128, 134, 0.16);
}

.inner-content-panel,
.inner-icon-card,
.chakra-card {
  height: 100%;
  padding: 1.45rem;
  border: 1px solid rgba(120, 55, 102, 0.12);
  border-radius: 1.35rem 0.65rem 1.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(31, 18, 38, 0.06);
}

.inner-content-panel .section-title {
  font-size: clamp(1.45rem, 2vw, 2rem);
}
.inner-content-panel h3 {
  margin-bottom: 0.85rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
}

.inner-icon-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 1rem 0.4rem 1rem 0.4rem;
  color: var(--white-color);
  background: var(--primary-color);
  font-size: 1.25rem;
}
.inner-icon-card h3 {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
}

.inner-list-card {
  height: 100%;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(80, 128, 134, 0.18);
  border-radius: 0.85rem 0.4rem 0.85rem 0.4rem;
  color: var(--text-dark);
  background: var(--white-color);
  font-weight: 800;
}

.inner-quote {
  max-width: 850px;
  margin: 2rem auto 0;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 0 0.75rem 0.75rem 0;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.82);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.6;
  text-align: center;
}

.chakra-card {
  position: relative;
  overflow: hidden;
}
.chakra-card span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: rgba(120, 55, 102, 0.22);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.chakra-card h3 {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
.chakra-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--primary-color);
}

.chakra-root::before {
  background: #d43d3d;
}

.chakra-sacral::before {
  background: #f28c28;
}

.chakra-solar::before {
  background: #f2c230;
}

.chakra-heart::before {
  background: #34a853;
}

.chakra-throat::before {
  background: #4285f4;
}

.chakra-third-eye::before {
  background: #4b4aa6;
}

.chakra-crown::before {
  background: #783766;
}

/* =========================================
   FINAL CTA SECTION
========================================= */
.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, rgba(31, 18, 38, 0.76), rgba(120, 55, 102, 0.76)), url("../images/reiki-healing-training-rishikesh-india.webp") center/cover fixed;
}
.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(80, 128, 134, 0.18);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.cta-top-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-title {
  max-width: 760px;
  margin: 0 auto 0.8rem;
  color: var(--white-color);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.22;
}

.cta-body {
  max-width: 850px;
  margin: 0 auto 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
}

.cta-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.cta-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}
.cta-trust-row span i {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
}

/* =========================================
   FOUNDER SECTION
========================================= */
.founder-section {
  /* =========================
       IMAGE
    ========================= */
}
.founder-section .founder-image-wrapper {
  position: relative;
}
.founder-section .founder-main-image {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 2.5rem 0.75rem 2.5rem 0.75rem;
  border: 1px solid rgba(120, 55, 102, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}
.founder-section .founder-main-image:hover {
  transform: translateY(-4px);
}
.founder-section {
  /* =========================
       CONTENT
    ========================= */
}
.founder-section .founder-name {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.2;
}
.founder-section .founder-designation {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--secondary-color);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.founder-section {
  /* =========================
       BUTTON
    ========================= */
}
.founder-section .founder-btn {
  margin-top: 14px;
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-section {
  overflow: hidden;
}
.faq-section .faq-heading {
  max-width: 760px;
  margin-inline: auto;
}
.faq-section .faq-support-box {
  position: sticky;
  top: 105px;
  padding: 1.6rem;
  border: 1px solid rgba(120, 55, 102, 0.12);
  border-radius: 1.35rem 0.65rem 1.35rem 0.65rem;
  background: linear-gradient(135deg, rgba(120, 55, 102, 0.05), rgba(80, 128, 134, 0.08)), var(--white-color);
  box-shadow: 0 16px 34px rgba(31, 18, 38, 0.07);
}
.faq-section .faq-support-box .faq-support-label {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--secondary-color);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.faq-section .faq-support-box h3 {
  margin-bottom: 0.8rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.35;
}
.faq-section .faq-support-box p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.75;
  text-align: left;
}
.faq-section .faq-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(80, 128, 134, 0.18);
  border-radius: 1rem 0.45rem 1rem 0.45rem !important;
  background: var(--white-color);
  box-shadow: 0 10px 26px rgba(31, 18, 38, 0.05);
  transition: var(--transition);
}
.faq-section .faq-accordion .accordion-item:hover {
  border-color: rgba(120, 55, 102, 0.24);
  box-shadow: 0 14px 34px rgba(31, 18, 38, 0.08);
}
.faq-section .faq-accordion .accordion-header {
  margin: 0;
}
.faq-section .faq-accordion .accordion-button {
  padding: 1.15rem 1.35rem;
  color: var(--primary-color);
  background: var(--white-color);
  font-family: var(--font-body);
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: linear-gradient(135deg, rgba(120, 55, 102, 0.05), rgba(80, 128, 134, 0.1));
}
.faq-section .faq-accordion .accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}
.faq-section .faq-accordion .accordion-body {
  padding: 1.05rem 1.35rem 1.25rem;
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: left;
  background: rgba(80, 128, 134, 0.04);
}

/* =========================================
   COURSE CURRICULUM
========================================= */
.curriculum-section {
  overflow: hidden;
}

.curriculum-day-card {
  height: 100%;
  padding: 1.65rem 1.45rem;
  border: 1px solid rgba(120, 55, 102, 0.12);
  border-radius: 1.35rem 0.65rem 1.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(31, 18, 38, 0.06);
  transition: var(--transition);
}
.curriculum-day-card:hover {
  border-color: rgba(120, 55, 102, 0.22);
  box-shadow: 0 18px 40px rgba(31, 18, 38, 0.1);
  transform: translateY(-4px);
}
.curriculum-day-card .curriculum-day-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(80, 128, 134, 0.18);
  border-radius: 999px;
  color: var(--secondary-color);
  background: rgba(80, 128, 134, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.curriculum-day-card h3 {
  margin-bottom: 0.85rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}
.curriculum-day-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.curriculum-day-card li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.6;
}
.curriculum-day-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* =========================================
   WHO CAN JOIN
========================================= */
.who-can-join-section {
  overflow: hidden;
}

.who-can-join-card {
  height: 100%;
  padding: 1.55rem;
  border: 1px solid rgba(80, 128, 134, 0.16);
  border-radius: 1rem 0.55rem 1rem 0.55rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(31, 18, 38, 0.05);
  transition: var(--transition);
}
.who-can-join-card:hover {
  border-color: rgba(80, 128, 134, 0.28);
  box-shadow: 0 16px 36px rgba(31, 18, 38, 0.09);
  transform: translateY(-3px);
}
.who-can-join-card .join-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 0.85rem 0.35rem 0.85rem 0.35rem;
  color: var(--white-color);
  background: var(--secondary-color);
  font-size: 1.15rem;
}
.who-can-join-card h3 {
  margin-bottom: 0.6rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}
.who-can-join-card p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.7;
  text-align: left;
}

/* =========================================
   WHAT'S INCLUDED
========================================= */
.included-section {
  overflow: hidden;
}

.included-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(120, 55, 102, 0.1);
  border-radius: 1rem 0.5rem 1rem 0.5rem;
  background: var(--white-color);
  box-shadow: 0 10px 24px rgba(31, 18, 38, 0.05);
  transition: var(--transition);
}
.included-card:hover {
  border-color: rgba(120, 55, 102, 0.2);
  box-shadow: 0 14px 32px rgba(31, 18, 38, 0.08);
  transform: translateY(-3px);
}
.included-card .included-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem 0.35rem 0.75rem 0.35rem;
  color: var(--white-color);
  background: var(--primary-color);
  font-size: 1.1rem;
}
.included-card .included-text {
  flex: 1;
}
.included-card .included-text h4 {
  margin-bottom: 0.3rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}
.included-card .included-text p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}

/* =========================================
   BENEFITS OF REIKI LEVEL 1
========================================= */
.benefits-section {
  overflow: hidden;
}

.benefit-card {
  height: 100%;
  padding: 1.55rem;
  border: 1px solid rgba(120, 55, 102, 0.1);
  border-radius: 1.35rem 0.55rem 1.35rem 0.55rem;
  background: linear-gradient(135deg, rgba(120, 55, 102, 0.04), rgba(80, 128, 134, 0.06));
  box-shadow: 0 12px 28px rgba(31, 18, 38, 0.05);
  transition: var(--transition);
  text-align: center;
}
.benefit-card:hover {
  border-color: rgba(120, 55, 102, 0.2);
  box-shadow: 0 16px 38px rgba(31, 18, 38, 0.09);
  transform: translateY(-4px);
}
.benefit-card .benefit-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--white-color);
  background: var(--primary-color);
  font-size: 1.35rem;
}
.benefit-card h3 {
  margin-bottom: 0.65rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
.benefit-card p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

/*=========================================
        BREADCRUMB
=========================================*/
.breadcrumb-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 190px 0 55px;
  background: url("../images/banner/reiki-in-rishikesh-india.webp") center center/cover no-repeat;
  overflow: hidden;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 18, 18, 0.72), rgba(18, 18, 18, 0.72));
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumb-title {
  margin-bottom: 1rem;
  color: var(--white-color);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0.85rem 1.5rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 60px;
}

/*========================*/
.breadcrumb-item,
.breadcrumb-current {
  display: flex;
  align-items: center;
}

.breadcrumb-item a,
.breadcrumb-current {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--white-color);
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.35s;
}

.breadcrumb-item a:hover {
  color: var(--secondary-color);
}

.breadcrumb-current {
  color: var(--white-color);
}

/*========================*/
.breadcrumb-item i,
.breadcrumb-current i {
  color: var(--secondary-color);
  font-size: 0.85rem;
}

/*========================*/
.breadcrumb-separator {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

/*=========================================
        FEATURE IMAGE
=========================================*/
.single-feature-image {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.single-feature-image img {
  display: block;
  width: 100%;
  height: 650px; /* Perfect Desktop Height */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: inherit;
}

/*=========================================
        PHOTO GALLERY
=========================================*/
.gallery-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-page-section .section-subtitle {
  display: block;
  max-width: 680px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #eee;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(53, 24, 46, 0.1);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-card:hover img, .gallery-card:focus-visible img {
  transform: scale(1.07);
}
.gallery-card:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 4px;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem;
  color: var(--white-color);
  background: linear-gradient(180deg, rgba(24, 13, 21, 0.02) 35%, rgba(24, 13, 21, 0.8) 100%);
}

.gallery-card-label {
  font-family: "Gotu", serif;
  font-size: 1.05rem;
  text-align: left;
}

.gallery-zoom {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-card:hover .gallery-zoom,
.gallery-card:focus-visible .gallery-zoom {
  background: var(--secondary-color);
  transform: rotate(8deg);
}

.gallery-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.gallery-lightbox-modal .modal-content {
  overflow: hidden;
  border: 0;
  padding-top: 35px;
  border-radius: 18px;
  background: #1b1118;
}
.gallery-lightbox-modal .modal-header {
  padding: 1rem 1.25rem;
  border: 0;
  color: var(--white-color);
}
.gallery-lightbox-modal .btn-close {
  filter: invert(1);
}
.gallery-lightbox-modal .modal-body {
  padding: 0;
}
.gallery-lightbox-modal img {
  display: block;
  width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 575.98px) {
  .gallery-card,
  .gallery-card img {
    min-height: 310px;
  }
}
/*=========================================
        PAYMENT PAGE
=========================================*/
.payment-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-option-card,
.bank-details-card,
.payment-policy-card {
  border: 1px solid rgba(120, 55, 102, 0.12);
  border-radius: 18px;
  background: var(--white-color);
  box-shadow: 0 12px 35px rgba(67, 31, 57, 0.08);
}

.payment-option-card {
  position: relative;
  padding: 2rem;
  overflow: hidden;
}
.payment-option-card::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}
.payment-option-card h3 {
  margin: 1.15rem 0 0.55rem;
  color: var(--primary-color);
  font-family: "Gotu", serif;
  font-size: 1.45rem;
}
.payment-option-card > p {
  min-height: 48px;
  margin-bottom: 1.5rem;
  color: #5f5660;
}

.payment-option-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 15px;
  color: var(--white-color);
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--primary-color), #a3528c);
}

.payment-form label {
  display: block;
  margin-bottom: 0.55rem;
  color: #3f3140;
  font-size: 0.95rem;
  font-weight: 700;
}
.payment-form .form-select {
  min-height: 54px;
  margin-bottom: 1rem;
  border: 1px solid rgba(120, 55, 102, 0.22);
  color: #3f3140;
  font-weight: 600;
  box-shadow: none;
}
.payment-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.22rem rgba(120, 55, 102, 0.14);
}

.paypal-payment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  gap: 0.55rem;
  border: 0;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  background: #0070ba;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.paypal-payment-btn i {
  font-size: 1.25rem;
}
.paypal-payment-btn:hover, .paypal-payment-btn:focus-visible {
  color: #fff;
  background: #005ea6;
  box-shadow: 0 8px 18px rgba(0, 112, 186, 0.24);
  transform: translateY(-2px);
}

.payment-note,
.payment-confirmation-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
}

.payment-note {
  border: 1px solid rgba(18, 114, 160, 0.16);
  color: #31586d;
  background: #eef9ff;
}
.payment-note i {
  margin-top: 0.15rem;
  color: #0070ba;
}

.bank-details-intro .section-title {
  margin-bottom: 1rem;
}

.bank-transfer-showcase {
  overflow: hidden;
  border: 1px solid rgba(120, 55, 102, 0.12);
  border-radius: 22px;
  background: var(--white-color);
  box-shadow: 0 16px 42px rgba(67, 31, 57, 0.1);
}

.bank-transfer-aside {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem;
  color: var(--white-color);
  background: linear-gradient(155deg, var(--primary-color), #48213e);
}
.bank-transfer-aside .payment-kicker {
  margin-top: 1.35rem;
  color: #f7d6ef;
}
.bank-transfer-aside h2 {
  margin: 0 0 1rem;
  color: var(--white-color);
  font-family: "Gotu", serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.35;
}
.bank-transfer-aside p {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.bank-transfer-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  color: var(--secondary-color);
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
}

.bank-transfer-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  color: var(--white-color);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
.bank-transfer-contact:hover {
  color: var(--secondary-color);
}

.bank-transfer-content {
  padding: 2.25rem;
}

.bank-transfer-content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.bank-transfer-content-head h3 {
  margin: 0.25rem 0 0;
  color: var(--primary-color);
  font-family: "Gotu", serif;
  font-size: 1.35rem;
}

.bank-transfer-eyebrow {
  color: #776c76;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bank-transfer-secure {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  color: #28714e;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  background: #edf9f1;
}

.bank-transfer-showcase .bank-details-card {
  border-radius: 13px;
  box-shadow: none;
}

.bank-transfer-reminder {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1.2rem 0 0;
  color: #6c626c;
  font-size: 0.9rem;
}
.bank-transfer-reminder i {
  margin-top: 0.2rem;
  color: var(--primary-color);
}
.bank-transfer-reminder a {
  color: var(--primary-color);
  font-weight: 700;
}

.bank-details-card {
  overflow: hidden;
}

.bank-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid rgba(120, 55, 102, 0.1);
}
.bank-detail-row:last-child {
  border-bottom: 0;
}
.bank-detail-row span {
  color: #6a6069;
  font-size: 0.9rem;
}
.bank-detail-row strong {
  color: var(--primary-color);
  font-size: 0.98rem;
  text-align: right;
  word-break: break-word;
}

.payment-policy-card {
  display: flex;
  height: 100%;
  gap: 1rem;
  padding: 1.5rem;
}
.payment-policy-card > span {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-color);
  background: rgba(120, 55, 102, 0.1);
}
.payment-policy-card h3 {
  margin: 0 0 0.4rem;
  color: var(--primary-color);
  font-family: "Gotu", serif;
  font-size: 1.15rem;
}
.payment-policy-card p {
  margin: 0;
  color: #5f5660;
}

.payment-confirmation-alert {
  border: 1px solid rgba(207, 142, 26, 0.22);
  background: #fff8e9;
}
.payment-confirmation-alert i {
  margin-top: 0.15rem;
  color: #b57b14;
}
.payment-confirmation-alert p {
  margin: 0;
  color: #695427;
}

@media (max-width: 575.98px) {
  .payment-option-card {
    padding: 1.5rem;
  }
  .payment-option-card > p {
    min-height: auto;
  }
  .bank-detail-row {
    display: block;
  }
  .bank-detail-row strong {
    display: block;
    margin-top: 0.25rem;
    text-align: left;
  }
  .bank-transfer-aside,
  .bank-transfer-content {
    padding: 1.5rem;
  }
  .bank-transfer-content-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .bank-transfer-reminder {
    flex-wrap: wrap;
  }
}
/* Apply Now multi-step controls */
.application-form-section[hidden] {
  display: none;
}

.application-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.application-next-btn,
.application-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 0.55rem;
  padding: 0.75rem 1.35rem;
  border-radius: 10px;
  font-weight: 700;
}

.application-next-btn {
  min-width: 220px;
  border: 0;
  color: var(--white-color);
  background: linear-gradient(135deg, var(--primary-color), #a3528c);
}

.application-back-btn {
  min-width: 130px;
  border: 1px solid rgba(120, 55, 102, 0.24);
  color: var(--primary-color);
  background: var(--white-color);
}

.course-date-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(120, 55, 102, 0.12);
  border-radius: 12px;
  color: #6e626d;
  background: #fdf9fc;
}

.course-date-summary span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.course-date-summary i,
.course-date-summary strong {
  color: var(--primary-color);
}

.application-form .is-invalid {
  border-color: #b33c4a;
}

@media (max-width: 575.98px) {
  .application-step-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .application-next-btn,
  .application-back-btn {
    width: 100%;
  }
  .course-date-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Keep the multi-step form compact when other steps are hidden. */
.application-form {
  padding: 1.75rem;
}

.application-form-section + .application-form-section {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.application-form-section[hidden] {
  display: none !important;
}

.application-form-section {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.application-form-heading {
  margin-bottom: 0.8rem;
}

.application-form-heading p {
  font-size: 0.93rem;
}

.application-form textarea.form-control {
  min-height: 105px;
}

.application-form-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

@media (max-width: 767.98px) {
  .application-form {
    padding: 1.25rem;
  }
}
.application-form-nav {
  margin-top: 1.75rem;
}

.application-form-nav .application-back-btn,
.application-form-nav .application-next-btn,
.application-form-nav .application-submit-btn {
  flex: 1 1 50%;
  width: 50%;
}

.application-back-btn:disabled {
  border-color: rgba(120, 55, 102, 0.14);
  color: #b8adb6;
  background: #fbf9fa;
  cursor: not-allowed;
}

/*=========================================
        APPLY NOW PAGE
=========================================*/
.application-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-card {
  overflow: hidden;
  border: 1px solid rgba(120, 55, 102, 0.13);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(67, 31, 57, 0.09);
}

.application-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(120, 55, 102, 0.1);
  background: #fdf9fc;
}

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

.application-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 58px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(120, 55, 102, 0.14);
  border-radius: 12px;
  color: #756a74;
}

.application-step span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(120, 55, 102, 0.16);
  border-radius: 50%;
  background: #fff;
  font-weight: 700;
}

.application-step strong {
  font-size: 0.93rem;
}

.application-step.is-active {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: #fdf4fa;
}

.application-step.is-active span {
  border-color: var(--primary-color);
  color: #fff;
  background: var(--primary-color);
}

.application-form {
  padding: 1.5rem;
}

.application-form-section {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.application-form-section[hidden] {
  display: none !important;
}

.application-form-heading {
  margin-bottom: 1rem;
}

.application-form-heading > span {
  color: var(--primary-color);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.application-form-heading h3 {
  margin: 0.3rem 0;
  color: var(--primary-color);
  font-family: "Gotu", serif;
  font-size: 1.35rem;
}

.application-form-heading p {
  margin: 0;
  color: #736872;
  font-size: 0.93rem;
}

.application-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: #3f3140;
  font-size: 0.94rem;
  font-weight: 700;
}

.application-form label span {
  color: #b33c4a;
}

.application-form label .optional {
  color: #827682;
  font-size: 0.82rem;
  font-weight: 500;
}

.application-form .form-control,
.application-form .form-select {
  min-height: 50px;
  border: 1px solid rgba(120, 55, 102, 0.22);
  color: #3f3140;
  font-weight: 600;
  box-shadow: none;
}

.application-form .form-control::-moz-placeholder {
  color: #a39aa2;
  font-weight: 500;
}

.application-form .form-control::placeholder {
  color: #a39aa2;
  font-weight: 500;
}

.application-form .form-control:focus,
.application-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(120, 55, 102, 0.14);
}

.application-form textarea.form-control {
  min-height: 100px;
  padding-top: 0.8rem;
  resize: vertical;
}

.application-form .is-invalid {
  border-color: #b33c4a;
}

.iti {
  display: block;
  width: 100%;
}

.iti input.form-control {
  width: 100%;
  height: 50px;
  min-height: 50px;
  border-radius: 8px;
  border: 1px solid rgba(120, 55, 102, 0.22);
  color: #3f3140;
  font-weight: 600;
  background-color: #fff;
}

.iti input.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(120, 55, 102, 0.14);
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: #fcfbfa;
  border-right: 1px solid rgba(120, 55, 102, 0.22);
  border-radius: 8px 0 0 8px;
  padding: 0 8px 0 10px;
  color: #3f3140;
  font-weight: 600;
  font-size: 0.94rem;
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
  color: #3f3140;
  font-weight: 600;
}

.iti__country-list {
  z-index: 1060;
  max-width: 360px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(120, 55, 102, 0.2);
  font-family: inherit;
  font-size: 0.92rem;
  color: #3f3140;
  max-height: 220px;
}

.iti__country.iti__highlight {
  background-color: rgba(120, 55, 102, 0.08);
}

.phone-field .form-control {
  flex: 1 1 auto;
  min-height: 50px;
  border-radius: 8px;
  border: 1px solid rgba(120, 55, 102, 0.22);
  color: #3f3140;
  font-weight: 600;
}

.phone-field .country-code:focus,
.phone-field .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(120, 55, 102, 0.14);
}

.field-help {
  display: block;
  margin-top: 0.35rem;
  color: #857a84;
  font-size: 0.78rem;
}

.date-field {
  position: relative;
}

.date-field .form-control {
  padding-right: 2.8rem;
  cursor: pointer;
  background: #fff;
}

.date-field i {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--primary-color);
  pointer-events: none;
  transform: translateY(-50%);
}

.application-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.application-next-btn,
.application-back-btn,
.application-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 9px;
  font-weight: 700;
}

.application-next-btn,
.application-submit-btn {
  min-width: 210px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), #a3528c);
}

.application-back-btn {
  min-width: 125px;
  border: 1px solid rgba(120, 55, 102, 0.24);
  color: var(--primary-color);
  background: #fff;
}

.application-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(120, 55, 102, 0.1);
}

.application-form-footer p {
  display: flex;
  gap: 0.45rem;
  max-width: 560px;
  margin: 0;
  color: #716571;
  font-size: 0.88rem;
}

.application-form-footer p i {
  margin-top: 0.18rem;
  color: var(--primary-color);
}

.application-response {
  margin-top: 0.8rem;
  color: #28714e;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .application-steps {
    grid-template-columns: 1fr;
  }
  .application-form {
    padding: 1.25rem;
  }
  .application-form-footer,
  .application-step-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .application-next-btn,
  .application-back-btn,
  .application-submit-btn {
    width: 100%;
  }
}

/* =========================================
   MAP SECTION
========================================= */
.map-section {
  padding: 0;
}

.map-box {
  width: 100%;
  height: 600px;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px) {
  .map-box {
    height: 480px;
  }
}
@media (max-width: 767.98px) {
  .social-strip p {
    font-size: 14px;
  }
  .map-box {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .map-box {
    height: 280px;
  }
}
/*=========================================
        CONTACT US PAGE
=========================================*/
.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-card, .contact-info-card {
  border: 1px solid rgba(120, 55, 102, 0.13);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(67, 31, 57, 0.09);
}

.contact-form-card {
  padding: 2rem;
  background: #fff;
}

.contact-card-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.contact-card-heading > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), #a3528c);
}

.contact-card-heading h3 {
  margin: 0 0 0.2rem;
  color: var(--primary-color);
  font-family: "Gotu", serif;
  font-size: 1.35rem;
}

.contact-card-heading p {
  margin: 0;
  color: #786d77;
  font-size: 0.9rem;
}

.contact-enquiry-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: #3f3140;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-enquiry-form label em {
  color: #b33c4a;
  font-style: normal;
}

.contact-enquiry-form .form-control,
.contact-enquiry-form .form-select {
  min-height: 50px;
  border: 1px solid rgba(120, 55, 102, 0.22);
  color: #3f3140;
  font-weight: 600;
  box-shadow: none;
}

.contact-enquiry-form .form-control::-moz-placeholder {
  color: #a39aa2;
  font-weight: 500;
}

.contact-enquiry-form .form-control::placeholder {
  color: #a39aa2;
  font-weight: 500;
}

.contact-enquiry-form .form-control:focus,
.contact-enquiry-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(120, 55, 102, 0.14);
}

.contact-enquiry-form textarea.form-control {
  min-height: 116px;
  padding-top: 0.8rem;
  resize: vertical;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 50px;
  gap: 0.55rem;
  border: 0;
  border-radius: 9px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), #a3528c);
}

.contact-form-response {
  margin: 0.7rem 0 0;
  color: #28714e;
  font-weight: 700;
}

.contact-submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form-response.is-error {
  color: #b33c4a;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  color: #fff;
  background: linear-gradient(155deg, var(--primary-color), #48213e);
}

.contact-info-card .contact-kicker {
  margin-top: 1.2rem;
  color: #f7d6ef;
}

.contact-info-card h3 {
  margin: 0 0 0.9rem;
  color: #fff;
  font-family: "Gotu", serif;
  font-size: 1.55rem;
}

.contact-info-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  color: var(--secondary-color);
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.1);
}

.contact-address {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.contact-info-list {
  display: grid;
  gap: 0.8rem;
}

.contact-info-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
}

.contact-info-list > a > i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.1);
}

.contact-info-list small {
  display: block;
  margin-bottom: 0.1rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.contact-info-list span {
  font-weight: 700;
}

.contact-socials {
  margin-top: auto;
  padding-top: 1.5rem;
}

.contact-socials p {
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.contact-socials div {
  display: flex;
  gap: 0.55rem;
}

.contact-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
}

.contact-socials a:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
}

@media (max-width: 575.98px) {
  .contact-form-card, .contact-info-card {
    padding: 1.35rem;
  }
  .contact-submit-btn {
    width: 100%;
  }
}
/* Apply form navigation: stack and equalise controls on mobile/tablet. */
@media (max-width: 991.98px) {
  .application-form-nav {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .application-form-nav .application-back-btn,
  .application-form-nav .application-next-btn,
  .application-form-nav .application-submit-btn {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
  }
}

/* Contact information card refinement. */
.contact-info-card {
  justify-content: space-between;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.contact-info-card .contact-kicker {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-info-icon {
  display: none;
}

.contact-info-card .contact-socials {
  margin-top: 2rem;
}

/*# sourceMappingURL=style.css.map */
