:root {
  --primary-orange: #cc5500;
  --primary-orange-light: #e97451;
  --primary-orange-dark: #8b4000;
  --secondary-orange: #d27d46;
  --primary-green: #2d5016;
  --primary-green-light: #4a7c26;
  --primary-green-dark: #1e3609;
  --secondary-green: #7ba05b;
  --soft-green: #b4c8b1;
  --vintage-paper: #fdf8f4;
  --cream: #f9f5f1;
  --white: #ffffff;
  --primary-black: #1a1a1a;
  --text-dark: #2d3748;
  --text-light: #718096;
  --text-orange: var(--primary-orange);
  --text-green: var(--primary-green);
  --text-gold: #d4af37;
  --gradient-orange: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  --gradient-green: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  --gradient-mixed: linear-gradient(135deg, var(--primary-orange), var(--primary-green));
  --gradient-overlay: linear-gradient(135deg, rgba(204, 85, 0, 0.8), rgba(45, 80, 22, 0.8));
  --gradient-soft: linear-gradient(135deg, rgba(204, 85, 0, 0.05), rgba(74, 124, 89, 0.05));
  --shadow-elegant: 0 10px 30px rgba(45, 80, 22, 0.15);
  --shadow-orange: 0 10px 30px rgba(204, 85, 0, 0.25);
  --shadow-green: 0 10px 30px rgba(45, 80, 22, 0.25);
  --shadow-soft: 0 5px 20px rgba(45, 80, 22, 0.1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Nunito", sans-serif;
  --section-padding: 100px 0;
  --container-padding: 0 20px;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 15px; /* UPDATED: Reduced base font size */
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) rgba(0, 0, 0, 0.08);
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-green), #6ea772);
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #3e6b3a, var(--primary-green));
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--primary-green);
  background-color: var(--vintage-paper);
  overflow-x: hidden;
  padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.text-orange {
  color: var(--primary-orange) !important;
}
.text-green {
  color: var(--primary-green) !important;
}
.text-gold {
  color: var(--text-gold) !important;
}
.text-green-70 {
  color: rgba(45, 80, 22, 0.7) !important;
}
.text-green-60 {
  color: rgba(45, 80, 22, 0.6) !important;
}
.bg-light {
  background-color: var(--cream) !important;
}
.bg-gradient-primary {
  background: var(--gradient-orange) !important;
}
.bg-gradient-soft {
  background: var(--gradient-soft) !important;
}
.text-center {
  text-align: center;
}
.w-100 {
  width: 100%;
}
.mt-auto {
  margin-top: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vintage-bg {
  background: linear-gradient(rgba(253, 248, 244, 0.95), rgba(253, 248, 244, 0.95)), url("images/vintageherbal.jpg")
    center / cover no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.vintage-herbal-bg {
  position: relative;
  background-image: url("images/vintageherbal.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.vintage-herbal-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(253, 248, 244, 0.8);
  pointer-events: none;
}

.vintage-herbal-bg > * {
  position: relative;
  z-index: 1;
}

.btn-primary,
.btn-orange {
  background: var(--gradient-orange);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover,
.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
  color: var(--white);
  text-decoration: none;
}

.btn-outline,
.btn-outline-primary {
  background: transparent;
  color: var(--primary-orange);
  padding: 12px 30px;
  border: 2px solid var(--primary-orange);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline:hover,
.btn-outline-primary:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-3px);
  text-decoration: none;
}

.btn-green {
  background: var(--gradient-green);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-green {
  background: transparent;
  color: var(--primary-green);
  padding: 12px 30px;
  border: 2px solid var(--primary-green);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-green:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px);
  text-decoration: none;
}

.btn-split {
  display: inline-block;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  cursor: pointer;
  user-select: none;
  background: linear-gradient(to right, var(--primary-orange) 50%, var(--primary-green) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-split:hover {
  background-position: left bottom;
  color: var(--white);
  text-decoration: none;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.section-tag {
  display: inline-block;
  background: var(--gradient-orange);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h3 {
  color: var(--primary-green);
  margin-bottom: 20px;
}

.section-header p {
  color: var(--primary-green);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.floating-leaves {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.leaf {
  position: absolute;
  color: var(--soft-green);
  font-size: 20px;
  opacity: 0.3;
  animation: float 15s infinite linear;
}

.leaf1 {
  left: 10%;
  animation-delay: 0s;
}
.leaf2 {
  left: 20%;
  animation-delay: 2s;
}
.leaf3 {
  left: 30%;
  animation-delay: 4s;
}
.leaf4 {
  left: 70%;
  animation-delay: 6s;
}
.leaf5 {
  left: 80%;
  animation-delay: 8s;
}
.leaf6 {
  left: 90%;
  animation-delay: 10s;
}

@keyframes float {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  z-index: 10000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header-transparent {
  background: rgba(253, 248, 244, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-transparent .nav-link,
.header-transparent .logo-text h2,
.header-transparent .logo-text span {
  color: #fff;
}

.header-transparent .hamburger span {
  background: #fff;
}

.header.scrolled,
.header-transparent.scrolled {
  background: rgba(253, 248, 244, 0.98);
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.1);
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.header.scrolled .nav-link {
  color: var(--primary-green);
}

.header.scrolled .logo-text h2 {
  color: var(--primary-green);
}

.header.scrolled .logo-text span {
  color: var(--primary-orange);
}

.header.scrolled .hamburger span {
  background: var(--primary-green);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text h2 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
  transition: color 0.3s ease;
  color: #fff;
}

.logo-text span {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 5px;
  transition: color 0.3s ease;
  position: relative;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--primary-orange-dark);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  min-width: 200px;
  padding: 10px 0;
  z-index: 10001;
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-menu.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--primary-orange);
  padding-left: 25px;
}

.nav-extras {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

.book-btn {
  background: var(--gradient-orange);
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border: none;
  cursor: pointer;
  background: transparent;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
  z-index: 9999;
}

.nav-backdrop.show {
  opacity: 1;
  visibility: visible;
}

body.noscroll {
  overflow: hidden;
}

.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
  contain: layout style paint;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(48, 49, 48, 0.6), rgba(19, 19, 19, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  top: 25%;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: clamp(1.5rem, 6vw, 3.5rem);
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 500;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 40px;
  opacity: 0.95;
  font-family: var(--font-secondary);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-btn {
  background: var(--gradient-orange);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 10px 30px rgba(204, 85, 0, 0.4);
}

.hero-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(204, 85, 0, 0.5);
}

.hero-controls {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.slide-indicators {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition);
}

.indicator:hover,
.indicator.active {
  background: var(--gradient-green);
  border-color: var(--primary-green);
  transform: scale(1.2);
}

.about-section {
  padding: 120px 0;
  background: var(--vintage-paper);
  position: relative;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary-green);
  margin-bottom: 30px;
}

.about-content p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  text-align: justify;
  color: var(--primary-green);
  margin-bottom: 25px;
  opacity: 0.8;
}

.about-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.about-vis {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  box-shadow: var(--shadow-elegant);
  overflow: hidden;
}

.about-doc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  will-change: transform;
  contain: layout style paint;
}

.about-visual:hover .about-doctor-image {
  transform: scale(1.05);
}

.about-content .doctor-name{
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--primary-orange);
  margin-bottom: 5px;
}

.about-content .doctor-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 25px;
  opacity: 0.9;
}

.stats-card.stats-1 {
  top: auto;
  bottom: 25px;
  right: -20px;
}

@media (max-width: 991.98px) {
  .about-content {
    text-align: center;
  }
  .about-actions {
    justify-content: center;
  }
  .about-visual {
    margin-top: 40px;
    height: 450px;
  }
  .stats-card.stats-1 {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .about-visual {
    height: 400px;
  }
}

.stats-card {
  position: absolute;
  background: var(--gradient-orange);
  color: var(--white);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-orange);
}

.stats-1 {
  top: 20px;
  right: -20px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.services-section {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.services-carousel {
  position: relative;
  margin-top: 60px;
  margin-bottom: 30px;
  --carousel-gap: 30px;
}

.carousel-container {
  overflow: hidden;
  border-radius: 20px;
  padding: 10px;
  margin: 0 -10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: var(--carousel-gap);
}

.service-card {
  min-width: 350px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-orange);
}

.service-image {
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  will-change: transform;
  contain: layout style paint;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  color: var(--primary-green);
  margin-bottom: 15px;
  font-size: 1.3rem;
  min-height: 50px;
}

.service-content p {
  color: var(--primary-green);
  opacity: 0.8;
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-btn {
  background: var(--gradient-orange);
  color: var(--white);
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-top: auto;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: -25px;
  right: -25px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: var(--gradient-orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  font-size: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-orange);
}

.program-card-new {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cream);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.program-card-new:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-green);
}

.program-icon-new {
  margin: 0 auto 25px;
}

.program-icon-new i {
  font-size: 48px;
  color: var(--primary-green);
}

.program-card-new h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-green-dark);
}

.program-card-new p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  height: 100%;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-orange);
}

.review-rating {
  color: var(--primary-orange);
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  color: var(--text-dark);
  flex-grow: 1;
  margin-bottom: 20px;
}

.review-author {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--cream);
}

