/* ============================================
   Ayurveda Retreat – Premium Wellness Theme
   ============================================ */

:root {
  --cream: #F9F1E5;
  --cream-dark: #F0E6D6;
  --header-bg: #F9F1E5;
  --programs-bg: #FAFAF8;
  --feature-bg: #F9F1E5;
  --feature-icon-bg: #FFFFFF;
  --logo-green: #3C5A4D;
  --logo-subtitle-color: #7A7168;
  --forest: #1B3022;
  --forest-light: #2A4A35;
  --hero-btn: #243D32;
  --btn-primary: #243D32;
  --btn-primary-hover: #1F342A;
  --sage: #A3B18A;
  --gold: #B08D57;
  --gold-light: #C9A96E;
  --text-dark: #2C2C2C;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 20px rgba(27, 48, 34, 0.08);
  --shadow-md: 0 8px 30px rgba(27, 48, 34, 0.12);
  --radius: 15px;
  --radius-lg: 20px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-hero-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6,
.display-heading {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.01em;
}

a {
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

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

/* ---- Utility Classes ---- */
.section-padding {
  padding: 5rem 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.text-gold {
  color: var(--gold) !important;
}

.text-forest {
  color: var(--forest) !important;
}

.bg-cream {
  background-color: var(--cream);
}

.bg-why {
  background-color: var(--feature-bg);
}

.bg-programs {
  background-color: var(--programs-bg);
}

#programs.section-padding {
  padding-top: 3rem;
}

.bg-cream-dark {
  background-color: var(--cream-dark);
}

/* ---- Buttons ---- */
.btn-forest {
  background-color: var(--btn-primary);
  color: var(--white);
  border: 2px solid var(--btn-primary);
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.btn-forest:hover,
.btn-forest:focus {
  background-color: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-forest-outline {
  background-color: transparent;
  color: var(--btn-primary);
  border: 2px solid var(--btn-primary);
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.btn-link-gold {
  color: var(--forest);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-link-gold:hover {
  color: var(--gold);
}

.btn-link-gold i {
  transition: transform 0.3s ease;
}

.btn-link-gold:hover i {
  transform: translateX(4px);
}

/* ---- Cards ---- */
.card-premium {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.card-premium .card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-premium .card-body {
  padding: 1.5rem;
}

.card-premium .card-duration {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- Navbar ---- */
.navbar-ayurveda {
  background-color: var(--header-bg);
  border-bottom: 1px solid rgba(27, 48, 34, 0.06);
  padding: 0.85rem 0;
  transition: box-shadow 0.3s ease;
}

.navbar-ayurveda.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

/* ---- HTML Logo ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.85rem;
  color: var(--logo-green);
  flex-shrink: 0;
  line-height: 1;
}

.logo-text {
  line-height: 1;
}

.logo-title {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--logo-green);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.08;
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: 0.48rem;
  font-weight: 400;
  color: var(--logo-subtitle-color);
  text-transform: uppercase;
  letter-spacing: 0.36em;
  display: block;
  margin-top: 5px;
}

.logo--footer .logo-icon {
  color: var(--sage);
}

.logo--footer .logo-title {
  color: var(--white);
}

.logo--footer .logo-subtitle {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.32em;
}

.navbar-ayurveda .nav-link {
  color: var(--forest);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.9rem !important;
  position: relative;
}

.navbar-ayurveda .nav-link:hover,
.navbar-ayurveda .nav-link.active {
  color: var(--forest);
}

.navbar-ayurveda .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-ayurveda .nav-link:hover::after,
.navbar-ayurveda .nav-link.active::after {
  width: 60%;
}

.navbar-ayurveda .btn-forest {
  white-space: nowrap;
  padding: 0.65rem 1.65rem;
  font-size: 0.92rem;
}

.navbar-ayurveda .btn-forest:hover {
  background-color: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
}

/* ---- Hero Area (banner + overlapping features) ---- */
.hero-area {
  position: relative;
  background-color: var(--programs-bg);
}

/* ---- Hero ---- */
.hero-section {
  position: relative;
  min-height: 68vh;
  max-height: 720px;
  display: flex;
  align-items: center;
  background: url('../images/hero_banner_final.png') center center / cover no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.55) 12%,
    rgba(0, 0, 0, 0.38) 25%,
    rgba(0, 0, 0, 0.22) 38%,
    rgba(0, 0, 0, 0.1) 48%,
    rgba(0, 0, 0, 0.03) 52%,
    transparent 55%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 9rem;
}

.hero-heading {
  font-family: var(--font-hero-serif);
  font-size: clamp(2.4rem, 4.8vw, 3.75rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: 0.005em;
}

.hero-heading .highlight {
  color: var(--sage);
  font-style: italic;
  font-weight: 500;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.hero-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-divider-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero-text {
  font-family: var(--font-sans);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.btn-forest-hero {
  background-color: var(--btn-primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.85rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(36, 61, 50, 0.35);
}

.btn-forest-hero:hover,
.btn-forest-hero:focus {
  background-color: var(--btn-primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(36, 61, 50, 0.45);
}

/* Hero Feature Bar — overlaps banner */
.hero-features {
  position: relative;
  margin-top: -3rem;
  z-index: 10;
  background: transparent;
  padding: 0 0 2.5rem;
}

.hero-features-inner {
  background: var(--feature-bg);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(27, 48, 34, 0.12);
  padding: 2.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.feature-item {
  flex: 1 1 100%;
  text-align: center;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #EEEEEE;
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  border: none;
  border-radius: 50%;
  background: var(--feature-icon-bg);
  box-shadow: 0 2px 10px rgba(27, 48, 34, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 2rem;
  color: #2D4628;
  line-height: 1;
}

.feature-item h6 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.feature-item p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: #555555;
  margin: 0 auto;
  line-height: 1.55;
  max-width: 200px;
}

@media (min-width: 576px) {
  .feature-item {
    flex: 1 1 50%;
  }

  .feature-item:nth-child(odd) {
    border-right: 1px solid #EEEEEE;
  }

  .feature-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (min-width: 992px) {
  .feature-row {
    flex-wrap: nowrap;
  }

  .feature-item {
    flex: 1 1 0;
    min-width: 0;
    border-bottom: none;
    border-right: none;
    padding: 1rem 1.25rem;
    position: relative;
  }

  .feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: #E8E2DA;
  }

  .feature-item:nth-child(odd) {
    border-right: none;
  }

  .feature-item:last-child {
    border-right: none;
  }
}

/* ---- Programs ---- */
.programs-header .section-title {
  margin-bottom: 0.75rem;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 120px;
  margin: 0 auto 1rem;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(176, 141, 87, 0.45);
}

.section-divider-icon {
  font-size: 0.75rem;
  color: var(--gold);
}

.programs-row {
  --bs-gutter-x: 0.875rem;
}

.program-card {
  background: #FFFFFF;
  border: 1px solid #E8E4DE;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(27, 48, 34, 0.05);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.program-card:hover {
  box-shadow: 0 6px 24px rgba(27, 48, 34, 0.1);
  transform: translateY(-4px);
}

.program-card-image {
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.program-card-image img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.program-card-icon {
  width: 64px;
  height: 64px;
  margin: -32px auto 0;
  background: #F5EBE0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.program-card-icon i {
  font-size: 2rem;
  color: #2D4628;
  line-height: 1;
}

.program-card-body {
  padding: 0.75rem 0.85rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program-card-body h5 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.program-duration {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: #888888;
  margin-bottom: 0.5rem;
}

.program-desc {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  flex: 1;
}

.program-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--btn-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}

.program-link:hover {
  color: #2D4628;
}

.program-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.program-link:hover i {
  transform: translateX(3px);
}

@media (min-width: 1200px) {
  .program-card-image img {
    height: 120px;
  }

  .program-card-body h5 {
    font-size: 0.78rem;
  }

  .program-desc {
    font-size: 0.68rem;
  }
}

@media (min-width: 1400px) {
  .programs-row .container,
  #programs .container {
    max-width: 1320px;
  }

  .program-card-image img {
    height: 135px;
  }
}

/* ---- Why Ayurveda ---- */
.why-ayurveda-section {
  width: 100%;
  background-color: var(--feature-bg);
  /* padding: 0 0 5rem; */
  overflow: hidden;
}

.why-ayurveda-panel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: transparent;
}

.why-ayurveda-content-container {
  position: relative;
  z-index: 1;
}

.why-ayurveda-content {
  background: transparent;
}

.why-ayurveda-content-inner {
  width: 100%;
  padding-block: 2rem;
  padding-right: clamp(1rem, 2.5vw, 2rem);
}

.why-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--logo-green);
  margin-bottom: 0.7rem;
}

.why-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0;
}

.why-divider {
  max-width: 110px;
  margin: 0.85rem 0 1.1rem;
  justify-content: flex-start;
}

.why-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 1.35rem;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.5rem;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  color: #2a2a2a;
  line-height: 1.3;
}

.why-feature-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(45, 70, 40, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2D4628;
  font-size: 0.58rem;
  flex-shrink: 0;
}

.why-btn {
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
}

.why-ayurveda-media {
  min-height: 280px;
  display: flex;
  align-items: stretch;
}

.why-ayurveda-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 992px) {
  .why-ayurveda-panel {
    min-height: 400px;
  }

  .why-ayurveda-content-inner {
    width: 80%;
    padding-block: 2.75rem;
    padding-right: 0;
  }

  .why-ayurveda-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58.333333%;
    min-height: 400px;
    border-radius: 18px 0 0 18px;
    overflow: hidden;
  }

  .why-ayurveda-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
  }
}

@media (max-width: 991.98px) {
  .why-ayurveda-section {
    padding-bottom: 3.5rem;
  }

  .why-ayurveda-content-inner {
    padding-block: 2rem;
  }

  .why-ayurveda-media {
    min-height: 280px;
  }

  .why-ayurveda-image {
    min-height: 280px;
  }
}

@media (max-width: 575.98px) {
  .why-ayurveda-section {
    padding-bottom: 3.5rem;
  }

  .why-features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .why-ayurveda-media {
    min-height: 240px;
  }

  .why-ayurveda-image {
    min-height: 240px;
  }
}

/* ---- Panchakarma ---- */
.panchakarma-section {
  background-color: var(--programs-bg);
  overflow: hidden;
}

.panchakarma-header .section-title {
  margin-bottom: 1rem;
}

.panchakarma-subtitle {
  max-width: 640px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.panchakarma-row {
  position: relative;
  z-index: 1;
}

.panchakarma-item {
  text-align: center;
  padding: 1rem 0.5rem;
}

.panchakarma-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1rem;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}

.panchakarma-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.panchakarma-item h6 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.2rem;
}

.panchakarma-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ---- Panchakarma Page ---- */
.page-hero--panchakarma {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero--panchakarma::before {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.5) 20%,
    rgba(0, 0, 0, 0.24) 38%,
    rgba(0, 0, 0, 0.08) 52%,
    transparent 66%
  );
}

.panch-hero-label {
  color: var(--gold-light);
}

.panch-page-about {
  background-color: #F9F5F3;
}

.panch-page-about__text {
  text-align: center;
  padding-right: 0.5rem;
}

.panch-page-subtitle {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
  font-size: 0.94rem;
  line-height: 1.75;
}

.panch-page-about__img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin-left: auto;
  height: auto;
  object-fit: contain;
}

.panch-page-therapies {
  background-color: var(--programs-bg);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.col-lg-2-4 {
  flex: 0 0 auto;
  width: 20%;
}

.panch-therapy-card {
  background: #fff;
  border: 1px solid #ECE7DE;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(27, 48, 34, 0.05);
  height: 100%;
  position: relative;
}

.panch-therapy-card__count {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--logo-green);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.panch-therapy-card > img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.panch-therapy-card__icon {
  position: absolute;
  left: 50%;
  top: 150px;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F7F4EE;
  border: 1px solid #E7E1D7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  z-index: 3;
}

.panch-therapy-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.panch-therapy-card__body {
  padding: 1.75rem 0.9rem 1.15rem;
  text-align: center;
}

.panch-therapy-card__body h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: #1f2c24;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.panch-therapy-card__sub {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #2f3c33;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.panch-therapy-card__desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.panch-page-benefits {
  background-color: #F9F5F3;
  padding-top: 3.5rem;
  padding-bottom: 2.75rem;
}

.panch-page-benefits .section-label,
.panch-page-path .section-label {
  font-size: 0.88rem;
}

.panch-benefit-item {
  text-align: center;
  background: transparent;
  border-left: 1px solid #E3DDD2;
  padding: 0.45rem 0.85rem;
  height: 100%;
}

.panch-benefits-row > div:first-child .panch-benefit-item {
  border-left: none;
}

.panch-benefit-item i {
  color: var(--logo-green);
  font-size: 1.5rem;
  margin-bottom: 0.55rem;
}

.panch-benefit-item p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #4f4f4f;
  line-height: 1.5;
}

.panch-page-path {
  background-color: var(--programs-bg);
  padding-top: 2rem;
}

.panch-page-card {
  background: #F5F1EA;
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 8px 24px rgba(27, 48, 34, 0.06);
  height: 100%;
}

.panch-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.panch-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #404040;
  line-height: 1.6;
}

