:root {
  /* Core Brand Colors */
  --green-dark: #2f8f46;
  --green-light: #8bc34a;
  --gold: #d4af37;

  /* Light Theme Variables (Default) */
  --bg-body: #f8faf9;
  --bg-card: #ffffff;
  --bg-header: #ffffff;
  --bg-alt: #f9f9f9;
  --text-main: #1a2a20;
  --text-muted: #5b7062;
  --border-color: rgba(47, 143, 70, 0.15);
  --card-shadow: 0 16px 50px rgba(47, 143, 70, 0.06);
  --progress-bg: #e5efe8;
  --badge-bg: #f0f7f2;
  --badge-text: var(--green-dark);
  --ctrl-btn-bg: #ffffff;
  --ctrl-btn-text: #1a2a20;
  --fav-bg: rgba(47, 143, 70, 0.08);
  --fav-text: var(--green-dark);
  --card-bg-glass: rgba(255, 255, 255, 0.85);
  --icon-bg: rgba(47, 143, 70, 0.15);
  --footer-bg: #ffffff;
}

[data-theme="dark"] {
  --bg-body: #0a110d;
  --bg-card: #132018;
  --bg-header: #0d1611;
  --bg-alt: #0e1812;
  --text-main: #f0f7f2;
  --text-muted: #8fa696;
  --border-color: rgba(255, 255, 255, 0.08);
  --card-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
  --progress-bg: #1a2b20;
  --badge-bg: #070c09;
  --badge-text: #4caf50;
  --ctrl-btn-bg: #070c09;
  --ctrl-btn-text: #4caf50;
  --fav-bg: rgba(255, 255, 255, 0.05);
  --fav-text: #4caf50;
  --card-bg-glass: rgba(19, 32, 24, 0.85);
  --icon-bg: rgba(255, 255, 255, 0.05);
  --footer-bg: #070c09;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.7;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn-primary {
  background: linear-gradient(45deg, var(--green-dark), var(--gold));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.35);
}

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

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
}

/* ---------- Header ---------- */
.header {
  background: var(--bg-header);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.header--hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

/* Offset body content so it doesn't hide behind the fixed header */
body {
  padding-top: 90px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 45px;
}

.nav-right,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  /* Uniform gap matching nav-links */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-mobile-actions {
  display: none;
  /* Hidden on desktop */
}

.nav-links a {
  text-decoration: none;
  color: var(--green-dark);
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ---------- Thematic Header Icons ---------- */

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      rgba(47, 143, 70, 0.15),
      rgba(212, 175, 55, 0.15));
  border: 1px solid rgba(47, 143, 70, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ---------- Thematic Google Icons ---------- */

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      rgba(47, 143, 70, 0.15),
      rgba(212, 175, 55, 0.15));
  border: 1px solid rgba(47, 143, 70, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Material icon itself */
.material-symbols-outlined {
  font-size: 20px;
  color: var(--green-dark);
  font-weight: 400;
  transition: all 0.3s ease;
}

/* Hover */
.icon-btn:hover {
  background: linear-gradient(135deg,
      var(--green-dark),
      var(--gold));
  box-shadow: 0 10px 22px rgba(47, 143, 70, 0.35);
}

.icon-btn:hover .material-symbols-outlined {
  color: #fff;
  transform: scale(1.15);
}

/* ---------- Sound Toggle Button ---------- */
.icon-btn.icon-sound.playing {
  position: relative;
  background: rgba(47, 143, 70, 0.15);
  border-color: var(--green-dark);
  box-shadow: 0 0 15px rgba(47, 143, 70, 0.4), inset 0 0 8px rgba(47, 143, 70, 0.2);
}

.icon-btn.icon-sound.playing::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(47, 143, 70, 0.35);
  animation: soundRipple 2s linear infinite;
  pointer-events: none;
}

.icon-btn.icon-sound.playing .material-symbols-outlined {
  color: var(--green-dark);
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 20;
}

.icon-btn.icon-sound.playing:hover {
  background: var(--green-dark);
  box-shadow: 0 0 25px rgba(47, 143, 70, 0.65);
}

.icon-btn.icon-sound.playing:hover .material-symbols-outlined {
  color: #ffffff;
}

@keyframes soundRipple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ---------- Header Improvements ---------- */

/* Unbreakable Logo Copy Protection */
.logo,
.splash-logo,
.footer-logo {
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  pointer-events: none;
  /* Ultimate lockdown: Eliminates dragging, selection, and right-click save menus! */
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.logo {
  height: 48px;
  /* adjusted from 60px to make it a little smaller in desktop view */
}

.nav-links a {
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Underline indicator */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: linear-gradient(45deg, var(--green-dark), var(--gold));
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Hover */
.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Active tab */
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  width: 100%;
}

/* Right-side actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--green-dark);
  transition: transform 0.2s ease;
}

.icon-btn:hover {
  transform: scale(1.1);
}


/* ---------- Language Selector & Dropdown ---------- */
.lang-selector {
  position: relative;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--card-bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 8px;
  min-width: 180px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(15px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;

  /* Premium modern spring bounce hide state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.95);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.lang-opt {
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-main);
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* Circular Language Character Badges */
.lang-char {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47, 143, 70, 0.1);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.lang-opt:hover {
  background: var(--badge-bg);
  color: var(--green-dark);
  padding-left: 18px;
  /* Dynamic interaction push */
}

.lang-opt:hover .lang-char {
  background: var(--green-dark);
  color: #fff;
}

/* Premium Elegant Gold Active State */
.lang-opt.active {
  background: rgba(212, 175, 55, 0.15);
  /* Soft golden radiance */
  color: var(--gold);
  /* Accentuated vibrant golden text */
  font-weight: 600;
}

.lang-opt.active .lang-char {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Responsive mobile alignments */
@media (max-width: 768px) {
  .lang-dropdown {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-12px) scale(0.95);
  }

  .lang-dropdown.show {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  body {
    padding-top: 70px;
  }
}


/* ---------- HERO DASHBOARD ---------- */
.hero-dashboard {
  /* Using calc to fit the screen minus the header approx height */
  height: calc(100vh - 80px);
  min-height: 600px;
  padding: 40px 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(139, 195, 74, 0.08) 0%, transparent 50%),
    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 53fr 47fr;
  gap: 30px;
  align-items: stretch;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
}

/* Base Card Style */
.dash-card {
  background: var(--bg-card);
  border-radius: 40px;
  padding: 30px;
  position: relative;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Left Panel: 3D View */
.left-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.badge {
  position: absolute;
  top: 30px;
  background: var(--badge-bg);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 13px;
  font-weight: 600;
  color: var(--badge-text);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
  background: var(--badge-bg);
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hint-btn {
  cursor: pointer;
}

.hint-btn:hover {
  transform: translateY(-2px);
  background: var(--bg-body);
}

.coming-soon-bubble {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(47, 143, 70, 0.4);
  z-index: 10;
}

.coming-soon-bubble::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--green-dark);
}

.badge-left {
  left: 30px;
}

.badge-right {
  right: 30px;
}

.badge-right .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--gold);
}

.badge .material-symbols-outlined {
  font-size: 18px;
  color: inherit;
}

.model-container {
  position: relative;
  width: 100%;
  flex-grow: 1;
  /* Fill the card height */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.comment-box-container {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 0 8px 0 15px;
  height: 42px;
  width: calc(100% - 180px);
  /* Adjusted for two control buttons */
  z-index: 5;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  cursor: text;
}

.comment-box-container:focus-within {
  border-color: var(--green-dark);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.comment-icon {
  font-size: 18px;
  color: var(--green-dark);
  margin-right: 8px;
}

.comment-input {
  flex-grow: 1;
  min-width: 0;
  /* CRITICAL BUGFIX: Permits the input to shrink naturally inside flex layouts on real mobile viewports */
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 13px;
  height: 100%;
  font-family: inherit;
  cursor: text;
}

.comment-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.comment-send-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 5px;
}

.comment-send-btn .material-symbols-outlined {
  font-size: 16px;
  transform: translateX(1px);
  color: #fff !important;
  /* Counteracts global green color to defeat camouflage */
}

.comment-send-btn:hover {
  background: var(--gold);
  transform: scale(1.05);
}

.model-controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.model-share {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--fav-bg);
  color: var(--fav-text);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.model-fav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--fav-bg);
  color: var(--fav-text);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.model-fav:hover,
.model-share:hover {
  background: rgba(47, 143, 70, 0.15);
  transform: scale(1.1);
}

.model-fav.active {
  background: rgba(47, 143, 70, 0.12) !important;
  border-color: rgba(47, 143, 70, 0.3) !important;
  color: var(--green-dark) !important;
}

[data-theme="dark"] .model-fav.active {
  background: rgba(139, 195, 74, 0.12) !important;
  border-color: rgba(139, 195, 74, 0.3) !important;
  color: #8bc34a !important;
}

.model-fav.active span {
  font-variation-settings: 'FILL' 1 !important;
  color: var(--green-dark) !important;
}

[data-theme="dark"] .model-fav.active span {
  color: #8bc34a !important;
}

/* ── Instagram Live Floating Comments Overlay ── */
.live-comments-overlay {
  position: absolute;
  bottom: 90px;
  /* sit above the controls bar */
  left: 30px;
  width: 260px;
  max-height: 120px;
  overflow: hidden;
  pointer-events: none;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.live-comment-bubble {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 240px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 8px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  line-height: 1.4;
  pointer-events: none;
  animation: liveCommentPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.live-comment-bubble.fade-out {
  animation: liveCommentFadeOut 0.5s ease forwards;
}

.live-comment-bubble .lcb-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-comment-bubble .lcb-icon {
  font-size: 15px;
  color: #8bc34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.live-comment-bubble .lcb-name {
  font-weight: 700;
  color: #8bc34a;
  white-space: nowrap;
  flex-shrink: 0;
}

.live-comment-bubble .lcb-text {
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
  font-size: 0.78rem;
}

@keyframes liveCommentPop {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(8px);
  }

  100% {
    opacity: 1;
    transform: scale(1.00) translateY(0);
  }
}

@keyframes liveCommentFadeOut {
  0% {
    opacity: 1;
    transform: scale(1.00) translateY(0);
  }

  100% {
    opacity: 0;
    transform: scale(0.95) translateY(-4px);
  }
}



.share-wrapper {
  position: relative;
  display: inline-block;
}

.share-dropdown {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 190px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 6px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 100;
  backdrop-filter: blur(12px);
}

.share-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.share-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.share-opt:hover {
  background: rgba(47, 143, 70, 0.08);
  color: var(--green-dark);
}

.share-opt i {
  font-size: 14px;
  width: 18px;
  text-align: center;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.share-opt:hover i {
  color: var(--green-dark);
}

/* Right Panel: Journal */
.right-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journal-subtitle {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.journal-title {
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-main);
}

.logo-text {
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
  position: relative;
}

.journal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Progress Section */
.progress-section {
  background: var(--badge-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px 24px;
  margin-bottom: 20px;
}

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

.progress-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--green-dark);
  text-transform: uppercase;
}

.progress-label .material-symbols-outlined {
  font-size: 18px;
}

.progress-percentage {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.progress-track {
  width: 100%;
  height: 8px;
  background: var(--progress-bg);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  /* Animated by GSAP */
  background: linear-gradient(90deg, var(--green-light), var(--green-dark), var(--gold));
  border-radius: 10px;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.progress-steps .step.active {
  color: var(--green-dark);
}

.btn-journal {
  align-self: center;
  background: var(--gold);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.1rem;
  margin-bottom: 10px;
  /* Added extra bottom breathing room */
}

.btn-journal:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 25px rgba(47, 143, 70, 0.3);
}


/* ---------- Sections ---------- */
.features {
  background: var(--gray);
  padding: 70px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  background: var(--card-bg-glass);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  border-top: 4px solid var(--gold);
  transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

/* ---------- Feature Card Icons (FINAL FIX) ---------- */

.feature-icon.material-symbols-outlined {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg,
      rgba(47, 143, 70, 0.12),
      rgba(212, 175, 55, 0.12));

  border: 1px solid rgba(47, 143, 70, 0.25);
  margin: 0 auto 22px;

  /* Fixed scaling and centering */
  font-size: 18px;
  color: var(--green-dark);
  line-height: 1;
  transition: all 0.3s ease;

  font-variation-settings:
    "FILL" 0,
    "wght" 600,
    "GRAD" 0,
    "opsz" 24;
}

.feature-card:hover .feature-icon.material-symbols-outlined {
  background: linear-gradient(135deg,
      var(--green-dark),
      var(--gold));
  color: #fff;
}


.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.story {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 5% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

.story-tag {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-left: 45px;
}

.story-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "content image"
    "action action";
  /* Spans across entire horizontal desktop container */
  gap: 30px 60px;
  align-items: center;
}

.story-content {
  grid-area: content;
}

.story-image-container {
  grid-area: image;
}

.story-action {
  grid-area: action;
  display: flex;
  justify-content: center;
  /* Centers the button in the exact middle of screen */
  margin-top: 30px;
  /* Added generous high-end spacing */
}

.story h2 {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--green-dark);
}

.story p {
  font-size: 1.02rem;
  line-height: 1.75;
  opacity: 0.88;
  margin-bottom: 18px;
}

/* Premium Interactive Stack Image Framing */
.story-image-container {
  position: relative;
  padding: 15px;
}

.story-image-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 85%;
  height: 85%;
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
}

.story-image-container:hover::after {
  transform: translate(12px, 12px);
  border-color: var(--gold);
}

.brand-transform-canvas {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  aspect-ratio: 1.77;
  /* Consistent 16:9 */
  background: var(--bg-card);
  /* Responsive dual-theme backing */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-transform-canvas:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: 0 30px 70px rgba(47, 143, 70, 0.25);
}

.brand-transform-canvas .story-img-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) saturate(0.9) blur(1px);
  /* Lighter environment for Light Mode */
  transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}

