/* Global Base Styles */
html,
body {
  width: 100%;
  overflow-x: clip;
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  background: #FFFAEA;
}

/* Navbar Container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 40px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  max-width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

/* Navbar Logo */
.navbar-logo {
  max-height: 80px;
  margin-right: 40px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 1.2s cubic-bezier(.4, 0, .2, 1), box-shadow 0.5s;
  box-shadow: none;
  animation: logoPulse 2.8s infinite alternate;
}

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

  60% {
    transform: scale(1.07) rotate(-2deg);
  }

  100% {
    transform: scale(1);
  }
}

/* Navbar Menu Items */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  z-index: 999;
}

.navbar-menu-item {
  font-size: 16px;
  font-weight: 600;
  color: #B6483D !important;
  /* Main Burgundy Color */
  text-decoration: none;
  position: relative;
  transition: color 0.3s, transform 0.2s;
  padding: 8px 8px;
  font-family: "Quicksand", sans-serif;
  cursor: pointer;
}

.navbar-menu-item::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #B6483D;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  left: 0;
  bottom: -6px;
}

.navbar-menu-item:hover {
  color: #B6483D;
  transform: translateY(-2px) scale(1.08);
}

.navbar-menu-item:hover::after {
  width: 100%;
}

.dropdown-arrow {
  margin-left: 6px;
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
  display: inline-block;
}

.navbar-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg) scale(1.2);
}

/* Dropdown Menu Container */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 16px 48px rgba(233, 103, 95, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
  border-radius: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.38s cubic-bezier(.4, 0, .2, 1), transform 0.38s cubic-bezier(.4, 0, .2, 1);
  z-index: 99;
  padding: 18px 0 14px 0;
  border: 1px solid #ffe7e3;
}

.navbar-dropdown:hover .dropdown-menu,
.navbar-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Dropdown pointer arrow */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 32px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(233, 103, 95, 0.10);
  transform: rotate(45deg);
  border-top: 1px solid #ffe7e3;
  border-left: 1px solid #ffe7e3;
  z-index: 2;
}

/* Dropdown Menu Links */
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  color: #E9675F;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 12px;
  margin: 2px 0;
  position: relative;
  background: transparent;
  box-sizing: border-box;
  transition: background 0.28s cubic-bezier(.4, 0, .2, 1), color 0.28s cubic-bezier(.4, 0, .2, 1), transform 0.22s cubic-bezier(.4, 0, .2, 1), box-shadow 0.22s cubic-bezier(.4, 0, .2, 1);
}

.dropdown-menu a::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  width: 4px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: opacity 0.22s, transform 0.22s;
}

.dropdown-menu a:hover {
  background: #B6483D;
  color: #fff;
  box-shadow: 0 4px 24px rgba(233, 103, 95, 0.13), 0 2px 8px rgba(255, 215, 0, 0.10);
  border: 1.5px solid #fff2ee;
  outline: 0.5px solid #ffe7e3;
}

.dropdown-menu a:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

/* Social Media Icons */
.navbar-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-right: 33px;
}

.navbar-social-icon {
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(199, 122, 74, 0.07);
  text-decoration: none;
}

.fa-facebook-f {
  color: #1877F2;
}

.fa-instagram {
  color: #ff7171;
}

.fa-youtube {
  color: #ff0000;
}

.fa-pinterest-p {
  color: #E60023;
}

.navbar-social-icon:hover {
  background: #ffe5d1;
  color: #ff8f5f;
}

/* Google Translate Wrapper (Inline with navbar on desktop) */
.translate-icon-wrapper {
  position: relative;
  z-index: 1002;
  margin-left: 15px;
  margin-right: 20px;
}

.translate-icon-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #B6483D;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(233, 103, 95, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: translateFloat 3s ease-in-out infinite;
}

.translate-icon-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(233, 103, 95, 0.4);
}

.translate-icon-btn:active {
  transform: scale(0.95);
}

.translate-icon-btn i {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.translate-icon-btn:hover i {
  transform: rotate(20deg);
}

/* Translate Dropdown menu */
.translate-dropdown {
  position: absolute;
  top: 55px;
  right: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 15px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.translate-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.translate-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 15px;
  width: 16px;
  height: 16px;
  background: white;
  transform: rotate(45deg);
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

@keyframes translateFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.translate-dropdown #google_translate_element {
  display: block;
}

.translate-dropdown .goog-te-gadget {
  font-family: 'Quicksand', sans-serif !important;
  color: #333 !important;
}

.translate-dropdown .goog-te-gadget-simple {
  background-color: #f8f9fa !important;
  border: 1px solid #e0e0e0 !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  width: 100%;
  display: block !important;
}

.translate-dropdown .goog-te-gadget-simple:hover {
  background-color: #E9675F !important;
  border-color: #E9675F !important;
}

.goog-te-banner-frame {
  display: none !important;
}

/* Mobile responsive navigation */
.navbar-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 10px;
  background: #B6483D;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 200;
  transition: background 0.3s;
}

.navbar-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.4s cubic-bezier(.4, 0, .2, 1);
}

.navbar-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.navbar-toggle.open span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .navbar {
    position: fixed;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 15px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  }

  .navbar-logo {
    max-height: 56px;
    margin-right: 0;
    z-index: 9999;
  }

  .navbar-menu {
    flex-direction: column;
    gap: 0;
    width: 80vw;
    max-width: 320px;
    background: #fff;
    position: fixed;
    right: -100vw;
    top: 0;
    height: 100vh;
    box-shadow: -2px 0 32px rgba(233, 103, 95, 0.12);
    border-radius: 0 0 18px 18px;
    z-index: 150;
    padding: 90px 0 14px 0px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: right 0.38s cubic-bezier(.4, 0, .2, 1);
    box-sizing: border-box;
    align-items: flex-start;
  }

  .navbar-menu.open {
    right: 0;
  }

  .navbar-menu-item,
  .navbar-dropdown {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.08rem;
    border-bottom: 1px solid #ffe7e3;
    box-sizing: border-box;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    width: 100% !important;
    min-width: 100%;
    background: transparent;
    padding: 0;
    margin: 10px 0 0 0;
    border: none;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    display: none;
    box-sizing: border-box;
  }

  .dropdown-menu.open {
    display: block;
  }

  .dropdown-menu a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 6px;
    margin: 4px 0;
  }

  .dropdown-menu::before {
    display: none;
  }

  .navbar-social {
    display: flex;
    gap: 19px;
    align-items: center;
    margin-left: auto;
    margin-right: 27px;
    z-index: 1001;
  }

  .navbar-social-icon {
    background: transparent;
    box-shadow: none;
    width: auto;
    height: auto;
    font-size: 1.2rem;
  }

  .navbar-social-icon:hover {
    background: transparent;
  }

  .translate-icon-wrapper {
    position: relative;
    top: auto;
    right: auto;
    margin-left: 0;
    margin-right: 10px;
    z-index: 1002;
  }

  .translate-icon-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
    animation: translateFloat 3s ease-in-out infinite;
  }

  .translate-icon-btn i {
    font-size: 18px;
  }

  .translate-dropdown {
    top: 48px;
    right: 0;
  }

  .navbar-toggle {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    margin: 0;
    box-sizing: border-box;
  }

}



a {
  text-decoration: none;
  color: #B6483D;
}

/* ==========================================================================
   Hero Slider / Banner Section Styles
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  margin-top: 80px;
  /* Offset for fixed navbar */
  background: #111;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 550px;
  max-height: 750px;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 6s ease-out;
}

.hero-slider .slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(20, 10, 8, 0.75) 0%,
      rgba(20, 10, 8, 0.45) 50%,
      rgba(0, 0, 0, 0.65) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 30px;
  text-align: center;
  color: #ffffff;
}

/* Animations for active slide content */
.slide-subtitle {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f3a88c;
  background: rgba(182, 72, 61, 0.35);
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid rgba(243, 168, 140, 0.4);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  backdrop-filter: blur(4px);
}

.slide-title {
  font-family: 'Montserrat', 'Quicksand', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
}

.slide-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 32px auto;
  color: #f1e9e3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
}

.slide-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
}

