/* ==========================================================================
   1. CORE VARIABLES & FONTS
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #29f706; /* Custom Primary Green */
  --primary-hover: #3d8032; /* Darker Green for interactive hover states */
  --dark-bg: #003d1e; /* Deep Forest Green for Topbar & Footer */
  --light-bg: #ffffff;
  --text-dark: #002211; /* Deep green-black text */
  --text-muted: #556655;
  --font-heading: "Playfair Display", serif;
  --font-base: "Poppins", sans-serif;
  --transition-smooth: all 0.3s ease-in-out;
}

/* Global resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-base);
  background-color: #fcfdfc;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}
.heading {
  font-family: var(--font-heading);
  color: var(--dark-bg);
}
.glass-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 10px;
  z-index: 9999;
  background: transparent !important;
}

.glass-capsule {
  background: linear-gradient(
    100deg,
    rgba(0, 31, 16, 0.64),
    rgba(16, 57, 26, 0.42) 52%,
    rgba(0, 25, 13, 0.58)
  ) !important;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.38) !important; /* Top specular highlight */
  border-radius: 50px;
  padding: 4px 24px;
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.37),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
main {
  padding-top: 95px;
}
.logo-symbol {
  color: #10b981;
  font-size: 1.3rem;
}

.logo-text {
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.logo-text strong {
  color: #10b981;
}

.glass-header-fixed .nav-link {
  color: #fff !important;
  font-size: 0.88rem;
  padding: 8px 16px !important;
  border-radius: 20px;
  transition: all 0.25s ease;
  /* text-shadow: 0 1px 2px rgba(0,0,0,0.4); */
}

.glass-header-fixed .nav-link:hover {
  color: #29f706 !important;
  /* background: rgba(255, 255, 255, 0.1); */
}

.glass-header-fixed .nav-link.active-link {
  color: #29f706 !important;
  /* background: #059669;  */
  font-weight: 600;
}

/* Dropdown Menu styling */
.custom-dropdown-scroll {
  max-height: 340px;
  overflow-y: auto;
  background: linear-gradient(
    145deg,
    rgba(4, 45, 23, 0.96),
    rgba(18, 79, 38, 0.92)
  ) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(184, 255, 192, 0.28) !important;
  border-radius: 16px;
  padding: 8px;
  margin-top: 8px !important;
  box-shadow:
    0 16px 36px rgba(0, 20, 9, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.custom-dropdown-scroll .dropdown-item {
  color: #f4fff5;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.custom-dropdown-scroll .dropdown-item:hover {
  background: rgba(117, 232, 109, 0.16);
  color: #b8ffb0;
}

.custom-dropdown-scroll::-webkit-scrollbar {
  width: 7px;
}

.custom-dropdown-scroll::-webkit-scrollbar-thumb {
  background: rgba(202, 255, 192, 0.6);
  border-radius: 999px;
}

.custom-dropdown-scroll::-webkit-scrollbar-track {
  background: rgba(0, 25, 12, 0.24);
  border-radius: 999px;
}

/* Phone & Action Button */
.phone-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.25s ease;
}
.phone-link:hover {
  color: #32f610;
}
.btn-capsule-cta {
  background: #22bf07;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 13px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(4, 243, 4, 0.3);
}

.btn-capsule-cta:hover {
  background: #1eb603;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(33, 185, 16, 0.5);
}

/* Desktop Hover Trigger Dropdown */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    margin-top: 0 !important; /* Removes gap */
  }
}
@media (max-width: 991.98px) {
  /* Navigation Drawer Layout changes for Mobile viewports */
  .custom-navbar .navbar-collapse {
    background-color: #ffffff;
    padding: 1rem 0;
    max-height: 80vh; /* Keeps mobile menu from overflowing screen */
    overflow-y: auto;
  }

  .custom-navbar .nav-link.active-link::after {
    display: none; /* Hide baseline border tags inside vertical navigation menus */
  }

  .custom-navbar .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 4px;
  }

  .custom-navbar .nav-link:hover {
    background-color: #f4fbf4;
  }

  /* --- FIXED DROPDOWN SCROLL FOR MOBILE --- */
  .custom-dropdown-scroll {
    max-height: 260px !important; /* Forces fixed box height on mobile */
    overflow-y: auto !important;   /* Restores vertical scrolling */
    -webkit-overflow-scrolling: touch !important; /* Enables smooth iOS/Android touch momentum */
    touch-action: pan-y !important;
    
    background-color: #fcfdfc !important;
    border-left: 3px solid var(--primary-color);
    margin: 0.5rem 1rem;
    padding: 8px 0;
    box-shadow: none !important;
  }