/* Deep shadow environments customized automatically for Dark Mode users */
[data-theme="dark"] .brand-transform-canvas .story-img-base {
  filter: brightness(0.35) saturate(0.65) blur(2px);
}

.transform-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.25);
  /* Dual theme glossy glass overlay */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

[data-theme="dark"] .transform-overlay {
  background: rgba(10, 17, 13, 0.55);
  /* Emerald dark shadow tint */
}

.transform-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 92%;
  gap: 12px;
  z-index: 3;
}

.brand-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.logo-frame {
  width: 100px;
  height: 100px;
  background: var(--card-bg-glass);
  /* Theme-driven structural glass panels */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--border-color);
  /* Theme-driven green/translucent border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: var(--card-shadow);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.logo-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
  transition: all 0.6s ease;
}

.brand-meta {
  font-size: 0.72rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 600;
  transition: all 0.6s ease;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.55);
}

/* Connector Arrow Animation between the logos */
.brand-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 50px;
  color: var(--gold);
  z-index: 5;
}

.brand-arrow span {
  font-size: 2.5rem;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  animation: arrowPulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.flow-line {
  position: absolute;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 120%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0.6;
}

@keyframes arrowPulse {
  0% {
    transform: translateX(-6px);
    opacity: 0.4;
  }

  50% {
    transform: translateX(6px);
    opacity: 1;
    filter: drop-shadow(0 0 12px var(--gold));
  }

  100% {
    transform: translateX(-6px);
    opacity: 0.4;
  }
}

/* Reactive Evolution State Mechanics */
.node-old {
  opacity: 0.95;
}

.node-new {
  opacity: 0.55;
  transform: scale(0.9);
}

/* 1. The physical retreat environment reveals and sharpens on canvas hover */
.brand-transform-canvas:hover .story-img-base {
  filter: brightness(0.8) saturate(1.1) blur(0);
  transform: scale(1.04);
}

[data-theme="dark"] .brand-transform-canvas:hover .story-img-base {
  filter: brightness(0.65) saturate(1.1) blur(0);
}

/* 2. The past recedes slightly into memories */
.brand-transform-canvas:hover .node-old {
  opacity: 0.45;
  transform: scale(0.88);
  filter: grayscale(1);
}

/* 3. The current/future logo glows golden, expands, and locks in perfect focus */
.brand-transform-canvas:hover .node-new {
  opacity: 1;
  transform: scale(1.12);
}

.brand-transform-canvas:hover .node-new .logo-frame {
  background: var(--bg-card);
  border-color: var(--gold);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.4);
}

.brand-transform-canvas:hover .node-new .brand-meta {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2.2px;
}

/* Adaptive scaling for medium-sized tablet and mobile devices */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "content"
      "image"
      "action";
    gap: 35px;
  }

  .story-action {
    justify-content: center;
    /* Fully center button beneath photo for perfect hierarchy */
    margin-top: 15px;
  }

  .story h2 {
    font-size: 2.2rem;
  }
}

/* ---------- Facilities Cards ---------- */

.facility-card {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.35s ease;
  color: #fff;
}

.facility-card h4 {
  margin: 18px 0 12px;
  font-size: 1.15rem;
  font-weight: 600;
}

