/* ==========================================================================

   PURE SERENITY SPA - MAIN STYLESHEET

   Root Palette Variables & Standard Styling

   ========================================================================== */



:root {

  --bg-primary: #F8F8F8;

  --pink-light: #F8E8EE;

  --green-light: #EAF5EE;

  --white: #FFFFFF;

  --black: #181818;

  --grey: #6F6F6F;

  --border-color: #ECECEC;

  --font-heading: 'Poppins', sans-serif;

  --font-body: 'Open Sans', sans-serif;

}



/* Base & Typography */

body {

  background-color: var(--bg-primary);

  color: var(--black);

  font-family: var(--font-body);

  font-weight: 400;

  line-height: 1.6;

  overflow-x: hidden;

}



h1, h2, h3, h4, h5, h6 {

  font-family: var(--font-heading);

  color: var(--black);

}



.section-padding {

  padding: 80px 0;

}



.bg-primary-custom {

  background-color: var(--bg-primary);

}



.max-w-700 {

  max-width: 700px;

}



.max-w-800 {

  max-width: 800px;

}/* ==========================================================================

   PURE SERENITY SPA - MAIN STYLESHEET

   ========================================================================== */



:root {

  --bg-primary: #F8F8F8;

  --pink-light: #F8E8EE;

  --green-light: #EAF5EE;

  --white: #FFFFFF;

  --black: #181818;

  --grey: #6F6F6F;

  --border-color: #ECECEC;

  --font-heading: 'Poppins', sans-serif;

  --font-body: 'Open Sans', sans-serif;

}



/* ==========================================================================

   1. BASE RESET & TYPOGRAPHY

   ========================================================================== */

*,

*::before,

*::after {

  box-sizing: border-box;

}



html, body {

  width: 100%;

  max-width: 100%;

  overflow-x: hidden;

  margin: 0;

  padding: 0;

  scroll-behavior: smooth;

}



body {

  background-color: var(--bg-primary);

  color: var(--black);

  font-family: var(--font-body);

  font-weight: 400;

  line-height: 1.6;

}



h1, h2, h3, h4, h5, h6 {

  font-family: var(--font-heading);

  color: var(--black);

}



a {

  text-decoration: none;

  transition: all 0.25s ease;

}



/* Utility Classes */

.section-padding { padding: 80px 0; }

.bg-primary-custom { background-color: var(--bg-primary); }

.max-w-700 { max-width: 700px; }

.max-w-800 { max-width: 800px; }

.fs-7, .custom-fs-7 { font-size: 0.825rem; }

.fs-8, .custom-fs-8 { font-size: 0.75rem !important; }

.mb-form-gap { margin-bottom: 1.25rem !important; }

.field-gap { padding-left: 12px !important; padding-right: 12px !important; }

.tracking-wider { letter-spacing: 0.08em; }

.tracking-widest { letter-spacing: 0.15em; }



/* Custom Buttons & Badges */

.btn-custom-gradient {

  background: linear-gradient(135deg, var(--pink-light) 0%, var(--green-light) 100%);

  color: var(--black);

  font-family: var(--font-heading);

  font-weight: 600;

  padding: 12px 28px;

  border-radius: 50px;

  border: 1px solid var(--border-color);

  display: inline-block;

  cursor: pointer;

}



.btn-custom-gradient:hover {

  background: var(--black);

  color: var(--white);

  border-color: var(--black);

  transform: translateY(-2px);

  box-shadow: 0 4px 15px rgba(0,0,0,0.1);

}



.btn-outline-custom {

  background: transparent;

  color: var(--white);

  font-family: var(--font-heading);

  font-weight: 600;

  padding: 12px 28px;

  border-radius: 50px;

  border: 1px solid var(--white);

  display: inline-block;

}



.btn-outline-custom:hover {

  background: var(--white);

  color: var(--black);

}



.badge-tag {

  font-family: var(--font-heading);

  font-size: 0.85rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  color: var(--grey);

}



/* ==========================================================================

   2. HEADER & NAVIGATION

   ========================================================================== */

.top-bar {

  background-color: #121212 !important;

}



.header-nav {

  position: sticky;

  top: 0;

  z-index: 1030;

  padding: 20px 0;

  background: transparent;

  transition: all 0.3s ease;

}



.header-nav.scrolled {

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(10px);

  padding: 12px 0;

  box-shadow: 0 2px 20px rgba(0,0,0,0.05);

}



.brand-title {

  font-family: var(--font-heading);

  font-weight: 700;

  font-size: 1.25rem;

  letter-spacing: 2px;

  color: var(--black);

  display: block;

  line-height: 1;

}



.brand-subtitle {

  font-size: 0.65rem;

  letter-spacing: 3px;

  color: var(--grey);

  display: block;

  margin-top: 3px;

}



.nav-list {

  list-style: none !important;

  padding: 0 !important;

  margin: 0 !important;

}



.nav-list li {

  list-style: none !important;

  display: inline-block;

}



.nav-link {

  font-family: var(--font-heading);

  font-weight: 600;

  font-size: 0.9rem;

  color: var(--black) !important;

  transition: color 0.2s ease;

}



.nav-link:hover, .nav-link.active {

  color: #557A68 !important;

}



/* Mega Menu Dropdown */

.mega-menu-dropdown:hover .mega-menu {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}



.mega-menu {

  position: absolute;

  top: 100%;

  left: -50px;

  width: 420px;

  opacity: 0;

  visibility: hidden;

  transform: translateY(10px);

  transition: all 0.3s ease;

  z-index: 1050;

}



.mega-menu a:hover {

  color: #557A68 !important;

  padding-left: 3px;

}



/* ==========================================================================

   3. MOBILE SLIDE-OUT MENU OVERLAY

   ========================================================================== */

.mobile-menu-overlay {

  position: fixed;

  top: 0;

  right: -100%;

  width: 280px;

  height: 100vh;

  height: 100dvh;

  background: var(--white);

  z-index: 1060;

  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);

  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  overflow-y: auto;

}



.mobile-menu-overlay.show {

  right: 0;

}



.mobile-menu-content {

  display: flex;

  flex-direction: column;

  height: 100%;

  padding: 1.5rem !important;

}



/* Mobile Links & Close Button Touch Fix */

.mobile-nav-link, 

.action-btn-svg, 

.btn-close {

  min-height: 44px;

  display: inline-flex;

  align-items: center;

}



/* ==========================================================================

   4. HERO SECTION & QUICK FORM

   ========================================================================== */

.hero-section {

  position: relative;

  min-height: 600px;

  height: auto;

  padding-top: 120px;

  padding-bottom: 80px;

  overflow: hidden;

  display: flex;

  align-items: center;

  background: url('images/silder01.jpg') center/cover no-repeat;

}