.panch-check-list li + li {
  margin-top: 0.85rem;
}

.panch-check-list i {
  color: var(--logo-green);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.panch-card-deco {
  margin-top: 1rem;
  width: 100%;
  max-width: 180px;
}

.panch-journey-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.panch-journey-step {
  text-align: center;
}

.panch-journey-step span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #EDE6DA;
  color: var(--logo-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.panch-journey-step h3 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 0.35rem;
}

.panch-journey-step p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #666;
  line-height: 1.55;
  margin: 0;
}

.panch-journey-note {
  margin: 1.15rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #5a5a5a;
  text-align: center;
}

.panch-journey-note i {
  color: var(--logo-green);
  margin-right: 0.35rem;
}

.panch-page-faq {
  padding-top: 2.5rem;
}

@media (max-width: 1199.98px) {
  .col-lg-2-4 {
    width: 33.333333%;
  }
}

@media (max-width: 991.98px) {
  .panch-page-about__text {
    padding-right: 0;
  }

  .panch-page-about__img {
    max-width: 460px;
    margin: 0 auto;
  }

  .col-lg-2-4 {
    width: 50%;
  }

  .panch-therapy-card > img {
    height: 170px;
  }

  .panch-therapy-card__icon {
    top: 170px;
  }

  .panch-benefit-item {
    border-left: none;
    border-top: 1px solid #E3DDD2;
    padding-top: 0.8rem;
    margin-top: 0.4rem;
  }

  .panch-benefits-row > div:nth-child(-n+2) .panch-benefit-item {
    border-top: none;
    margin-top: 0;
    padding-top: 0.3rem;
  }

  .panch-journey-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .panch-page-about__img {
    max-width: 360px;
  }

  .col-lg-2-4 {
    width: 100%;
  }

  .panch-therapy-card > img {
    height: 185px;
  }

  .panch-therapy-card__icon {
    top: 185px;
  }

  .panch-journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.panchakarma-btn {
  border-radius: 8px;
  padding: 0.75rem 1.65rem;
  font-size: 0.85rem;
}

.panchakarma-leaf-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(260px, 42vh, 380px);
  width: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.panchakarma-leaf-deco.left {
  left: clamp(0.5rem, 2vw, 2rem);
  transform: translateY(-50%) scaleX(-1);
}

.panchakarma-leaf-deco.right {
  right: clamp(0.5rem, 2vw, 2rem);
  transform: translateY(-50%);
}

@media (max-width: 1199.98px) {
  .panchakarma-leaf-deco {
    height: clamp(220px, 36vh, 320px);
  }
}

@media (max-width: 991.98px) {
  .panchakarma-item {
    padding: 0.75rem 0.25rem;
  }

  .panchakarma-icon {
    width: 68px;
    height: 68px;
  }
}

/* ---- Daily Wellness Schedule ---- */
.daily-schedule-section {
  background-color: var(--programs-bg);
}

.schedule-label {
  color: var(--logo-green);
}

.schedule-title {
  margin-bottom: 1.75rem;
}

.schedule-image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.schedule-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.25rem;
  margin-bottom: 1.75rem;
}

