/* Global Base Styles */
html,
body {
  width: 100%;
  overflow-x: hidden;
  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;
  }

}

/* Premium Hero Slider Section */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  max-height: 950px;
  background: #0c0908;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slider .slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 6s linear;
  transform: scale(1.05);
}

.hero-slider .slide.active .slide-bg {
  transform: scale(1.15);
}

/* Dark elegant gradient overlay */
.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(12, 9, 8, 0.45) 0%,
      rgba(12, 9, 8, 0.55) 60%,
      rgba(12, 9, 8, 0.7) 100%);
  z-index: 3;
}

/* Slider Typography Content */
.slider-content {
  position: absolute;
  z-index: 4;
  top: calc(50% + 40px);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  width: 90%;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.slider-subtitle {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #ffe5d1;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease-out forwards;
}

.slider-title {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.slider-text {
  font-family: "Nunito", sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: #f7f1eb;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease-out 0.4s forwards;
  opacity: 0;
}

/* Smooth keyframes for text entry animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Call to Action Buttons */
.slider-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease-out 0.6s forwards;
  opacity: 0;
}

.slider-btn {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 15px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-sizing: border-box;
}

.slider-btn.primary {
  background: #B6483D;
  color: #ffffff;
  border: 2px solid #B6483D;
  box-shadow: 0 6px 20px rgba(182, 72, 61, 0.45);
}

.slider-btn.primary:hover {
  background: #E9675F;
  border-color: #E9675F;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(233, 103, 95, 0.6);
}

.slider-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.slider-btn.secondary:hover {
  background: #ffffff;
  color: #B6483D;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* Interactive Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background: #B6483D;
  border-color: #B6483D;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(182, 72, 61, 0.4);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* Navigation Indicator Dots */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.slider-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.slider-indicators .indicator.active {
  background: #B6483D;
  transform: scale(1.2);
  border-color: #ffffff;
  box-shadow: 0 0 10px rgba(182, 72, 61, 0.5);
}

/* Mobile Media Queries for Banner Slider */
@media (max-width: 900px) {
  .hero-slider-section {
    height: 60vh;
    min-height: 420px;
  }

  .slider-content {
    top: calc(50% + 30px);
    width: 95%;
    padding: 0 10px;
  }

  .slider-subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
  }

  .slider-title {
    font-size: 1.8rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .slider-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 0 5px;
  }

  .slider-arrow {
    display: none !important;
  }

  .slider-indicators {
    bottom: 15px;
  }

  .slider-btn {
    padding: 12px 28px;
    font-size: 0.85rem;
  }
}

/* About Section Styles */
.about-section {
  background: radial-gradient(circle at 10% 20%, rgba(254, 251, 240, 0.85) 0%, rgba(255, 250, 234, 1) 90%);
  padding: 45px 0;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.about-section-title {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: #2b2b2b;
  letter-spacing: 1.5px;
  line-height: 1.35;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.about-section-title .highlight {
  color: #B6483D;
}

/* Decorative Separator */
.about-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
}

.about-separator-line {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(182, 72, 61, 0.35);
}

.about-separator-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #B6483D;
  position: relative;
}

.about-separator-dot::before,
.about-separator-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(182, 72, 61, 0.6);
}

.about-separator-dot::before {
  left: -8px;
}

.about-separator-dot::after {
  right: -8px;
}

/* About Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 45px;
  align-items: center;
  margin-bottom: 30px;
}

.about-text-left p {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #5a4a45;
  margin: 0 0 22px 0;
  text-align: justify;
}

.about-text-left p:last-child {
  margin-bottom: 0;
}

/* Drop-cap for first letter of about text for premium look */
.about-text-left p:first-of-type::first-letter {
  font-family: "Quicksand", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #B6483D;
  float: left;
  line-height: 0.85;
  margin-right: 12px;
  margin-top: 6px;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid #ffffff;
  box-shadow: 0 20px 45px rgba(182, 72, 61, 0.12);
  box-sizing: border-box;
}

.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.06);
}

/* Highlights Grid */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 55px 0;
  width: 100%;
}

.highlight-card {
  /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.65) 100%); */
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(182, 72, 61, 0.03);
  border: 2px solid rgba(182, 72, 61, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #B6483D;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(182, 72, 61, 0.09);
  border-color: rgba(182, 72, 61, 0.25);
  background: #ffffff;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff5f3 0%, #ffeae6 100%);
  border: 1.5px solid rgba(182, 72, 61, 0.15);
  color: #B6483D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(182, 72, 61, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-bottom: 4px;
}

