/* 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;
  }

}



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


/* 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: 10px;
}

.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 & LIGHTBOX STYLES
   ========================================================================== */

.gallery-section {
  padding: 70px 0 0;
  background-color: #FFFAEA;
  position: relative;
  overflow: hidden;
}

.gallery-highlight {
  color: #B6483D;
}

.gallery-section::before,
.gallery-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(182, 72, 61, 0.03) 0%, rgba(182, 72, 61, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.gallery-section::before {
  top: -50px;
  left: -50px;
}

.gallery-section::after {
  bottom: -50px;
  right: -50px;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.gallery-title-box {
  text-align: center;
  /* margin-bottom: 50px; */
  position: relative;
  z-index: 2;
}

.gallery-title-box h1 {
  margin-bottom: 0px;
}

.gallery-title-box p {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  color: #7a6b66;
  margin: 0;
}

.gallery-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto 10px;
  gap: 8px;
}

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

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

/* Grids layout */
.gallery-grid-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}

.gallery-grid-bottom {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 15px;
}

/* Gallery Cards */
.gallery-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 6px solid #ffffff;
  box-sizing: border-box;
  display: flex;
}

.gallery-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 36px rgba(182, 72, 61, 0.12);
  z-index: 5;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.25s ease;
  display: block;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-card.swapping .gallery-image {
  opacity: 0.15;
  transform: scale(0.95);
}

/* Grid Item Assignments */
.gallery-item-l1 {
  grid-column: 3;
  grid-row: 1;
  aspect-ratio: 4 / 3;
}

.gallery-item-l2 {
  grid-column: 3;
  grid-row: 2;
  aspect-ratio: 4 / 3;
}

.gallery-item-c {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: 4 / 3;
}

.gallery-item-r1 {
  grid-column: 4;
  grid-row: 1;
  aspect-ratio: 4 / 3;
}

.gallery-item-r2 {
  grid-column: 4;
  grid-row: 2;
  aspect-ratio: 4 / 3;
}

.gallery-item-b {
  aspect-ratio: 4 / 3;
}

/* Center image highlight */
.gallery-card.highlighted {
  /* outline: 3px solid rgba(91, 192, 190, 0.8); */
  outline-offset: 3px;
  animation: highlightGlow 3s infinite alternate;
}