.schedule-col {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 0 1.25rem;
  border-right: 1px solid #E5E0D8;
}

.schedule-col:first-child {
  padding-left: 0;
}

.schedule-col:last-child {
  border-right: none;
  padding-right: 0;
}

.schedule-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.schedule-entry-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #EDE6DA;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-green);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.schedule-entry-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.schedule-time {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
}

.schedule-activity {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.35;
}

.schedule-btn {
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
}

@media (max-width: 991.98px) {
  .schedule-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 0;
  }

  .schedule-col {
    border-right: none;
    padding: 0;
  }

  .schedule-col:nth-child(1) {
    border-right: 1px solid #E5E0D8;
    padding-right: 1rem;
  }

  .schedule-col:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid #E5E0D8;
    padding-top: 1.25rem;
    margin-top: 0.25rem;
  }
}

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

  .schedule-col:nth-child(1) {
    border-right: none;
    padding-right: 0;
  }

  .schedule-col:nth-child(3) {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .schedule-image {
    min-height: 260px;
  }
}

/* ---- Stay Page ---- */
.page-hero--stay {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero--stay .stay-hero-label {
  color: var(--gold-light);
}

.stay-hero-divider {
  max-width: 110px;
  margin-bottom: 1.35rem;
}

.stay-hero-divider .hero-divider-line {
  background: rgba(201, 169, 110, 0.85);
}

.stay-accommodations-section {
  background-color: #F9F5F3;
}

.stay-page-header {
  max-width: 760px;
  margin: 0 auto 3rem;
}

.stay-page-header .section-label {
  color: var(--logo-green);
}

.stay-page-header .section-title {
  color: var(--forest);
  margin-bottom: 0.85rem;
}

.stay-page-header .section-divider {
  max-width: 90px;
  margin-bottom: 1rem;
}

.stay-page-header .section-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.stay-accommodations-grid {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
}

.stay-room-card {
  background: #F5F1EA;
  border-radius: 20px;
  box-shadow:
    0 10px 36px rgba(27, 48, 34, 0.07),
    0 4px 14px rgba(27, 48, 34, 0.04);
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stay-room-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 44px rgba(27, 48, 34, 0.1),
    0 6px 18px rgba(27, 48, 34, 0.05);
}

.stay-room-card__image-wrap {
  position: relative;
  overflow: hidden;
}

.stay-room-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.stay-room-card:hover .stay-room-card__image {
  transform: scale(1.03);
}

.stay-room-card__badge {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #EDE6DA;
  color: var(--logo-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(27, 48, 34, 0.08);
  z-index: 2;
}

.stay-room-card__body {
  padding: 2.35rem 1.5rem 1.75rem;
  text-align: center;
}

.stay-room-card__body h3 {
  font-family: var(--font-hero-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.stay-room-card__description {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.15rem;
  min-height: 2.75rem;
}

.stay-room-card__amenities {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.stay-room-card__amenities li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #4a4a4a;
  line-height: 1.45;
}

.stay-room-card__amenities li + li {
  margin-top: 0.7rem;
}

.stay-room-card__amenity-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(60, 90, 77, 0.08);
  color: var(--logo-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.82rem;
}

.stay-page-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.75rem auto 0;
  max-width: 760px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--logo-green);
  line-height: 1.6;
}

.stay-page-footnote i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.stay-page__empty {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.stay-journey-cta {
  background: var(--btn-primary);
  padding: 0;
}

.stay-journey-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  min-height: 320px;
}

.stay-journey-cta__media {
  overflow: hidden;
}

.stay-journey-cta__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.stay-journey-cta__content {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.stay-journey-cta__content::after {
  content: '';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.35;
  pointer-events: none;
}

.stay-journey-cta__content h2 {
  font-family: var(--font-hero-serif);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.stay-journey-cta__content p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  max-width: 420px;
}

.stay-journey-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stay-journey-cta__btn-primary {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--forest);
  border-radius: 10px;
  padding: 0.72rem 1.2rem;
}

.stay-journey-cta__btn-primary:hover {
  background: var(--cream);
  color: var(--forest);
}

.stay-journey-cta__btn-secondary {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.72rem 1.2rem;
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.stay-journey-cta__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

/* Home accommodation cards (legacy) */
.stay-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.stay-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.stay-card .stay-card-body {
  padding: 1.25rem;
}

.stay-card h5 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.stay-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 991.98px) {
  .stay-journey-cta__inner {
    grid-template-columns: 1fr;
  }

  .stay-journey-cta__media img {
    min-height: 240px;
  }

  .stay-room-card__image {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .stay-page-header {
    margin-bottom: 2.25rem;
  }

  .stay-room-card__body {
    padding: 2.1rem 1.25rem 1.5rem;
  }

  .stay-journey-cta__content {
    text-align: center;
    align-items: center;
  }

  .stay-journey-cta__content p {
    max-width: none;
  }

  .stay-journey-cta__actions {
    justify-content: center;
  }
}

/* ---- Yoga & Cuisine Split Cards ---- */
.wellness-split-section {
  background-color: var(--programs-bg);
  padding: 2.5rem 0;
  overflow: hidden;
}

.wellness-split-card {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 280px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.wellness-split-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(249, 241, 229, 0.94) 0%,
    rgba(249, 241, 229, 0.78) 32%,
    rgba(249, 241, 229, 0.35) 52%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 1;
}

.wellness-split-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.wellness-split-content {
  position: relative;
  z-index: 2;
  flex: 0 0 52%;
  max-width: 52%;
  padding: clamp(1.35rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wellness-split-content .section-label {
  color: var(--logo-green);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.95), 0 2px 10px rgba(255, 255, 255, 0.85);
}

.wellness-split-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.98), 0 2px 12px rgba(255, 255, 255, 0.9), 0 0 24px rgba(255, 255, 255, 0.55);
}

.wellness-split-text {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--forest);
  line-height: 1.55;
  margin-bottom: 0.85rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.95), 0 2px 8px rgba(255, 255, 255, 0.85);
}