.highlight-card:hover .highlight-icon {
  background: #B6483D;
  color: #ffffff;
  border-color: #B6483D;
  transform: rotate(360deg);
  box-shadow: 0 8px 18px rgba(182, 72, 61, 0.25);
}

.highlight-info {
  width: 100%;
}

.highlight-info h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 8px 0;
  letter-spacing: 0.1px;
  line-height: 1.35;
}

/* Premium expanding line animation on hover */
.highlight-info .decor-line {
  width: 30px;
  height: 2.5px;
  background: rgba(182, 72, 61, 0.25);
  border-radius: 2px;
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.highlight-card:hover .decor-line {
  width: 55px;
  background: #B6483D;
}

.highlight-info p {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5a4b46;
  margin: 0;
}

/* Full Width Bottom Text */
.about-full-text p {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #5a4a45;
  margin: 0 0 22px 0;
  text-align: justify;
}

.about-full-text p:last-child {
  margin-bottom: 0;
}

/* Quote Box */
.about-quote-box {
  border: 1.5px solid #B6483D;
  border-radius: 50px;
  background: #ffffff;
  padding: 24px 45px;
  margin: 45px auto 10px auto;
  /* max-width: 850px; */
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(182, 72, 61, 0.04);
}

.about-quote-subtitle {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #B6483D;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.about-quote-text {
  font-family: "Nunito", sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #5a4a45;
  margin: 0;
  line-height: 1.65;
}

/* Mobile Responsiveness for About Section */
@media (max-width: 900px) {
  .about-section {
    padding: 65px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image-wrapper {
    border-radius: 16px;
    border-width: 5px;
  }

  .about-img {
    height: 300px;
  }

  .about-text-left p,
  .about-full-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;

  }

  /* Reset drop cap size on mobile for alignment */
  .about-text-left p:first-of-type::first-letter {
    font-size: 2.5rem;
    margin-right: 8px;
    margin-top: 2px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 35px 0;
  }

  .highlight-card {
    padding: 20px;
  }

  .about-quote-box {
    padding: 20px 24px;
    border-radius: 30px;
    margin-top: 35px;
  }

  .about-quote-text {
    font-size: 1.05rem;
  }
}

/* Retreat Courses Section Styles */
.retreat-courses-section {

  width: 100%;
  box-sizing: border-box;
}

.retreat-courses-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.courses-section-title {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: #2b2b2b;
  letter-spacing: 1.5px;
  line-height: 1.35;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.courses-section-title .highlight {
  color: #B6483D;
}

/* Decorative Separator */
.courses-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.courses-separator-line {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(182, 72, 61, 0.35);
}

.courses-separator-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #B6483D;
  position: relative;
}

.courses-separator-dot::before,
.courses-separator-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(182, 72, 61, 0.6);
}

.courses-separator-dot::before {
  left: -8px;
}

.courses-separator-dot::after {
  right: -8px;
}

/* Retreat Courses Grid */
.retreat-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.retreat-course-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(182, 72, 61, 0.08);
  border: 1px solid rgba(182, 72, 61, 0.05);
  overflow: visible;
  /* Required for the floating title overlap */
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-bottom: 20px;
  /* Space for responsive stacking */
}

.retreat-course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(182, 72, 61, 0.15);
  border-color: rgba(182, 72, 61, 0.15);
}

/* Card Image Wrapper & Pill Title */
.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: visible;
}

.course-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: block;
}

.card-pill-title {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1.5px solid rgba(182, 72, 61, 0.25);
  font-family: "Quicksand", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #2b2b2b;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 8px 20px rgba(182, 72, 61, 0.08);
  transition: all 0.3s ease;
}

.retreat-course-card:hover .card-pill-title {
  background: #B6483D;
  color: #ffffff;
  border-color: #B6483D;
  box-shadow: 0 10px 25px rgba(182, 72, 61, 0.25);
}

/* Highlights Table Wrapper & Styling */
.card-table-wrapper {
  padding: 40px 24px 15px 24px;
  /* Generous top padding for pill title overlap */
  flex-grow: 1;
}

.table-header {
  background: #B6483D;
  color: #ffffff;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(182, 72, 61, 0.15);
}