.hero-slider {

  position: absolute;

  top: 0; left: 0; width: 100%; height: 100%;

  z-index: 0;

}



.hero-slider .slide {

  position: absolute;

  top: 0; left: 0; width: 100%; height: 100%;

  background-size: cover;

  background-position: center;

  opacity: 0;

  transition: opacity 1.2s ease-in-out;

}



.hero-slider .slide.active { opacity: 1; }



.hero-bg-overlay {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: 0;

  background: linear-gradient(180deg, rgba(18, 18, 18, 0.75) 0%, rgba(18, 18, 18, 0.5) 100%);

  z-index: 1;

}



.hero-quick-form {

  width: 100% !important;

  max-width: 100% !important;

  background: rgba(255, 255, 255, 0.98) !important;

  backdrop-filter: blur(8px);

  box-sizing: border-box !important;

}



.hero-quick-form .form-control-custom {

  width: 100% !important;

  display: block;

  padding: 10px 14px;

  font-size: 16px !important;

  border: 1px solid var(--border-color);

  border-radius: 10px;

  background-color: #FFFFFF;

}



.hero-quick-form .form-control-custom:focus {

  border-color: #2e7d32;

  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);

  outline: none;

}



.review-badge {

  background: rgba(255,255,255,0.9);

  backdrop-filter: blur(5px);

  border: 1px solid var(--border-color);

}



/* ==========================================================================

   5. SECTIONS (ABOUT, SERVICES, PACKAGES, NEARBY)

   ========================================================================== */

/* Ambient Section Glows */

.about-bg-glow, .service-glow, .why-glow, .pkg-glow, .cta-glow {

  position: absolute;

  width: 320px;

  height: 320px;

  border-radius: 50%;

  filter: blur(100px);

  opacity: 0.12;

  pointer-events: none;

  z-index: 0;

}



.about-bg-glow.glow-1 { background: #2e7d32; top: -50px; left: -50px; }

.about-bg-glow.glow-2 { background: #a5d6a7; bottom: -50px; right: -50px; }

.service-glow-1, .why-glow-1, .pkg-glow-1, .cta-glow-1 { background: #2e7d32; top: 10%; left: -50px; }

.service-glow-2, .why-glow-2, .pkg-glow-2, .cta-glow-2 { background: #25d366; bottom: 10%; right: -50px; }



/* Service & Feature Cards */

.feature-card-modern, .service-card, .price-card, .location-card {

  background: var(--white);

  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  border: 1px solid rgba(0, 0, 0, 0.08) !important;

}



.hover-glow:hover, .service-card:hover, .price-card:hover, .location-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 15px 30px rgba(46, 125, 50, 0.12) !important;

  border-color: rgba(46, 125, 50, 0.3) !important;

}



.service-img, .card-img-wrap img, .price-card-img img {

  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);

}



.hover-glow:hover .service-img,

.service-card:hover .card-img-wrap img,

.price-card:hover .price-card-img img {

  transform: scale(1.08);

}



/* Action Buttons (Call / WhatsApp) */

.action-btn-group {

  display: flex;

  align-items: center;

  gap: 8px !important;

}



.action-btn-svg {

  width: 34px;

  height: 34px;

  border-radius: 50%;

  justify-content: center;

  flex-shrink: 0;

}



.btn-call {

  background-color: #f0fdf4;

  color: #2e7d32;

  border: 1px solid rgba(46, 125, 50, 0.2);

}



.btn-call:hover {

  background-color: #2e7d32;

  color: #ffffff;

}



.btn-wa {

  background-color: #e8faf0;

  color: #25d366;

  border: 1px solid rgba(37, 211, 102, 0.2);

}



.btn-wa:hover {

  background-color: #25d366;

  color: #ffffff;

}



/* Package Card Buttons */

.package-card-actions {

  display: flex !important;

  align-items: center !important;

  gap: 0.5rem !important;

  width: 100% !important;

  margin-top: 1.5rem !important;

  padding-top: 1rem !important;

  border-top: 1px dashed rgba(0, 0, 0, 0.08) !important;

}



.btn-book-pkg {

  flex: 1 !important;

  background-color: #2e7d32 !important;

  border: 1px solid #2e7d32 !important;

  color: #ffffff !important;

  font-weight: 600 !important;

  font-size: 0.875rem !important;

  padding: 0.65rem 1rem !important;

  border-radius: 0.5rem !important;

  display: inline-flex !important;

  align-items: center !important;

  justify-content: center !important;

  gap: 0.4rem !important;

}



.btn-book-pkg:hover {

  background-color: #1b5e20 !important;

  border-color: #1b5e20 !important;

  transform: translateY(-2px);

}



/* Nearby Locations Grid */

#nearby-locations .row {

  row-gap: 2.5rem !important;

}



#nearby-locations .location-card {

  height: 100% !important;

  min-height: 170px !important;

}



/* ==========================================================================

   6. FOOTER & FLOATING ICONS

   ========================================================================== */

.site-footer {

  background-color: #121417 !important;

}



.footer-heading {

  position: relative;

  padding-bottom: 0.5rem;

}



.footer-heading::after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  width: 28px;

  height: 2px;

  background-color: #2e7d32;

}



.footer-nav-links .footer-link {

  color: #9ca3af;

  font-size: 0.9rem;

  display: inline-block;

}



.footer-nav-links .footer-link:hover {

  color: #ffffff !important;

  transform: translateX(4px);

}



/* Desktop Floating Action Buttons */

.floating-btn-group {

  position: fixed;

  bottom: 25px;

  right: 25px;

  display: flex;

  flex-direction: column;

  gap: 12px;

  z-index: 999;

}



.float-btn {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--white);

  box-shadow: 0 4px 15px rgba(0,0,0,0.2);

}



.float-whatsapp { background-color: #25D366; font-size: 1.5rem; }

.float-phone { background-color: #007AFF; font-size: 1.2rem; }

.float-top { background-color: var(--black); font-size: 1.2rem; cursor: pointer; }

/* Social Floating Button Styles */
.float-facebook {
    background-color: #1877F2 !important;
    color: #FFFFFF !important;
    font-size: 1.25rem;
}

.float-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    color: #FFFFFF !important;
    font-size: 1.35rem;
}

/* ==========================================================================

   7. UNIFIED MOBILE STICKY BOTTOM CTA BAR

   ========================================================================== */

.bottom-sticky-cta,

.mobile-sticky-cta {

  position: fixed;

  bottom: 0;

  left: 0;

  right: 0;

  width: 100%;

  z-index: 1040;

  background-color: rgba(255, 255, 255, 0.96) !important;

  backdrop-filter: blur(10px);

  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;

  padding: 0.5rem 0.75rem !important;

  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px)) !important;

}