/* Active Keyframe Animations */
.hero-slider .slide.active .slide-subtitle {
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-slider .slide.active .slide-title {
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-slider .slide.active .slide-description {
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero-slider .slide.active .slide-buttons {
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

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

/* Buttons */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  cursor: pointer;
}

.hero-btn.primary-btn {
  background: linear-gradient(135deg, #B6483D 0%, #E9675F 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(182, 72, 61, 0.4);
  border: 2px solid transparent;
}

.hero-btn.primary-btn:hover {
  background: linear-gradient(135deg, #E9675F 0%, #B6483D 100%);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(182, 72, 61, 0.6);
}

.hero-btn.secondary-btn {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-btn.secondary-btn:hover {
  background: #ffffff;
  color: #B6483D !important;
  border-color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Slider Controls (Arrows) */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-arrow.prev {
  left: 25px;
}

.slider-arrow.next {
  right: 25px;
}

.slider-arrow:hover {
  background: #B6483D;
  color: #ffffff;
  border-color: #B6483D;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(182, 72, 61, 0.4);
}

/* Indicators (Dots) */
.slider-indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
  align-items: center;
}

.slider-indicators .indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-indicators .indicator:hover {
  background: rgba(255, 255, 255, 0.85);
}

.slider-indicators .indicator.active {
  width: 38px;
  border-radius: 20px;
  background: #B6483D;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 14px rgba(182, 72, 61, 0.7);
}

/* Responsive Styles for Hero Slider */
@media (max-width: 900px) {
  .hero-slider-section {
    margin-top: 70px;
  }

  .hero-slider {
    height: 70vh;
    min-height: 480px;
  }

  .slide-title {
    font-size: 2.3rem;
  }

  .slide-description {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }

  .slide-subtitle {
    font-size: 0.95rem;
    padding: 6px 16px;
    margin-bottom: 14px;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .slider-arrow.prev {
    left: 12px;
  }

  .slider-arrow.next {
    right: 12px;
  }
}

@media (max-width: 600px) {
  .hero-slider-section {
    margin-top: 60px;
  }

  .hero-slider {
    height: 460px;
    min-height: 420px;
    max-height: 480px;
  }

  .slide-bg {
    object-position: center 25%;
  }

  .slide-content {
    padding: 0 16px;
    margin-top: -15px;
  }

  .slide-subtitle {
    font-size: 0.75rem;
    padding: 4px 14px;
    margin-bottom: 8px;
    border-radius: 20px;
    letter-spacing: 1px;
  }

  .slide-title {
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 8px;
    font-weight: 700;
  }

  .slide-description {
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 14px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .slide-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 9px 16px;
    font-size: 0.82rem;
  }

  .slider-arrow {
    top: auto;
    bottom: 12px;
    transform: none;
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .slider-arrow:hover {
    transform: scale(1.05);
  }

  .slider-arrow.prev {
    left: 12px;
  }

  .slider-arrow.next {
    right: 12px;
  }

  .slider-indicators {
    bottom: 16px;
  }
}




/* ==========================================================================
   About Section Styles (Refined Branded Palette)
   ========================================================================== */
.about-section {
  position: relative;
  padding: 45px 0 30px 0;
  overflow: hidden;
}

.about-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Top Centered Header Block */
.about-top-header {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 50px auto;
}

.about-top-subtitle {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #B6483D;
  /* Branded Burgundy Accent */
  background: rgba(182, 72, 61, 0.08);
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(182, 72, 61, 0.18);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-top-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2b2b2b;
  /* Deep dark text */
  line-height: 1.3;
  margin: 0 0 14px 0;
}

.about-top-title .highlight-brand {
  color: #B6483D;
}

/* Lotus Divider */
.about-lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 28px 0;
}

.about-lotus-divider .divider-line {
  height: 2px;
  width: 50px;
  background: #B6483D;
  border-radius: 2px;
}

.about-lotus-divider .divider-icon {
  color: #B6483D;
  font-size: 1.2rem;
}

.about-top-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-top-paragraphs p {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #383838;
  margin: 0;
  text-align: center;
}

/* Bottom Two-Column Grid */
.about-bottom-grid {
  display: flex;
  align-items: center;
  gap: 55px;
}

/* Left Column Text */
.about-left-content {
  flex: 1.15;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-subheading {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #B6483D;
  /* Branded Burgundy */
  margin: 0 0 4px 0;
}

.about-left-content p {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  color: #383838;
  margin: 0;
  text-align: justify;
}

.about-left-content p strong {
  color: #B6483D;
}

/* Action Buttons Row */
.about-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
}

.about-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 30px;
  background: linear-gradient(135deg, #B6483D, #E9675F);
  color: #ffffff !important;
  border-radius: 50px;
  box-shadow: 0 8px 22px rgba(182, 72, 61, 0.35);
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
}

.about-primary-cta:hover {
  background: linear-gradient(135deg, #E9675F, #B6483D);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(182, 72, 61, 0.5);
}

.about-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  background: #25D366;
  color: #ffffff !important;
  border-radius: 50px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
}

.about-whatsapp-cta:hover {
  background: #1eb956;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* Right Column Image Card */
.about-right-image-col {
  flex: 0.85;
}

.about-image-card-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(182, 72, 61, 0.15), 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 5px solid #ffffff;
  background: #ffffff;
}

.about-featured-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.about-image-card-wrapper:hover .about-featured-img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #B6483D, #E9675F);
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 30px;
  box-shadow: 0 8px 22px rgba(182, 72, 61, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .about-bottom-grid {
    flex-direction: column;
    gap: 40px;
  }

  .about-right-image-col {
    width: 100%;
  }

  .about-featured-img {
    height: 400px;
  }

  .about-top-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 20px 0;
  }

  .about-top-subtitle {
    font-size: 0.78rem;
    padding: 5px 14px;
  }

  .about-top-title {
    font-size: 1.65rem;
  }

  .about-subheading {
    font-size: 1.35rem;
  }

  .about-featured-img {
    height: 330px;
  }

  .about-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .about-primary-cta,
  .about-whatsapp-cta {
    width: 60%;
    justify-content: center;
  }
}

/* ==========================================================================
   Retreat Courses / Pricing Section Styles
   ========================================================================== */
.retreat-courses-section {
  padding: 35px 0 22px 0;
  background: #FFFAEA;
  position: relative;
  overflow: hidden;
}

.courses-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Header */
.courses-header {
  text-align: center;
  margin-bottom: 55px;
}

.courses-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2b2b2b;
  letter-spacing: 1px;
  margin: 0 0 12px 0;
  text-transform: uppercase;
}

.courses-title .highlight-burgundy {
  color: #B6483D;
}

.courses-lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.c-line {
  display: inline-block;
  height: 1px;
  width: 50px;
  background: rgba(182, 72, 61, 0.3);
}

.c-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #B6483D;
}

/* Cards Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Retreat Card */
.retreat-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(182, 72, 61, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(182, 72, 61, 0.12);
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.retreat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(182, 72, 61, 0.18);
  border-color: rgba(182, 72, 61, 0.3);
}

/* Most Popular Card Badge */
.popular-card {
  border: 2px solid #B6483D;
}

.popular-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #B6483D, #E9675F);
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(182, 72, 61, 0.4);
  z-index: 10;
}

/* Image Box */
.card-image-box {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #111;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.retreat-card:hover .card-img {
  transform: scale(1.08);
}

/* Floating Title Pill (inside image box) */
.card-title-pill {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #2b2b2b;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 5;
}

/* Card Body */
.card-body {
  padding: 24px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.highlights-banner {
  background: #B6483D;
  color: #ffffff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(182, 72, 61, 0.2);
}

/* Specs Table */
.specs-table {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(182, 72, 61, 0.08);
  margin-bottom: 16px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
}

.spec-row:nth-child(odd) {
  background: #ffffff;
}

.spec-row:nth-child(even) {
  background: #fdfbf7;
}

.spec-label {
  font-weight: 700;
  color: #5a4b46;
}

.spec-value {
  font-weight: 600;
  color: #2b2b2b;
}

.spec-value.price-tag {
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  color: #B6483D;
}

.card-note {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-style: italic;
  color: #887a74;
  text-align: center;
  margin: 0 0 10px 0;
}

.card-chevron {
  text-align: center;
  color: #B6483D;
  font-size: 0.9rem;
  margin-bottom: 18px;
  animation: bounceChevron 2s infinite;
}

@keyframes bounceChevron {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

/* Card Buttons Row */
.card-buttons-row {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.card-btn {
  flex: 1;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 11px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  cursor: pointer;
}

.card-btn.details-btn {
  background: #ffe8e5;
  color: #B6483D !important;
  border: 1px solid rgba(182, 72, 61, 0.2);
}

.card-btn.details-btn:hover {
  background: #ffd6d1;
  transform: translateY(-2px);
}

.card-btn.apply-btn {
  background: #B6483D;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(182, 72, 61, 0.3);
}

.card-btn.apply-btn:hover {
  background: #e9675f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(182, 72, 61, 0.45);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .courses-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .retreat-courses-section {
    padding: 20px 0;
  }

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

  .card-body {
    padding: 28px 18px 18px 18px;
  }
}

/* ==========================================================================
   Yoga Alliance Accreditation Section (Branded Palette)
   ========================================================================== */
/* ==========================================================================
   Yoga Alliance Accreditation & Certificate Feature Section (Exact Match)
   ========================================================================== */
.accreditation-section {
  position: relative;
  padding: 70px 0 75px 0;
  background: linear-gradient(180deg, rgba(254, 250, 242, 0.86), rgba(248, 240, 228, 0.89)),
    url('../image/excursion1.webp') center/cover no-repeat;
  overflow: hidden;
}

.accreditation-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- Header Section --- */
.accreditation-header {
  text-align: center;
  margin-bottom: 40px;
}

.accreditation-top-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.accreditation-subtitle {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  color: #8C251C;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.accreditation-title {
  font-family: 'Montserrat', 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #231F20;
  letter-spacing: 2px;
  line-height: 1.25;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.accreditation-title .highlight-red {
  color: #8C251C;
}

/* Om symbol with thin side lines */
.om-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 8px 0 10px 0;
}

.om-line {
  display: inline-block;
  height: 1px;
  width: 50px;
  background: rgba(140, 37, 28, 0.3);
}

.om-symbol {
  font-family: serif;
  font-size: 1.3rem;
  color: #8C251C;
  line-height: 1;
}

.accreditation-tag {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: #4A3F3B;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

/* Rating Stars & ID Badge Row */
.accreditation-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.star-rating {
  color: #F4A11D;
  font-size: 1.1rem;
  display: flex;
  gap: 4px;
}

.alliance-id-badge {
  background-color: #7A231A;
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(122, 35, 26, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* --- 4 Feature Cards Grid --- */
.cert-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.cert-feature-card {
  background: #FFFDF9;
  border: 1px solid #EAE3D5;
  border-radius: 18px;
  padding: 34px 24px 32px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.cert-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: #DDD4C4;
}

/* Top Circle Icon */
.card-circle-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.icon-green {
  background: #607955;
}

.icon-orange {
  background: #C87A51;
}

.icon-teal {
  background: #5E7A75;
}

.icon-rose {
  background: #7E4D55;
}

/* Card Title */
.cert-card-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.color-green {
  color: #607955;
}

.color-orange {
  color: #C87A51;
}

.color-teal {
  color: #5E7A75;
}

.color-rose {
  color: #7E4D55;
}

/* Accent Line */
.card-accent-line {
  display: block;
  width: 32px;
  height: 2px;
  margin: 0 auto 14px auto;
  border-radius: 2px;
}

.line-green {
  background: #607955;
}

.line-orange {
  background: #C87A51;
}

.line-teal {
  background: #5E7A75;
}

.line-rose {
  background: #7E4D55;
}

/* Card Description */
.cert-card-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: #554B46;
  line-height: 1.55;
  margin: 0;
}

/* --- Bottom Floating Stats Bar --- */
.cert-stats-bar {
  background: #FAF7F2;
  border: 1px solid #EAE3D5;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.stat-col-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 4px 10px;
  border-right: 1px solid #E4DDD0;
}

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

.stat-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-text-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Montserrat', 'Quicksand', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #231F20;
  line-height: 1.2;
}

.stat-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #6E635C;
  white-space: nowrap;
}

/* Responsive Styles for Certificate Section */
@media (max-width: 1024px) {
  .cert-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .cert-stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-col-item:nth-child(3) {
    border-right: none;
  }

  .stat-col-item:nth-child(4),
  .stat-col-item:nth-child(5) {
    border-right: 1px solid #E4DDD0;
  }
}

@media (max-width: 680px) {
  .accreditation-title {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  .cert-features-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto 20px auto;
  }

  .cert-stats-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-col-item {
    border-right: none !important;
    border-bottom: 1px solid #E4DDD0;
    padding-bottom: 10px;
    justify-content: flex-start;
    padding-left: 20px;
  }

  .stat-col-item:last-child {
    border-bottom: none;
    padding-bottom: 4px;
  }
}




/* ==========================================================================
   Food & Accommodation Section Styles
   ========================================================================== */
.food-accommodation-section {
  position: relative;
  padding: 30px 0 20px 0;

  overflow: hidden;
}

.food-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Header */
.food-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.food-subtitle {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #B6483D;
  background: rgba(182, 72, 61, 0.08);
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(182, 72, 61, 0.18);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.food-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #2b2b2b;
  line-height: 1.3;
  margin: 0 0 14px 0;
}

.food-title .highlight-burgundy {
  color: #B6483D;
}

.food-lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 20px 0;
}

.food-lotus-divider .f-line {
  height: 2px;
  width: 50px;
  background: #B6483D;
  border-radius: 2px;
}

.food-lotus-divider .f-icon {
  color: #B6483D;
  font-size: 1.15rem;
}

.food-header-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4f4f4f;
  margin: 0;
}

/* Showcase Row */
.showcase-row {
  display: flex;
  align-items: center;
  gap: 60px;

}



/* Image Collage */
.showcase-image-col {
  flex: 1;
  position: relative;
  min-height: 440px;
}

.showcase-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(182, 72, 61, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 4px solid #ffffff;
}

.main-img-box {
  width: 85%;
  height: 380px;
}

.sub-img-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 220px;
  z-index: 3;
  transition: transform 0.4s ease;
}

.sub-img-box:hover {
  transform: translateY(-6px) scale(1.03);
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.showcase-img-card:hover .showcase-img {
  transform: scale(1.06);
}

.showcase-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: #B6483D;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
}

/* Content Col */
.showcase-content-col {
  flex: 1.1;
  display: flex;
  flex-direction: column;
}

.showcase-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #B6483D;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.showcase-heading {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 12px 0;
}

.showcase-intro {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #4f4f4f;
  margin: 0 0 24px 0;
  text-align: justify;
}

/* Bullets Grid */
.feature-bullets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.bullet-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #FFFAEA;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(182, 72, 61, 0.12);
  transition: all 0.35s ease;
}