.review-author span {
  color: var(--text-light);
  font-size: 0.9rem;
  display: block;
}

.page-hero {
    background-image: url('images/leaf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding-top: calc(var(--header-height) + 10px); 
    padding-bottom: 30px; 
    position: relative;
    z-index: 100;
    overflow: hidden; 
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0; 
    background-color: rgba(121, 152, 116, 0.8); 
    z-index: 1; 
}

.page-hero .container {
    max-width: 1000px; 
}

.page-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; 
    min-height: 200px; 
    position: relative; 
    z-index: 2; 
}

.page-hero-logo {
    flex-shrink: 0;
    width: clamp(140px, 15vw, 220px); 
    max-width: 220px;
    margin-left: 0;
}

.page-hero-logo .big-logo-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-hero-text {
    flex-grow: 1;
    max-width: 650px;
    text-align: center;
}

.page-hero-text .page-title {
    font-size: clamp(2rem, 2.8vw, 2.5rem); 
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px; 
}

.page-hero-text .page-description {
    font-size: clamp(0.9rem, 1.4vw, 1rem); 
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .page-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 25px; 
        min-height: auto;
    }

    .page-hero-logo {
        width: clamp(120px, 35vw, 180px); 
    }

    .page-hero {
        padding: calc(var(--header-height) + 10px) 0 30px 0; 
    }

    .page-hero-text .page-title {
        font-size: clamp(1.4rem, 3.5vw, 1.9rem); 
    }

    .page-hero-text .page-description {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem); 
    }
}