/* ==========================================================================

   8. MEDIA QUERIES

   ========================================================================== */

@media (max-width: 991.98px) {

  body {

    padding-bottom: 65px !important; /* Prevents sticky CTA from covering page footer */

  }



  .floating-btn-group {

    bottom: 75px; /* Shift desktop floaters up on mobile viewports */

  }



  .contact-form-card {

    padding: 20px !important;

  }

}



@media screen and (max-width: 575.98px) {

  .hero-quick-form {

    padding: 1.25rem 1rem !important;

  }



  .bottom-sticky-cta .btn,

  .mobile-sticky-cta .btn {

    font-size: 0.875rem;

  }

}



/* Custom Buttons & Gradients */

.btn-custom-gradient {

  background: linear-gradient(135deg, var(--pink-light) 0%, var(--green-light) 100%);

  color: var(--black);

  font-family: var(--font-heading);

  font-weight: 600;

  padding: 12px 28px;

  border-radius: 50px;

  border: 1px solid var(--border-color);

  text-decoration: none;

  display: inline-block;

  transition: all 0.3s ease;

  cursor: pointer;

}



.btn-custom-gradient:hover {

  background: var(--black);

  color: var(--white);

  border-color: var(--black);

  transform: translateY(-2px);

  box-shadow: 0 4px 15px rgba(0,0,0,0.1);

}



.btn-outline-custom {

  background: transparent;

  color: var(--white);

  font-family: var(--font-heading);

  font-weight: 600;

  padding: 12px 28px;

  border-radius: 50px;

  border: 1px solid var(--white);

  text-decoration: none;

  display: inline-block;

  transition: all 0.3s ease;

}



.btn-outline-custom:hover {

  background: var(--white);

  color: var(--black);

}



.badge-tag {

  font-family: var(--font-heading);

  font-size: 0.85rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1.5px;

  color: var(--grey);

}



/* Header & Navigation */

.header-nav {

  padding: 20px 0;

  background: transparent;

  transition: all 0.3s ease;

}



.header-nav.scrolled {

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(10px);

  padding: 12px 0;

  box-shadow: 0 2px 20px rgba(0,0,0,0.05);

}



.brand-title {

  font-family: var(--font-heading);

  font-weight: 700;

  font-size: 1.25rem;

  letter-spacing: 2px;

  color: var(--black);

  display: block;

  line-height: 1;

}



.brand-subtitle {

  font-size: 0.65rem;

  letter-spacing: 3px;

  color: var(--grey);

  display: block;

  margin-top: 3px;

}



.nav-link {

  font-family: var(--font-heading);

  font-weight: 600;

  font-size: 0.9rem;

  color: var(--black) !important;

  text-decoration: none;

  transition: color 0.2s ease;

}



.nav-link:hover, .nav-link.active {

  color: #557A68 !important; /* Elegant green tint accent */

}



/* Hero Section */

.hero-section {

  height: 600px;

  background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;

}



.hero-bg-overlay {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: 0;

  background: linear-gradient(180deg, rgba(24,24,24,0.65) 0%, rgba(24,24,24,0.4) 100%);

}



.review-badge {

  background: rgba(255,255,255,0.9);

  backdrop-filter: blur(5px);

  border: 1px solid var(--border-color);

}



/* Feature Cards */

.feature-card {

  transition: transform 0.3s ease;

}

.feature-card:hover {

  transform: translateY(-5px);

}

.icon-style {

  font-size: 1.5rem;

  color: #6C9A8B;

}



/* Service Cards */

.service-card {

  background: var(--white);

  transition: all 0.3s ease;

}



.service-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

}



.card-img-wrap {

  height: 200px;

  overflow: hidden;

}



.card-img-wrap img {

  height: 100%;

  transition: transform 0.5s ease;

}



.service-card:hover .card-img-wrap img {

  transform: scale(1.08);

}



/* Why Choose Us Icons */

.icon-box-lg {

  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--pink-light), var(--green-light));

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.5rem;

  color: var(--black);

}



/* Packages */

.package-card {

  transition: all 0.3s ease;

}

.featured-package {

  border: 2px solid #A8C3B8 !important;

  transform: scale(1.02);

}

.popular-tag {

  position: absolute;

  top: -12px;

  left: 50%;

  transform: translateX(-50%);

  background: var(--black);

  color: var(--white);

  font-size: 0.7rem;

  font-family: var(--font-heading);

  font-weight: 700;

  padding: 4px 12px;

  border-radius: 20px;

  letter-spacing: 1px;

}

.bg-soft-green {

  background-color: var(--green-light);

}



/* Timeline */

.timeline-wrapper::before {

  content: '';

  position: absolute;

  top: 30px;

  left: 10%;

  right: 10%;

  height: 2px;

  background: var(--border-color);

  z-index: 1;

}



.timeline-step {

  position: relative;

  z-index: 2;

  background: var(--bg-primary);

  padding: 0 10px;

}



.step-num {

  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: var(--white);

  border: 2px solid var(--black);

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--font-heading);

  font-weight: 700;

  font-size: 1.2rem;

  margin: 0 auto;

}



/* Therapist Image */

.therapist-img {

  height: 280px;

}



/* Gallery Zoom */

.gallery-item {

  height: 240px;

}

.gallery-item img:hover {

  transform: scale(1.05);

}



/* Review Avatar */

.avatar-circle {

  width: 45px;

  height: 45px;

  border-radius: 50%;

  background: var(--green-light);

  display: flex;

  align-items: center;

  justify-content: center;

  font-family: var(--font-heading);

  font-weight: 700;

  color: var(--black);

}



/* Custom Accordion */

.accordion-header-custom {

  cursor: pointer;

  font-family: var(--font-heading);

  outline: none;

}

.accordion-item-custom.active .fa-chevron-down {

  transform: rotate(180deg);

}



/* Form Controls */

.form-control-custom {

  background-color: var(--white);

  border: 1px solid var(--border-color);

  padding: 12px 16px;

  border-radius: 8px;

}

.form-control-custom:focus {

  border-color: var(--black);

  box-shadow: none;

}



/* Footer & Floating Icons */

.footer-section {

  background-color: var(--black);

}



.footer-links a {

  color: var(--grey);

  text-decoration: none;

  transition: color 0.2s ease;

}



.footer-links a:hover {

  color: var(--white);

}



.social-icons a {

  width: 36px;

  height: 36px;

  border-radius: 50%;

  background: rgba(255,255,255,0.1);

  color: var(--white);

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  transition: background 0.3s ease;

}