.bullet-card:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(182, 72, 61, 0.12);
  border-color: rgba(182, 72, 61, 0.25);
}

.bullet-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #B6483D, #E9675F);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(182, 72, 61, 0.3);
}

.bullet-info h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 4px 0;
}

.bullet-info p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.84rem;
  color: #5a5a5a;
  line-height: 1.45;
  margin: 0;
}

/* Action CTA Bar */
.food-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.food-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
}

.btn-primary-cta {
  background: linear-gradient(135deg, #B6483D, #E9675F);
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(182, 72, 61, 0.35);
}

.btn-primary-cta:hover {
  background: linear-gradient(135deg, #E9675F, #B6483D);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(182, 72, 61, 0.5);
}

.btn-wa-cta {
  background: #25D366;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-wa-cta:hover {
  background: #1eb956;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .showcase-row {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }

  .showcase-row.reverse-row {
    flex-direction: column-reverse;
  }

  .showcase-image-col {
    width: 100%;
    min-height: auto;
  }

  .main-img-box {
    width: 100%;
    height: 320px;
  }

  .sub-img-box {
    display: none;
  }

  .feature-bullets-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {


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

  .showcase-heading {
    font-size: 1.45rem;
  }

  .food-cta-bar {
    flex-direction: column;
    width: 100%;
  }

  .food-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Google Reviews Section Styles
   ========================================================================== */
.google-reviews-section {
  position: relative;
  padding: 20px 0 10px 0;

  overflow: hidden;
}

.g-reviews-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.g-reviews-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #B6483D;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.google-brand-text {
  font-weight: 800;
  letter-spacing: 0;
}

.g-b {
  color: #4285F4;
}

.g-r {
  color: #EA4335;
}

.g-y {
  color: #FBBC05;
}

.g-g {
  color: #34A853;
}

/* Layout */
.g-reviews-layout {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Left Overall Box */
.g-overall-box {
  width: 230px;
  flex-shrink: 0;
  text-align: center;
  padding: 28px 18px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(182, 72, 61, 0.08);
  border: 1px solid rgba(182, 72, 61, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.g-overall-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(182, 72, 61, 0.14);
}

.g-school-name {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.g-big-score {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: #1b1b1b;
  line-height: 1;
  margin-bottom: 6px;
}

.g-stars-row {
  color: #FFB800;
  font-size: 1.15rem;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.g-based-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  color: #666666;
  margin: 0 0 14px 0;
}

.g-official-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

/* Slider Wrapper */
.g-slider-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 10px 50px;
}

.g-cards-track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Review Card */
.g-review-card {
  min-width: calc(33.333% - 15px);
  max-width: calc(33.333% - 15px);
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(182, 72, 61, 0.06);
  border: 1px solid rgba(182, 72, 61, 0.12);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.g-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(182, 72, 61, 0.14);
  border-color: rgba(182, 72, 61, 0.25);
}

.g-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.g-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.g-avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1976D2, #4285F4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.g-user-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 2px 0;
}

.g-review-time {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  color: #888888;
}

.g-stars {
  color: #FFB800;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}

.g-comment-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Nav Buttons */
.g-nav-btn {
  position: absolute;
  top: calc(50% - 15px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #2b2b2b;
  border: 1px solid rgba(182, 72, 61, 0.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.g-nav-btn:hover {
  background: #B6483D;
  color: #ffffff;
  border-color: #B6483D;
  box-shadow: 0 6px 18px rgba(182, 72, 61, 0.35);
}

.g-nav-btn.prev-btn {
  left: 2px;
}

.g-nav-btn.next-btn {
  right: 2px;
}

/* 3 Pagination Dots Styles */
.g-dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.g-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(182, 72, 61, 0.25);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 1, 0.3, 1);
}

.g-dot:hover {
  background: rgba(182, 72, 61, 0.6);
  transform: scale(1.15);
}

.g-dot.active {
  width: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #B6483D, #E9675F);
  box-shadow: 0 4px 12px rgba(182, 72, 61, 0.35);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .g-reviews-layout {
    flex-direction: column;
    gap: 25px;
  }

  .g-overall-box {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .g-slider-wrapper {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 40px;
  }

  .g-review-card {
    min-width: calc(50% - 11px);
    max-width: calc(50% - 11px);
    flex-shrink: 0;
  }
}

@media (max-width: 650px) {
  .google-reviews-section {
    padding: 35px 0 0px 0;
  }

  .g-reviews-title {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 16px;
    padding: 0 10px;
  }

  .g-reviews-container {
    padding: 0 16px;
  }

  /* Sleek Compact Horizontal Rating Bar on Mobile */
  .g-overall-box {
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
    margin-bottom: 16px;
    border-radius: 14px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    box-sizing: border-box;
    box-shadow: 0 6px 20px rgba(182, 72, 61, 0.08);
  }

  .g-overall-left {
    display: flex;
    flex-direction: column;
  }

  .g-school-name {
    font-size: 0.95rem;
    margin: 0 0 3px 0;
  }

  .g-stars-row {
    font-size: 0.9rem;
    margin-bottom: 3px;
    justify-content: flex-start;
  }

  .g-based-text {
    font-size: 0.76rem;
    margin: 0;
  }

  .g-overall-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }

  .g-big-score {
    font-size: 2.2rem;
    margin-bottom: 2px;
  }

  .g-official-logo {
    font-size: 1.1rem;
  }

  .g-slider-wrapper {
    width: 100%;
    padding: 0;
    overflow: hidden;
  }

  .g-cards-track {
    gap: 16px;
  }

  .g-review-card {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    padding: 16px 14px;
    border-radius: 14px;
  }

  .g-comment-text {
    font-size: 0.84rem;
    line-height: 1.45;
    -webkit-line-clamp: 4;
  }

  .g-nav-btn {
    display: none;
  }

  .g-dots-container {
    margin-top: 14px;
    margin-bottom: 10px;
  }
}

/* FAQ Section Styles */
.faq-section {
  /* background-color: #ffffff;
  padding: 85px 0; */
  width: 100%;
  box-sizing: border-box;
}

.faq-container {
  max-width: 860px;
  /* Narrower container looks much cleaner for FAQs */
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ==========================================================================
   FAQ Section Styles
   ========================================================================== */
.faq-section {
  padding: 60px 0 70px 0;
  background: #FFFAEA;
  position: relative;
  overflow: hidden;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* FAQ Header */
.faq-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #B6483D;
  background: rgba(182, 72, 61, 0.08);
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(182, 72, 61, 0.18);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-main-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2b2b2b;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.faq-main-title .highlight-burgundy {
  color: #B6483D;
}

.faq-lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.faq-d-line {
  height: 2px;
  width: 50px;
  background: #B6483D;
  border-radius: 2px;
}

.faq-d-icon {
  color: #B6483D;
  font-size: 1.1rem;
}

/* FAQ List Container */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ Accordion Items */
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(182, 72, 61, 0.14);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(182, 72, 61, 0.03);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 72, 61, 0.3);
  box-shadow: 0 6px 18px rgba(182, 72, 61, 0.08);
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  gap: 14px;
  transition: all 0.3s ease;
}

.faq-question {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  color: #b6483d !important;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-header:hover .faq-question {
  color: #B6483D !important;
}

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFF5F3;
  color: #B6483D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
  border: 1px solid rgba(182, 72, 61, 0.2);
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #B6483D;
  box-shadow: 0 8px 24px rgba(182, 72, 61, 0.12);
  background: #ffffff;
}

.faq-item.active .faq-header {
  padding-bottom: 12px;
}

.faq-item.active .faq-question {
  color: #B6483D !important;
}

.faq-item.active .faq-toggle-icon {
  background: #B6483D;
  color: #ffffff;
  border-color: #B6483D;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-content {
  padding: 0 20px 18px 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #4f4f4f;
  border-top: 1px dashed rgba(182, 72, 61, 0.12);
  margin-top: 4px;
  padding-top: 14px;
}

/* Responsive adjustment for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 45px 0 55px 0;
  }

  .faq-main-title {
    font-size: 1.6rem;
  }



  .faq-question {
    font-size: 0.92rem !important;
  }

  .faq-content {
    padding: 0 16px 16px 16px;
    font-size: 0.88rem;
  }
}

/* Charity Section Styles */
.charity-section {

  padding: 85px 0;
  width: 100%;
  box-sizing: border-box;
}

.charity-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.charity-layout {
  display: flex;
  gap: 50px;
  align-items: center;
}

.charity-content-left {
  width: 48%;
  box-sizing: border-box;
}

.charity-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #B6483D;
  letter-spacing: 1.5px;
  display: block;
}

/* Left-aligned Separator styles */
.charity-separator {
  display: flex;
  align-items: center;
  margin: 15px 0 20px 0;
  gap: 8px;
}

.charity-separator-line {
  display: inline-block;
  height: 1px;
  background-color: rgba(182, 72, 61, 0.3);
  width: 50px;
}

.charity-separator-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #B6483D;
}

.charity-title {
  font-family: "Quicksand", sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.4;
  color: #B6483D;
  margin: 0 0 20px 0;
}

.charity-description {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a4b46;
  margin: 0 0 16px 0;
}

.charity-description:last-of-type {
  margin-bottom: 24px;
}

.charity-cta {
  font-family: "Quicksand", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #e07a5f;
  /* Terracotta signature highlight */
  letter-spacing: 1px;
}

/* Right collage styles */
.charity-collage-right {
  width: 52%;
  box-sizing: border-box;
}

.charity-single-image-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 15px;
  box-shadow: 0 10px 40px rgba(182, 72, 61, 0.05);
  border: 1px solid rgba(182, 72, 61, 0.08);
  box-sizing: border-box;
}

.charity-single-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

.charity-single-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(182, 72, 61, 0.12);
}

/* Mobile Responsiveness for Charity Section */
@media (max-width: 991px) {
  .charity-layout {
    flex-direction: column;
    gap: 40px;
  }

  .charity-content-left {
    width: 100%;
  }

  .charity-title {
    font-size: 1.65rem;
  }

  .charity-collage-right {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .charity-section {
    padding: 60px 0;
  }

  .charity-single-image-wrapper {
    padding: 10px;
  }

  .charity-single-img {
    border-radius: 12px;
  }
}

/* How to Reach Section Styles */
.reach-section {

  width: 100%;
  box-sizing: border-box;
}

.reach-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.reach-layout {
  display: flex;
  gap: 50px;
  align-items: stretch;
  /* Map and text card match heights */
}

/* Left side: Map */
.reach-map-wrapper {
  width: 50%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(182, 72, 61, 0.06);
  border: 1px solid rgba(182, 72, 61, 0.08);
  box-sizing: border-box;
}

.reach-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

/* Right side: Directions details */
.reach-info-wrapper {
  width: 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reach-title {
  font-family: "Quicksand", sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 10px 0;
}

.reach-separator {
  display: flex;
  align-items: center;
  margin: 10px 0 25px 0;
  gap: 8px;
}

.reach-separator-line {
  display: inline-block;
  height: 1px;
  background-color: rgba(182, 72, 61, 0.3);
  width: 50px;
}

.reach-separator-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #B6483D;
}

.reach-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reach-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(182, 72, 61, 0.1);
}

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

.reach-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(182, 72, 61, 0.06);
  color: #B6483D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reach-item:hover .reach-icon-box {
  background: #B6483D;
  color: #ffffff;
  transform: rotateY(360deg);
  box-shadow: 0 6px 15px rgba(182, 72, 61, 0.2);
}