.facility-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

.facility-icon.material-symbols-outlined {
  width: 80px;
  height: 80px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 36px;
  color: #fff;

  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin: 0 auto;
  line-height: 1;
  transition: all 0.3s ease;

  /* Ensure optimal icon rendering */
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 48;
}

.facility-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.facility-card:hover .facility-icon.material-symbols-outlined {
  background: linear-gradient(135deg,
      var(--green-dark),
      var(--gold));
}


.facilities {
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  color: #fff;
  padding: 70px 0;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.facility {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  text-align: center;
  border-radius: 12px;
}

/* ---------- CTA Section (Enhanced) ---------- */

.cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg,
      rgba(139, 195, 74, 0.15),
      rgba(212, 175, 55, 0.18));
}

.cta-inner {
  max-width: 680px;
  margin: auto;
}

.cta h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--green-dark);
}

.cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: var(--text);
}

/* CTA Share Buttons Grid */
.cta-share-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.btn-cta-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* WhatsApp */
.btn-cta-share.whatsapp-share {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
}

.btn-cta-share.whatsapp-share:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Facebook */
.btn-cta-share.facebook-share {
  background: linear-gradient(135deg, #1877f2, #0d5dd6);
  color: #fff !important;
}

.btn-cta-share.facebook-share:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

/* Twitter / X */
.btn-cta-share.twitter-share {
  background: linear-gradient(135deg, #14171a, #000000);
  color: #fff !important;
}

.btn-cta-share.twitter-share:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Copy Link */
.btn-cta-share.copy-share {
  background: linear-gradient(135deg, var(--green-dark), #2f8f46);
  color: #fff !important;
  border: none;
}

.btn-cta-share.copy-share:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 143, 70, 0.3);
}

/* Dark mode overrides for CTA section */
[data-theme="dark"] .cta h2 {
  color: var(--green-light);
}

[data-theme="dark"] .btn-cta-share {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ---------- Blogs / Testimonials Section ---------- */

.blogs {
  background: var(--bg-alt);
  padding: 90px 0;
  transition: background-color 0.3s ease;
}

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

.section-header h2 {
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.85;
}

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



/* ---------- Footer (Enhanced) ---------- */

.footer {
  background: var(--footer-bg);
  /* Light theme background */
  color: var(--text-main);
  padding: 70px 0 30px;
  border-top: 1px solid var(--border-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

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

/* Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  height: 140px;
  /* Bigger logo */
  margin-bottom: 8px;
  /* Pulled description text upwards */
  display: block;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-version {
  font-size: 0.7rem;
  /* Subtle whisper-light footer text */
  color: var(--gold);
  /* Elegant thematic light yellow-gold */
  opacity: 0.9;
  /* Elevated opacity to make the color pop clearly */
  margin-top: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Columns */
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--green-dark);
  /* Dark green for light theme */
}

.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text-muted);
  /* Darker text for light theme */
  text-decoration: none;
  display: block;
}

.footer-col a:hover {
  color: var(--green-light);
}

.footer-col p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col p .material-symbols-outlined {
  font-size: 1.15rem;
  color: var(--green-light);
  flex-shrink: 0;
  /* Avoid scaling quirks */
}

/* Bottom center copyright */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}



/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Fix Anchor Scroll Offset ---------- */

section {
  scroll-margin-top: 100px;
  /* height of header */
}

/* ---------- Scroll Top ---------- */
#scrollTopBtn {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(45deg, var(--green-dark), var(--gold));
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 999;
}

/* ---------- Splash Screen ---------- */
.splash-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-body);
  /* white theme base */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, background-color 0.3s ease;
}

.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-logo {
  height: 240px;
  /* Increased for better visibility */
  max-width: 80vw;
  object-fit: contain;
  animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.splash-bottom {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.splash-version {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--green-dark);
  font-weight: 500;
  text-transform: uppercase;
}

.splash-progress-container {
  width: 200px;
  height: 4px;
  background: rgba(47, 143, 70, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.splash-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(45deg, var(--green-dark), var(--gold));
  border-radius: 4px;
  animation: splashProgress 3.5s ease-in-out forwards;
}

@keyframes splashProgress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* ---------- RESPONSIVE ---------- */

/* Desktop hide mobile book btn */
.mobile-book-btn {
  display: none !important;
}

@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    /* Tighter gap to pull next box up */
  }

  .hero-dashboard {
    height: auto;
    min-height: auto;
    padding: 25px 0 30px;
    /* Reduced huge top whitespace from 60px */
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .container {
    width: 92%;
    padding: 0;
  }

  /* Header adjustments */
  .header {
    padding: 8px 0;
    /* Elegant dense mobile appbar padding */
  }

  .nav {
    position: relative;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    /* Standard-defining center baseline across all tools */
    height: 50px;
    padding: 0 16px;
    /* High-luxury horizontal inset cushion matching top-tier OS standards */
  }

  .logo {
    position: static;
    transform: none;
    height: 40px;
    /* Refined sizing for clean structural continuity */
    display: block;
    z-index: 10;
  }

  .nav-right {
    display: flex !important;
    align-items: center;
    margin-left: auto;
  }

  /* Symmetrically balanced action row directly in header */
  .nav-actions {
    display: flex !important;
    align-items: center;
    gap: 16px;
    /* Generous comfortable touch targets */
    margin-right: 18px;
    /* Rigid visual gutter spacing before the hamburger */
  }

  .nav-actions .btn-primary {
    display: none !important;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .icon-btn .material-symbols-outlined {
    font-size: 21px;
    /* Perfect proportional scale balance */
    line-height: 1;
  }

  /* Meticulous professional Menu Toggle centering */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 26px;
    /* Mathematical size match for the surrounding icons */
    line-height: 1;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
    transform: none;
    /* Zero offsets for absolute geometric cross-axis centering! */
    height: 38px;
    /* Matching boundingbox size for symmetrical touch footprints */
  }

  .menu-toggle.open {
    transform: rotate(90deg);
  }

  /* Mobile Menu Overlay Backdrop */
  body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 90;
    /* Sits behind header (100) */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open::after {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    display: flex !important;
    /* Ensure flex container */
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 20px;
    width: 250px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--card-shadow);
    z-index: 1000;

    /* Animation Off-state */
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      background-color 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    margin: 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(47, 143, 70, 0.05);
    transition: padding-left 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links a:hover {
    padding-left: 20px;
  }

  .nav-links a.active {
    color: var(--gold);
    padding-left: 15px;
  }

  /* Vertical indicator behind text */
  .nav-links a::after {
    width: 4px;
    height: 0%;
    bottom: 0;
    top: 0;
    left: 0;
    z-index: -1;
    transition: height 0.3s ease;
    border-radius: 0 4px 4px 0;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 4px;
    height: 100%;
  }

  /* Mobile action row is fully moved into the top header bar */
  .nav-mobile-actions {
    display: none !important;
  }

  /* Style mobile book button */
  .nav-links .mobile-book-btn {
    display: block !important;
    text-align: center;
    background: linear-gradient(45deg, var(--green-dark), var(--gold));
    color: #fff !important;
    padding: 12px 20px !important;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 15px;
    border-bottom: none;
    box-shadow: 0 8px 20px rgba(47, 143, 70, 0.2);
    transition: all 0.3s ease;
  }

  .nav-links .mobile-book-btn::after {
    display: none !important;
  }

  .nav-links .mobile-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3);
    padding: 12px 20px !important;
    /* Keep padding symmetrical and prevent shifting */
  }

  /* Cards and Hero details */
  .dash-card {
    padding: 30px 20px;
    border-radius: 30px;
  }

  .model-container {
    padding: 0;
    /* Reclaimed 40px vertical space */
    flex-grow: 0;
    /* Prevents any dynamic vertical expansion on mobile */
  }

  .left-panel {
    /* Kill all residual spacing by snapping content to the top */
    justify-content: flex-start;
    padding: 46px 20px 80px;
  }

  .badge {
    top: 15px;
    padding: 5px 10px;
    font-size: 10px;
  }

  .badge-left {
    left: 15px;
  }

  .badge-right {
    right: 15px;
  }

  .comment-box-container {
    bottom: 15px;
    left: 15px;
    width: calc(100% - 120px);
    max-width: none;
    height: 40px;
  }

  .live-comments-overlay {
    left: 15px;
    bottom: 65px;
    /* Sit just above the comment input box on mobile */
    max-height: 100px;
  }

  .live-comment-bubble {
    max-width: 210px;
    padding: 6px 10px;
    font-size: 0.74rem;
    border-radius: 12px;
  }

  .live-comment-bubble .lcb-text {
    font-size: 0.74rem;
  }

  .evil-eye-wrapper {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    height: 24px;
  }

  .evil-eye-overlay {
    font-size: 16px;
    width: 24px;
    height: 24px;
  }

  .model-controls {
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 5;
  }

  .model-fav,
  .model-share {
    width: 40px;
    height: 40px;
  }

  .share-dropdown {
    width: 160px;
    bottom: calc(100% + 8px);
    border-radius: 14px;
    padding: 4px;
  }

  .share-opt {
    padding: 8px 10px;
    font-size: 12px;
    gap: 8px;
  }

  .share-opt i {
    font-size: 12px;
    width: 16px;
  }

  .card-slider {
    aspect-ratio: 16/9;
    width: 90%;
    /* Reclaims significant vertical logic via constrained auto-height */
  }

  .handle-circle {
    width: 24px;
    height: 48px;
    border-radius: 6px;
  }

  .handle-circle span {
    font-size: 16px;
  }

  .journal-title {
    font-size: 1.35rem;
  }

  .journal-desc {
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  /* Sections */
  .story,
  .features,
  .facilities,
  .blogs,
  .cta {
    padding: 50px 0;
  }

  .story-grid,
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-header h2,
  .facilities h2,
  .story h2,
  .features h2 {
    font-size: 1.8rem;
  }

  /* Footer */
  .footer {
    padding: 50px 0 20px;
  }

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

  .footer-brand,
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    height: 100px;
  }

  .footer-desc {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {

  /* Header adjustments */
  .logo {
    height: 38px;
    /* Slightly refine mobile density height */
    transform: none;
    /* Eliminate residual centering offsets */
  }

  .nav-actions .btn-primary {
    display: none;
    /* Hide header Book Now button, use mobile menu one instead */
  }


  .journal-title {
    font-size: 1.35rem;
  }

  .progress-label {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }

  .progress-percentage {
    font-size: 1.2rem;
  }

  .progress-steps {
    font-size: 0.68rem;
  }

  .btn-journal {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .facility-card {
    padding: 25px 15px;
  }

  .facility-icon.material-symbols-outlined {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 12px 25px;
  }

  #scrollTopBtn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .bot-fab {
    width: 52px;
    height: 52px;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
  }
}

/* ---------- Floating Bot FAB ---------- */
.bot-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(47, 143, 70, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bot-fab .material-symbols-outlined {
  color: #ffffff !important;
}

.bot-fab:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(47, 143, 70, 0.5);
}

.bot-fab.idle {
  opacity: 0.5;
  transform: scale(0.85);
  box-shadow: 0 4px 15px rgba(47, 143, 70, 0.2);
}

.bot-fab.hidden-footer {
  opacity: 0 !important;
  transform: scale(0.5) !important;
  pointer-events: none !important;
}

.bot-fab.idle::before,
.bot-fab.idle::after {
  animation: none;
  opacity: 0;
  display: none;
}

/* Feminine face icon — filled style */
.bot-fab .material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 28;
  font-size: 30px;
}