.social-icons a:hover {

  background: var(--white);

  color: var(--black);

}



.floating-btn-group {

  position: fixed;

  bottom: 25px;

  right: 25px;

  display: flex;

  flex-column;

  gap: 12px;

  z-index: 999;

}



.float-btn {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--white);

  box-shadow: 0 4px 15px rgba(0,0,0,0.2);

  text-decoration: none;

  border: none;

  transition: transform 0.3s ease;

}



.float-btn:hover {

  transform: scale(1.1);

  color: var(--white);

}



.float-whatsapp { background-color: #25D366; font-size: 1.5rem; }

.float-phone { background-color: #007AFF; font-size: 1.2rem; }

.float-top { background-color: var(--black); font-size: 1.2rem; cursor: pointer; }



.mobile-menu-overlay {

  position: fixed;

  top: 0; left: 0; width: 100%; height: 100vh;

  background: rgba(0,0,0,0.5);

  z-index: 1050;

  display: none;

}



.mobile-menu-overlay.show {

  display: block;

}



.mobile-menu-content {

  width: 280px;

  height: 100%;

  background: var(--white);

  margin-left: auto;

}



/* Fix navigation list bullets & alignment */

.nav-list {

  list-style: none !important;

  list-style-type: none !important;

  padding-left: 0 !important;

  margin: 0 !important;

}



.nav-list li {

  list-style: none !important;

  display: inline-block;

}





/* Add top padding to hero section equal to header height */

.hero-section {

  min-height: 600px;

  height: auto;

  padding-top: 120px; /* Prevents navbar overlap */

  padding-bottom: 80px;

  background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;

}





/* Ensure about section image stays in bounds */

.about-img-wrapper img {

  max-width: 100%;

  height: auto;

  display: block;

}





/* Helper Font Classes */

.fs-7 { font-size: 0.825rem; }

.fs-8 { font-size: 0.725rem; }



/* Top Bar Styles */

.top-bar {

  background-color: #121212 !important;

}



/* Header & Nav Adjustments */

.header-nav {

  position: sticky;

  top: 0;

  z-index: 1030;

}



.nav-list {

  list-style: none !important;

  padding: 0 !important;

  margin: 0 !important;

}



.nav-list li {

  list-style: none !important;

}



/* Mega Menu Dropdown */

.mega-menu-dropdown:hover .mega-menu {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}



.mega-menu {

  position: absolute;

  top: 100%;

  left: -50px;

  width: 420px;

  opacity: 0;

  visibility: hidden;

  transform: translateY(10px);

  transition: all 0.3s ease;

  z-index: 1050;

}



.mega-menu a:hover {

  color: #557A68 !important;

  padding-left: 3px;

  transition: all 0.2s ease;

}



/* Hero Background Slider */

.hero-section {

  position: relative;

  min-height: 560px;

  overflow: hidden;

  display: flex;

  align-items: center;

}



.hero-slider {

  position: absolute;

  top: 0; left: 0; width: 100%; height: 100%;

  z-index: 0;

}



.hero-slider .slide {

  position: absolute;

  top: 0; left: 0; width: 100%; height: 100%;

  background-size: cover;

  background-position: center;

  opacity: 0;

  transition: opacity 1.2s ease-in-out;

}



.hero-slider .slide.active {

  opacity: 1;

}



.hero-bg-overlay {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: 0;

  background: linear-gradient(180deg, rgba(18, 18, 18, 0.75) 0%, rgba(18, 18, 18, 0.5) 100%);

  z-index: 1;

}



/* Hero Form Styling */

.hero-quick-form {

  background: rgba(255, 255, 255, 0.98) !important;

  backdrop-filter: blur(8px);

}



/* Quick Booking Form Full Width & Responsiveness */

.hero-quick-form {

  width: 100% !important;

  max-width: 100% !important;

  background: rgba(255, 255, 255, 0.98) !important;

  backdrop-filter: blur(8px);

  box-sizing: border-box !important;

}



.hero-quick-form .form-control-custom {

  width: 100% !important;

  display: block;

  padding: 10px 14px;

  font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */

  border: 1px solid var(--border-color, #e2e8f0);

  border-radius: 10px;

  background-color: #FFFFFF;

  box-sizing: border-box !important;

}



.hero-quick-form .form-control-custom:focus {

  border-color: #2e7d32;

  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);

  outline: none;

}



/* Mobile Media Query for Extra Spacing & Fit */

@media screen and (max-width: 575.98px) {

  .hero-quick-form {

    padding: 1.25rem 1rem !important; /* Prevents edge overflowing on tiny screens like iPhone SE */

    margin: 0 auto;

  }

  

  .hero-quick-form h2 {

    font-size: 1.15rem !important;

  }



  .hero-quick-form p {

    font-size: 0.8rem !important;

    margin-bottom: 0.85rem !important;

  }

}



/* Contact Section Responsive Fixes */

.contact-form-card {

  width: 100%;

  box-sizing: border-box;

}



.contact-form-card .form-control-custom {

  width: 100% !important;

  padding: 10px 8px;

  border-radius: 8px;

  border: 1px solid #e0e0e0;

  background-color: #ffffff;

  font-size: 0.9rem;

}



.contact-form-card .form-control-custom:focus {

  border-color: #2e7d32;

  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);

  outline: none;

}



.contact-icon-box {

  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(46, 125, 50, 0.08);

  border-radius: 50%;

}



@media (max-width: 767.98px) {

  .contact-form-card {

    padding: 20px !important;

  }

}



/* Contact Icon Fixes */

.contact-icon-box {

  width: 38px;

  height: 38px;

  min-width: 38px;

  min-height: 38px;

  background-color: rgba(46, 125, 50, 0.1);

  border-radius: 50%;

  margin-top: 2px; /* Fine-tune pixel alignment with the first line of text */

}







/* Ambient Background Glows */

.about-bg-glow {

  position: absolute;

  width: 320px;

  height: 320px;

  border-radius: 50%;

  filter: blur(90px);

  opacity: 0.15;

  pointer-events: none;

  z-index: 0;

}



.about-bg-glow.glow-1 {

  background: #2e7d32;

  top: -50px;

  left: -50px;

}



.about-bg-glow.glow-2 {

  background: #a5d6a7;

  bottom: -50px;

  right: -50px;

}



/* Media Stack Frame */

.about-media-stack .main-img-box img {

  height: 480px;

  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);

}



.about-media-stack:hover .main-img-box img {

  transform: scale(1.04);

}



.about-media-stack .secondary-img-box {

  width: 200px;

  height: 150px;

  z-index: 2;

  transition: transform 0.4s ease;

}