.reach-details {
  flex: 1;
}

.reach-pill {
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: #e07a5f;
  /* Terracotta signature color */
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 8px rgba(224, 122, 95, 0.15);
}

.reach-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a4b46;
  margin: 0;
}

/* Mobile Responsiveness for How to Reach Section */
@media (max-width: 991px) {
  .reach-layout {
    flex-direction: column;
    gap: 40px;
  }

  .reach-map-wrapper {
    width: 100%;
    height: 400px;
  }

  .reach-map-wrapper iframe {
    min-height: 400px;
  }

  .reach-info-wrapper {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .reach-section {
    padding: 60px 0;
  }

  .reach-item {
    gap: 16px;
  }

  .reach-icon-box {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* Main Footer Styles */
.main-footer {
  background-color: #FFFAEA;
  /* Branded warm cream background */
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Top Heading Row */
.footer-top-heading {
  padding: 45px 0 35px 0;
  text-align: center;
  border-bottom: 1px solid rgba(182, 72, 61, 0.12);
}

.footer-top-heading h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #2b2b2b;
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
}

.footer-top-heading .footer-highlight {
  color: #B6483D;
  /* Burgundy highlight */
}

/* Main Footer Content Grid */
.footer-content {
  padding: 60px 0 65px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  padding: 0 35px;
  border-right: 1px solid rgba(182, 72, 61, 0.15);
  box-sizing: border-box;
}

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

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

/* Brand info column styles */
.footer-logo img {
  max-width: 135px;
  height: auto;
  margin-bottom: 22px;
  display: block;
}

.brand-desc {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5a4b46;
  margin: 0 0 25px 0;
}

.social-label {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #B6483D;
  display: block;
  margin-bottom: 14px;
}

.footer-social-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-social-icons .social-icon {
  font-size: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
  text-decoration: none;
}

.footer-social-icons .social-icon:hover {
  transform: scale(1.2);
}

.footer-social-icons .icon-youtube {
  color: #FF0000;
}

.footer-social-icons .icon-facebook {
  color: #1877F2;
}

.footer-social-icons .icon-twitter {
  color: #000000;
}

.footer-social-icons .icon-instagram {
  color: #E1306C;
}

.footer-social-icons .icon-whatsapp {
  color: #25D366;
}

/* Link & contact lists column styles */
.footer-col-title {
  font-family: "Quicksand", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.footer-title-underline {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 5px;
}

.footer-title-underline .underline-line {
  display: inline-block;
  height: 1px;
  background-color: rgba(182, 72, 61, 0.25);
  width: 40px;
}

.footer-title-underline .underline-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #B6483D;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links-list li a {
  font-family: "Nunito", sans-serif;
  font-size: 0.98rem;
  color: #5a4b46;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.footer-links-list li a i {
  color: #e07a5f;
  /* Terracotta double chevron */
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-links-list li a:hover {
  color: #B6483D;
  padding-left: 5px;
}

.footer-links-list li a:hover i {
  transform: translateX(3px);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.footer-contact-list .contact-icon {
  color: #e07a5f;
  /* Terracotta markers */
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list .contact-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #5a4b46;
}

.footer-contact-list .contact-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list .contact-text a:hover {
  color: #B6483D;
}

/* Bottom Copybar styles */
.footer-bottom {
  /* background: #ffffff;
  padding: 20px 0; */
  border-top: 1px solid rgba(182, 72, 61, 0.08);
}

.footer-bottom-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.footer-bottom-layout .copy-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: #7a6b66;
  margin: 0;
}

.footer-policy-links {
  display: flex;
  gap: 25px;
}

.footer-policy-links a {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: #7a6b66;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.footer-policy-links a i {
  color: #B6483D;
  font-size: 0.95rem;
}

.footer-policy-links a:hover {
  color: #B6483D;
}

/* Responsive Footer adjustments */
@media (max-width: 991px) {
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .footer-top-heading h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .footer-content {
    padding: 40px 0 45px 0;
  }

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

  .footer-logo img {
    margin-bottom: 15px;
  }

  .brand-desc {
    margin-bottom: 20px;
  }

  .footer-title-underline {
    margin-bottom: 18px;
  }

  .footer-bottom-layout {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ==========================================================================
   ADDED FOR ENQUIRY FORM POPUP & FLOATING BUTTONS (WHATSAPP & ENQUIRE NOW)
   ========================================================================== */

/* WhatsApp Button Container */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  animation: entranceBounce 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* WhatsApp Ripple Effects */
.whatsapp-ripple-1,
.whatsapp-ripple-2,
.whatsapp-ripple-3 {
  position: absolute;
  width: 70px;
  height: 70px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
}

.whatsapp-ripple-1 {
  animation: rippleWave 3s ease-out infinite;
}

.whatsapp-ripple-2 {
  animation: rippleWave 3s ease-out infinite 1s;
}

.whatsapp-ripple-3 {
  animation: rippleWave 3s ease-out infinite 2s;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: relative;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1) inset;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatBounce 4s ease-in-out infinite, rotateShine 8s linear infinite;
}

.whatsapp-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(37, 211, 102, 0.5), transparent);
  animation: spinGlow 3s linear infinite;
  filter: blur(4px);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: white;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, #ff3838 0%, #ff6b6b 100%);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 56, 56, 0.4), 0 0 0 2px white;
  animation: badgePulse 2s ease-in-out infinite, badgeShake 10s ease-in-out infinite;
}

.sparkle-1,
.sparkle-2 {
  position: absolute;
  background: white;
  border-radius: 50%;
}

.sparkle-1 {
  width: 3px;
  height: 3px;
  top: 10%;
  right: 10%;
  animation: sparkle 3s linear infinite;
}

.sparkle-2 {
  width: 2px;
  height: 2px;
  bottom: 15%;
  left: 15%;
  animation: sparkle 3s linear infinite 1.5s;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 65px;
  left: 0;
  background: linear-gradient(135deg, #333 0%, #444 100%);
  color: white;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #444;
}

/* WhatsApp Hover Effects */
.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg) !important;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.2) inset !important;
}

.whatsapp-container:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.whatsapp-btn:active {
  transform: scale(0.95) !important;
}

/* Animations for WhatsApp */
@keyframes rippleWave {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes floatBounce {

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

  25% {
    transform: translateY(-8px) scale(1.05) rotate(5deg);
  }

  75% {
    transform: translateY(3px) scale(0.95) rotate(-5deg);
  }
}

@keyframes rotateShine {
  0% {
    filter: brightness(1) hue-rotate(0deg);
  }

  50% {
    filter: brightness(1.2) hue-rotate(10deg);
  }

  100% {
    filter: brightness(1) hue-rotate(0deg);
  }
}

@keyframes spinGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 56, 56, 0.4), 0 0 0 2px white;
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(255, 56, 56, 0.6), 0 0 0 2px white, 0 0 20px rgba(255, 56, 56, 0.4);
  }
}