.navbar-collapse {
    max-height: 80vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
  }
  .dropdown-menu-item {
    padding: 0.5rem 1rem;
  }

  .utility-actions {
    border-top: 1px solid #eeeeee;
    margin-top: 0.5rem;
  }

  .footer-links a:hover {
    transform: none; /* Disable shift animations on touchscreen gestures */
  }
}

@media (max-width: 991.98px) {
  .custom-dropdown-scroll {
    max-height: 250px !important;
    overflow-y: scroll !important; /* Force vertical scrollbar container */
    -webkit-overflow-scrolling: touch !important;
    
    /* PREVENTS BACKGROUND PAGE FROM SCROLLING WHEN SWIPING INSIDE DROPDOWN */
    overscroll-behavior: contain !important;
    touch-action: pan-y !important;
    
    background-color: #fcfdfc !important;
    border-left: 3px solid var(--primary-color);
    margin: 0.5rem 1rem;
    padding: 8px 0;
    box-shadow: none !important;
  }
  .navbar-collapse {
    max-height: 80vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
  }
}

.header-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-brand:hover .header-logo-img {
  transform: scale(1.03); /* Subtle zoom effect on hover */
}

/* Mobile Responsiveness for Logo */
@media (max-width: 768px) {
  .header-logo-img {
    height: 42px; /* Slightly smaller logo on mobile screens */
  }
  .glass-capsule {
    padding: 8px 24px !important;
  }
}

.navbar-brand {
  display: flex !important;
  align-items: center !important;
  padding: 10px !important;
  margin-right: 1.5rem !important;
  flex-shrink: 0; /* Prevents flexbox from squishing the logo */
}

/* 2. Style the image cleanly with negative margins for transparent PNG whitespace */
.header-logo-img {
  /* Increase max height so it grows naturally */
  max-height: 44px !important;
  height: auto !important;
  width: auto !important;

  /* Trim off transparent PNG padding around the artwork if needed */
  /* margin-top: -6px; */
  /* margin-bottom: -6px; */

  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.65));
}

.navbar-brand:hover .header-logo-img {
  transform: scale(1.04);
}

/* Ensure mobile header remains balanced */
@media (max-width: 991px) {
  .header-logo-img {
    max-height: 50px !important;
  }
}
/* ==========================================================================
   3. FOOTER STYLING
   ========================================================================== */
.custom-footer {
  background-color: var(--dark-bg);
  font-size: 0.9rem;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #22bf07;
}

.footer-desc {
  line-height: 1.6;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.partner-link {
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.partner-link:hover {
  color: #ffffff;
}

/* Social Buttons */
.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.social-icon-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Newsletter Input Form Layout matches UI from Image 2 */
.newsletter-form .input-group {
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  padding: 3px;
}

.newsletter-form .form-control {
  background-color: transparent;
  font-size: 0.88rem;
  color: #333333 !important;
}

.newsletter-form .form-control::placeholder {
  color: #999999;
}

.btn-newsletter-submit {
  background-color: var(--primary-color) !important;
  border-radius: 6px !important;
  padding: 0.5rem 1rem !important;
  transition: var(--transition-smooth);
}

.btn-newsletter-submit:hover {
  background-color: var(--primary-hover) !important;
}

/* ==========================================================================
   4. RESPONSIVE MEDIA QUERIES (MOBILE OPTIMIZATIONS)
   ========================================================================== */
@media (max-width: 991.98px) {
  /* Navigation Drawer Layout changes for Mobile viewports */
  .custom-navbar .navbar-collapse {
    background-color: #ffffff;
    padding: 1rem 0;
  }

  .custom-navbar .nav-link.active-link::after {
    display: none; /* Hide baseline border tags inside vertical navigation menus */
  }

  .custom-navbar .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 4px;
  }

  .custom-navbar .nav-link:hover {
    background-color: #f4fbf4;
  }

  /* Nests the 14 products fluidly underneath the mobile parent tab link click toggles */
  .custom-dropdown-scroll {
    max-height: 250px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
    overscroll-behavior: contain !important;
    background-color: #fcfdfc !important;
    border-left: 3px solid var(--primary-color);
    margin: 0.5rem 1rem;
    padding: 8px 0;
    box-shadow: none !important;
  }
  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dropdown-menu-item {
    padding: 0.5rem 1rem;
  }

  .utility-actions {
    border-top: 1px solid #eeeeee;
    margin-top: 0.5rem;
  }

  .footer-links a:hover {
    transform: none; /* Disable shift animations on touchscreen gestures */
  }
}

/* ==========================================================================
   EXACT MATCH DESIGN HERO CONFIGURATION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 0px !important;
  background-color: #ffffff; /* This provides the solid white base for the image to fade into */
}