.about-intro-section {
  padding: 100px 0;
  background: url("images/vintageherbal.jpg") center / cover, var(--vintage-paper);
  background-blend-mode: overlay;
}

.about-visual .about-visual-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.about-visual .about-visual-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.director-section {
  padding: 100px 0;
  position: relative; 
  background-image: url("images/bgimage.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.director-section > .container {
  position: relative;
  z-index: 2;
}

.director-profile-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px; 
}

.director-image-wrapper-new {
  position: relative;
  width: 100%;
  max-width: 450px; 
  margin: 0 auto 25px auto; 
}

.director-image-container-new {
  border-radius: 20px; 
  overflow: hidden;
  box-shadow: var(--shadow-elegant); 
  position: relative;
}

.director-image-container-new img {
  width: 100%;
  height: 450px; 
  object-fit: cover; 
  display: block;
}

.experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-orange);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 15px;
  text-align: center;
}

.experience-badge .years {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.director-title-new h2 {
  color: var(--primary-orange); 
  margin-bottom: 10px; 
}

.director-title-new .qualifications {
  color: rgba(45, 80, 22, 0.9); 
  font-weight: 500; 
  margin-bottom: 0; 
  font-size: clamp(1.4rem, 3vw, 2rem); 
}

.director-details p {
  color: rgba(45, 80, 22, 0.9);
  line-height: 1.8;
  margin-bottom: 25px;
}

.director-details p.last-p {
  margin-bottom: 40px;
}

.director-details .specializations-title {
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.director-details .specializations-list {
  list-style: none;
  color: rgba(45, 80, 22, 0.9); 
  padding-left: 0;
}

.director-details .specializations-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.director-details .specializations-list i {
  color: rgba(45, 80, 22, 0.9); 
  margin-right: 15px;
}

.philosophy-section {
  padding: 100px 0;
}

.philosophy-header {
  text-align: center;
  margin-bottom: 80px;
}

.philosophy-header h2 {
  color: var(--primary-green);
}

.philosophy-header p {
  color: var(--primary-green);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.philosophy-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--cream);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.philosophy-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 2rem;
}

.philosophy-card h3 {
  color: var(--primary-green);
  margin-bottom: 20px;
}

.philosophy-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.vision-mission-section {
  padding: 60px 0;
  background-color: var(--cream);
}

.vision-mission-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: var(--transition);
  border: 1px solid transparent;
  height: 100%;
}