@keyframes badgeShake {

  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }

  92%,
  96% {
    transform: rotate(-10deg);
  }

  94%,
  98% {
    transform: rotate(10deg);
  }
}

@keyframes sparkle {

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

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

@keyframes entranceBounce {
  0% {
    transform: translateX(100px) scale(0);
    opacity: 0;
  }

  60% {
    transform: translateX(-10px) scale(1.1);
    opacity: 1;
  }

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

/* Fixed Enquire Button */
.fixed-enquire-btn {
  position: fixed;
  right: 18px;
  bottom: 32px;
  z-index: 10001;
}

.enquire-now-animated {
  display: flex;
  align-items: center;
  background: #B6483D;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 18px 10px 12px;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(233, 103, 95, 0.14);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: enquireBounce 1.8s infinite;
  font-family: 'Quicksand', sans-serif;
}

.enquire-now-animated:hover {
  box-shadow: 0 6px 20px rgba(233, 103, 95, 0.22);
  transform: scale(1.04);
}

.enquire-icon {
  background: #fff;
  color: #e9675f;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(233, 103, 95, 0.10);
}

.enquire-pulse {
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(233, 103, 95, 0.13);
  animation: enquirePulse 1.5s infinite;
  z-index: 0;
}

.enquire-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

  70% {
    opacity: 0.2;
    transform: scale(1.3);
  }

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

@keyframes enquireBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Enquiry Form Popup */
.enquiry-form-popup {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}

.enquiry-form-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 40, 40, 0.45);
  backdrop-filter: blur(2px);
}