.hero-bg-layer {
  position: absolute;
  top: 0;
  start: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-layer img {
  opacity: 0.9; /* Adjust this value (e.g., 0.25 for lighter, 0.45 for darker) until the text is perfectly clear */
  filter: contrast(1) saturate(0.95); /* Keeps the faded colors crisp */
}

/* Typography elements calibrated to match your reference layout exactly */
.hero-title {
  font-size: 3.8rem;
  font-weight: 800 !important;
  line-height: 1.15;
  color: #0b160d; /* High contrast green-black text */
  letter-spacing: -1px;
}

.text-primary-green {
  color: #4bc734d9 !important;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2b4030 !important;
  font-weight: 500;
  max-width: 500px;
}

/* Green Pill Button Custom Design Style */
.btn-hero-primary {
  background-color: #1eb800 !important;
  /* border: 2px solid #4d9e3ed9 !important; */
  color: #ffffff !important;
  border-radius: 8px !important; /* Square-round hybrid style from reference image */
  padding: 0.7rem 2rem !important;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
  background-color: #3d8032 !important;
  border-color: #3d8032 !important;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background-color: #ffffffde !important;
  /* border: 2px solid rgba(22, 56, 30, 0.4) !important; */
  color: #16381e !important;
  border-radius: 8px !important;
  padding: 0.7rem 2rem !important;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(
    4px
  ); /* Clean aesthetic blend over the background texture */
  transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(-2px);
}

.small-badges-row {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ==========================================================================
   FLOATING BOTTOM CARD CONFIGURATION
   ========================================================================== */
.hero-floating-stripe {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translate(
    -50%,
    50%
  ); /* Places the card exactly on the boundary break line */
  z-index: 10;
  max-width: 1240px;
}

.hero-floating-stripe .card {
  box-shadow: 0 20px 50px rgba(0, 30, 10, 0.12) !important;
  border: none !important;
  border-radius: 20px !important; /* Soft curved layout lines */
}

.feature-icon-circle {
  width: 46px;
  height: 46px;
  background-color: #eaf5eb;
  color: #4d9e3ed9 !important;
  border-radius: 50%;
}

.small-title-heading {
  font-size: 1rem;
  color: #0c2312 !important;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (MOBILE AND TABLET OPTIMIZATIONS)
   ========================================================================== */
@media (min-width: 768px) {
  .feature-divider {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  /* 1. Ensure space for fixed top header and set mobile background properties */
  .hero-section {
    min-height: auto;
    padding-top: 130px !important; /* Clears fixed navbar on mobile */
    padding-bottom: 40px !important;
    position: relative;

    /* Ensures background image displays correctly on mobile */
    background-size: cover;
    background-position: center center;
    background-attachment: scroll !important; /* Prevents mobile Safari/Chrome BG collapse */
  }

  /* 2. Soft subtle gradient instead of solid white mask */
  .hero-bg-layer::after {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soft white gradient tint so image remains visible while text stays crisp */
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.7) 100%
    );
    z-index: 1;
  }

  /* 3. Force content above the overlay layer */
  .hero-section .container {
    position: relative;
    z-index: 2;
  }

  /* 4. Responsive title size for mobile screens */
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  /* 5. Floating feature stripe flat position below hero text */
  .hero-floating-stripe {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 30px;
    padding: 0 !important;
    z-index: 2;
  }
}

/* ==========================================================================
   PRODUCT LISTING SECTION STYLING
   ========================================================================== */
.products-listing-section {
  /* Using the exact matching organic soft light green gradient backdrop configuration */
  background: linear-gradient(180deg, #f4fbf7 0%, #eef8f2 50%, #f7fcf9 100%);
  position: relative;
}

/* Section Tagline Layout Elements */
.section-tag {
  color: #4d9e3ed9;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tag-line {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #4d9e3ed9;
  vertical-align: middle;
}

.section-main-heading {
  font-size: 2.3rem;
  color: #0d2a15;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.02rem;
  max-width: 600px;
}

/* White Product Box Structure */
.product-listing-card {
  border-radius: 24px !important;
  min-height: 420px;
  box-shadow: 0 10px 30px rgba(0, 35, 10, 0.04) !important;
  border: 1px solid rgba(0, 0, 0, 0.01) !important;
}

/* Elevate box smoothly on mouse gesture focus events */
.product-listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 35, 10, 0.09) !important;
}

.product-img-frame {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.product-img-frame img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease-in-out;
}

/* Subtle image scale animation on hover */
.product-listing-card:hover .product-img-frame img {
  transform: scale(1.05);
}

.product-card-title {
  font-size: 1rem;
  color: #0c2312;
  letter-spacing: -0.25px;
}

.product-card-meta {
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* Green Action Button Modifiers */
.btn-product-shop {
  background-color: var(--dark-bg) !important;
  /* border: 2px solid #4d9e3ed9 !important; */
  border-radius: 30px !important; /* Pill style matching header elements */
  padding: 0.6rem 0px !important;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.btn-product-shop:hover {
  background-color: #22bf07 !important;
  /* border-color: var(--primary-hover) !important; */
  box-shadow: 0 8px 20px rgba(77, 158, 62, 0.25);
}

/* Responsive Scaling Overrides */
@media (max-width: 767.98px) {
  .section-main-heading {
    font-size: 1.85rem;
  }
  .product-listing-card {
    min-height: auto;
    padding: 1.5rem !important;
  }
}

/* ==========================================================================
   FIXED STICKY ACTIONS & QUICK ENQUIRY POPUP MODAL
   ========================================================================== */

/* 1. Floating Actions Container (Bottom Right Fixed Position) */
.km-sticky-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Individual Floating Circle Buttons */
.sticky-action-item {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.3rem;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s ease;
}

.sticky-action-item:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Color Variants */
.item-phone {
  background: linear-gradient(135deg, #6366f1, #4f46e5); /* Indigo/Purple */
}

.item-whatsapp {
  background: #25d366; /* WhatsApp Green */
}

.item-enquiry {
  background: #04291c; /* KM Menthol Forest Green */
}

/* Pulsing Ripple Animation for WhatsApp */
.action-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.75;
  z-index: -1;
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.ripple-delay {
  animation-delay: 0.6s;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* 2. Glassmorphism Modal Overlay Backdrop */
.enquiry-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 25, 18, 0.65); /* Translucent dark tint */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

/* Active Open State for Overlay */
.enquiry-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* 3. Modal Card Casing */
.enquiry-modal-card {
  width: 100%;
  max-width: 370px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enquiry-modal-overlay.active .enquiry-modal-card {
  transform: translateY(0) scale(1);
}

/* Modal Header Band */
.modal-header-band {
  background: linear-gradient(135deg, #16a34a, var(--dark-bg));
  color: #ffffff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title-text {
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.modal-title-text i {
  color: #34d399;
}

.modal-close-x {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.modal-close-x:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Modal Content & Form Inputs */
.modal-body-content {
  padding: 24px;
}

.modal-urgent-text {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 8px;
  line-height: 1.4;
}

.modal-phone-link {
  display: inline-block;
  color: #059669;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}

.modal-phone-link:hover {
  color: #04291c;
}

/* Inputs styling */
.custom-input {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 0.9rem;
  color: #1e293b;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.custom-input:focus {
  background: #ffffff;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  outline: none;
}

.text-area-input {
  resize: none;
}

/* Submit CTA Button */
.btn-modal-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  transition:
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

.btn-modal-submit:hover {
  background: linear-gradient(135deg, #059669, #04291c);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}


/* ==========================================================================
   MOBILE FIXED BOTTOM ACTION BAR (MAX-WIDTH: 767px)
   ========================================================================== */
@media (max-width: 767px) {
  /* 1. Transform Container into Full-Width Fixed Bottom Bar */
  .km-sticky-actions {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 52px;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: row !important; /* Horizontal layout */
    gap: 0 !important; /* Remove gaps between buttons */
    padding: 0 !important;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  }

  /* 2. Convert Circle Buttons into Equal 3-Column Rectangular Tabs */
  .sticky-action-item {
    flex: 1 1 33.333% !important; /* Each button takes exactly 1/3 width */
    width: 33.333% !important;
    height: 100% !important;
    border-radius: 0 !important; /* Remove circle shape */
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important; /* Space between icon and text label */
  }

  .sticky-action-item:hover {
    transform: none !important;
  }

  /* 3. Enable Text Labels on Mobile (Hidden by default on Desktop) */
  .sticky-action-item .action-text {
    display: inline-block !important;
    white-space: nowrap;
  }

  /* 4. Match Screenshot Color Palette */
  .item-phone {
    background: #ff7a1a !important; /* Orange Call Now */
  }

  .item-whatsapp {
    background: #52c462 !important; /* Green WhatsApp */
  }

  .item-enquiry {
    background: #4a217b !important; /* Purple Enquiry */
  }

  /* 5. Disable Pulse Animation on Mobile Bar */
  .action-ripple {
    display: none !important;
  }

  /* 6. Optional: Add padding to body so content isn't covered by bottom bar */
  body {
    padding-bottom: 52px !important;
  }


}
/* ==========================================================================
   EXACT OILS & MENTHOL SECTION STYLING
   ========================================================================== */
.refresh-menthol-section {
  position: relative;
  background: #f7faf6 url("images/bottle-leaf-bg.png") no-repeat center top; /* Replace with your background image path */
  background-size: cover;
  padding-top: 30px;
  padding-bottom: 160px; /* Space for the bottom wave */
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

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

/* Top Pill Badge */
.badge-refresh-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background: #ffffff;
  border: 1.5px solid var(--theme-neon);
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.92rem;
  box-shadow: 0 4px 15px rgba(41, 247, 6, 0.2);
}

.badge-refresh-pill i {
  color: #1eb800;
}

/* Serif Typography */
.refresh-main-title {
  font-family: "Playfair Display", serif;
  color: var(--dark-bg);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.refresh-subtitle {
  color: var(--dark-bg);
  font-size: 1.05rem;
  font-weight: 500;
}

.refresh-subtitle .divider-bar {
  color: var(--theme-neon);
  font-weight: 700;
  margin: 0 4px;
}

.refresh-desc {
  color: var(--dark-bg);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* White Cards */
.light-benefit-card {
  background: var(--dark-bg);
  border-radius: 24px;
  padding: 10px 30px 10px 30px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  height: 100%;
}

.light-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--theme-neon);
}

/* Circular Light Green Icon Badge */
.card-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #e2fcdb; /* Pale mint circle background */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.text-theme-dark {
  color: var(--primary-color);
}

.text-theme-bright {
  color: #1eb800;
}

/* Card Content & Accent Bar */
.card-heading {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-accent-bar {
  width: 40px;
  height: 3px;
  background-color: var(--theme-neon);
  margin: 0 auto 16px auto;
  border-radius: 2px;
  box-shadow: 0 0 8px var(--theme-neon);
}

.card-paragraph {
  color: #a9b1bb;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Bottom Wave SVG Layer */
.bottom-wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.bottom-wave-container svg {
  width: 100%;
  height: 120px;
  display: block;
}

.wave-layer-back {
  fill: rgba(74, 158, 93, 0.4); /* Light green translucent layer */
}

.wave-layer-front {
  fill: #0b38038c; /* Darker green wave layer */
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .refresh-main-title {
    font-size: 2.3rem;
  }
}

/* Overall Section Backdrop */
.tabbed-menthol-section {
  position: relative;
  background: #3c9d0b17 url("images/subtle-leaves-bg.jpg") no-repeat center top;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 70px;
  font-family: "Poppins", sans-serif;
}

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

/* Top Tagline Lines */
.top-line-tag,
.bottom-footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.top-line-tag .line-left,
.top-line-tag .line-right,
.bottom-footer-line .line-left,
.bottom-footer-line .line-right {
  height: 1px;
  width: 80px;
  background: rgba(6, 78, 59, 0.3);
}

.tag-text,
.footer-tag-text {
  color: #22bf07;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Headings */
.tabbed-main-title {
  font-family: "Playfair Display", serif;
  color: var(--dark-bg);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.tabbed-subtitle {
  color: var(--dark-bg);
  font-size: 1.05rem;
  font-weight: 500;
}

.tabbed-subtitle .divider-bar {
  color: var(--theme-neon);
  font-weight: 700;
  margin: 0 4px;
}

.tabbed-desc {
  color: var(--dark-bg);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- 3 PILL TABS NAVIGATION BAR --- */
.pill-tabs-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3c9d0b17;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 6px;
  border-radius: 50px;
  max-width: 780px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pill-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pill-tab-btn:hover {
  color: var(--theme-dark);
}

/* Active Pill Tab State */
.pill-tab-btn.active {
  background: linear-gradient(
    135deg,
    #38a169,
    #2aa913
  ); /* Green pill background */
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(6, 78, 59, 0.25);
}

.pill-tab-btn.active i {
  color: var(--theme-neon) !important; /* Theme color icon highlight */
}

/* --- TAB CONTENT DISPLAY CARD --- */
.tab-content-display-card {
  background: #3c9d0b17;
  border-radius: 24px;
  padding: 45px 40px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  max-width: 1100px;
  margin: 0 auto;
}

/* Tab Panels Animation */
.tab-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tab-panel.active {
  display: block;
  opacity: 1;
}

/* Panel Content */
.panel-heading {
  color: var(--theme-dark);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.panel-accent-bar {
  width: 45px;
  height: 3.5px;
  background-color: var(--theme-neon);
  margin-bottom: 18px;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--theme-neon);
}

.panel-intro-text {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Checklist Styling */
.benefit-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.5;
}

.benefit-check-list .check-icon {
  color: #22bf07; /* Green checkmark */
  font-size: 1.15rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.benefit-check-list strong {
  color: var(--theme-dark);
}

/* Panel Image Frame */
.panel-image-frame {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.panel-image-frame:hover .panel-img {
  transform: scale(1.03);
}

.text-theme-bright {
  color: #10b981;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .pill-tabs-nav-wrapper {
    flex-direction: column;
    border-radius: 20px;
  }
  .pill-tab-btn {
    width: 100%;
  }
  .tabbed-main-title {
    font-size: 2.3rem;
  }
  .tab-content-display-card {
    padding: 25px 20px;
  }
  .panel-image-frame {
    height: 280px;
  }
}

/* Essenstial oil section */

/* Main Section Wrapper */
.leading-oils-section {
  background-color: var(--dark-bg);
  padding: 80px 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* Pill Badge */
.oils-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  background: transparent;
  border: 1px solid rgba(41, 247, 6, 0.4);
  border-radius: 30px;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.oils-badge-pill i {
  color: var(--theme-neon);
}

/* Title Styling */
.oils-section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.oils-section-title .highlight-title {
  font-style: italic;
  color: #a7f3d0; /* Soft mint shade matching image */
}

/* Description */
.oils-section-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 500px;
}

/* Divider Line */
.oils-divider-line {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
}

.oils-divider-line .line-bar {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.oils-divider-line .leaf-icon {
  color: var(--theme-neon);
  font-size: 0.85rem;
}

/* Feature Cards */
.oils-feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border-green);
  border-radius: 16px;
  padding: 20px 10px;
  height: 100%;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.oils-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--theme-neon);
  box-shadow: 0 8px 20px rgba(41, 247, 6, 0.15);
}

/* Icon Circle */
.feature-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #a7f3d0; /* Soft light green matching the screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #032418;
  font-size: 1.2rem;
}

/* Card Text */
.feature-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.feature-card-text {
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Right Image Styling */
.oils-display-img {
  max-height: 480px;
  width: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .oils-section-title {
    font-size: 2.3rem;
  }
  .oils-feature-card {
    padding: 15px 8px;
  }
}

@media (max-width: 576px) {
  .col-4 {
    width: 100%; /* Stack cards vertically on small mobile screens */
  }
}

/* ==========================================================================
   ISOLATED REACH US & INQUIRY FORM SECTION (NO GLOBAL CONFLICTS)
   ========================================================================== */

/* Outer Section Container */
.reach-us-section {
  background-color: #3c9d0b17;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 2; /* Ensures it sits neatly in the document flow */
  clear: both;
}

/* Base Card Shell */
.reach-us-section .reach-us-card-wrapper {
  background: #3c9d0b17;
  border-radius: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Left Column Styling */
.reach-us-section .reach-top-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reach-us-section .reach-top-line .tag-text {
  color: #1a6b3b;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
.reach-inner-container {
  display: flex;
  justify-content: center;
}
.reach-us-section .reach-top-line .line-bar {
  width: 60px;
  height: 2px;
  background-color: #1a6b3b;
  border-radius: 2px;
}

.reach-us-section .reach-title {
  font-family: var(--font-heading);
  color: #032d1d;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.reach-us-section .reach-subtext {
  color: #64748b;
  font-size: 0.95rem;
}

/* Contact List Items */
/* .reach-us-section .border-bottom-subtle {
  border-bottom: 1px solid #f1f5f9;
} */

.reach-us-section .contact-icon-square {
  width: 65px;
  height: 65px;
  background-color: #e5f5eb;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a6b3b;
  font-size: 1.5rem;
}

.reach-us-section .info-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #032d1d;
}

.reach-us-section .info-text {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

/* Bottom Natural Pill Badge */
.reach-us-section .natural-pill-badge {
  background: #f1f8f3;
  border: 1px solid #d1ebd8;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.88rem;
  color: #1a6b3b;
  font-weight: 500;
}

/* Right Column: Dark Green Inquiry Form Container */
.reach-us-section .inquiry-form-card {
  background: #032d1d;
  border-radius: 15px;
  color: #ffffff;
  position: relative;
  box-shadow: 0 15px 35px rgba(3, 45, 29, 0.25);
}

.reach-us-section .form-header-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.reach-us-section .form-header-line .line-side {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.reach-us-section .form-header-line .tag-text {
  color: var(--primary-color);
  font-size: 0.88rem;
  font-weight: 500;
}

.reach-us-section .form-main-heading {
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.reach-us-section .form-subtext {
  font-size: 0.9rem;
}

/* Form Input Controls */
.reach-us-section .inquiry-input {
  background-color: #f8fafc !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
  color: #1e293b !important;
}

.reach-us-section .inquiry-input::placeholder {
  color: #94a3b8;
}

.reach-us-section .inquiry-input:focus {
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(41, 247, 6, 0.3) !important;
  outline: none;
}

.reach-us-section .inquiry-textarea {
  resize: none;
}

/* Submit Button */
.reach-us-section .btn-inquiry-submit {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.3);
}

.reach-us-section .btn-inquiry-submit:hover {
  background: linear-gradient(135deg, #29f706 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(41, 247, 6, 0.4);
}

/* Bottom Feature Badges */
.reach-us-section .form-features-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: #cbd5e1;
}

.reach-us-section .feature-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #86efac;
  font-size: 0.85rem;
}

.reach-us-section .feature-divider {
  width: 1px;
  height: 25px;
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive Scaling */
@media (max-width: 991px) {
  .reach-us-section .reach-title {
    font-size: 2.6rem;
  }
  .reach-us-section .form-main-heading {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   SIMPLIFIED PRODUCT DETAIL PAGE (GREEN THEME)
   ========================================================================== */

/* ==========================================================================
   SIMPLE PRODUCT INNER PAGE STYLING
   ========================================================================== */

/* Hero Strip */
/* --- PERFECTED HERO SECTION WITH BACKGROUND IMAGE --- */
.product-hero-strip {
  position: relative;
  width: 100%;

  /* Set a generous minimum height so the image feels spacious */
  min-height: 380px;

  /* Flexbox centers your title vertically */
  display: flex;
  align-items: center;

  /* Background Image Styling */
  background:
    linear-gradient(
      135deg,
      rgba(3, 45, 29, 0.85) 0%,
      rgba(10, 77, 51, 0.7) 100%
    ),
    url("images/hero-bg.jpg") center/cover no-repeat;

  /* Top padding clears the fixed navbar; bottom padding balances vertical space */
  padding-top: 140px !important;
  padding-bottom: 60px !important;
}

/* Ensure container spans cleanly inside flex parent */
.product-hero-strip .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Breadcrumb Styling for Dark Hero Background */
.product-hero-strip .breadcrumb-item,
.product-hero-strip .breadcrumb-item a {
  color: #29f706 !important; /* Theme green accent */
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.product-hero-strip .breadcrumb-item.active {
  color: #ffffff !important;
  opacity: 0.9;
}

.product-hero-strip .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Hero Title */
.product-hero-heading {
  font-family: var(--font-heading), serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive height adjustment for mobile screens */
@media (max-width: 768px) {
  .product-hero-strip {
    min-height: 280px;
    padding-top: 120px !important;
    padding-bottom: 40px !important;
  }
  .product-hero-heading {
    font-size: 2.2rem;
  }
}

/* Product Showcase */
.product-showcase-section {
  background-color: #ffffff;
}

.product-main-img {
  width: 100%;
  height: 420px !important; /* <--- Add height with !important */
  max-height: none !important;
  object-fit: cover;
}

.natural-tag {
  background-color: #e5f5eb;
  color: #1a6b3b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-main-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #032d1d;
  line-height: 1.1;
}

.product-desc-text {
  font-size: 0.98rem;
  line-height: 1.7;
}

/* CTA Button */
.btn-emerald-submit {
  background: linear-gradient(135deg, #29f706 0%, #15803d 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(41, 247, 6, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-emerald-submit:hover {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
  color: #ffffff;
  transform: translateY(-2px);
}

.bg-light-green-subtle {
  background-color: #f4fbf6;
  border: 1px solid #e1f3e7;
}

.section-sub-heading {
  font-family: var(--font-heading), serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #032d1d;
}

.benefit-item span {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
}

/* ==========================================================================
   SITEMAP PAGE STYLING
   ========================================================================== */

/* Clears the fixed navigation header */
.sitemap-section {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #ffffff;
}

/* Page Title */
.sitemap-main-title {
  font-family: var(--font-heading), serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #032d1d;
  border-bottom: 2px solid #e5f5eb;
  padding-bottom: 12px;
}

/* Sitemap Links List */
.sitemap-list li {
  margin-bottom: 12px;
}

.sitemap-list li a {
  color: #334155;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.sitemap-list li a i {
  font-size: 0.8rem;
  color: #29f706 !important;
  transition: transform 0.2s ease;
}

/* Hover Effect on Links */
.sitemap-list li a:hover {
  color: #032d1d;
  font-weight: 600;
  transform: translateX(6px);
}

.sitemap-list li a:hover i {
  transform: scale(1.25);
}

/* ==========================================================================
   INQUIRY FORM CARD STYLING (DARK GREEN THEME)
   ========================================================================== */

.inquiry-form-card {
  background: linear-gradient(135deg, #032d1d 0%, #08432a 100%);
  border: 1px solid rgba(41, 247, 6, 0.15);
  box-shadow: 0 10px 30px rgba(3, 45, 29, 0.15);
}

/* Header Tag Line */
.inquiry-form-card .form-header-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.inquiry-form-card .form-header-line .tag-text {
  color: #29f706;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.inquiry-form-card .form-header-line .line-side {
  height: 1px;
  width: 30px;
  background-color: rgba(41, 247, 6, 0.3);
}

/* Headings */
.inquiry-form-card .form-main-heading {
  font-family: var(--font-heading), serif;
  font-size: 2.2rem;
  font-weight: 700;
}

/* Input Fields Styling */
.inquiry-form-card .inquiry-input {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 16px;
  font-size: 0.92rem;
  box-shadow: none;
  transition: all 0.25s ease;
}

.inquiry-form-card .inquiry-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.inquiry-form-card .inquiry-input:focus {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: #29f706 !important;
  box-shadow: 0 0 10px rgba(41, 247, 6, 0.3) !important;
  outline: none;
}

/* Textarea height */
.inquiry-form-card .inquiry-textarea {
  resize: vertical;
  min-height: 110px;
}

/* Tight vertical spacing between inputs */
.inquiry-form-card form .row.g-3 {
  --bs-gutter-x: 12px;
  --bs-gutter-y: 12px;
}

/* Green Submit Button */
.btn-inquiry-submit {
  background: linear-gradient(135deg, #29f706 0%, #15803d 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(41, 247, 6, 0.3);
  transition: all 0.3s ease;
}

.btn-inquiry-submit:hover {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 247, 6, 0.45);
}

/* Ensure sticky column works smoothly on desktop */
@media (min-width: 992px) {
  .sticky-form-column {
    position: sticky !important;
    top: 120px !important; /* Top space below navbar header */
    z-index: 10;
  }
}

/* ==========================================================================
   CONTACT PAGE STYLING
   ========================================================================== */

.contact-cards-section {
  background-color: #f4fbf6;
}

.contact-info-card {
  border: 1px solid #e1f3e7;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(3, 45, 29, 0.1) !important;
}

.contact-icon-circle {
  width: 55px;
  height: 55px;
  background-color: #e5f5eb;
  color: #1a6b3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-circle {
  background-color: #29f706;
  color: #032d1d;
}

.contact-card-title {
  font-family: var(--font-heading), serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #032d1d;
}

.contact-card-text a:hover {
  color: #1a6b3b !important;
}

/* Map Wrapper */
.map-wrapper iframe {
  border-radius: 16px;
  filter: grayscale(10%) contrast(100%);
}

/* ==========================================================================
   OUR PRESENCE PAGE STYLING
   ========================================================================== */

.presence-section {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #ffffff;
}

.section-main-heading {
  font-family: var(--font-heading) serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: #032d1d;
  border-bottom: 2px solid #e5f5eb;
  padding-bottom: 10px;
}

/* Category Filter Tags */
.presence-category-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid #1a6b3b;
  border-radius: 8px;
  color: #032d1d;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.presence-category-btn:hover,
.presence-category-btn.active {
  background-color: #e5f5eb;
  border-color: #29f706;
  color: #032d1d;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(3, 45, 29, 0.08);
}

/* State Headings */
.state-title {
  font-family: var(--font-heading), serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a6b3b;
  margin-top: 10px;
}

/* City Grid Badges */
.city-badge-card {
  background-color: #f8faf8;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: default;
}
.city-badge-card a{
  color: var(--dark-bg);
  text-decoration: none;
}

.city-badge-card:hover {
  border-color: #29f706;
  background-color: #ffffff;
  color: #032d1d;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Sticky Right Column for Desktop */
@media (min-width: 992px) {
  .sticky-form-column {
    position: sticky !important;
    top: 120px !important;
    z-index: 10;
  }
}

.inquiry-product{
  margin-top: 10px !important;
  border-radius: 24px !important;
}
.inquiry-product .form-main-heading {
  color: #fff !important;
}
.inquiry-product .feature-item span {
  color: #fff !important;
}

.related-heading{
  color: #fff !important;
    background: var(--dark-bg);
    padding: 10px;
    font-weight: 600;
}
.product-info-wrapper ul li, p, h3{
  text-align: justify !important;
}
.read-btn a{
  color: #fff !important;
  text-decoration: none;
  /* background:var(--primary-color); */
}
.read-btn{
  background-color: #16a34a;
  padding: 10px;
  width: max-content;
  border-radius: 100px;
}