.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elegant);
}

.vm-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
}

.vision-card .vm-icon {
  background: var(--gradient-green); 
}

.mission-card .vm-icon {
  background: var(--gradient-orange);
}

.vm-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.vision-card .vm-content h3 {
  color: var(--primary-green);
}

.mission-card .vm-content h3 {
  color: var(--primary-orange);
}

.vm-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1rem;
}

.accommodation-card-new,
.offer-card-new,
.program-card-enhanced {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.accommodation-card-new:hover,
.offer-card-new:hover,
.program-card-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-elegant);
}

.accommodation-image,
.offer-image,
.program-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.offer-image,
.program-image {
  height: 200px;
}

.accommodation-image img,
.offer-image img,
.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  will-change: transform;
  contain: layout style paint;
}

.accommodation-card-new:hover .accommodation-image img,
.offer-card-new:hover .offer-image img,
.program-card-enhanced:hover .program-image img {
  transform: scale(1.1);
}

.accommodation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(45, 80, 22, 0.3) 100%);
}

.accommodation-badge,
.offer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-orange);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.accommodation-content,
.offer-content,
.program-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.accommodation-content h3,
.offer-header h3 {
  color: var(--primary-green);
  margin-bottom: 15px;
  font-size: 1.5rem;
  min-height: 55px;
  display: flex;
  align-items: center;
}

.accommodation-content p,
.offer-content p,
.program-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
  min-height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.accommodation-features,
.offer-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  padding-top: 10px;
  margin-bottom: auto;
}

.accommodation-features li,
.offer-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--text-light);
}

.accommodation-features i,
.offer-features i {
  color: var(--primary-green);
  margin-right: 10px;
  font-size: 0.9rem;
}

.accommodation-price,
.offer-pricing {
  margin-bottom: 20px;
  text-align: center;
  padding: 15px;
  background: var(--vintage-paper);
  border-radius: 10px;
}

.price,
.discounted-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
}

.per-night,
.duration {
  color: var(--text-light);
  font-size: 0.9rem;
}

.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  min-height: 55px;
}

.offer-header h3 {
  margin: 0;
}

.offer-age {
  background: var(--gradient-green);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-light);
  margin-right: 10px;
}

.program-content h4 {
  color: var(--primary-green);
  margin-bottom: 15px;
  font-size: 1.3rem;
  min-height: 55px;
  display: flex;
  align-items: center;
}

.program-features {
  display: flex;
  gap: 15px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.program-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--vintage-paper);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--primary-green);
}

.program-price {
  text-align: center;
  margin: 20px 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-orange);
}

.program-price span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

.accommodation-card-new .btn,
.offer-card-new .btn,
.program-card-enhanced .btn {
  margin-top: auto;
}

.terms-card {
  background: var(--cream);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--soft-green);
}