.enquiry-form-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(233, 103, 95, 0.13);
  padding: 32px 24px 24px 24px;
  max-width: 370px;
  width: 95vw;
  animation: enquiryFormFadeIn 0.4s;
}

@keyframes enquiryFormFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.enquiry-form-title {
  text-align: center;
  font-size: 1.5rem;
  color: #e9675f;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 18px;
  font-weight: 700;
}

.enquiry-form-close {
  position: absolute;
  right: 5px;
  top: 1px;
  background: #B6483D;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(233, 103, 95, 0.10);
  transition: background 0.2s;
}

.enquiry-form-close:hover {
  background: #e9675f;
}

.enquiry-form-logo-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.enquiry-form-logo {
  max-width: 100%;
  height: auto;
}

.enquiry-form-row-flex {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.enquiry-form-row {
  flex: 1;
}

.enquiry-form-row input,
.enquiry-form-row select,
.enquiry-form-row textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #e1e4e8;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  background: #f9f9f9;
  transition: border 0.2s;
}

.enquiry-form-row input:focus,
.enquiry-form-row select:focus,
.enquiry-form-row textarea:focus {
  border-color: #e9675f;
  outline: none;
}

.enquiry-form-submit {
  width: 100%;
  background: #B6483D;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(233, 103, 95, 0.10);
  transition: background 0.2s;
  font-family: 'Quicksand', sans-serif;
}

.enquiry-form-submit:hover {
  background: #e9675f;
}

#enquiryFormMsg {
  margin-top: 10px;
  text-align: center;
  font-size: 1rem;
  color: #e9675f;
  font-weight: 600;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .whatsapp-container {
    bottom: 15px !important;
    left: 15px !important;
  }

  .whatsapp-btn {
    width: 50px !important;
    height: 50px !important;
  }

  .whatsapp-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .whatsapp-badge {
    width: 20px !important;
    height: 20px !important;
    font-size: 10px !important;
  }

  .whatsapp-tooltip {
    display: none !important;
  }

  .fixed-enquire-btn {
    right: 6px;
    bottom: 16px;
  }

  .enquire-now-animated {
    font-size: 0.92rem;
    padding: 8px 12px 8px 10px;
    border-radius: 22px;
  }

  .enquire-icon {
    width: 16px;
    height: 16px;
    font-size: 0.9rem;
    margin-right: 6px;
  }

  .enquire-pulse {
    width: 18px;
    height: 18px;
    left: -3px;
  }
}

@media (max-width: 600px) {
  .enquiry-form-content {
    padding: 18px 8px 16px 8px;
    max-width: 98vw;
  }

  .enquiry-form-title {
    font-size: 1.1rem;
  }
}


/* Gallery Section */
/* Gallery Section Enhanced with Better Proportions */
/*.course-gallery {*/
/*    background: #ffffff;*/
/*}*/


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

.gt-title {
  font-size: 32px;
  font-weight: 600;
  color: #d9534f;
}


/* Accordion Item */
.gt-acc-item {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s ease;
}

/* Button */
.gt-acc-header {
  width: 100%;
  background: #fff;
  border: none;
  padding: 15px 18px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gt-icon {
  font-size: 20px;
  color: #d9534f;
  transition: 0.3s;
  font-weight: bold;
}

/* Hidden content */
.gt-acc-content {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  padding: 0 18px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Active dropdown */
.gt-acc-item.active .gt-acc-content {
  padding: 15px 18px;
  max-height: 500px;
}

.gt-acc-item.active .gt-icon {
  transform: rotate(45deg);
}

.gt-curriculum-title {
  font-size: 20px;
  font-weight: 600;
  color: #d9534f;
  margin-bottom: 20px;
}

.display-flex {
  display: flex;
  gap: 20px;
}

@media(max-width: 768px) {
  .gt-curriculum-grid {
    grid-template-columns: 1fr;
  }

  .main-gallery-wrapper {
    grid-template-columns: 1fr !important;
  }

  .gallery-main-large {
    height: auto !Important;
  }
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.gallery-title {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: 700;
}

/* Gallery Container with Better Spacing */
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Main Gallery Layout */
.main-gallery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
  margin-top: 80px;
}

/* Large Main Images */
.gallery-main-large {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  height: 350px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.gallery-main-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-main-large:hover img {
  transform: scale(1.05);
}

/* Side Images Grid */
.side-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.gallery-item-small {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  height: 167px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-item-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.gallery-item-small:hover img {
  transform: scale(1.08);
}

/* Thumbnails Strip */
.gallery-thumbs-wrapper {
  margin: 15px 0 30px;
  padding: 0;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 5px;
}

.gallery-thumbs::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 10px;
}

.thumb-item {
  flex: 0 0 100px;
  height: 75px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumb-item:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.thumb-item.active {
  border-color: #e74c3c;
  transform: scale(1.05);
}

/* ==========================================================================
   7-Day Yoga Retreat Overview Section (Premium Branded Design)
   ========================================================================== */
.retreat-overview-section {
  position: relative;
  padding: 10px 0 20px 0;

  overflow: hidden;
}

.retreat-overview-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Header */
.retreat-overview-header {
  text-align: center;
  margin-bottom: 30px;
}

.retreat-overview-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #B6483D;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.retreat-overview-title .highlight-burgundy {
  color: #B6483D;
}

/* Lotus Divider */
.retreat-lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 24px 0;
}

.retreat-lotus-divider .r-line {
  height: 1.5px;
  width: 65px;
  background: rgba(182, 72, 61, 0.4);
  border-radius: 2px;
}

.retreat-lotus-divider .r-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #B6483D;
}

.retreat-lotus-divider .r-icon {
  color: #B6483D;
  font-size: 1.15rem;
}

/* Intro Paragraphs */
.retreat-overview-intro {
  margin-bottom: 45px;
}

.retreat-subheading {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 16px 0;
  line-height: 1.35;
}

.retreat-overview-intro p {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.78;
  color: #383838;
  margin: 0 0 18px 0;
  text-align: justify;
}

.retreat-overview-intro p strong {
  color: #B6483D;
  font-weight: 700;
}

/* 2-Column Showcase (Image + Content) */
.retreat-showcase-grid {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-bottom: 50px;
}

.retreat-showcase-image-col {
  flex: 1;
  min-width: 0;
}

.retreat-image-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(182, 72, 61, 0.14), 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 4px solid #ffffff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.retreat-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(182, 72, 61, 0.22);
}

.retreat-showcase-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.retreat-image-card:hover .retreat-showcase-img {
  transform: scale(1.05);
}

.retreat-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 16px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 10, 8, 0.85) 100%);
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.retreat-image-overlay i {
  color: #E9675F;
}

.retreat-showcase-content-col {
  flex: 1.1;
  min-width: 0;
}

.retreat-showcase-content-col p {
  font-family: 'Nunito', sans-serif;
  font-size: 1.02rem;
  line-height: 1.76;
  color: #383838;
  margin: 0 0 16px 0;
  text-align: justify;
}

.retreat-showcase-content-col p strong {
  color: #B6483D;
  font-weight: 700;
}

/* Bottom Sanskrit Quote Banner */
.retreat-quote-banner {
  border: 1.5px solid rgba(182, 72, 61, 0.35);
  border-radius: 50px;
  background: linear-gradient(135deg, #FFFAEA 0%, #ffffff 50%, #fff7ee 100%);
  padding: 24px 38px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(182, 72, 61, 0.08);
  margin-top: 10px;
  transition: all 0.35s ease;
}

.retreat-quote-banner:hover {
  border-color: rgba(182, 72, 61, 0.6);
  box-shadow: 0 14px 38px rgba(182, 72, 61, 0.14);
}

.quote-content .sanskrit-text {
  font-family: 'Georgia', serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 6px 0;
  line-height: 1.6;
}

.quote-content .quote-translation {
  font-family: 'Nunito', sans-serif;
  font-size: 0.96rem;
  font-style: italic;
  color: #555555;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .retreat-showcase-grid {
    flex-direction: column;
    gap: 30px;
  }

  .retreat-showcase-img {
    height: 320px;
  }

  .retreat-overview-intro p,
  .retreat-showcase-content-col p {
    text-align: left;
  }
}