/* Wave / ripple rings */
.bot-fab::before,
.bot-fab::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-dark);
  opacity: 0.5;
  animation: fabRipple 2.4s ease-out infinite;
  z-index: -1;
}

.bot-fab::after {
  animation-delay: 1.2s;
}

@keyframes fabRipple {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ---------- Chatbot Window ---------- */
.chat-window {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 380px;
  height: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1010;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.chat-header {
  background: linear-gradient(135deg, var(--green-dark), var(--gold));
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar .material-symbols-outlined {
  color: #ffffff !important;
  font-size: 20px;
}

.chat-header-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.chat-status {
  font-size: 0.7rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #4caf50;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #4caf50;
}

.chat-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-close-btn:hover {
  opacity: 1;
}

/* Messages Area */
.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--bg-body);
}

/* Message Bubbles */
.message {
  max-width: 80%;
  padding: 11px 16px;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.45;
  word-wrap: break-word;
  animation: messageFadeIn 0.3s ease forwards;
}

@keyframes messageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.message.bot {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  align-self: flex-start;
  border-top-left-radius: 4px;
}

.message.user {
  background: linear-gradient(135deg, var(--green-dark), var(--gold));
  color: #ffffff;
  align-self: flex-end;
  border-top-right-radius: 4px;
}

/* Suggestion Chips */
.chat-suggestions {
  padding: 10px 14px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.chat-suggestions::-webkit-scrollbar {
  display: none;
}

.suggestion-chip {
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-weight: 500;
  flex-shrink: 0;
}

.suggestion-chip:hover {
  background: var(--green-dark);
  color: #ffffff;
  border-color: var(--green-dark);
}

/* Input Area */
.chat-input-area {
  padding: 12px 16px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-input-area input {
  flex: 1;
  min-width: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 10px 16px;
  color: var(--text-main);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.chat-input-area input:focus {
  border-color: var(--green-dark);
}

.chat-send-btn {
  width: 38px;
  height: 38px;
  background: var(--green-dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.chat-send-btn .material-symbols-outlined {
  color: #ffffff !important;
  font-size: 18px;
}

.chat-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(47, 143, 70, 0.3);
}

/* Typing Indicator Animation */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 11px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  border-top-left-radius: 4px;
  align-self: flex-start;
  animation: messageFadeIn 0.3s ease forwards;
}

.typing-dot {
  width: 5px;
  height: 5px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: pulseDot 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulseDot {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.4;
  }

  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* ---------- Chat Backdrop (blur overlay) ---------- */
.chat-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1005;
  /* above page, below chat window (1010) */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.chat-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ---------- Heart Burst Particles ---------- */
.heart-particle {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 2000;
  user-select: none;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ---------- Animations ---------- */
@keyframes botPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ---------- Comparison Slider ---------- */
.compare-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  user-select: none;
  background: #fdfdfd;
  border: 1px solid var(--border-color);
}

.card-slider {
  width: 100%;
  max-width: 580px;
  aspect-ratio: 16/9;
  height: auto;
}

.compare-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.compare-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compare-after {
  width: 100%;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  /* Initial 50% split */
}

.compare-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.compare-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.handle-line {
  position: absolute;
  height: 100%;
  width: 1px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
}

.handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  /* Slender modern rectangle */
  height: 56px;
  /* Extended vertical length */
  background: var(--green-dark);
  border: 2px solid #fff;
  border-radius: 8px;
  /* Elegantly rounded corners */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  z-index: 5;
}

.handle-circle::after {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(-50%);
  z-index: 1;
}

.compare-container:hover .handle-circle {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.handle-circle span {
  display: block;
  width: 2px;
  /* Mathematical vertical center line "|" */
  height: 16px;
  background: #fff;
  position: relative;
  transform: none !important;
  font-size: 0 !important;
  /* Neutralizes the problematic icon font */
  color: transparent !important;
  z-index: 2;
}

/* Draws the Left Chevron "<" using pure CSS border-rotates */
.handle-circle span::before {
  content: '';
  position: absolute;
  right: 5px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}

/* Draws the Right Chevron ">" using pure CSS border-rotates */
.handle-circle span::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.compare-container:hover .handle-circle {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ---------- Footer Socials ---------- */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.footer-socials .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--icon-bg);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  transition: all 0.35s ease;
  border: 1px solid var(--border-color);
  text-decoration: none;
  margin-bottom: 0 !important;
}

.footer-socials .social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.footer-socials .social-icon:hover {
  background: linear-gradient(45deg, var(--green-dark), var(--gold));
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 143, 70, 0.2);
  border-color: transparent;
}

.footer-socials .social-icon:hover svg {
  transform: scale(1.1);
}

/* Footer Interactive Map */
.footer-map-container {
  margin-top: 18px;
  max-width: 260px;
  position: relative;
  overflow: hidden;
  /* Clip the sliding overlay */
  border-radius: 12px;
}

.footer-map-container iframe {
  width: 100%;
  height: 110px;
  border: 0;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

/* Auto-Toggle Map Theme to match Site Theme Selection */
[data-theme="dark"] .footer-map-container iframe {
  filter: grayscale(20%) invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.footer-map-container:hover iframe {
  box-shadow: 0 8px 20px rgba(47, 143, 70, 0.2);
}

.map-redirect-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 22, 17, 0.85);
  /* Dark glass base */
  backdrop-filter: blur(6px);
  color: #ffffff !important;
  /* Force white text on map overlay for high readability */
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 0 !important;
  font-size: 0.8rem !important;
  text-decoration: none !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 10;

  /* Entrance Slide Animation State */
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 !important;
}

.footer-map-container:hover .map-redirect-btn {
  opacity: 1;
  transform: translateY(0);
}

.map-redirect-btn:hover {
  background: var(--green-dark);
  color: #ffffff !important;
}

/* Desktop Vertical Separator and visual grid calibration for Footer */
@media (min-width: 992px) {
  .footer-grid {
    /* Tune Location to tightly wrap the address text, physically shifting the Contact column closer to it */
    grid-template-columns: 1.0fr 0.6fr 1.25fr 1.15fr !important;
    gap: 40px !important;
  }

  .footer-location-col {
    /* Lock hairline thin border exactly in the visual center */
    border-left: 0.75px solid var(--border-color);
    /* Increase padding to push Location content further away from the line */
    padding-left: 65px !important;
    margin-left: -20px;
  }

  /* Make hairline separator clearly visible against deep dark background */
  [data-theme="dark"] .footer-location-col {
    border-left-color: rgba(255, 255, 255, 0.18) !important;
  }
}

/* Small version of Primary Button for Footer Quick Links */
.btn-footer-sm {
  display: inline-block !important;
  width: fit-content !important;
  background: linear-gradient(45deg, var(--green-dark), var(--gold));
  color: #ffffff !important;
  padding: 6px 20px !important;
  /* Balanced, tight padding */
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  /* Small, crisp typography */
  text-align: center;
  text-decoration: none;
  margin-top: 5px !important;
  /* Spacing above the button */
  margin-bottom: 0px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(47, 143, 70, 0.1);
}

.btn-footer-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.3) !important;
  opacity: 0.95;
}

/* Footer Legal Links (FAQs, Privacy Policy, Terms) */
.footer-legal {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  /* Ultra-fine miniature print */
  flex-wrap: wrap;
}

.footer-legal a {
  display: inline-block !important;
  width: fit-content !important;
  color: var(--gold) !important;
  /* Matching reference pattern thematically */
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0px !important;
  /* Override footer link defaults */
  transition: opacity 0.25s ease;
  position: relative;
}

.footer-legal a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-legal .separator {
  color: var(--text-muted);
  opacity: 0.6;
  font-size: 0.6rem;
  /* Proportional micro separator */
  user-select: none;
}

/* Centered Alignment Helper for Footer Columns */
.footer-col-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---------- Inner Pages Common Styling ---------- */
.inner-page-hero {
  padding: 60px 0 40px;
  /* Snug, fitted vertical spacing */
  background: radial-gradient(circle at top right, rgba(139, 195, 74, 0.08) 0%, transparent 50%),
    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.inner-page-hero h1 {
  font-size: 2.8rem;
  /* Slimmed for higher-end focus */
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
  /* Snugger margin */
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
  animation: fadeInUp 0.8s ease forwards;
}

.inner-page-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.placeholder-content {
  padding: 100px 0;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 60px 40px;
  border-radius: 32px;
  box-shadow: var(--card-shadow);
  text-align: center;
  max-width: 750px;
  width: 100%;
  backdrop-filter: blur(10px);
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.placeholder-card .material-symbols-outlined.placeholder-icon {
  font-size: 64px;
  color: var(--gold);
  margin-bottom: 25px;
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  padding: 20px;
  border-radius: 50%;
}

.placeholder-card h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
}

.placeholder-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

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

@media (max-width: 768px) {
  .inner-page-hero h1 {
    font-size: 2.5rem;
  }

  .inner-page-hero {
    padding: 80px 0 50px;
  }

  .placeholder-card {
    padding: 40px 20px;
    border-radius: 24px;
  }

  .placeholder-card h2 {
    font-size: 1.8rem;
  }
}

/* ---------- More Button Aesthetics ---------- */
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid currentColor;
  /* Dynamic border that follows theme colors! */
  background: transparent;
  /* Ultimate adaptiveness to section backgrounds */
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: fit-content;
}

/* Adapt highlight colors for dark modes to preserve legibility and styling */
[data-theme="dark"] .btn-more {
  color: var(--green-light);
}

/* Lock Facilities button to white since the section keeps its bright gradient in all themes */
.facilities .btn-more {
  color: #ffffff !important;
}

.facilities .btn-more:hover {
  background: #ffffff !important;
  color: var(--green-dark) !important;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-more .more-arrow {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-more:hover {
  background: linear-gradient(45deg, var(--green-dark), var(--green-light));
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(47, 143, 70, 0.25);
  transform: translateY(-3px);
}

.btn-more:hover .more-arrow {
  transform: translateX(6px);
}

.section-footer-action {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* ==========================================================================
   OUR STORY MAIN PAGE STYLING (NARRATIVE JOURNEY & FOUNDER PROFILE)
   ========================================================================== */

/* Story Quote Section Banner */
.story-quote-section {
  padding: 100px 0 80px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  text-align: center;
}

.quote-inner {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
}

.quote-icon {
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 15px;
}

.quote-inner blockquote {
  font-family: "Georgia", serif;
  /* Elegant literary weighting */
  font-size: 2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 25px;
  font-weight: 500;
}

.quote-inner cite {
  display: block;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--green-dark);
}

/* Narrative Journey Timeline Alternating */
.narrative-journey {
  padding: 40px 0 120px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.narrative-stage {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.narrative-stage.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.narrative-stage.reverse .narrative-meta {
  order: 2;
  text-align: right;
}

.narrative-stage.reverse .narrative-body {
  order: 1;
}

.narrative-meta {
  display: flex;
  flex-direction: column;
  position: relative;
}

.chapter-num {
  font-size: 7.5rem;
  line-height: 1;
  font-weight: 900;
  color: var(--green-dark);
  opacity: 0.08;
  font-family: "Poppins", sans-serif;
  position: absolute;
  top: -50px;
  left: -10px;
  user-select: none;
}

.narrative-stage.reverse .chapter-num {
  left: auto;
  right: -10px;
}

.chapter-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  position: relative;
  z-index: 1;
  padding-top: 30px;
}

/* Decorative line under chapter headers */
.chapter-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 15px;
}

.narrative-stage.reverse .chapter-title::after {
  margin-left: auto;
}

.narrative-body {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.narrative-body p {
  margin-bottom: 20px;
}

.lead-para {
  font-size: 1.2rem;
  color: var(--text-main);
  font-weight: 500;
}

.highlight-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-dark);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 30px !important;
}

.highlight-box {
  background: var(--badge-bg);
  color: var(--badge-text);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  font-weight: 500;
  box-shadow: var(--card-shadow);
}

/* Founder Profile Card Section */
.founder-profile {
  padding: 80px 0;
  /* High-end balanced padding for top-of-page placement */
  background: linear-gradient(180deg, var(--bg-alt), transparent);
  /* Transitions seamlessly down into story sections */
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  background: var(--bg-card);
  border-radius: 32px;
  padding: 60px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
}

.profile-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.profile-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 2px solid var(--gold);
}

.founder-dp {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.profile-image-wrapper:hover .founder-dp {
  transform: scale(1.04);
}

.founder-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(47, 143, 70, 0.95), rgba(47, 143, 70, 0.8));
  color: #ffffff;
  text-align: center;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.profile-message {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.message-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.profile-message h3 {
  font-family: "Georgia", serif;
  font-size: 2.2rem;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.message-text {
  font-size: 1.15rem;
  line-height: 1.9;
  font-style: italic;
  color: var(--text-main);
  opacity: 0.9;
  font-family: "Georgia", serif;
}

.signature-block {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.signature-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.5px;
}

.signature-title {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}

/* Dark Theme Refinements for Story Elements */
[data-theme="dark"] .quote-inner cite {
  color: var(--green-light);
}

[data-theme="dark"] .chapter-title {
  color: var(--green-light);
}

[data-theme="dark"] .highlight-text {
  color: var(--green-light);
}

[data-theme="dark"] .profile-message h3,
[data-theme="dark"] .signature-name {
  color: var(--green-light);
}

[data-theme="dark"] .chapter-num {
  opacity: 0.15;
  color: var(--green-light);
}

/* ==========================================================================
   RESPONSIVE STYLING FOR NARRATIVE STORY PAGES
   ========================================================================== */
@media (max-width: 992px) {
  .narrative-journey {
    gap: 70px;
  }

  .narrative-stage,
  .narrative-stage.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .narrative-stage.reverse .narrative-meta {
    order: 1;
    text-align: left;
  }

  .narrative-stage.reverse .narrative-body {
    order: 2;
  }

  .narrative-stage.reverse .chapter-num {
    right: auto;
    left: -10px;
  }

  .narrative-stage.reverse .chapter-title::after {
    margin-left: 0;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 40px 30px;
  }

  .profile-image-container {
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .story-quote-section {
    padding: 70px 0 50px;
  }

  .quote-inner blockquote {
    font-size: 1.6rem;
  }

  .chapter-num {
    font-size: 5.5rem;
    top: -35px;
  }

  .chapter-title {
    font-size: 1.7rem;
  }

  .narrative-body {
    font-size: 1rem;
  }

  .profile-message h3 {
    font-size: 1.8rem;
  }

  .message-text {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   FEATURES PAGE STYLING (METRICS SHOWCASE, LUXURY PILLARS & ECO BANNER)
   ========================================================================== */

/* Immersive Metrics Showcase Frame */
.features-dashboard-section {
  padding: 40px 0 60px;
}

.features-showcase-frame {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--border-color);
}

.showcase-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.1, 0.8, 0.2, 1);
  filter: brightness(0.95);
}

.features-showcase-frame:hover .showcase-bg {
  transform: scale(1.04);
}

/* Dark Mode Frame Tweak */
[data-theme="dark"] .showcase-bg {
  filter: brightness(0.85) contrast(1.05);
}

.showcase-glass-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  backdrop-filter: blur(2px);
  padding: 60px 40px 40px;
  display: flex;
  justify-content: center;
}

.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1000px;
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 15px;
}

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

.stat-val {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff, var(--gold));
  -webkit-background-clip: text;
  color: transparent;
  font-family: "Poppins", sans-serif;
}