.wellness-split-link {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.3s ease, gap 0.3s ease;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.95), 0 2px 8px rgba(255, 255, 255, 0.85);
}

.wellness-split-link:hover {
  color: var(--gold);
  gap: 0.55rem;
}

@media (max-width: 991.98px) {
  .wellness-split-section {
    padding: 2rem 0;
  }

  .wellness-split-card {
    min-height: 260px;
  }

  .wellness-split-card::after {
    background: linear-gradient(
      to bottom,
      rgba(249, 241, 229, 0.94) 0%,
      rgba(249, 241, 229, 0.82) 38%,
      rgba(249, 241, 229, 0.35) 58%,
      transparent 75%
    );
  }

  .wellness-split-content {
    flex: none;
    max-width: 100%;
    padding: 1.5rem 1.25rem 1.15rem;
  }
}

/* ---- Testimonials ---- */
.testimonials-section {
  background-color: var(--programs-bg);
}

.testimonials-header .section-title {
  margin-bottom: 0;
}

.testimonials-carousel {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 0.25rem;
}

@media (min-width: 992px) {
  .testimonial-slide {
    flex: 0 0 33.333333%;
    min-width: 33.333333%;
    padding: 0 0.5rem;
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(27, 48, 34, 0.06);
  padding: 1.5rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  text-align: left;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(27, 48, 34, 0.1);
}

.testimonial-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 88px;
  height: 88px;
}

.testimonial-avatar-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #EDE6DA;
  z-index: 0;
}

.testimonial-avatar {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin: 6px 0 0 6px;
  border: none;
  display: block;
}

.testimonial-body {
  flex: 1;
  min-width: 0;
}

.testimonial-quote {
  font-family: var(--font-sans);
  font-style: normal;
  color: #4a4a4a;
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.testimonial-name {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--forest);
  font-size: 0.82rem;
  margin: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 2.25rem;
}

.testimonial-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--btn-primary);
  border: none;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.testimonial-dots button:hover {
  transform: scale(1.15);
}

.testimonial-dots button.is-active {
  background: transparent;
  border: 2px solid var(--btn-primary);
  width: 10px;
  height: 10px;
}