.terms-card h4 {
  color: var(--primary-orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-card ul {
  list-style: none;
  padding: 0;
}

.terms-card li {
  color: var(--text-dark);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.terms-card li:before {
  content: "•";
  color: var(--primary-orange);
  position: absolute;
  left: 0;
}

.yoga-info h3 {
  color: var(--primary-orange);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.yoga-image-main img{
    width: 100%; 
    max-width: 800px; 
    height: auto; 
}

.yoga-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.feature-item i {
  font-size: 1.5rem;
  margin-top: 5px;
}

.feature-item div h5 {
  color: var(--primary-green);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.feature-item div p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

.amenity-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid var(--soft-green);
}

.amenity-icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.amenity-card h4 {
  color: var(--primary-green);
  margin-bottom: 15px;
}

.amenity-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
}

.amenity-item {
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--primary-green);
  font-weight: 500;
  border: 1px solid var(--soft-green);
}

.amenity-item i {
  font-size: 1.8rem;
  color: var(--primary-green);
}

.packages-subheader {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.packages-subheader h4 {
  color: var(--primary-green);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  display: inline-block;
  background-color: var(--vintage-paper);
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.packages-subheader::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 35%;
  height: 1px;
  background-color: var(--soft-green);
  z-index: 0;
}

.contact-page-section {
  padding: 80px 0;
  background-color: var(--white);
  overflow-x: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-information {
  background: var(--vintage-paper);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form-wrapper {
  background: var(--vintage-paper);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.contact-section-title {
  color: var(--primary-green);
  margin-bottom: 15px;
}

.contact-section-subtitle {
  color: var(--text-light);
  margin-bottom: 25px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-soft);
}

.info-icon {
  min-width: 50px;
  height: 50px;
  background: var(--gradient-mixed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.info-card-content h5 {
  color: var(--primary-green);
  margin-bottom: 5px;
}

.info-card-content p {
  color: var(--text-light);
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-all;
}

.map-wrapper iframe {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.feature-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
}

.feature-card {
  flex: 1 1 30%;
  min-width: 250px;
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.form-control,
.form-select {
  min-height: 50px;
  border-radius: 8px;
  border: 1px solid rgba(45, 80, 22, 0.2);
  transition: var(--transition);
  padding: 12px 15px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.25rem rgba(45, 80, 22, 0.15);
  outline: none;
}

.form-label {
  color: var(--primary-green);
  font-weight: 500;
  margin-bottom: 8px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid rgba(45, 80, 22, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  transition: var(--transition-fast);
  cursor: pointer;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elegant);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  will-change: transform;
  contain: layout style paint;
}
.gallery-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  will-change: transform;
  contain: layout style paint;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(45, 80, 22, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
  z-index: 3;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption h5 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.gallery-caption p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

.gallery-item.video-item video::-webkit-media-controls {
  display: none !important;
}

.reviews-page-section {
  padding: 80px 0;
}

.review-card-new {
  background-color: var(--white);
  border: 1px solid var(--cream);
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elegant);
}

.review-header-new {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.reviewer-avatar-new {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.reviewer-info {
  flex-grow: 1;
}

.reviewer-info h4 {
  color: var(--primary-green);
  margin: 0;
  font-size: 1.1rem;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--secondary-green);
}

.reviewer-info span i {
  margin-right: 3px;
}

.review-time {
  font-size: 0.8rem;
  color: var(--text-light);
}

.review-package-tag {
  background-color: var(--cream);
  color: var(--primary-orange);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.review-rating-new {
  color: #ffc107;
  margin-bottom: 15px;
}

.review-text-new {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.review-tags-new {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.review-tags-new span {
  background-color: var(--gradient-soft);
  border: 1px solid var(--soft-green);
  color: var(--primary-green);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 15px;
}

.review-helpful {
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: auto;
  transition: var(--transition-fast);
}

.review-helpful:hover {
  color: var(--primary-green);
}

.video-testimonials {
  padding: 80px 0;
  background: var(--cream);
}

.video-testimonials h2 {
  margin-bottom: 40px;
}

.video-card-new {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
}

.video-card-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elegant);
}

.video-player-wrapper {
  line-height: 0;
  position: relative;
  width: 100%;
}

.review-video-player {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  display: block;
  background: #000;
  will-change: transform;
  contain: layout style paint;
}

.write-review-section {
  padding: 40px 0;
  background-color: var(--cream);
}

.write-review-header {
  text-align: center;
  margin-bottom: 20px;
}

.write-review-header h3 {
  color: var(--primary-green);
  margin-bottom: 15px;
}

.write-review-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 25px;
}

.review-form-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s ease-in-out, opacity 0.5s ease-in-out, margin-top 0.7s ease-in-out;
}

.review-form-container.show {
  max-height: 1000px;
  opacity: 1;
  margin-top: 40px;
}

.review-form-wrapper {
  background-color: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--soft-green);
  max-width: 800px;
  margin: 0 auto;
}

.review-form-wrapper .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-green);
  font-weight: 500;
}

.review-form-wrapper .form-group input,
.review-form-wrapper .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--soft-green);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: var(--font-primary);
  background-color: var(--vintage-paper);
}

.review-form-wrapper .form-group input:focus,
.review-form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(204, 85, 0, 0.15);
}

.rating-input {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.rating-input i {
  font-size: 2rem;
  color: var(--soft-green);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-right: 5px;
}

.rating-input i:hover {
  transform: scale(1.1);
}

.rating-input i.active {
  color: var(--primary-orange);
}

.additional-services {
  margin-top: 60px;
  margin-bottom: 40px;
}

.additional-services .card {
  background: linear-gradient(135deg, rgba(45, 95, 63, 0.05), rgba(230, 126, 34, 0.05));
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all 0.3s ease;
}

.additional-services h3 {
  color: #2d5f3f;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2rem;
}

.treatment-item {
  display: flex;
  flex-direction: column;
}

.treatment-btn {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  color: #2d5f3f;
  border: 2px solid #2d5f3f;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.3s ease;
}

.treatment-btn:hover {
  background: #2d5f3f;
  color: #fff;
}

.description-card {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 15px;
  font-size: 0.95rem;
  color: #444;
}

.footer {
  background: var(--primary-green);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 10px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.footer-section h4 {
  color: var(--primary-orange);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.footer-logo .logo-icon {
  background: var(--gradient-orange);
}

.footer-logo h3 {
  color: var(--white);
  margin: 0;
}

.footer-logo p {
  color: var(--primary-orange);
  margin: 0;
  font-size: 0.9rem;
}

.contact-info {
  margin-bottom: 30px;
}

.footer .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer .contact-item i {
  color: var(--primary-orange);
  width: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom span {
  color: var(--primary-orange);
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 10px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-button {
  padding: 10px 20px;
  border-radius: 8px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 11000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: modalFadeIn 0.3s ease-out;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.fade-out {
  animation: modalFadeOut 0.3s ease-out forwards;
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.modal-content {
  background-color: var(--vintage-paper);
  margin: auto;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 700px;
  position: relative;
  box-shadow: var(--shadow-elegant);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: 2px solid var(--primary-orange-light);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.close {
  color: var(--primary-green);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.close:hover,
.close:focus {
  color: var(--primary-orange);
  text-decoration: none;
}

.modal h2 {
  font-family: var(--font-primary);
  color: var(--primary-green);
  text-align: left;
  margin-bottom: 25px;
  font-size: 1.8rem;
  padding-right: 30px;
}

.modal .form-group {
  margin-bottom: 20px;
}

.modal .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-green);
  font-weight: 500;
  font-size: 0.9rem;
}

.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--soft-green);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: var(--font-primary);
  background-color: var(--white);
  color: var(--text-dark);
}

.modal .form-group input:focus,
.modal .form-group select:focus,
.modal .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(204, 85, 0, 0.15);
}

.modal .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-footer-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid var(--soft-green);
  padding-top: 15px;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 12000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
  animation: fadeIn 0.3s ease-out;
}

.lightbox.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  cursor: default;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  will-change: transform;
  contain: layout style paint;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 12001;
}

.lightbox-close:hover {
  color: #bbb;
}

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 999;
  border: none;
  outline: none;
  background: var(--gradient-orange);
  color: white;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  box-shadow: var(--shadow-orange);
  transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(204, 85, 0, 0.4);
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 90px;
  }

  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .about-section,
  .services-section {
    padding: 80px 0;
  }
  .about-intro-section,
  .director-section,
  .philosophy-section {
    padding: 60px 0;
  }
  .contact-page-section,
  .reviews-page-section,
  .video-testimonials {
    padding: 50px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--cream);
    padding: 25px;
    gap: 10px;
    transform: translateY(-15px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    color: var(--primary-green);
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-green);
  }

  .nav-link::after {
    left: 0;
    right: 0;
    bottom: 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--cream);
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 10px;
    border: none;
    width: 100%;
    text-align: center;
    display: none;
  }

  .dropdown-menu.show {
    display: block !important;
  }

  .nav-extras {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    margin-left: 0;
  }

  .nav-extras .book-btn {
    width: 100%;
  }

  #google_translate_element {
    text-align: center;
    width: 100%;
  }

  .service-card {
    min-width: calc(50% - (var(--carousel-gap) / 2));
  }

  .carousel-controls {
    display: none;
  }

  .yoga-info {
    margin-bottom: 30px; /* Adds space between text and image on mobile */
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .info-card {
    align-items: center;
    gap: 12px;
  }
  .info-icon {
    min-width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .contact-information,
  .contact-form-wrapper {
    padding: 20px;
  }
  .map-wrapper iframe {
    height: 340px;
  }

  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
  }

  .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-video {
    object-fit: cover;
  }

  img {
    image-rendering: auto;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
  }

  .newsletter-input {
    color: inherit;
  }

  .amenities-grid {
    margin-top: 30px;
  }

  .review-video-player {
    height: auto;
    max-height: 500px;
  }
}