.about-media-stack .secondary-img-box img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.about-media-stack:hover .secondary-img-box {

  transform: translateY(-8px);

}



/* Glassmorphism Badge */

.glass-badge {

  background: rgba(255, 255, 255, 0.88) !important;

  backdrop-filter: blur(12px);

  -webkit-backdrop-filter: blur(12px);

  border-color: rgba(255, 255, 255, 0.6) !important;

  z-index: 3;

}



.badge-icon-circle {

  width: 42px;

  height: 42px;

  min-width: 42px;

}



/* Feature Cards Modern Layout Fix */

.feature-card-modern {

  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  box-sizing: border-box;

}



.feature-card-modern:hover {

  transform: translateY(-3px);

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);

  border-color: #2e7d32 !important;

}



/* Icon Box Dimensions and Perfect Centering */

.feature-icon-box {

  width: 44px;

  height: 44px;

  min-width: 44px;

  min-height: 44px;

  background-color: rgba(46, 125, 50, 0.1) !important;

  transition: all 0.3s ease;

}



.feature-card-modern:hover .feature-icon-box {

  background-color: #2e7d32 !important;

  color: #ffffff !important;

}





/* Ambient Service Section Background Glows */

.service-glow {

  position: absolute;

  width: 380px;

  height: 380px;

  border-radius: 50%;

  filter: blur(100px);

  opacity: 0.12;

  pointer-events: none;

  z-index: 0;

}



.service-glow-1 {

  background: #2e7d32;

  top: 10%;

  left: -50px;

}



.service-glow-2 {

  background: #25d366;

  bottom: 10%;

  right: -50px;

}



/* Service Card Hover & Glow */

.hover-glow {

  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

}



.hover-glow:hover {

  transform: translateY(-6px);

  box-shadow: 0 15px 30px rgba(46, 125, 50, 0.12) !important;

  border-color: rgba(46, 125, 50, 0.3) !important;

}



/* Image Smooth Zoom */

.service-img {

  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);

}



.hover-glow:hover .service-img {

  transform: scale(1.08);

}



/* Action SVG Buttons */

.action-btn-svg {

  width: 32px;

  height: 32px;

  border-radius: 50%;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  transition: all 0.25s ease;

}



.btn-call {

  background-color: #f0fdf4;

  color: #2e7d32;

  border: 1px solid rgba(46, 125, 50, 0.2);

}



.btn-call:hover {

  background-color: #2e7d32;

  color: #ffffff;

  transform: scale(1.08);

}



.btn-wa {

  background-color: #e8faf0;

  color: #25d366;

  border: 1px solid rgba(37, 211, 102, 0.2);

}



.btn-wa:hover {

  background-color: #25d366;

  color: #ffffff;

  transform: scale(1.08);

}



.fs-8 {

  font-size: 0.75rem;

}



/* Custom Badges Formatting Fix */

.custom-card-badge {

  background-color: rgba(33, 37, 41, 0.8) !important;

  color: #ffffff !important;

  font-size: 0.72rem !important;

  font-weight: 600 !important;

  padding: 6px 12px !important;

  letter-spacing: 0.3px;

}



.custom-card-badge.bg-success {

  background-color: #2e7d32 !important;

}



.custom-fs-7 {

  font-size: 0.825rem;

}



/* Action Icon Button Container & Spacing Fix */

.action-btn-group {

  display: flex;

  align-items: center;

  gap: 8px !important; /* Fixes spacing between Call and WhatsApp icons */

}



.action-btn-svg {

  width: 34px;

  height: 34px;

  border-radius: 50%;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  transition: all 0.25s ease;

  flex-shrink: 0;

}



.btn-call {

  background-color: #f0fdf4;

  color: #2e7d32;

  border: 1px solid rgba(46, 125, 50, 0.2);

}



.btn-call:hover {

  background-color: #2e7d32;

  color: #ffffff;

  transform: translateY(-2px);

}



.btn-wa {

  background-color: #e8faf0;

  color: #25d366;

  border: 1px solid rgba(37, 211, 102, 0.2);

}



.btn-wa:hover {

  background-color: #25d366;

  color: #ffffff;

  transform: translateY(-2px);

}



/* Background Glow Effects */

.service-glow {

  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  filter: blur(100px);

  opacity: 0.12;

  pointer-events: none;

  z-index: 0;

}



.service-glow-1 {

  background: #2e7d32;

  top: 10%;

  left: -50px;

}



.service-glow-2 {

  background: #25d366;

  bottom: 10%;

  right: -50px;

}







/* Hover Cards */

.hover-glow {

  transition: all 0.35s ease;

}



.hover-glow:hover {

  transform: translateY(-5px);

  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08) !important;

}



.service-img {

  transition: transform 0.5s ease;

}



.hover-glow:hover .service-img {

  transform: scale(1.05);

}







/* Ambient Background Glows for Why Choose Us Section */

.why-glow {

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.12;

    pointer-events: none;

    z-index: 0;

}



.why-glow-1 {

    background: #2e7d32;

    top: 5%;

    left: -40px;

}



.why-glow-2 {

    background: #25d366;

    bottom: 5%;

    right: -40px;

}



/* Card Styles & Micro-Interactions */

.why-card {

    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

    border-color: rgba(0, 0, 0, 0.06) !important;

}



.why-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background: linear-gradient(90deg, #2e7d32, #25d366);

    opacity: 0;

    transition: opacity 0.35s ease;

}



.why-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.1) !important;

    border-color: rgba(46, 125, 50, 0.25) !important;

}



.why-card:hover::before {

    opacity: 1;

}



/* Icon Container Styling */

.icon-wrapper {

    width: 68px;

    height: 68px;

    background: radial-gradient(circle at 30% 30%, #f0fdf4, #e8faf0);

    border: 1px solid rgba(46, 125, 50, 0.15);

    transition: all 0.35s ease;

}



.why-card:hover .icon-wrapper {

    background: #2e7d32;

    border-color: #2e7d32;

    transform: scale(1.08) rotate(4deg);

}



.why-card:hover .icon-wrapper i {

    color: #ffffff !important;

}



.leading-relaxed {

    line-height: 1.6;

}



.custom-fs-7 {

    font-size: 0.825rem;

}





/* Ambient Background Glows */

.pkg-glow {

  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  filter: blur(100px);

  opacity: 0.12;

  pointer-events: none;

  z-index: 0;

}



.pkg-glow-1 {

  background: #2e7d32;

  top: 15%;

  right: -50px;

}



.pkg-glow-2 {

  background: #25d366;

  bottom: 10%;

  left: -50px;

}



/* Package Card Styles */

.package-card {

  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;

}



.package-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;

}