.testimonial-dots button:focus-visible {
  outline: 2px solid var(--btn-primary);
  outline-offset: 3px;
}

@media (max-width: 767.98px) {
  .testimonial-card {
    padding: 1.35rem 1.15rem;
    gap: 1rem;
  }

  .testimonial-avatar-wrap {
    width: 80px;
    height: 80px;
  }

  .testimonial-avatar-ring {
    width: 76px;
    height: 76px;
  }

  .testimonial-avatar {
    width: 68px;
    height: 68px;
  }

  .testimonial-quote {
    font-size: 0.82rem;
  }
}

/* ---- FAQ ---- */
.faq-section {
  background-color: var(--programs-bg);
}

.faq-label {
  color: var(--logo-green);
}

.faq-header .section-title {
  margin-bottom: 0.75rem;
}

.faq-body-row {
  align-items: stretch;
}

.faq-accordion-col,
.faq-image-col {
  display: flex;
}

.faq-accordion {
  width: 100%;
  flex: 1;
}

.faq-image-wrap {
  width: 100%;
  flex: 1;
  min-height: 260px;
  display: flex;
}

.faq-image {
  width: 100%;
  height: 100%;
  flex: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
}

.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 0.65rem;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: none;
  background: #F0EBE3;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-button {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--forest);
  background: #F0EBE3;
  padding: 1.15rem 1.35rem;
  box-shadow: none !important;
  border-radius: 12px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #F0EBE3;
  color: var(--forest);
  border-radius: 12px 12px 0 0;
}

.faq-accordion .accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231B3022' stroke-width='1.6' stroke-linecap='round'%3e%3cpath d='M8 3.5v9M3.5 8h9'/%3e%3c/svg%3e");
  transform: none;
  transition: transform 0.25s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231B3022' stroke-width='1.6' stroke-linecap='round'%3e%3cpath d='M3.5 8h9'/%3e%3c/svg%3e");
  transform: none;
}

.faq-accordion .accordion-body {
  padding: 0 1.35rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  background: #F0EBE3;
}

@media (max-width: 991.98px) {
  .faq-accordion-col,
  .faq-image-col {
    display: block;
  }

  .faq-image-wrap {
    min-height: 280px;
  }
}

/* ---- CTA Banner ---- */
.cta-section {
  padding: 0;
  background-color: var(--cream);
}

.cta-banner {
  background: var(--cream);
  border-bottom: 2px solid var(--btn-primary);
  border-radius: 0;
  padding: 2.25rem 0;
  box-shadow: none;
}

.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.cta-subtext {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: #6b6b6b;
  margin: 0;
  line-height: 1.55;
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
}

.cta-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #3a3a3a;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.cta-contact-item:hover {
  opacity: 0.8;
  color: #3a3a3a;
}

.cta-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-green);
  font-size: 1.5rem;
  line-height: 1;
}

.cta-contact-label {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: #3a3a3a;
}

.cta-contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.cta-contact-text strong {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: #3a3a3a;
}

.cta-contact-text small {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: #6b6b6b;
}

.cta-btn {
  border-radius: 50px;
  padding: 0.8rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ---- Footer ---- */
.footer {
  background-color: var(--forest);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer p,
.footer li {
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 0.25rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 3rem;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-deco {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-size: 14rem;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

/* ---- About Page ---- */
.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: url('../images/about_banner.png') center center / cover no-repeat;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.42) 22%,
    rgba(0, 0, 0, 0.22) 40%,
    rgba(0, 0, 0, 0.08) 55%,
    transparent 68%
  );
  z-index: 1;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4.5rem;
}

.page-hero-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: var(--font-hero-serif);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 1.25rem;
  letter-spacing: 0.005em;
}

.page-hero-text {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  margin: 0 0 1.75rem;
  max-width: 520px;
}

.page-hero-btn {
  margin-top: 0.25rem;
}

.about-story-section {
  background-color: var(--programs-bg);
}

.about-story-image-wrap,
.about-campus-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-story-image,
.about-campus-image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.about-inline-divider {
  max-width: 110px;
  margin: 0.85rem 0 1.15rem;
  justify-content: flex-start;
}

.about-body-text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.15rem;
}

.about-section-header .section-label {
  color: var(--logo-green);
}

.about-philosophy-section {
  background-color: #F5F4F0;
  padding: 0;
}

.philosophy-panel {
  width: 100%;
  max-width: 100%;
  background-color: #F5F4F0;
  border-radius: 0;
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3.5rem);
  box-shadow: none;
}

.philosophy-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.75rem;
  padding: 0 0.5rem;
}

.philosophy-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.philosophy-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.philosophy-divider {
  max-width: 120px;
  margin: 0 auto 1.25rem;
}

.philosophy-intro {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  max-width: 100%;
}

.philosophy-item {
  text-align: center;
  padding: 0 clamp(0.85rem, 2vw, 1.75rem);
  border-right: 1px dotted rgba(107, 107, 107, 0.45);
}

.philosophy-item:last-child {
  border-right: none;
}

.philosophy-icon-wrap {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(60, 90, 77, 0.14) 0%, rgba(60, 90, 77, 0.1) 55%, rgba(60, 90, 77, 0.06) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.philosophy-icon-wrap img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.philosophy-fa-icon {
  font-size: 2.35rem;
  color: var(--logo-green);
  line-height: 1;
}

.philosophy-item h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.philosophy-item p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 991.98px) {
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 0;
  }

  .philosophy-item {
    border-right: none;
    padding: 0 1.25rem;
  }

  .philosophy-item:nth-child(odd) {
    border-right: 1px dotted rgba(107, 107, 107, 0.45);
  }

  .philosophy-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .philosophy-panel {
    padding: 2.5rem 1.25rem;
  }

  .philosophy-icon-wrap {
    width: 88px;
    height: 88px;
  }

  .philosophy-icon-wrap img {
    width: 48px;
    height: 48px;
  }

  .philosophy-fa-icon {
    font-size: 2.1rem;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .philosophy-item,
  .philosophy-item:nth-child(odd) {
    border-right: none;
    border-bottom: 1px dotted rgba(107, 107, 107, 0.35);
    padding-bottom: 1.75rem;
  }

  .philosophy-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .philosophy-item:nth-child(5) {
    max-width: none;
  }
}