@media (max-width: 767.98px) {
  /* --- START: REDUCE SECTION SPACING (MOBILE) --- */
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .about-section,
  .services-section {
    padding: 50px 0;
  }
  .about-intro-section,
  .director-section,
  .philosophy-section {
    padding: 40px 0;
  }
  .contact-page-section,
  .reviews-page-section,
  .video-testimonials {
    padding: 30px 0;
  }
  /* --- END: REDUCE SECTION SPACING (MOBILE) --- */

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }

  .logo-text h2 {
    font-size: 1.4rem;
  }

  .logo-text span {
    font-size: 0.7rem;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-controls {
    bottom: 30px;
    gap: 20px;
  }

  .about-content,
  .director-details {
    margin-bottom: 30px;
  }

  .stats-card {
    position: relative;
    right: 0;
    margin-top: 20px;
  }

  .carousel-track {
    gap: 20px;
  }

  .award-item {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer .contact-item,
  .footer-logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .modal-content {
    padding: 30px 20px;
    width: 95%;
  }

  .modal h2 {
    font-size: 1.5rem;
  }

  .contact-information,
  .contact-form-wrapper {
    padding: 25px;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .feature-section {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 100%;
  }

  .review-video-player {
    height: auto;
    max-height: 400px;
    aspect-ratio: 9 / 16;
  }

  #scrollToTopBtn {
    width: 45px;
    height: 45px;
    right: 15px;
    bottom: 15px;
    font-size: 16px;
  }

  .director-image-container-new img {
    height: 400px; /* Adjust height for mobile */
  }

  .about-visual .about-visual-image img {
    height: 300px;
  }

  .vision-mission-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 575.98px) {
  .service-card {
    min-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .review-video-player {
    max-height: 350px;
  }

  .packages-subheader h3 {
    font-size: 1.4rem;
  }
}

@media (min-width: 992px) {
  .nav-extras {
    margin-left: auto;
    flex-direction: row;
  }

  .nav-extras .book-btn {
    padding: 10px 25px;
  }

  #google_translate_element {
    display: block;
  }

  .card.service-card .card-img-top {
    height: clamp(180px, 22vw, 260px);
    width: 100%;
    object-fit: cover;
    display: block;
  }

  .carousel-container {
    overflow: hidden;
  }
}

@media (max-width: 575.98px) {
  .service-card {
    min-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.floating-contact-buttons {
  position: fixed;
  bottom: 82px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: 22px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fast);
}

.fab-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-elegant);
}

.fab-btn.fab-whatsapp {
  background-color: #25d366;
}

.fab-btn.fab-whatsapp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.fab-btn.fab-call {
  background: var(--gradient-orange);
}

.fab-btn.fab-call:hover {
  box-shadow: var(--shadow-orange);
}

@media (max-width: 767.98px) {
  .floating-contact-buttons {
    bottom: 70px;
    right: 15px;
    gap: 10px;
  }

  .fab-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}