.highlights-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-family: "Nunito", sans-serif;
}

.highlights-table tr {
  transition: background-color 0.2s ease;
}

.highlights-table tr:nth-child(even) {
  background-color: #fdfaf8;
}

.highlights-table tr:hover {
  background-color: #fff2f0;
}

.highlights-table td {
  padding: 12px 10px;
  font-size: 0.95rem;
  color: #5a4b46;
  border-bottom: 1px solid #f2e9e6;
}

.highlights-table tr:last-child td {
  border-bottom: none;
}

.highlights-table td.label {
  font-weight: 600;
  text-align: left;
  width: 45%;
}

.highlights-table td.value {
  text-align: right;
  font-weight: 500;
  color: #2b2b2b;
}

/* Card Footer Layout */
.card-footer-wrapper {
  padding: 5px 24px 28px 24px;
}

.apply-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-style: italic;
  color: #6a5b56;
  text-align: center;
  margin: 0 0 16px 0;
}

/* Chevron Divider Line */
.card-divider-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 22px;
}

.card-divider-decor .decor-line {
  height: 1px;
  flex-grow: 1;
  background: rgba(182, 72, 61, 0.15);
}

.card-divider-decor .decor-chevron {
  color: #B6483D;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceSlow 2s infinite;
}

@keyframes bounceSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

/* Footer Buttons */
.card-buttons {
  display: flex;
  gap: 12px;
  width: 100%;
}

.card-btn {
  flex-grow: 1;
  text-align: center;
  padding: 12px 10px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-sizing: border-box;
}

.btn-details {
  background: #ffeae8;
  color: #B6483D;
  border: 1px solid rgba(182, 72, 61, 0.1);
}

.btn-details:hover {
  background: #ffd5d0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(182, 72, 61, 0.1);
}

.btn-apply {
  background: #B6483D;
  color: #ffffff;
}

.btn-apply:hover {
  background: #9c3b31;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(182, 72, 61, 0.2);
}

/* Mobile Responsiveness for Retreat Courses Grid */
@media (max-width: 900px) {
  .retreat-courses-section {
    /* padding: 60px 0; */
  }

  .retreat-courses-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .retreat-course-card {
    max-width: 480px;
    margin: 0 auto;
  }

  .card-image-wrapper {
    height: 180px;
  }

  .card-pill-title {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}

/* Accommodation Section Styles */
.accommodation-section {
  background: radial-gradient(circle at 10% 20%, rgba(254, 251, 240, 0.85) 0%, rgba(255, 250, 234, 1) 90%);
  padding: 85px 0;
  width: 100%;
  box-sizing: border-box;
}

.accommodation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.lifestyle-intro {
  font-family: "Nunito", sans-serif;
  /* font-size: 1.05rem; */
  line-height: 1.8;
  text-align: justify;
  /* color: #5a4a45;
 
  max-width: 850px;
  margin: 0 auto 35px auto; */
}

/* Features Grid */
.lifestyle-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 45px;
}

.feature-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lifestyle-feature-item {
  background: #ffffff;
  border: 1px solid rgba(224, 122, 95, 0.15);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-sizing: border-box;
}

.lifestyle-feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(224, 122, 95, 0.08);
  border-color: #e07a5f;
  background: #fffcfb;
}

.lifestyle-feature-item.align-start {
  align-items: flex-start;
  padding: 16px 20px;
}

.lifestyle-feature-item i {
  color: #e07a5f;
  /* Terracotta Orange Bullet */
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.3s ease;
}

.lifestyle-feature-item:hover i {
  transform: scale(1.15) rotate(10deg);
}

.lifestyle-feature-item.align-start i {
  margin-top: 5px;
}

.lifestyle-feature-item span {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4a3e3b;
  line-height: 1.45;
}

/* Image Grid for Lifestyle Sections */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lifestyle-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(224, 122, 95, 0.15);
  padding: 10px;
  /* Gallery white padding style */
  box-shadow: 0 12px 30px rgba(182, 72, 61, 0.04);
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 250px;
  overflow: hidden;
}

.lifestyle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(224, 122, 95, 0.15);
  border-color: #e07a5f;
}

.lifestyle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  /* Fits inside padded card wrapper */
  display: block;
}

/* Food Section Styles */
.food-section {
  /* background-color: #ffffff;
  padding: 85px 0; */
  width: 100%;
  box-sizing: border-box;
}