/* Featured Package Card Accent (Desktop Scaling) */

@media (min-width: 992px) {

  .featured-pkg-card {

    transform: scale(1.04);

  }

  .featured-pkg-card:hover {

    transform: scale(1.06) translateY(-6px);

  }

}



/* Featured Badge Ribbon */

.popular-ribbon {

  position: absolute;

  top: -12px;

  left: 50%;

  transform: translateX(-50%);

  background: linear-gradient(135deg, #2e7d32, #1b5e20);

  color: #ffffff;

  font-size: 0.7rem;

  font-weight: 700;

  letter-spacing: 0.8px;

  padding: 4px 16px;

  border-radius: 20px;

  text-transform: uppercase;

}



/* Package Action SVG Buttons */

.pkg-action-btn {

  width: 38px;

  height: 38px;

  border-radius: 8px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  transition: all 0.25s ease;

  flex-shrink: 0;

}



.btn-call {

  background-color: #f0fdf4;

  color: #2e7d32;

  border: 1px solid rgba(46, 125, 50, 0.2);

}



.btn-call:hover {

  background-color: #2e7d32;

  color: #ffffff;

}



.btn-wa {

  background-color: #e8faf0;

  color: #25d366;

  border: 1px solid rgba(37, 211, 102, 0.2);

}



.btn-wa:hover {

  background-color: #25d366;

  color: #ffffff;

}



.custom-fs-7 {

  font-size: 0.825rem;

}



.custom-fs-8 {

  font-size: 0.75rem;

}





/* ==================== CTA SECTION FIXES ==================== */



/* Ambient Light Blur Background Glows */

.cta-glow {

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.12;

    pointer-events: none;

    z-index: 0;

}

.cta-glow-1 { background: #2e7d32; top: -10%; left: 5%; }

.cta-glow-2 { background: #25d366; bottom: -10%; right: 5%; }



/* Card Outer Container */

.cta-card {

    border-color: rgba(0, 0, 0, 0.08) !important;

}



/* Typography Enhancements */

.cta-heading {

    color: #1a1a1a !important;

    line-height: 1.25;

    letter-spacing: -0.02em;

}



.cta-subtext {

    line-height: 1.6;

    color: #555555 !important;

}



/* Trust Indicators Layout & Icon Alignment */

.trust-item {

    font-size: 0.85rem;

    font-weight: 500;

    color: #4a5568;

}



.trust-item i {

    flex-shrink: 0;

}



/* Primary "Book Appointment Now" Button */

.btn-cta-main {

    background-color: #2e7d32 !important;

    border-color: #2e7d32 !important;

    color: #ffffff !important;

    transition: all 0.3s ease;

}



.btn-cta-main:hover {

    background-color: #1b5e20 !important;

    border-color: #1b5e20 !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(46, 125, 50, 0.25) !important;

}



.btn-cta-main i {

    color: #ffffff !important;

}



/* Call Us Button Fixes */

.btn-cta-call {

    background-color: #ffffff !important;

    color: #2e7d32 !important;

    border: 1.5px solid #2e7d32 !important;

    transition: all 0.25s ease;

}



.btn-cta-call:hover {

    background-color: #2e7d32 !important;

    color: #ffffff !important;

}



/* WhatsApp Button */

.btn-cta-wa {

    background-color: #25d366 !important;

    color: #ffffff !important;

    border: 1.5px solid #25d366 !important;

    transition: all 0.25s ease;

}



.btn-cta-wa:hover {

    background-color: #1ebd58 !important;

    border-color: #1ebd58 !important;

}



/* Utility Font Size */

.custom-fs-8 {

    font-size: 0.825rem;

}





/* ==================== NEARBY LOCATIONS FIXES ==================== */



/* Location Cards */

.location-card {

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    border: 1px solid rgba(0, 0, 0, 0.08) !important;

    min-height: 160px;

}



.location-card:hover {

    transform: translateY(-6px);

    border-color: rgba(46, 125, 50, 0.3) !important;

    box-shadow: 0 12px 24px rgba(46, 125, 50, 0.1) !important;

}



/* Icon Container Circle Fix */

.location-icon {

    width: 52px !important;

    height: 52px !important;

    min-width: 52px !important;

    min-height: 52px !important;

    background-color: #f0fdf4 !important;

    border: 1px solid rgba(46, 125, 50, 0.2) !important;

    transition: all 0.3s ease;

}



.location-card:hover .location-icon {

    background-color: #2e7d32 !important;

    border-color: #2e7d32 !important;

    transform: scale(1.08);

}



.location-card:hover .location-icon i {

    color: #ffffff !important;

}



/* Utility Classes */

.custom-fs-8 {

    font-size: 0.775rem !important;

}



/* ==================== GRID ROW SPACING FIX ==================== */



/* Add row gap for grid items */

#nearby-locations .row {

    row-gap: 2.5rem !important; /* Forces 24px vertical gap between row 1 and row 2 */

}



/* Fix Card Height & Prevent Overflow Over Bottom Text */

#nearby-locations .location-card {

    height: 100% !important;

    min-height: 170px !important;

    margin-bottom: 0 !important;

}



/* Give the bottom contact text clear margin spacing above it */

#nearby-locations .location-footnote {

    margin-top: 2.5rem !important;

    padding-top: 1rem !important;

    position: relative;

    z-index: 2;

}





/* ==================== MODERN FOOTER STYLING ==================== */



.site-footer {

    background-color: #121417 !important;

}



/* Headings & Letter Spacing */

.tracking-wider {

    letter-spacing: 0.08em;

}



.tracking-widest {

    letter-spacing: 0.15em;

}



.footer-heading {

    position: relative;

    padding-bottom: 0.5rem;

}



.footer-heading::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 28px;

    height: 2px;

    background-color: #2e7d32;

    border-radius: 2px;

}



/* Clean Links Without Bullets */

.footer-nav-links .footer-link {

    color: #9ca3af;

    text-decoration: none;

    font-size: 0.9rem;

    transition: all 0.25s ease;

    display: inline-block;

}



.footer-nav-links .footer-link:hover {

    color: #ffffff !important;

    transform: translateX(4px);

}



/* Social Media Icons */

.social-icon-btn {

    width: 38px;

    height: 38px;

    background-color: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.1);

    transition: all 0.3s ease;

    font-size: 0.9rem;

}



.social-icon-btn:hover {

    background-color: #2e7d32;

    border-color: #2e7d32;

    transform: translateY(-3px);

}



/* Bottom Links */

.footer-sublink {

    transition: color 0.2s ease;

}