.stat-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
}

/* Pillar Grid Showcase Section */
.features-pillar-section {
  padding: 80px 0 120px;
}

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

.feature-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-header-center h2 {
  font-size: 2.5rem;
  color: var(--green-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* The 3x2 Luxury Grid */
.features-luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.luxury-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  z-index: 1;
}

/* Delicate subtle background accent inside card */
.luxury-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(139, 195, 74, 0.05) 0%, transparent 60%);
  z-index: -1;
  transition: opacity 0.4s ease;
}

.luxury-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 143, 70, 0.3);
  box-shadow: 0 22px 45px rgba(47, 143, 70, 0.08);
}

[data-theme="dark"] .luxury-feature-card:hover {
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.luxury-card-icon {
  width: 60px;
  height: 60px;
  background: var(--badge-bg);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  transition: all 0.35s ease;
}

.luxury-card-icon .material-symbols-outlined {
  font-size: 2rem;
}

.luxury-feature-card:hover .luxury-card-icon {
  background: var(--green-dark);
  transform: scale(1.05) rotate(5deg);
}

.luxury-feature-card:hover .luxury-card-icon .material-symbols-outlined {
  color: #ffffff;
}

.luxury-feature-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.3px;
}

.luxury-feature-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  flex-grow: 1;
}