.about-dual-section {
  background-color: var(--programs-bg);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.about-dual-container {
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

.about-dual-container .row {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
}

.about-dual-card {
  background-color: var(--cream);
  border-radius: 24px;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  box-shadow:
    0 18px 50px rgba(27, 48, 34, 0.09),
    0 8px 24px rgba(27, 48, 34, 0.06),
    0 2px 8px rgba(27, 48, 34, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.about-dual-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--logo-green);
  margin-bottom: 0.75rem;
}

.about-dual-divider {
  max-width: 120px;
  margin: 0 0 1.5rem;
  justify-content: flex-start;
}

.about-dual-subtitle {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.about-dual-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.35rem;
}

.about-dual-text-last {
  margin-bottom: 0;
}

/* Vision & Mission card */
.about-vm-card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.25rem);
}

.about-vm-deco {
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  width: clamp(110px, 14vw, 150px);
  height: auto;
  opacity: 0.22;
  pointer-events: none;
}

/* Why Choose card */
.about-why-card {
  position: relative;
  display: block;
  min-height: 430px;
}

.about-why-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
  border-radius: inherit;
}

.about-why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--cream) 0%,
    var(--cream) 36%,
    rgba(249, 241, 229, 0.98) 42%,
    rgba(249, 241, 229, 0.88) 48%,
    rgba(249, 241, 229, 0.62) 56%,
    rgba(249, 241, 229, 0.28) 64%,
    transparent 74%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

.about-why-content {
  position: relative;
  z-index: 2;
  max-width: 54%;
  padding: clamp(1.85rem, 3vw, 2.6rem) clamp(1.5rem, 2.8vw, 2.25rem);
}

.about-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.about-why-list li:last-child {
  margin-bottom: 0;
}

.about-why-check {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background-color: var(--logo-green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .about-dual-card {
    min-height: auto;
  }

  .about-why-card {
    min-height: auto;
  }

  .about-why-bg {
    object-position: center 30%;
  }

  .about-why-card::after {
    background: linear-gradient(
      to bottom,
      var(--cream) 0%,
      var(--cream) 42%,
      rgba(249, 241, 229, 0.95) 50%,
      rgba(249, 241, 229, 0.7) 58%,
      rgba(249, 241, 229, 0.25) 68%,
      transparent 78%
    );
  }

  .about-why-content {
    max-width: 100%;
    padding: 1.75rem 1.5rem 16rem;
  }

  .about-vm-deco {
    width: 100px;
    opacity: 0.18;
  }
}

@media (max-width: 575.98px) {
  .about-dual-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-vm-card,
  .about-why-content {
    padding: 1.5rem 1.25rem 14rem;
  }

  .about-why-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 0.68rem;
  }

  .about-why-list li {
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
  }
}

.about-team-section {
  background-color: var(--programs-bg);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-card-image {
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img {
  transform: scale(1.04);
}

.team-card-body {
  padding: 1.35rem 1.25rem 1.5rem;
  text-align: center;
}

.team-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.team-bio {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.about-campus-section {
  background-color: var(--cream);
}

.about-campus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.about-campus-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.about-campus-list i {
  color: var(--logo-green);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.campus-thumb-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.campus-thumb-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.campus-thumb-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(to top, rgba(27, 48, 34, 0.85), transparent);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.about-cert-section {
  background-color: var(--programs-bg);
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cert-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #EDE6DA;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-green);
  font-size: 1.2rem;
}

.cert-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.cert-card p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ---- Programs Page ---- */
.page-hero--programs {
  background-image: url('../images/programslist_banner.png');
}

.programs-page-listing {
  background-color: #F8F5F3;
}

.programs-page-row {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
}

.program-card-lg {
  background: #F5F1EA;
  border: none;
  border-radius: 20px;
  box-shadow:
    0 10px 36px rgba(27, 48, 34, 0.07),
    0 4px 14px rgba(27, 48, 34, 0.04);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.program-card-lg:hover {
  box-shadow:
    0 16px 44px rgba(27, 48, 34, 0.1),
    0 6px 18px rgba(27, 48, 34, 0.05);
  transform: translateY(-4px);
}

.program-card-lg-image {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.program-card-lg-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.program-card-lg:hover .program-card-lg-image img {
  transform: scale(1.03);
}

.program-card-lg-body {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.program-card-lg-icon {
  position: absolute;
  top: -30px;
  left: 1.35rem;
  width: 58px;
  height: 58px;
  background: #EDE6DA;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(27, 48, 34, 0.08);
}

.program-card-lg-icon i {
  font-size: 1.35rem;
  color: var(--logo-green);
  line-height: 1;
}

.program-card-lg-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.program-card-lg-body .program-desc {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.15rem;
  flex: 1;
}

.program-card-lg-body .program-link {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.program-card-lg-body .program-link:hover {
  color: var(--logo-green);
}

.programs-why-section {
  background-color: var(--cream);
}

.programs-why-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.programs-why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.programs-why-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: rgba(60, 90, 77, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-green);
  font-size: 1.25rem;
}

.programs-why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.55rem;
}

.programs-why-card p {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.programs-journey-section {
  background-color: var(--programs-bg);
}

.programs-journey-wrap {
  position: relative;
}

.programs-journey-connector {
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed rgba(176, 141, 87, 0.45);
  z-index: 0;
}

.programs-journey-step {
  text-align: center;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0 0.5rem;
}

.programs-journey-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.programs-journey-step h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.45rem;
}

.programs-journey-step p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 767.98px) {
  .program-card-lg-image img {
    height: 200px;
  }

  .program-card-lg-body {
    padding: 1.85rem 1.25rem 1.5rem;
  }

  .program-card-lg-icon {
    width: 52px;
    height: 52px;
    top: -26px;
    left: 1.15rem;
  }

  .program-card-lg-icon i {
    font-size: 1.2rem;
  }

  .programs-journey-step {
    margin-bottom: 0.5rem;
  }
}

/* ---- Gallery Page ---- */
.page-hero--gallery {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gallery-hero-divider {
  max-width: 110px;
  margin-bottom: 1.35rem;
}

.gallery-page-section {
  background-color: var(--programs-bg);
}

.gallery-page-header .section-title {
  margin-bottom: 0.75rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1.5rem;
  margin-bottom: 2.5rem;
}

.gallery-filters__btn {
  border: none;
  background: transparent;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: #7a7168;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-filters__btn:hover {
  color: var(--forest);
}

.gallery-filters__btn.is-active {
  background: var(--btn-primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(36, 61, 50, 0.18);
}

.gallery-masonry {
  column-count: 3;
  column-gap: 1.35rem;
}

.gallery-masonry__item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 1.35rem;
  display: block;
  width: 100%;
  transition: opacity 0.25s ease;
}

.gallery-masonry__item.is-hidden {
  display: none;
}

.gallery-masonry__image-wrap {
  overflow: hidden;
  border-radius: 14px;
  background: #ede8e0;
  box-shadow: 0 8px 24px rgba(27, 48, 34, 0.08);
  line-height: 0;
}

.gallery-masonry__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-masonry__item:hover .gallery-masonry__image-wrap img {
  transform: scale(1.04);
}

.gallery-page__empty {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 2rem 0 0;
}

.gallery-page__empty--hidden {
  display: none;
}

@media (max-width: 991.98px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 575.98px) {
  .gallery-masonry {
    column-count: 1;
    column-gap: 1rem;
  }

  .gallery-masonry__item {
    margin-bottom: 1rem;
  }

  .gallery-filters {
    gap: 0.5rem 0.75rem;
    margin-bottom: 2rem;
  }

  .gallery-filters__btn {
    font-size: 0.82rem;
    padding: 0.5rem 1.1rem;
  }
}

/* ---- Program Detail Page ---- */
.program-detail-hero {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.program-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.program-breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.program-breadcrumb a:hover {
  color: var(--white);
}

.program-breadcrumb-sep {
  opacity: 0.65;
}

.program-breadcrumb [aria-current="page"] {
  color: var(--white);
}

.program-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  margin-top: 0.5rem;
}

.program-detail-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}

.program-detail-meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.95rem;
}

.program-detail-overview-section {
  background-color: #F8F5F2;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.program-detail-overview-row {
  margin-bottom: 2.5rem;
}

.program-overview-text {
  max-width: 520px;
}

.program-overview-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1rem;
  max-width: 520px;
}

.program-overview-feature {
  text-align: center;
}

.program-overview-feature-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.program-overview-feature-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.program-overview-feature-body h3 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 0.35rem;
}

.program-overview-feature-body p {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.55;
  margin: 0;
}

.program-overview-media {
  position: relative;
  padding-right: 0.5rem;
}

.program-overview-media > img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(27, 48, 34, 0.12);
  display: block;
}

.program-ideal-for-card {
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-42%);
  width: min(100%, 270px);
  background: var(--btn-primary);
  color: var(--white);
  border-radius: 18px;
  padding: 1.45rem 1.35rem 1.35rem;
  box-shadow: 0 16px 36px rgba(27, 48, 34, 0.22);
}