.footer-sublink:hover {

    color: #2e7d32 !important;

}



/* Map Card */

.map-card-wrapper {

    line-height: 0;

}





/* ==================== CTA SECTION ISOLATION FIXES ==================== */



/* Prevent Global CSS from breaking CTA layout */

#cta-banner * {

    box-sizing: border-box;

}



/* Fix Badge Alignment */

#cta-banner .cta-badge {

    display: inline-flex !important;

    align-items: center !important;

    gap: 0.5rem !important;

    background-color: #e8f5e9 !important;

    color: #2e7d32 !important;

    padding: 0.4rem 1rem !important;

    border-radius: 50rem !important;

    font-size: 0.8rem !important;

    font-weight: 600 !important;

}



/* Fix Trust Indicators Spacing & Icons */

#cta-banner .trust-indicator {

    display: inline-flex !important;

    align-items: center !important;

    gap: 0.5rem !important;

    font-size: 0.85rem !important;

    color: #555555 !important;

    font-weight: 500 !important;

}



#cta-banner .trust-indicator i {

    font-size: 1rem !important;

    color: #2e7d32 !important;

    margin-right: 0 !important; /* Prevents global icon margin bugs */

}



/* Primary "Book Appointment Now" Button Overrides */

#cta-banner .btn-cta-primary {

    background-color: #2e7d32 !important;

    border: 1px solid #2e7d32 !important;

    color: #ffffff !important;

    font-weight: 700 !important;

    padding: 0.85rem 1.25rem !important;

    border-radius: 0.6rem !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 0.6rem !important;

    text-decoration: none !important;

    transition: all 0.25s ease-in-out !important;

    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2) !important;

}



#cta-banner .btn-cta-primary:hover {

    background-color: #1b5e20 !important;

    border-color: #1b5e20 !important;

    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.3) !important;

}



#cta-banner .btn-cta-primary i {

    color: #ffffff !important;

    font-size: 1.1rem !important;

    margin: 0 !important;

}



/* Secondary "Call Us" Button Overrides */

#cta-banner .btn-cta-outline {

    background-color: #ffffff !important;

    border: 1.5px solid #2e7d32 !important;

    color: #2e7d32 !important;

    font-weight: 600 !important;

    padding: 0.6rem 1rem !important;

    border-radius: 0.5rem !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 0.5rem !important;

    text-decoration: none !important;

    transition: all 0.25s ease-in-out !important;

}



#cta-banner .btn-cta-outline:hover {

    background-color: #2e7d32 !important;

    color: #ffffff !important;

}



#cta-banner .btn-cta-outline i {

    color: inherit !important;

    font-size: 0.95rem !important;

    margin: 0 !important;

}



/* Secondary "WhatsApp" Button Overrides */

#cta-banner .btn-cta-whatsapp {

    background-color: #25d366 !important;

    border: 1.5px solid #25d366 !important;

    color: #ffffff !important;

    font-weight: 600 !important;

    padding: 0.6rem 1rem !important;

    border-radius: 0.5rem !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 0.5rem !important;

    text-decoration: none !important;

    transition: all 0.25s ease-in-out !important;

}



#cta-banner .btn-cta-whatsapp:hover {

    background-color: #1ebd58 !important;

    border-color: #1ebd58 !important;

}



#cta-banner .btn-cta-whatsapp i {

    color: #ffffff !important;

    font-size: 1.1rem !important;

    margin: 0 !important;

}





/* ==================== PACKAGES BUTTON FIXES ==================== */



/* Package Action Container Spacing */

.package-card-actions {

    display: flex !important;

    align-items: center !important;

    gap: 0.5rem !important;

    width: 100% !important;

    margin-top: 1.5rem !important;

    padding-top: 1rem !important;

    border-top: 1px dashed rgba(0, 0, 0, 0.08) !important;

}



/* Primary "Book Package" Button Fix */

.btn-book-pkg {

    flex: 1 !important;

    background-color: #2e7d32 !important;

    border: 1px solid #2e7d32 !important;

    color: #ffffff !important;

    font-weight: 600 !important;

    font-size: 0.875rem !important;

    padding: 0.65rem 1rem !important;

    border-radius: 0.5rem !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 0.4rem !important;

    text-decoration: none !important;

    transition: all 0.25s ease !important;

    box-shadow: 0 2px 6px rgba(46, 125, 50, 0.15) !important;

}



.btn-book-pkg:hover,

.btn-book-pkg:focus {

    background-color: #1b5e20 !important;

    border-color: #1b5e20 !important;

    color: #ffffff !important;

    text-decoration: none !important;

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25) !important;

}



.btn-book-pkg i {

    color: #ffffff !important;

    font-size: 0.8rem !important;

    transition: transform 0.2s ease !important;

}



.btn-book-pkg:hover i {

    transform: translateX(3px);

}



/* Icon Action Buttons (Phone & WhatsApp) */

.btn-pkg-icon {

    width: 38px !important;

    height: 38px !important;

    min-width: 38px !important;

    border-radius: 0.5rem !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    background-color: #f0fdf4 !important;

    border: 1px solid rgba(46, 125, 50, 0.2) !important;

    color: #2e7d32 !important;

    text-decoration: none !important;

    transition: all 0.2s ease !important;

}



.btn-pkg-icon:hover {

    background-color: #2e7d32 !important;

    color: #ffffff !important;

    border-color: #2e7d32 !important;

}



.btn-pkg-icon i {

    font-size: 0.9rem !important;

}





/* ==================== MENU PRICE SECTION STYLES ==================== */



.price-card {

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    border: 1px solid rgba(0, 0, 0, 0.08) !important;

}



.price-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 12px 24px rgba(46, 125, 50, 0.12) !important;

    border-color: rgba(46, 125, 50, 0.3) !important;

}



.price-card-img {

    height: 190px;

    background-color: #f3f4f6;

}



.price-card-img img {

    transition: transform 0.4s ease;

}



.price-card:hover .price-card-img img {

    transform: scale(1.06);

}



.duration-select {

    border-color: rgba(46, 125, 50, 0.25) !important;

    border-radius: 0.5rem !important;

    font-weight: 500 !important;

    cursor: pointer;

}



.duration-select:focus {

    border-color: #2e7d32 !important;

    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.15) !important;

}



.btn-price-book {

    background-color: #2e7d32 !important;

    border: 1px solid #2e7d32 !important;

    color: #ffffff !important;

    font-weight: 600 !important;

    font-size: 0.875rem !important;

    padding: 0.6rem 1rem !important;

    border-radius: 0.5rem !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 0.4rem !important;

    text-decoration: none !important;

    transition: all 0.2s ease !important;

}