.luxury-card-footer {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.footer-note {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
}

/* Dark Theme Overrides */
[data-theme="dark"] .section-header-center h2,
[data-theme="dark"] .luxury-feature-card h3 {
  color: var(--green-light);
}

[data-theme="dark"] .luxury-card-icon {
  color: var(--green-light);
}

[data-theme="dark"] .luxury-feature-card:hover .luxury-card-icon {
  background: var(--green-light);
}

[data-theme="dark"] .luxury-feature-card:hover .luxury-card-icon .material-symbols-outlined {
  color: var(--green-dark);
}

/* Full Width Eco-Highlight Banner */
.eco-highlight-banner {
  position: relative;
  padding: 160px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../assets/retreat.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-grid {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  /* Aligned to left for stunning visual asymmetry */
}

.eco-glass-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  padding: 60px;
  max-width: 650px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

[data-theme="dark"] .eco-glass-card {
  background: rgba(10, 25, 15, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.eco-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 750;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.eco-glass-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
  color: #ffffff !important;
}

.eco-glass-card p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}

.eco-glass-card strong {
  color: #ffffff;
  border-bottom: 1px dashed var(--gold);
}

/* ==========================================================================
   RESPONSIVE STYLING FOR FEATURES PAGE
   ========================================================================== */
@media (max-width: 1200px) {
  .features-luxury-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .features-showcase-frame {
    height: 400px;
  }

  .stat-val {
    font-size: 2.3rem;
  }

  .stat-lbl {
    font-size: 0.75rem;
  }

  .eco-grid {
    justify-content: center;
    /* Centered layout on smaller screens */
  }

  .eco-glass-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .features-dashboard-section {
    padding: 20px 0;
  }

  .features-showcase-frame {
    height: auto;
    min-height: 350px;
    display: flex;
    flex-direction: column;
  }

  .showcase-glass-overlay {
    position: relative;
    background: linear-gradient(to top, #121212, #242424);
    padding: 30px 20px;
    backdrop-filter: none;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
  }

  .stat-item:nth-child(n+3) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .features-luxury-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .luxury-feature-card {
    padding: 30px;
  }

  .section-header-center h2 {
    font-size: 2rem;
  }

  .eco-highlight-banner {
    padding: 80px 0;
    background-attachment: scroll;
    /* Prevents fixed bg scrolling issues on certain mobile browsers */
  }

  .eco-glass-card h2 {
    font-size: 1.8rem;
  }

  .eco-glass-card p {
    font-size: 1rem;
  }
}

/* ==========================================================================
   HEALING PACKAGES / FACILITIES PAGE STYLING
   ========================================================================== */

/* Tier 1: Flagship Immersion Card */
.flagship-immersion {
  padding: 30px 0 60px;
  position: relative;
}

.flagship-tag-container {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  top: 15px;
}

.premium-badge {
  background: linear-gradient(135deg, var(--gold) 0%, #cba135 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(193, 155, 50, 0.3);
}

.flagship-card {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 36px;
  padding: 60px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 1;
}

.flagship-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

[data-theme="dark"] .flagship-card {
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(145deg, rgba(15, 25, 20, 0.9) 0%, rgba(8, 12, 10, 0.95) 100%);
}

.flagship-card-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sub-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.flagship-card-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

[data-theme="dark"] .flagship-card-content h2 {
  color: var(--green-light);
}

.flagship-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Flagship Checklist */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  text-align: left;
  margin-bottom: 45px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 35px 0;
}

.inc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
}

.inc-item .material-symbols-outlined {
  color: var(--gold);
  font-size: 1.4rem;
}

/* Flagship Meta (Ideal for, Duration) */
.flagship-meta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  text-align: left;
  margin-bottom: 45px;
}

.meta-pair {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meta-lbl {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.meta-val {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-main);
  font-weight: 500;
}

.highlight-duration {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
}

[data-theme="dark"] .highlight-duration {
  color: var(--green-light);
}

.flagship-action {
  margin-top: 20px;
}

/* Tier 2: Signature Clinical Programs Grid */
.clinical-grid-section {
  padding: 60px 0 100px;
}

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

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--card-shadow);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 143, 70, 0.25);
  box-shadow: 0 25px 50px rgba(47, 143, 70, 0.06);
}

[data-theme="dark"] .package-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.package-body {
  padding: 40px;
  flex-grow: 1;
  position: relative;
}

.pkg-num {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--border-color);
  opacity: 0.4;
  font-family: "Poppins", sans-serif;
  line-height: 1;
}

.package-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 5px;
  padding-right: 40px;
  /* Prevents clash with pkg-num */
}

[data-theme="dark"] .package-card h3 {
  color: var(--green-light);
}

.pkg-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 15px;
  line-height: 1.3;
}

.pkg-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 25px;
}

.pkg-bullets {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 15px 20px;
  margin-bottom: 25px;
  border: 1px solid var(--border-color);
}

.bullet-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.pkg-bullets p {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
  font-weight: 500;
}

.pkg-pathway {
  margin-top: 15px;
}

.path-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.pkg-pathway ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pkg-pathway li {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
}

.pkg-pathway li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
}

[data-theme="dark"] .pkg-pathway li::before {
  color: var(--green-light);
}

.package-footer {
  border-top: 1px solid var(--border-color);
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card-bg-glass);
}

.pkg-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--text-main);
}

.pkg-duration .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--gold);
}

.pkg-book-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

[data-theme="dark"] .pkg-book-link {
  color: var(--green-light);
}

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

/* Tier 3: Premium Spiritual Elevation Spotlight Block */
.spiritual-elevation-section {
  padding: 40px 0 100px;
}

.spiritual-card {
  background: linear-gradient(145deg, #061d11 0%, #030d08 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 36px;
  padding: 65px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.spiritual-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.spiritual-inner-layout {
  position: relative;
  z-index: 2;
}

.spiritual-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.premium-exclusive-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  background: rgba(212, 175, 55, 0.05);
}

.spiritual-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.spiritual-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  font-weight: 500;
}