@media (max-width: 600px) {


  .retreat-overview-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .retreat-overview-intro p,
  .retreat-showcase-content-col p {
    font-size: 16px;
    text-align: justify;
  }

  .retreat-showcase-img {
    height: 250px;
  }

  .retreat-quote-banner {
    border-radius: 24px;
    padding: 18px 20px;
  }

  .quote-content .sanskrit-text {
    font-size: 0.98rem;
  }

  .quote-content .quote-translation {
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   Retreat Curriculum & Daily Schedule Styles (Exact Match to Screenshot)
   ========================================================================== */

/* Curriculum Section */
.retreat-schedule-section {
  position: relative;
  padding: 20px 0 20px 0;
  overflow: hidden;
}

.retreat-schedule-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.retreat-schedule-header {
  text-align: center;
  margin-bottom: 25px;
}

.retreat-schedule-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #B6483D;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

/* 2-Column Grid Layout */
.retreat-schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.schedule-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Daily Schedule Card Styling */
.schedule-card {
  background: #ffffff;
  border: 1.5px solid rgba(182, 72, 61, 0.3);
  border-radius: 8px;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 12px rgba(182, 72, 61, 0.05);
  transition: all 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-2px);
  border-color: #B6483D;
  box-shadow: 0 6px 18px rgba(182, 72, 61, 0.12);
}

.schedule-time {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #B6483D;
  letter-spacing: 0.5px;
}

.schedule-activity {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #B6483D;
  text-align: right;
}

/* Schedule Footnote */
.schedule-note {
  font-family: 'Nunito', sans-serif;
  font-size: 0.94rem;
  color: #B6483D;
  text-align: center;
  margin-top: 28px;
  font-style: italic;
}

.schedule-note strong {
  font-weight: 800;
}

/* Mobile Media Queries */
@media (max-width: 900px) {

  .retreat-curriculum-grid,
  .retreat-schedule-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .retreat-curriculum-title,
  .retreat-schedule-title {
    font-size: 1.5rem;
  }

  .schedule-card {
    padding: 12px 16px;
  }

  .schedule-time {
    font-size: 0.95rem;
  }

  .schedule-activity {
    font-size: 0.92rem;
  }
}

/* ==========================================================================
   Highlights & Inline Enquiry Form Section (Exact Match to Screenshot)
   ========================================================================== */
.highlights-enquiry-section {
  position: relative;
  padding: 20px 0 30px 0;
}

.highlights-enquiry-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.highlights-header {
  text-align: center;
  margin-bottom: 35px;
}

.highlights-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #B6483D;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.highlights-enquiry-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}

/* Left Column: Royal Parchment Scroll Canvas */
.scroll-wrapper {
  flex: 1.15;
  position: relative;
  min-width: 0;
}

/* Wooden/Gold Scroll Rollers */
.scroll-roller {
  position: relative;
  height: 22px;
  background: linear-gradient(180deg, #d88980 0%, #B6483D 45%, #7a261d 75%, #d88980 100%);
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(182, 72, 61, 0.3);
  z-index: 5;
}

.scroll-roller-top {
  margin-bottom: -4px;
}

.scroll-roller-bottom {
  margin-top: -4px;
}

.scroll-roller .roller-knob {
  position: absolute;
  top: -6px;
  width: 26px;
  height: 34px;
  background: linear-gradient(135deg, #591610 0%, #B6483D 50%, #E9675F 80%, #3d0d08 100%);
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.scroll-roller .knob-left {
  left: -8px;
}

.scroll-roller .knob-right {
  right: -8px;
}

/* Parchment Paper Canvas */
.scroll-paper {
  background: linear-gradient(180deg, #ffffff 0%, #fffef9 100%);
  border-left: 3.5px solid #B6483D;
  border-right: 3.5px solid #B6483D;
  padding: 32px 30px 28px 30px;
  box-shadow: 0 16px 40px rgba(182, 72, 61, 0.1), inset 0 0 35px rgba(182, 72, 61, 0.04);
  position: relative;
  z-index: 2;
  margin: 0 10px;
  border-radius: 6px;
}

.scroll-top-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.scroll-top-ornament .s-line {
  height: 1.5px;
  width: 80px;
  background: rgba(182, 72, 61, 0.4);
}

.scroll-top-ornament .s-flower {
  color: #B6483D;
  font-size: 1.2rem;
}

/* List of Highlights */
.scroll-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scroll-highlights-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.scroll-highlights-list .h-flower {
  color: #B6483D;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.scroll-highlights-list p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.98rem;
  line-height: 1.68;
  color: #383838;
  margin: 0;
}

.scroll-highlights-list p strong {
  color: #B6483D;
  font-weight: 700;
  font-family: 'Quicksand', 'Montserrat', sans-serif;
}

/* Right Column: Inline Enquiry Form Card (Sticky Fixed on Desktop) */
.inline-enquiry-card {
  flex: 0.85;
  min-width: 0;
  background: linear-gradient(135deg, #ffffff 0%, #fffdf8 100%);
  border-radius: 20px;
  padding: 28px 24px 26px 24px;
  box-shadow: 0 16px 45px rgba(182, 72, 61, 0.12);
  border: 1.5px solid rgba(182, 72, 61, 0.22);
  box-sizing: border-box;

  /* Sticky Fixed while scrolling section */
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 10;
}

.inline-form-header {
  text-align: center;
  margin-bottom: 20px;
}

.inline-form-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.inline-form-logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.inline-form-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 2px 0;
  letter-spacing: 0.5px;
}

.inline-form-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: #777777;
  margin: 0;
}

.inline-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-input-group {
  position: relative;
  width: 100%;
}

.inline-input-group .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #B6483D;
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 2;
}

.inline-input-group .textarea-icon {
  top: 16px;
  transform: none;
}

.inline-input-group input,
.inline-input-group select,
.inline-input-group textarea {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1.5px solid rgba(182, 72, 61, 0.22);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.94rem;
  color: #333333;
  background: #ffffff;
  box-sizing: border-box;
  transition: all 0.3s ease;
  outline: none;
}

.inline-input-group input:focus,
.inline-input-group select:focus,
.inline-input-group textarea:focus {
  border-color: #B6483D;
  box-shadow: 0 0 12px rgba(182, 72, 61, 0.16);
}

.inline-form-row-2 {
  display: flex;
  gap: 10px;
}

.inline-form-row-2 .inline-input-group {
  flex: 1;
}

.inline-form-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #B6483D 0%, #E9675F 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(182, 72, 61, 0.32);
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.inline-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(182, 72, 61, 0.42);
}

.inline-form-msg {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 6px;
  font-weight: 700;
}

/* Mobile Responsiveness for Highlights & Inline Form */
@media (max-width: 991px) {
  .highlights-enquiry-grid {
    flex-direction: column;
    gap: 35px;
  }

  .scroll-wrapper,
  .inline-enquiry-card {
    width: 100%;
    position: relative;
    top: auto;
  }

  .scroll-paper {
    padding: 24px 18px 20px 18px;
  }

  .highlights-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .inline-form-row-2 {
    flex-direction: column;
    gap: 12px;
  }

  .inline-enquiry-card {
    padding: 22px 16px;
    display: none;
  }

  .scroll-highlights-list p {
    font-size: 0.92rem;
  }
}

/* ==========================================================================
   Why Choose Ubud Yoga Retreats Section (Exact Match to Screenshot)
   ========================================================================== */
.why-choose-section {
  position: relative;
  padding: 20px 0 30px 0;
  overflow: hidden;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 40px;
}

.why-choose-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #B6483D;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

/* 3-Column Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Feature Card Styling */
.why-choose-card {

  border: 1.5px solid rgba(182, 72, 61, 0.18);
  border-radius: 18px;
  padding: 32px 26px 28px 26px;
  box-shadow: 0 8px 24px rgba(182, 72, 61, 0.05);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  border-color: #B6483D;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(182, 72, 61, 0.12);
}

/* Icon Circular Badge */
.why-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #B6483D;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 16px rgba(182, 72, 61, 0.25);
  margin-bottom: 18px;
  transition: transform 0.35s ease;
}

.why-choose-card:hover .why-icon-badge {
  transform: scale(1.08) rotate(-4deg);
}

.why-card-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.why-card-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #555555;
  margin: 0;
  text-align: justify;
}