.btn-price-book:hover {

    background-color: #1b5e20 !important;

    border-color: #1b5e20 !important;

    color: #ffffff !important;

}



.btn-price-call {

    width: 40px !important;

    height: 40px !important;

    min-width: 40px !important;

    border-radius: 0.5rem !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    background-color: #ffffff !important;

    border: 1.5px solid #2e7d32 !important;

    color: #2e7d32 !important;

    text-decoration: none !important;

    transition: all 0.2s ease !important;

}



.btn-price-call:hover {

    background-color: #2e7d32 !important;

    color: #ffffff !important;

}





/* ==================== ENHANCED DURATION SELECTOR ==================== */



.duration-box {

    background-color: #f8fafc !important;

    border: 1.5px solid #e2e8f0 !important;

    transition: all 0.25s ease;

}



.price-card:hover .duration-box {

    border-color: rgba(46, 125, 50, 0.4) !important;

    background-color: #f0fdf4 !important;

}



.duration-select {

    cursor: pointer;

    font-size: 0.95rem !important;

    padding-left: 0.25rem !important;

}



/* WhatsApp Book Button */

.btn-price-book {

    background-color: #25d366 !important;

    color: #ffffff !important;

    font-weight: 700 !important;

    font-size: 0.9rem !important;

    padding: 0.65rem 1rem !important;

    border-radius: 0.5rem !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 0.5rem !important;

    transition: all 0.25s ease !important;

    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2) !important;

}



.btn-price-book:hover {

    background-color: #1ebd58 !important;

    transform: translateY(-2px);

    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.3) !important;

}



/* Custom spacing class for form elements */

.mb-form-gap {

  margin-bottom: 1.25rem !important; /* Adjust spacing as needed */

}



/* Custom horizontal gap between inputs */

.field-gap {

  padding-left: 12px !important;

  padding-right: 12px !important;

}





/* ==================== MOBILE STICKY CTA BAR ==================== */



.mobile-sticky-cta {

  z-index: 1040 !important; /* Keep above regular content but below full modals */

  backdrop-filter: blur(10px);

  background-color: rgba(255, 255, 255, 0.95) !important;

  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;

  /* Safe area padding for modern iPhones/Android navigation bar */

  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px)) !important;

}



/* Ensure bottom padding on body so sticky bar doesn't cover footer content */

@media (max-width: 991.98px) {

  body {

    padding-bottom: 70px !important;

  }



  .mobile-sticky-cta .btn {

    font-size: 0.9rem;

    letter-spacing: 0.2px;

  }



  .mobile-sticky-cta .btn-outline-dark {

    border-color: #e2e8f0;

    color: #1e293b;

    background-color: #f8fafc;

  }



  .mobile-sticky-cta .btn-outline-dark:active {

    background-color: #e2e8f0;

  }

}











/* 1. Prevent unwanted horizontal scrolling across small screens */

html, body {

    max-width: 100%;

    overflow-x: hidden;

}



/* 2. Responsive viewport height fix for iOS Safari / Modern Mobile Browsers */

.mobile-menu-overlay {

    height: 100vh;

    height: 100dvh; /* Dynamic viewport height */

    z-index: 1060;  /* Higher than sticky action bar */

}



/* 3. Add bottom clearance for fixed CTA bar on screens < 992px */

@media (max-width: 991.98px) {

    body {

        padding-bottom: 65px !important;

    }



    .bottom-sticky-cta {

        position: fixed;

        bottom: 0;

        left: 0;

        right: 0;

        width: 100%;

        z-index: 1040;

        background: #ffffff;

        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);

    }

}



/* 4. Touch target optimization for buttons */

.mobile-nav-link, 

.action-btn-svg, 

.btn-close {

    min-height: 44px;

    display: inline-flex;

    align-items: center;

}





/* FontAwesome Font-Display Overrides */

@font-face {

  font-family: 'Font Awesome 6 Free';

  font-style: normal;

  font-weight: 900;

  font-display: block; /* 'block' or 'swap' prevents invisible icon flickering */

  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');

}



@font-face {

  font-family: 'Font Awesome 6 Free';

  font-style: normal;

  font-weight: 400;

  font-display: block;

  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-regular-400.woff2') format('woff2');

}



@font-face {

  font-family: 'Font Awesome 6 Brands';

  font-style: normal;

  font-weight: 400;

  font-display: block;

  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2');

}



    /* Breadcrumb Hero Header (Height: 200px) */
        .page-header-banner {
            height: 200px;
            background: linear-gradient(180deg, #181818 0%, #222222 100%);
            color: #FFFFFF;
            display: flex;
            flex-direction: column;
            justify-content: space-around; /* Distributes vertical space evenly */
            align-items: center;
            padding: 20px 0;
            text-align: center;
        }

        .page-header-banner h1 {
            font-size: 2.2rem;
            margin: 0;
            font-weight: 700;
            letter-spacing: 1px;
            color: #FFFFFF;
        }

        .breadcrumb-nav {
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .breadcrumb-nav a {
            color: #A5D6A7;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .breadcrumb-nav a:hover {
            color: #FFFFFF;
        }

        .breadcrumb-nav .separator {
            margin: 0 8px;
            color: #6F6F6F;
        }

        .breadcrumb-nav .active {
            color: #ECECEC;
        }

        /* Policy Content Layout */
        .policy-section {
            padding: 60px 0;
            background-color: #FFFFFF;
        }

        .policy-card {
            background: #FFFFFF;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding: 40px;
            border: 1px solid #ECECEC;
        }

        .policy-effective-date {
            font-size: 0.95rem;
            color: #6F6F6F;
            font-weight: 600;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #ECECEC;
        }

        .policy-block {
            margin-bottom: 35px;
        }

        .policy-block:last-child {
            margin-bottom: 0;
        }

        .policy-block h2 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #181818;
            margin-bottom: 12px;
        }

        .policy-block p {
            color: #4A4A4A;
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .policy-block ul {
            padding-left: 20px;
            margin-bottom: 12px;
        }

        .policy-block ul li {
            color: #4A4A4A;
            line-height: 1.7;
            margin-bottom: 6px;
        }

        .contact-details-box {
            background-color: #F8F8F8;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #2E7D32;
            margin-top: 15px;
        }

        @media (max-width: 576px) {
            .page-header-banner h1 {
                font-size: 1.75rem;
            }
            .policy-card {
                padding: 25px 18px;
            }
        }
        
        
 /* Gallery Item Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 220px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    animation: zoomIn 0.25s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: #2E7D32;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}       /* Gallery Item Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 220px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    animation: zoomIn 0.25s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: #2E7D32;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}