.program-ideal-for-card-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.program-ideal-for-card-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.program-ideal-for-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.program-ideal-for-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.program-ideal-for-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.program-ideal-for-card li + li {
  margin-top: 0.65rem;
}

.program-ideal-for-card li i {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  margin-top: 0.08rem;
  flex-shrink: 0;
}

.program-detail-lists-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 10px 36px rgba(27, 48, 34, 0.07);
  padding: 2.25rem 2.5rem 2.5rem;
}

.program-detail-lists-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem 3rem;
  align-items: start;
}

.program-list-column .why-label {
  margin-bottom: 1.5rem;
}

.program-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.program-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  color: #2a2a2a;
  line-height: 1.55;
}

.program-detail-list li + li {
  margin-top: 1.1rem;
}

.program-detail-list-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(60, 90, 77, 0.08);
  color: var(--logo-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.program-list-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  padding-top: 2.75rem;
  min-height: 100%;
}

.program-list-divider-line {
  width: 1px;
  flex: 1;
  min-height: 90px;
  background: rgba(176, 141, 87, 0.45);
}

.program-list-divider i {
  color: var(--gold);
  font-size: 0.78rem;
}

.program-detail-journey-section .programs-journey-connector {
  top: 36px;
  left: 8%;
  right: 8%;
}

.program-detail-journey-section .programs-journey-step h3 {
  font-size: 0.9rem;
}

.program-detail-journey-section .programs-journey-step p {
  font-size: 0.8rem;
}

.program-detail-hero .program-detail-hero-title,
.program-detail-hero .program-detail-hero-text {
  color: var(--white);
}

.program-detail-hero .program-detail-hero-text {
  max-width: 520px;
}

@media (max-width: 991.98px) {
  .program-detail-lists-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .program-list-divider {
    flex-direction: row;
    padding-top: 0;
    justify-content: center;
  }

  .program-list-divider-line {
    width: auto;
    height: 1px;
    min-height: 0;
    flex: 1;
    max-width: 120px;
  }

  .program-ideal-for-card {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1.25rem;
  }

  .program-overview-media {
    padding-right: 0;
  }

  .program-overview-media > img {
    min-height: 320px;
  }

  .program-detail-overview-row {
    margin-bottom: 2rem;
  }

  .program-detail-lists-card {
    padding: 1.75rem 1.5rem 2rem;
  }
}

@media (max-width: 767.98px) {
  .program-detail-meta {
    gap: 1rem 1.25rem;
  }

  .program-detail-meta-item {
    font-size: 0.76rem;
  }

  .program-overview-features {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .program-overview-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    text-align: left;
  }

  .program-overview-feature-icon {
    margin: 0;
    flex-shrink: 0;
  }
}