/* Mobile Media Queries */
@media (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-choose-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 650px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-choose-card {
    padding: 24px 20px;
  }

  .why-choose-title {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   Inclusions & Exclusions Section (Exact Match to Screenshot)
   ========================================================================== */
.inclusions-exclusions-section {
  position: relative;
  padding: 20px 0 15px 0;
  background: #FFFAEA;
  overflow: hidden;
}

.inc-exc-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.inc-exc-header {
  text-align: center;
  margin-bottom: 35px;
}

.inc-exc-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #B6483D;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.inc-exc-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #4a4a4a;
  margin: 14px 0 0 0;
}

/* 2-Column Grid */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.inc-exc-card {
  background: #ffffff;
  border: 1.5px solid rgba(182, 72, 61, 0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(182, 72, 61, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.inc-exc-card:hover {
  border-color: #B6483D;
  box-shadow: 0 12px 32px rgba(182, 72, 61, 0.12);
  transform: translateY(-3px);
}

/* Header Banner Bar (Matching Screenshot Terracotta/Burgundy Banner) */
.inc-exc-card-header {
  background: #B6483D;
  padding: 16px 24px;
  text-align: left;
}

.inc-exc-card-header h3 {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Body Content */
.inc-exc-card-body {
  padding: 26px 28px;
  flex: 1;
  background: #fffaea;
}

.inc-exc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inc-exc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #383838;
}

.inc-leaf-icon {
  color: #b6483d;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .inc-exc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .inc-exc-title {
    font-size: 1.6rem;
  }

  .inc-exc-card-body {
    padding: 20px 20px;
  }
}

/* ==========================================================================
   T&C & Privacy Policy Section (Exact Match to Screenshot)
   ========================================================================== */
.policy-guidelines-section {
  position: relative;
  padding: 60px 0 80px 0;
  background: #FFFAEA;
  overflow: hidden;
}

.policy-guidelines-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.policy-header {
  text-align: center;
  margin-bottom: 45px;
}

.policy-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #B6483D;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.policy-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: #4a4a4a;
  margin: 14px 0 0 0;
}

/* 3 Alternating Rows Layout */
.policy-rows-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.policy-row {
  display: flex;
  gap: 45px;
  align-items: center;
}

.policy-img-col {
  flex: 0.9;
  min-width: 0;
}

.policy-content-col {
  flex: 1.1;
  min-width: 0;
}

/* Image Card Styling */
.policy-img-card {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(182, 72, 61, 0.12);
  border: 1.5px solid rgba(182, 72, 61, 0.2);
  transition: all 0.35s ease;
}

.policy-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(182, 72, 61, 0.18);
  border-color: #B6483D;
}

.policy-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

/* Content Styling */
.policy-overline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.policy-overline .dash-line {
  width: 32px;
  height: 2px;
  background: #B6483D;
}

.policy-overline .overline-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #B6483D;
}

.policy-heading {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 14px 0;
  line-height: 1.35;
}

.policy-intro {
  font-family: 'Nunito', sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #4a4a4a;
  margin: 0 0 14px 0;
}

.policy-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.96rem;
  line-height: 1.62;
  color: #383838;
}

.policy-bullets .p-flower {
  color: #B6483D;
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Mobile Media Queries */
@media (max-width: 900px) {

  .policy-row,
  .policy-row.row-img-right {
    flex-direction: column !important;
    gap: 25px;
  }

  .policy-img-col,
  .policy-content-col {
    width: 100%;
  }

  .policy-img-card {
    height: 260px;
  }

  .policy-title {
    font-size: 1.6rem;
  }

  .policy-heading {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   Food & Boutique Accommodation Section (Handcrafted & Premium Look)
   ========================================================================== */
.food-accommodation-section {
  position: relative;
  padding: 15px 0 20px 0;
  background: #FFFAEA;
  overflow: hidden;
}

.fa-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.fa-header {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

.fa-header::before,
.fa-header::after,
.fa-title::before,
.fa-title::after {
  display: none !important;
  content: none !important;
}

.fa-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #B6483D;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.fa-intro-paragraph {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.76;
  color: #4a4a4a;
  /* max-width: 940px; */
  margin: 18px auto 0 auto;
  text-align: center;
}

/* Feature Showcase Cards */
.fa-showcase-card {

  border: 1.5px solid rgba(182, 72, 61, 0.18);
  border-radius: 18px;
  padding: 38px 36px;
  box-shadow: 0 10px 30px rgba(182, 72, 61, 0.07);
  margin-bottom: 38px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.fa-showcase-card:hover {
  border-color: rgba(182, 72, 61, 0.5);
  box-shadow: 0 16px 40px rgba(182, 72, 61, 0.12);
}

.fa-card-grid {
  display: flex;
  gap: 42px;
  align-items: center;
}

.fa-card-grid-reverse {
  flex-direction: row;
}

.fa-img-col {
  flex: 0.95;
  min-width: 0;
}

.fa-content-col {
  flex: 1.05;
  min-width: 0;
}

/* Image Frame */
.fa-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(182, 72, 61, 0.15);
}

.fa-main-img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.fa-img-frame:hover .fa-main-img {
  transform: scale(1.04);
}

.fa-tag-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(182, 72, 61, 0.95);
  color: #ffffff;
  padding: 7px 18px;
  border-radius: 25px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Typography & Content */
.fa-overline-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.fa-dash {
  width: 28px;
  height: 2px;
  background: #B6483D;
}

.fa-overline {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #B6483D;
}

.fa-card-heading {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.fa-card-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.98rem;
  line-height: 1.68;
  color: #4a4a4a;
  margin: 0 0 22px 0;
  text-align: justify;
}

/* Pills Grid 2x2 */
.fa-pills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

.fa-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFAEA;
  border: 1px solid rgba(182, 72, 61, 0.18);
  padding: 10px 14px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #383838;
  transition: all 0.3s ease;
}

.fa-pill-item:hover {
  background: #ffffff;
  border-color: #B6483D;
  box-shadow: 0 4px 12px rgba(182, 72, 61, 0.1);
}

.fa-pill-item i {
  color: #B6483D;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Summary Strip Below Cards */
.fa-summary-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.fa-strip-box {
  background: #ffffff;
  border: 1.5px solid rgba(182, 72, 61, 0.18);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 18px rgba(182, 72, 61, 0.05);
  transition: all 0.3s ease;
}

.fa-strip-box:hover {
  transform: translateY(-3px);
  border-color: #B6483D;
  box-shadow: 0 10px 24px rgba(182, 72, 61, 0.12);
}

.fa-strip-box i {
  font-size: 1.6rem;
  color: #B6483D;
  flex-shrink: 0;
}

.strip-text {
  display: flex;
  flex-direction: column;
}

.strip-text strong {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #B6483D;
}

.strip-text span {
  font-family: 'Nunito', sans-serif;
  font-size: 0.84rem;
  color: #666666;
}

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

  .fa-card-grid,
  .fa-card-grid-reverse {
    flex-direction: column !important;
    gap: 25px;
  }

  .fa-img-col,
  .fa-content-col {
    width: 100%;
  }

  .fa-main-img {
    height: 250px;
  }

  .fa-pills-grid {
    grid-template-columns: 1fr;
  }

  .fa-summary-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 550px) {
  .fa-summary-strip {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ Section (Simple, Clean & Ultra-Attractive Design)
   ========================================================================== */
.faq-retreat-section {
  position: relative;
  padding: 15px 0 20px 0;
  overflow: hidden;
}

.faq-retreat-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.faq-retreat-header {
  text-align: center;
  margin-bottom: 45px;
}

.faq-retreat-title {
  font-family: 'Quicksand', 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #B6483D;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.faq-retreat-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: #4a4a4a;
  margin: 14px 0 0 0;
}

/* 2-Column Grid */
.faq-retreat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-retreat-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ Item Styling */
.faq-item {

  border: 1.5px solid rgba(182, 72, 61, 0.22);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(182, 72, 61, 0.05);
  transition: all 0.35s ease;
}

.faq-item:hover {
  border-color: #B6483D;
  box-shadow: 0 8px 24px rgba(182, 72, 61, 0.12);
}

.faq-question {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #383838;
  text-align: left;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-question span {
  transition: color 0.3s ease;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(182, 72, 61, 0.08);
  color: #B6483D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.faq-item.active {
  border-color: #B6483D;
  box-shadow: 0 10px 28px rgba(182, 72, 61, 0.14);
}

.faq-item.active .faq-question span {
  color: #B6483D;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #B6483D;
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fffdf8;
  padding: 0 22px;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 14px 22px 20px 22px;
  max-height: 280px;
  border-top: 1px solid rgba(182, 72, 61, 0.12);
}

.faq-answer p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.96rem;
  line-height: 1.68;
  color: #4a4a4a;
  margin: 0;
}

/* Mobile Media Queries */
@media (max-width: 900px) {
  .faq-retreat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-retreat-title {
    font-size: 1.65rem;
  }

  .faq-question {
    padding: 15px 18px;
    font-size: 0.96rem;
  }

  .faq-item.active .faq-answer {
    padding: 12px 18px 16px 18px;
  }
}