@keyframes highlightGlow {
  0% {
    outline-color: rgba(91, 192, 190, 0.6);
    box-shadow: 0 8px 32px rgba(91, 192, 190, 0.2);
  }

  100% {
    outline-color: rgba(91, 192, 190, 1);
    box-shadow: 0 12px 40px rgba(91, 192, 190, 0.4);
  }
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 10, 10, 0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-lightbox.active .lightbox-image {
  transform: scale(1);
}

.lightbox-caption {
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 15px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.8rem;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}

.lightbox-close:hover {
  color: #E9675F;
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 100000;
}

.lightbox-nav:hover {
  background: #B6483D;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* Media Queries */
@media (max-width: 991px) {
  .gallery-grid-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-l1,
  .gallery-item-l2,
  .gallery-item-r1,
  .gallery-item-r2 {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item-c {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .gallery-grid-bottom {
    grid-template-columns: repeat(3, 1fr);
  }

  .lightbox-prev {
    left: -60px;
  }

  .lightbox-next {
    right: -60px;
  }
}

@media (max-width: 768px) {
  .gallery-title-box h2 {
    font-size: 2.1rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-nav {
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    font-size: 2.2rem;
  }
}

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

  .gallery-container {
    padding: 30px 24px;
  }

  .gallery-title-box h1 {
    font-size: 20px;
  }

  .gallery-grid-top {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }

  .gallery-item-c {
    grid-column: 1 / 3;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid-bottom {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-grid-bottom::-webkit-scrollbar {
    height: 4px;
  }

  .gallery-grid-bottom::-webkit-scrollbar-track {
    background: rgba(182, 72, 61, 0.05);
    border-radius: 4px;
  }

  .gallery-grid-bottom::-webkit-scrollbar-thumb {
    background: rgba(182, 72, 61, 0.2);
    border-radius: 4px;
  }

  .gallery-grid-bottom .gallery-card {
    flex: 0 0 38%;
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
  }

  .gallery-card {
    border-width: 4px;
  }
}

/* ==========================================================================
   ABOUT & COURSES OVERVIEW SECTION STYLES
   ========================================================================== */

.about-section {
  background: linear-gradient(180deg, #FFFAEA 0%, #FFF5EF 50%, #FFFAEA 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Title box */
.about-title-box {
  text-align: center;
  margin-bottom: 25px;
}

.about-sub-heading {
  font-family: "Quicksand", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-main-heading {
  font-family: "Quicksand", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 15px 0;
  line-height: 1.35;
}

.about-meta-info {
  font-family: "Nunito", sans-serif;
  font-size: 1.15rem;
  color: #7a6b66;
  margin: 0;
}

.stars-icon {
  color: #FFB100;
  font-size: 1.25rem;
}

/* Alliance logos */
.alliance-badges-box {
  text-align: center;
  margin: 30px 0 45px 0;
}

.alliance-logos-img {
  max-width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
}

/* Content blocks */
.about-content-block {
  margin-bottom: 50px;
}

.about-block-title {
  font-family: "Quicksand", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 18px 0;
  text-align: center;
}

.about-text {
  font-family: "Nunito", sans-serif;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #5a4b46;
  margin: 0 0 15px 0;
}

.justify-text {
  text-align: justify;
}

/* Glassmorphism journey card */
.glass-card {
  /* background: rgba(255, 255, 255, 0.45); */
  /* backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(182, 72, 61, 0.06);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(182, 72, 61, 0.03); */
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  margin-top: 30px;
}

.benefit-card {
  /* background: #ffffff; */
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 2px solid rgba(182, 72, 61, 0.04);
  /* border-left: 5px solid #B6483D; */
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(182, 72, 61, 0.08);
}

.benefit-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(182, 72, 61, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B6483D;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
  transform: scale(1.1) rotate(15deg);
  background: #B6483D;
  color: #ffffff;
}

.benefit-card-title {
  font-family: "Quicksand", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 12px 0;
}

.benefit-card-desc {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #7a6b66;
  margin: 0;
}

/* About Courses list */
.about-courses-block {
  margin-top: 60px;
  border-top: 1px solid rgba(182, 72, 61, 0.08);
  padding-top: 50px;
}

.courses-sub-heading {
  font-family: "Quicksand", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 5px 0;
  text-align: center;
}

.courses-main-heading {
  font-family: "Nunito", sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #7a6b66;
  margin: 0 0 20px 0;
  text-align: center;
}

.courses-section-title {
  font-family: "Quicksand", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 20px 0;
  text-align: center;
  text-transform: uppercase;
}

.courses-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-gap: 40px;
  align-items: center;
  margin-top: 35px;
  margin-bottom: 45px;
}

.courses-intro-text {
  font-family: "Nunito", sans-serif;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #5a4b46;
  margin: 0;
}

.courses-intro-img-col {
  text-align: center;
}

.courses-intro-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(182, 72, 61, 0.05);
}

/* Translucent Card Style list */
.about-courses-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-course-item {
  position: relative;
  /* padding: 22px 28px; */
  /* background: rgba(255, 255, 255, 0.4); */
  /* border-radius: 16px; */
  /* border: 1px solid rgba(182, 72, 61, 0.05); */
  /* border-left: 4px solid #e07a5f; */
  transition: all 0.3s ease;
}

.about-course-item:hover {
  /* background: rgba(255, 255, 255, 0.8); */
  /* border-left-color: #B6483D; */
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(182, 72, 61, 0.04);
}

.about-course-title {
  font-family: "Quicksand", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #B6483D;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-course-icon {
  color: #e07a5f;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
}

.about-course-item:hover .about-course-icon {
  color: #B6483D;
}

.about-course-desc {
  font-family: "Nunito", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a4b46;
  margin: 0;
  text-align: justify;
}

.read-more-btn {
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #B6483D;
  border: 1.5px dashed #B6483D;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 10px;
  transition: all 0.3s ease;
  vertical-align: middle;
  white-space: nowrap;
}

.read-more-btn:hover {
  background-color: #B6483D;
  color: #ffffff;
  border-style: solid;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(182, 72, 61, 0.15);
}

/* ==========================================================================
   COURSES GRID SECTION (PREMIUM CARDS)
   ========================================================================== */

.courses-grid-section {

  padding: 0px 0;
  position: relative;
  overflow: hidden;
}

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

.courses-grid-title-box {
  text-align: center;
  margin-bottom: 50px;
}

.courses-grid-title-box h1 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #2b2b2b;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.courses-grid-sub-heading {
  font-family: "Nunito", sans-serif;
  font-size: 1.15rem;
  color: #7a6b66;
  margin: 15px auto 0 auto;
  max-width: 800px;
}

/* Card Grid */
.courses-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  margin-bottom: 60px;
}

.course-grid-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border: 1px solid rgba(182, 72, 61, 0.04);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.course-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(182, 72, 61, 0.08);
}

/* Gold highlighted card for 200 Hour */
.course-grid-card.popular-card {
  border: 2px solid #c59b27;
}

.course-grid-card.popular-card:hover {
  box-shadow: 0 20px 40px rgba(197, 155, 39, 0.12);
}

.popular-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #b6483d;
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 8px rgba(0, 137, 123, 0.3);
}

/* Card Image */
.course-card-img-wrapper {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.course-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.course-fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #887872;
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.course-fav-btn:hover {
  background: #ffffff;
  color: #B6483D;
  transform: scale(1.08);
}

.course-card-icon-badge {
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.course-grid-card:hover .course-card-icon-badge {
  transform: translateX(-50%) scale(1.1);
}

.course-card-icon-badge.badge-blue {
  background: #B6483d;
}

.course-card-icon-badge.badge-gold {
  background: #c59b27;
}

/* Card Content */
.course-card-content {
  position: relative;
  padding: 30px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.course-alliance-badge {
  font-family: "Quicksand", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin: 0 auto 12px auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-alliance-badge.certified-blue {
  background: #fff6f5;

  border: 1px solid rgba(239, 107, 107, 0.15);
}

.course-alliance-badge.certified-gold {
  background: rgba(197, 155, 39, 0.06);
  color: #c59b27;
  border: 1px solid rgba(197, 155, 39, 0.15);
}

.course-grid-title {
  font-family: "Quicksand", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 15px 0;
  line-height: 1.35;
}

.course-title-sub {
  display: block;
  font-size: 0.9rem;
  color: #7a6b66;
  font-weight: 400;
  margin-top: 3px;
}

/* Details table */
.course-details-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  border-top: 1px solid rgba(182, 72, 61, 0.05);
  padding-top: 14px;
}

.course-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Nunito", sans-serif;
  font-size: 0.88rem;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(182, 72, 61, 0.06);
}

.course-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  color: #7a6b66;
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-label i {
  color: #e07a5f;
}

.detail-value {
  font-weight: 700;
  color: #2b2b2b;
}

/* Card Actions */
.course-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  margin-top: auto;
}

.btn-know-more,
.btn-book-now {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  border-radius: 8px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}

.btn-blue-outline {
  border: 1px solid #b6483d;
  background: transparent;
}

.btn-blue-outline:hover {
  background: #b6483d;
  color: #ffffff;
}

.btn-blue-solid {
  background: #b6483d;
  color: #ffffff;
  border: 1px solid #b6483d;
}

.btn-blue-solid:hover {
  background: #fff;
  border-color: #b6483d;
  color: #b6483d;
  box-shadow: 0 4px 12px rgba(182, 72, 61, 0.25);
}

.btn-gold-outline {
  border: 1px solid #c59b27;
  color: #c59b27;
  background: transparent;
}

.btn-gold-outline:hover {
  background: #c59b27;
  color: #ffffff;
}

.btn-gold-solid {
  background: #c59b27;
  color: #ffffff;
  border: 1px solid #c59b27;
}

.btn-gold-solid:hover {
  background: #b2891f;
  border-color: #b2891f;
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.25);
}

/* Bottom Benefits Bar */
.courses-bottom-bar {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(182, 72, 61, 0.04);
}

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

.bar-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(182, 72, 61, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B6483D;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.courses-bar-item:hover .bar-icon-box {
  transform: scale(1.08) rotate(15deg);
}

.bar-info-box h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 3px 0;
}

.bar-info-box p {
  font-family: "Nunito", sans-serif;
  font-size: 0.82rem;
  color: #7a6b66;
  margin: 0;
}

/* Responsive Media Queries for About & Courses */
@media (max-width: 1199px) {
  .courses-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .courses-bottom-bar {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
  }
}

@media (max-width: 991px) {
  .courses-intro-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .courses-intro-img-col {
    order: -1;
  }

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

@media (max-width: 767px) {
  .about-sub-heading {
    font-size: 1.4rem;
  }

  .about-main-heading {
    font-size: 1.85rem;
  }

  .about-block-title {
    font-size: 1.4rem;
  }

  .courses-sub-heading {
    font-size: 1.5rem;
  }

  .courses-main-heading {
    font-size: 1.3rem;
  }

  .courses-section-title {
    font-size: 1.6rem;
  }

  .about-text,
  .about-course-desc,
  .benefit-card-desc {
    font-size: 1rem;
  }

  .courses-grid-section {
    padding: 15px 0;
  }

  .courses-grid-title-box h1 {
    font-size: 1.2rem;
  }

  .facility-header h1 {
    font-size: 1.2rem;
  }

  .facility-sub-heading h2 {
    font-size: 1.2rem;
  }

  .courses-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 40px auto;
  }

  .courses-bottom-bar {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 25px;
  }

  .courses-grid-title-box {
    margin-bottom: 35px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

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

  .about-sub-heading {
    font-size: 1.25rem;
  }

  .about-main-heading {
    font-size: 1.5rem;
  }

  .about-meta-info {
    font-size: 1rem;
  }

  .alliance-badges-box {
    margin: 20px 0 30px 0;
  }

  .alliance-logos-img {
    max-height: 70px;
  }

  .about-block-title {
    font-size: 1.25rem;
  }



  .benefit-card {
    padding: 20px;
  }

  .courses-sub-heading {
    font-size: 1.3rem;
  }

  .courses-main-heading {
    font-size: 1.15rem;
  }

  .courses-section-title {
    font-size: 1.45rem;
  }

  .about-course-title {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   ACCOMMODATION & FOOD SECTION STYLES
   ========================================================================== */
.facilities-section {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

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

.facility-block {


  padding-bottom: 60px;
}

.facility-block:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.facility-header {
  text-align: center;
  margin-bottom: 30px;
}

.facility-sub-heading {
  font-family: "Quicksand", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #e07a5f;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.facility-main-heading {
  font-family: "Quicksand", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.facility-desc {

  line-height: 1.8;
  color: #5a4b46;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  margin-top: 40px;
}

.facility-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
  border: 6px solid #ffffff;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s;
  aspect-ratio: 4 / 3;
  display: flex;
  box-sizing: border-box;
}

.facility-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}

.facility-image-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(182, 72, 61, 0.12);
}

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

.image-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  color: #ffffff;
  padding: 20px 15px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.facility-image-card:hover .image-overlay-caption {
  padding-bottom: 25px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(182, 72, 61, 0.9) 100%);
}

@media (max-width: 991px) {
  .facility-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .facility-image-card:last-child {
    grid-column: span 2;
    aspect-ratio: 2.1 / 1;
  }
}

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

  .facility-main-heading {
    font-size: 1.75rem;
  }

  .facility-sub-heading {
    font-size: 1.2rem;
  }

  .facility-desc {
    font-size: 1rem;

  }

  .facility-gallery {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 30px auto 0 auto;
  }

  .facility-image-card:last-child {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
}

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

  .facility-main-heading {
    font-size: 1.5rem;
  }

  .facility-image-card {
    border-width: 4px;
    border-radius: 16px;
  }
}


/* Code of Contact Section */

/* 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;
  }
}