/* ---- Contact Page ---- */
.page-hero--contact {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero--contact .page-hero-label {
  color: var(--gold-light);
}

.contact-hero-divider {
  max-width: 110px;
  margin-bottom: 1.35rem;
}

.contact-hero-divider .hero-divider-line {
  background: rgba(201, 169, 110, 0.85);
}

.contact-intro-section {
  background-color: #F9F5F3;
}

.contact-intro-label {
  color: var(--logo-green);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin-bottom: 0.85rem;
}

.contact-intro-title {
  color: var(--forest);
}

.contact-intro-image {
  margin-top: 1.75rem;
}

.contact-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow:
    0 12px 40px rgba(27, 48, 34, 0.08),
    0 4px 14px rgba(27, 48, 34, 0.04);
  padding: 2.25rem 2rem 1.75rem;
}

.contact-form-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 500;
  color: var(--forest);
  margin: 0;
  text-align: center;
}

.contact-form-divider {
  max-width: 90px;
  margin: 0.75rem auto 1.5rem;
}

#contact-form,
#contact-form-message {
  scroll-margin-top: 6.5rem;
}

.contact-form-message {
  outline: none;
  margin-bottom: 1.25rem;
}

.contact-form-message .contact-alert {
  margin-bottom: 0;
}

.contact-alert {
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  margin-bottom: 1.25rem;
}

.contact-alert--success {
  background: rgba(60, 90, 77, 0.1);
  color: var(--forest);
  border: 1px solid rgba(60, 90, 77, 0.2);
}

.contact-alert--error {
  background: rgba(220, 53, 69, 0.08);
  color: #842029;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.contact-form__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 0.45rem;
}

.contact-form__input {
  width: 100%;
  border: 1px solid #e2ddd4;
  border-radius: 10px;
  padding: 0.72rem 0.95rem;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--text-dark);
  background: #faf9f7;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input::placeholder {
  color: #a8a29a;
}

.contact-form__input:focus {
  outline: none;
  border-color: rgba(60, 90, 77, 0.45);
  box-shadow: 0 0 0 3px rgba(60, 90, 77, 0.1);
  background: var(--white);
}

.contact-form__input.is-invalid {
  border-color: #dc3545;
  background: #fff8f8;
}

.contact-form__input.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.contact-form__error {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #dc3545;
  margin-top: 0.35rem;
}

.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__submit {
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 10px;
}

.contact-form-safe-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.15rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.contact-form-safe-note i {
  color: var(--logo-green);
  font-size: 0.9rem;
}

.contact-cards-section {
  background-color: var(--cream);
  padding-top: 6rem;
}

.contact-cards-header {
  max-width: 640px;
  margin: 0 auto 3rem;
}

.contact-cards-header .why-label {
  color: var(--logo-green);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin-bottom: 0.85rem;
}

.contact-cards-title {
  font-family: var(--font-hero-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.contact-cards-header .section-divider {
  max-width: 90px;
  margin-top: 0.25rem;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid #ebe5dc;
  border-radius: 16px;
  padding: 1.75rem 1.35rem;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.contact-info-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--btn-primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.contact-info-card h3 {
  font-family: var(--font-hero-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.65rem;
}

.contact-info-card p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.contact-info-card a {
  color: var(--forest);
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--logo-green);
}

.contact-info-card small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.74rem;
  color: #9a9289;
}

.contact-map-section {
  position: relative;
  min-height: 420px;
  background: #d8e8e0;
}

.contact-map-embed {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(0.95);
}

.contact-map-container {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  pointer-events: none;
}

.contact-map-card {
  max-width: 360px;
  background: var(--btn-primary);
  color: var(--white);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  box-shadow: 0 16px 40px rgba(27, 48, 34, 0.22);
  pointer-events: auto;
}

.contact-map-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.85rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.contact-map-card p {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.35rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-map-card__btn {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--forest);
  border-radius: 10px;
  padding: 0.7rem 1.25rem;
}

.contact-map-card__btn:hover {
  background: var(--cream);
  color: var(--forest);
}

@media (max-width: 991.98px) {
  .contact-form-card {
    padding: 1.85rem 1.5rem 1.5rem;
  }

  .contact-map-container {
    min-height: 360px;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .contact-cards-section {
    padding-top: 3.5rem;
  }

  .contact-info-card {
    padding: 1.5rem 1.15rem;
  }

  .contact-map-section {
    min-height: 380px;
  }

  .contact-map-container {
    justify-content: center;
    text-align: center;
  }

  .contact-map-card {
    max-width: 100%;
  }
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 3.5rem 0;
  }

  .hero-content {
    padding: 3rem 0 6rem;
  }

  .navbar-ayurveda .navbar-nav {
    padding-top: 0.5rem;
  }

  .navbar-ayurveda .nav-item + .nav-item {
    margin-top: 0.15rem;
  }

  .navbar-ayurveda .nav-link::after {
    display: none;
  }

  .navbar-ayurveda .nav-link {
    border-left: 3px solid transparent;
    border-radius: 0 8px 8px 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }

  .navbar-ayurveda .nav-link.active {
    font-weight: 600;
    background: rgba(176, 141, 87, 0.08);
    border-left-color: var(--gold);
  }

  .navbar-ayurveda .nav-link:hover {
    background: rgba(176, 141, 87, 0.05);
  }
}

@media (max-width: 767.98px) {
  .navbar-ayurveda > .container,
  .hero-area .container,
  .page-hero .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .page-hero {
    min-height: 420px;
  }

  .page-hero-content {
    padding: 4rem 0 3.5rem;
  }

  .page-hero-title {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
  }

  .hero-section {
    min-height: 58vh;
    max-height: none;
  }

  .hero-content {
    padding: 2.75rem 0 6.5rem;
    text-align: left;
  }

  .hero-divider {
    margin-left: 0;
    margin-right: auto;
  }

  .hero-text {
    margin-left: 0;
    margin-right: auto;
  }

  .cta-banner {
    padding: 2rem 0;
    text-align: center;
  }

  .cta-contact {
    justify-content: center;
  }

  .logo-title {
    font-size: 0.78rem;
    letter-spacing: 0.015em;
  }

  .logo-subtitle {
    font-size: 0.44rem;
    letter-spacing: 0.3em;
  }

  .logo-icon {
    font-size: 1.55rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-ayurveda > .container,
  .hero-area .container,
  .page-hero .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .about-story-image,
  .about-campus-image {
    min-height: 240px;
  }

  .team-card-image img {
    height: 220px;
  }
}