.spiritual-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.spiritual-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.spirit-feat h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spirit-feat p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.spiritual-summary {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.outcome-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 20px 35px;
  text-align: center;
  max-width: 800px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  border: 1px dashed rgba(212, 175, 55, 0.3);
}

.outcome-box strong {
  color: var(--gold);
}

.spiritual-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 800px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

.spirit-duration-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

.spirit-duration-badge .material-symbols-outlined {
  font-size: 1.4rem;
}

/* ==========================================================================
   RESPONSIVE STYLING FOR PACKAGES PAGE
   ========================================================================== */
@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .flagship-card {
    padding: 50px 40px;
  }

  .flagship-card-content h2 {
    font-size: 2.2rem;
  }

  .flagship-intro {
    font-size: 1.05rem;
  }

  .spiritual-details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .spiritual-card {
    padding: 45px 30px;
  }
}

@media (max-width: 768px) {
  .flagship-immersion {
    padding: 10px 0 40px;
  }

  .flagship-card {
    padding: 40px 25px 35px;
  }

  .flagship-card-content h2 {
    font-size: 1.9rem;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px 0;
  }

  .flagship-meta {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .package-body {
    padding: 30px;
  }

  .package-footer {
    padding: 20px 30px;
  }

  .spiritual-header h2 {
    font-size: 1.8rem;
  }

  .spiritual-action-bar {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
}

/* Card 12: Custom Suggestion Special Card */
.custom-suggest-card {
  border: 2px dashed var(--gold) !important;
  background: rgba(212, 175, 55, 0.02);
}

[data-theme="dark"] .custom-suggest-card {
  background: rgba(212, 175, 55, 0.01);
  border: 2px dashed rgba(212, 175, 55, 0.4) !important;
}

.custom-suggest-card .pkg-num {
  color: var(--gold) !important;
  opacity: 0.25;
}

.suggest-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  margin-top: 25px;
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 30px 20px;
  border: 1px solid var(--border-color);
}

.suggest-icon-shell {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--badge-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.suggest-icon-shell .material-symbols-outlined {
  font-size: 1.8rem;
}

.suggest-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.suggest-footer {
  justify-content: center !important;
  padding: 20px 30px !important;
}

.btn-sm-suggest {
  width: 100%;
  text-align: center;
  padding: 12px 25px;
  font-size: 0.9rem;
}

/* ==========================================================================
   BLOG PAGE STYLING
   ========================================================================== */

.blog-filters {
  padding: 20px 0;
  margin-top: 30px;
}

.filter-strip {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--green-dark);
  color: #ffffff;
  border-color: var(--green-dark);
  box-shadow: 0 8px 20px rgba(47, 143, 70, 0.2);
}

[data-theme="dark"] .filter-tab:hover,
[data-theme="dark"] .filter-tab.active {
  background: var(--green-light);
  color: var(--bg-main);
  border-color: var(--green-light);
}

/* Spotlight Card */
.featured-blog-section {
  padding: 40px 0 60px;
}

.blog-spotlight-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.spotlight-img-frame {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-spotlight-card:hover .spotlight-img {
  transform: scale(1.04);
}

.blog-pill {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.spotlight-img-frame .blog-pill {
  bottom: auto;
  top: 25px;
}

.pill-accent {
  background: var(--gold);
  color: #ffffff;
}

.spotlight-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.meta-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-date .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--gold);
}

.spotlight-content h2 {
  font-size: 1.9rem;
  line-height: 1.4;
  color: var(--green-dark);
  margin-bottom: 20px;
}

[data-theme="dark"] .spotlight-content h2 {
  color: var(--green-light);
}

.spotlight-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 500;
}

.spotlight-detail {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 35px;
}

.spotlight-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
}

.author-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-dp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  object-fit: cover;
}

.author-inline span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.btn-read {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
}

[data-theme="dark"] .btn-read {
  color: var(--green-light);
}

/* Archive Grid */
.blogs-grid-section {
  padding: 30px 0 100px;
}

.section-header-left {
  margin-bottom: 35px;
}

.section-header-left h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
}

[data-theme="dark"] .section-header-left h3 {
  color: var(--green-light);
}

.blogs-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.blog-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 30px;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card h4 {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--green-dark);
  margin-bottom: 15px;
}

[data-theme="dark"] .blog-card h4 {
  color: var(--green-light);
}

.blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.blog-card-footer {
  padding: 0 30px 30px;
  border-top: none;
}

.btn-text-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
}

[data-theme="dark"] .btn-text-link {
  color: var(--green-light);
}

/* Responsive Blog Styles */
@media (max-width: 1200px) {
  .blogs-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .blog-spotlight-card {
    grid-template-columns: 1fr;
  }

  .spotlight-img-frame {
    height: 300px;
    min-height: auto;
  }

  .spotlight-content {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .blogs-archive-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .filter-strip {
    gap: 10px;
  }

  .filter-tab {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .spotlight-content h2 {
    font-size: 1.5rem;
  }

  .spotlight-footer {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ==========================================================================
   CONTACT PAGE STYLING
   ========================================================================== */

.contact-hub-section {
  padding: 60px 0;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 50px;
  box-shadow: var(--card-shadow);
}

.contact-form-card h2 {
  font-size: 2.2rem;
  color: var(--green-dark);
  margin: 15px 0;
}

[data-theme="dark"] .contact-form-card h2 {
  color: var(--green-light);
}

.form-intro-text {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.input-group input,
.input-group select,
.input-group textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-main);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(47, 143, 70, 0.1);
}

[data-theme="dark"] .input-group input:focus,
[data-theme="dark"] .input-group select:focus,
[data-theme="dark"] .input-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 4px rgba(47, 143, 70, 0.2);
}

.btn-send-form {
  align-self: flex-start;
  padding: 15px 35px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* Details Pods Stack */
.contact-details-stack {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.details-pod {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 35px;
  box-shadow: var(--card-shadow);
}

.pod-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.pod-icon {
  font-size: 2rem;
  color: var(--gold);
  background: var(--badge-bg);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pod-header h3 {
  font-size: 1.2rem;
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 2px;
}

.pod-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pod-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pod-action-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pod-action-item:hover {
  transform: translateX(5px);
  border-color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .pod-action-item:hover {
  border-color: var(--green-light);
}

.action-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--badge-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  transition: all 0.3s ease;
}

[data-theme="dark"] .action-circle {
  color: var(--green-light);
}

.pod-action-item:hover .action-circle {
  background: var(--green-dark);
  color: #ffffff;
}

[data-theme="dark"] .pod-action-item:hover .action-circle {
  background: var(--green-light);
  color: var(--bg-main);
}

.action-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2px;
  font-weight: 500;
}

.action-value {
  display: block;
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 600;
}

.wa-pod:hover {
  border-color: #25D366;
}

.wa-pod:hover .action-circle {
  background: #25D366;
  color: #ffffff;
}

.pod-timings {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pod-timings li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-main);
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 10px;
}

.closed-tag {
  color: #e57373;
  font-weight: 600;
}

/* 2. Travel Section */
.location-map-section {
  background: var(--bg-alt);
  padding: 80px 0;
  margin: 60px 0;
}

.map-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.large-map-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.large-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.5s ease;
}

.large-map-frame:hover iframe {
  filter: grayscale(0);
}

[data-theme="dark"] .large-map-frame iframe,
[data-theme="dark"] .footer-map-container iframe {
  filter: grayscale(0.2) invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

[data-theme="dark"] .large-map-frame:hover iframe {
  filter: grayscale(0) invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.map-float-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 80%;
}

[data-theme="dark"] .map-float-badge {
  background: rgba(26, 38, 28, 0.95);
  border-color: rgba(255, 255, 255, 0.05);
}

.map-float-badge .material-symbols-outlined {
  color: var(--green-dark);
  font-size: 1.4rem;
}

[data-theme="dark"] .map-float-badge .material-symbols-outlined {
  color: var(--green-light);
}

.map-float-badge p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

[data-theme="dark"] .map-float-badge p {
  color: #ffffff;
}

.travel-guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 45px;
  box-shadow: var(--card-shadow);
}

.travel-guide-card h2 {
  font-size: 2.2rem;
  color: var(--green-dark);
  margin: 15px 0 20px;
}

[data-theme="dark"] .travel-guide-card h2 {
  color: var(--green-light);
}

.location-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.travel-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.metric-item .material-symbols-outlined {
  color: var(--gold);
  font-size: 1.3rem;
  background: var(--badge-bg);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.metric-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.btn-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
}

/* 3. Social Link Tiles */
.social-connect-section {
  padding: 40px 0 100px;
}

.section-title-centered {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-centered span {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.section-title-centered h2 {
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-top: 10px;
}

[data-theme="dark"] .section-title-centered h2 {
  color: var(--green-light);
}

.social-link-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.social-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social-tile:hover {
  transform: translateY(-8px);
}

.tile-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.tile-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-tile:hover .tile-icon {
  transform: scale(1.15);
}

.social-tile h4 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin: 5px 0 2px;
}

.social-tile p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Tile Brand Colors */
.fb-tile .tile-icon {
  background: #E7F3FF;
  color: #1877F2;
}

.ig-tile .tile-icon {
  background: #FFEDF2;
  color: #E4405F;
}

.yt-tile .tile-icon {
  background: #FFECEC;
  color: #FF0000;
}

.wa-tile .tile-icon {
  background: #E8F8EF;
  color: #25D366;
}

.fb-tile:hover {
  border-color: #1877F2;
  box-shadow: 0 12px 25px rgba(24, 119, 242, 0.15);
}

.ig-tile:hover {
  border-color: #E4405F;
  box-shadow: 0 12px 25px rgba(228, 64, 95, 0.15);
}

.yt-tile:hover {
  border-color: #FF0000;
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.15);
}

.wa-tile:hover {
  border-color: #25D366;
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.15);
}

/* Responsive */
@media (max-width: 992px) {

  .contact-layout-grid,
  .map-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .social-link-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 30px 20px;
    max-width: 100%;
  }

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

  .input-group input,
  .input-group select,
  .input-group textarea {
    width: 100%;
  }

  .details-pod {
    padding: 25px 18px;
    border-radius: 20px;
    max-width: 100%;
  }

  .pod-action-item {
    padding: 12px 14px;
    gap: 10px;
  }

  .action-value {
    font-size: 0.9rem;
    word-break: break-all;
  }

  .pod-timings li {
    flex-wrap: wrap;
    gap: 6px;
  }

  .large-map-frame {
    height: 350px;
  }

  .travel-guide-card {
    padding: 30px 20px;
    border-radius: 24px;
    max-width: 100%;
  }

  .btn-map-link {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .social-link-tiles {
    grid-template-columns: 1fr;
  }

  .bot-fab {
    width: 52px;
    height: 52px;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
  }

  #scrollTopBtn {
    bottom: 80px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .chat-window {
    top: 75px;
    /* just below fixed header */
    bottom: 80px;
    /* just above FAB button */
    left: 10px;
    right: 10px;
    width: auto;
    height: auto;
    /* fills remaining viewport space */
    border-radius: 20px;
  }
}

.timing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 18px;
  line-height: 1.4;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
}