.food-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.food-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 45px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.lifestyle-outro {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  /* color: #5a4a45; */
  text-align: justify;
  /* max-width: 850px; */
  /* margin: 45px auto 0 auto; */
}

/* Mobile Responsiveness for Lifestyle Section */
@media (max-width: 900px) {

  .accommodation-section,
  .food-section {
    /* padding: 65px 0; */
  }

  .lifestyle-features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .food-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lifestyle-card {
    max-width: 420px;
    margin: 0 auto;
    height: 230px;
  }
}

@media (max-width: 600px) {
  .lifestyle-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Code of Conduct Section Styles */
.code-conduct-section {
  background: radial-gradient(circle at 10% 20%, rgba(254, 251, 240, 0.85) 0%, rgba(255, 250, 234, 1) 90%);
  padding: 85px 0;
  width: 100%;
  box-sizing: border-box;
}

.conduct-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.conduct-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(182, 72, 61, 0.15);
  padding: 45px 50px;
  box-shadow: 0 15px 40px rgba(182, 72, 61, 0.04);
  box-sizing: border-box;
}

.conduct-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.conduct-subtitle i {
  font-size: 1.15rem;
  color: #e07a5f;
}

.conduct-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.conduct-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 10px;
  border-bottom: 1px solid #f5ebe6;
  font-family: "Nunito", sans-serif;
  font-size: 1.02rem;
  color: #5a4b46;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.conduct-item:last-child {
  border-bottom: none;
}

.conduct-item:hover {
  background: #fffcfb;
  padding-left: 18px;
  color: #2b2b2b;
}

.conduct-item i {
  color: #e07a5f;
  /* Terracotta checkmark */
  font-size: 0.95rem;
  flex-shrink: 0;
}

.conduct-divider {
  height: 1px;
  background: rgba(182, 72, 61, 0.12);
  margin: 35px 0;
  width: 100%;
}

/* Mobile Responsiveness for Code of Conduct */
@media (max-width: 768px) {
  .code-conduct-section {
    padding: 60px 0;
  }

  .conduct-card {
    padding: 30px 20px;
  }

  .conduct-subtitle {
    font-size: 1.2rem;
  }

  .conduct-item {
    font-size: 0.95rem;
    padding: 12px 6px;
    align-items: flex-start;
  }

  .conduct-item i {
    margin-top: 4px;
  }
}

/* Outdoor Excursions Section Styles */
.excursions-section {
  /* background-color: #ffffff;
  padding: 85px 0; */
  width: 100%;
  box-sizing: border-box;
}

.excursions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.excursions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.excursion-card {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(182, 72, 61, 0.08);
  border: 1px solid rgba(182, 72, 61, 0.05);
  box-sizing: border-box;
  cursor: pointer;
}

.excursion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.excursion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.05) 100%);
  transition: background 0.4s ease;
  z-index: 1;
}