/* ---------- Comment Modal Popup ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 30px;
  width: 90%;
  max-width: 480px;
  box-shadow: var(--card-shadow);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--text-main);
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  color: var(--green-dark);
  font-weight: 700;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  color: var(--green-dark);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(47, 143, 70, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: all 0.3s ease;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
  background: rgba(255, 255, 255, 0.02);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  background: rgba(47, 143, 70, 0.08);
  box-shadow: 0 0 0 3px rgba(47, 143, 70, 0.1);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.btn-modal {
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-modal-cancel {
  background: var(--progress-bg);
  color: var(--text-muted);
}

.btn-modal-cancel:hover {
  background: rgba(47, 143, 70, 0.1);
  color: var(--green-dark);
}

.btn-modal-submit {
  background: linear-gradient(45deg, var(--green-dark), var(--gold));
  color: white;
}

.btn-modal-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.25);
}

/* ---------- Premium Toast Notifications ---------- */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--bg-card);
  box-shadow: var(--card-shadow);
  border-radius: 12px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
  max-width: 90vw;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--green-dark);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  color: var(--green-dark);
  font-size: 22px;
}

.toast-message {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.4;
}

/* ---------- Custom Position Bubble-Top ---------- */
.coming-soon-bubble.bubble-top {
  top: auto;
  bottom: calc(100% + 12px);
}

.coming-soon-bubble.bubble-top::after {
  top: auto;
  bottom: -6px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: none;
  border-top: 6px solid var(--green-dark);
}

/* ---------- Treatment Interest Modal ---------- */
.interest-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.interest-modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 35px;
  width: 90%;
  max-width: 550px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

.interest-modal-overlay.open .interest-modal-content {
  transform: scale(1);
}

.interest-modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
}

.interest-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.interest-modal-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.interest-modal-header h3 span.material-symbols-outlined {
  font-size: 28px;
  color: var(--gold);
}

.interest-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 143, 70, 0.05);
}

.interest-modal-close:hover {
  color: var(--green-dark);
  background: rgba(47, 143, 70, 0.15);
  transform: rotate(90deg);
}

.interest-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.interest-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.interest-form .form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.interest-form .form-group label .material-symbols-outlined {
  font-size: 16px;
  color: var(--gold);
}

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

@media (max-width: 576px) {
  .interest-form .form-row-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.interest-form .form-group input,
.interest-form .form-group select {
  background: rgba(47, 143, 70, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
}

.interest-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232f8f46'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 24px;
  padding-right: 40px;
}

select option {
  background-color: var(--bg-card);
  color: var(--text-main);
}

.interest-form .form-group input:focus,
.interest-form .form-group select:focus {
  border-color: var(--green-dark);
  background: rgba(47, 143, 70, 0.06);
  box-shadow: 0 0 0 4px rgba(47, 143, 70, 0.1);
}

/* Success Card Overlay inside Modal */
.interest-success-card {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.interest-success-card.active {
  opacity: 1;
  pointer-events: auto;
}

.success-icon-shell {
  width: 80px;
  height: 80px;
  background: rgba(47, 143, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.success-icon-shell .material-symbols-outlined {
  font-size: 48px;
  color: var(--green-dark);
}

.interest-success-card h4 {
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.interest-success-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 30px;
}

/* ---------- Skeleton Blog Cards ---------- */
.skeleton-card {
  pointer-events: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
}

.skeleton-img-wrapper {
  position: relative;
  height: 240px;
  background: var(--progress-bg);
  overflow: hidden;
}

.skeleton-element {
  background-color: var(--progress-bg);
  border-radius: 6px;
  animation: skeletonPulse 1.8s ease-in-out infinite;
}

@keyframes skeletonPulse {
  0% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.85;
  }

  100% {
    opacity: 0.45;
  }
}

.skeleton-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: 0.22;
  /* Render the image lightly */
  filter: blur(1.5px) grayscale(30%);
  animation: skeletonPulse 1.8s ease-in-out infinite;
}

.skeleton-badge-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  color: #ffffff;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(47, 143, 70, 0.25);
  z-index: 2;
  font-family: 'Poppins', sans-serif;
}

.skeleton-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.skeleton-text-short {
  width: 60px;
  height: 12px;
}

.skeleton-title {
  width: 90%;
  height: 18px;
  margin-bottom: 8px;
}

.skeleton-title-short {
  width: 55%;
  height: 18px;
  margin-bottom: 20px;
}

.skeleton-excerpt-line {
  width: 100%;
  height: 10px;
  margin-bottom: 8px;
}

.skeleton-excerpt-line-short {
  width: 40%;
  height: 10px;
}

.skeleton-btn {
  width: 110px;
  height: 14px;
  border-radius: 4px;
}

/* ---------- Evil Eye Overlay ---------- */
.evil-eye-wrapper {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 6;
}

.evil-eye-overlay {
  font-size: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  animation: gentlePulse 2.5s ease-in-out infinite;
}

@keyframes gentlePulse {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.08);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* Smiley Studio Custom Link Styling */
.footer-col a.smileystudio-link {
  text-decoration: underline !important;
  text-decoration-style: dashed !important;
  text-decoration-color: #00af91 !important;
  text-underline-offset: 4px !important;
  text-decoration-thickness: 1.2px !important;
  font-weight: 600 !important;
  display: inline !important;
  margin: 0 !important;
  white-space: nowrap !important;
  transition: opacity 0.25s ease;
}

.smileystudio-link:hover {
  opacity: 0.8;
}

.smileystudio-link .smiley {
  color: #f7a400;
  /* Gold/Orange */
}

.smileystudio-link .studio {
  color: #00af91;
  /* Turquoise/Teal */
}

/* Footer Title Styling matching column heading */
.footer-title {
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 600;
  margin: 0;
}

/* Force standard text block layout to prevent flexbox alignments */
.website-details p {
  display: block !important;
}