.excursion-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.excursion-title {
  font-family: "Quicksand", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.excursion-location {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e07a5f;
  /* Terracotta accents */
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.excursion-location i {
  color: #e07a5f;
}

/* Hover effects */
.excursion-card:hover .excursion-img {
  transform: scale(1.08);
}

.excursion-card:hover .excursion-overlay {
  background: linear-gradient(to top, rgba(182, 72, 61, 0.9) 0%, rgba(0, 0, 0, 0.2) 65%, transparent 100%);
}

.excursion-card:hover .excursion-info {
  transform: translateY(-5px);
}

/* Mobile Responsiveness for Excursions Grid */
@media (max-width: 900px) {
  .excursions-section {
    padding: 60px 0;
  }

  .excursions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .excursion-card {
    height: 320px;
    max-width: 550px;
    margin: 0 auto;
  }

  .excursion-title {
    font-size: 1.45rem;
  }
}

/* Reviews Section Styles */
.reviews-section {
  background: radial-gradient(circle at 10% 20%, rgba(254, 251, 240, 0.85) 0%, rgba(255, 250, 234, 1) 90%);
  padding: 85px 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  /* Prevent slider overflow from breaking the page width */
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.reviews-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

/* Left summary badge */
.reviews-summary-badge {
  width: 28%;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(182, 72, 61, 0.15);
  box-shadow: 0 10px 30px rgba(182, 72, 61, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.reviews-summary-badge .school-name {
  font-family: "Quicksand", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.reviews-summary-badge .rating-number {
  font-size: 3.8rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: #2b2b2b;
  line-height: 1;
  margin-bottom: 12px;
}

.reviews-summary-badge .rating-stars {
  color: #ffb703;
  font-size: 1.35rem;
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}

.reviews-summary-badge .reviews-count {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  color: #7a6b66;
  margin: 0 0 20px 0;
}

.google-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.google-logo-wrapper span {
  font-size: 2.1rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
}

.google-logo-wrapper .g-letter {
  color: #4285F4;
}

.google-logo-wrapper .o-letter {
  color: #EA4335;
}

.google-logo-wrapper .o2-letter {
  color: #FBBC05;
}

.google-logo-wrapper .g2-letter {
  color: #4285F4;
}

.google-logo-wrapper .l-letter {
  color: #34A853;
}

.google-logo-wrapper .e-letter {
  color: #EA4335;
}

/* Google styled heading text */
.google-text span {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.google-text .g {
  color: #4285F4;
}

.google-text .o1 {
  color: #EA4335;
}

.google-text .o2 {
  color: #FBBC05;
}

.google-text .g2 {
  color: #4285F4;
}

.google-text .l {
  color: #34A853;
}

.google-text .e {
  color: #EA4335;
}

/* Right slider wrapper */
.reviews-slider-wrapper {
  width: 72%;
  position: relative;
  display: flex;
  align-items: center;
}

.reviews-slider-viewport {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  /* Prevents card shadow clip */
}

.reviews-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(182, 72, 61, 0.04);
  border: 1px solid rgba(182, 72, 61, 0.1);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(182, 72, 61, 0.08);
  border-color: rgba(182, 72, 61, 0.2);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}

.reviewer-info-left {
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  flex: 1;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(182, 72, 61, 0.1);
  flex-shrink: 0;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
}

.reviewer-name {
  font-family: "Quicksand", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-time {
  font-family: "Nunito", sans-serif;
  font-size: 0.85rem;
  color: #7a6b66;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.google-icon-corner {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.review-stars {
  color: #ffb703;
  font-size: 1.05rem;
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #5a4b46;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Circle slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(182, 72, 61, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #B6483D;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 10;
}

.slider-arrow:hover {
  background: #B6483D;
  color: #ffffff;
  border-color: #B6483D;
  box-shadow: 0 6px 18px rgba(182, 72, 61, 0.25);
}

.arrow-prev {
  left: -23px;
}

.arrow-next {
  right: -23px;
}

/* Mobile Responsiveness for Reviews */
@media (max-width: 991px) {
  .reviews-layout {
    flex-direction: column;
    gap: 30px;
  }

  .reviews-summary-badge {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 30px;
  }

  .reviews-slider-wrapper {
    width: 100%;
  }

  .review-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
  }

  .arrow-prev {
    left: -15px;
  }

  .arrow-next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 0;
  }

  .review-card {
    flex: 0 0 100%;
  }
}

/* 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-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(182, 72, 61, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(182, 72, 61, 0.02);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 72, 61, 0.3);
  box-shadow: 0 8px 25px rgba(182, 72, 61, 0.06);
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  color: #B6483D !important;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq-question {
  font-family: "Quicksand", sans-serif !important;

  font-size: 1rem !important;
  color: #B6483D !important;
}

.faq-header:hover {
  color: #B6483D !important;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(182, 72, 61, 0.06);
  color: #B6483D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.active {
  border-color: #B6483D;
  box-shadow: 0 10px 30px rgba(182, 72, 61, 0.08);
}

.faq-item.active .faq-header,
.faq-item.active .faq-question {
  color: #B6483D !important;
}

.faq-item.active .faq-toggle-icon {
  background: #B6483D;
  color: #ffffff;
  transform: rotate(45deg);
  /* Rotates the plus icon to look like a close marker */
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-content {
  padding: 0 28px 24px 28px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #5a4b46;
}

/* Responsive adjustment for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-header {
    padding: 18px 20px;
    font-size: 1.05rem;
  }

  .faq-content {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
  }
}

/* Charity Section Styles */
.charity-section {
  background: radial-gradient(circle at 10% 20%, rgba(254, 251, 240, 0.85) 0%, rgba(255, 250, 234, 1) 90%);
  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;
}

.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;
  }
}