/* ==========================================================================
   FILTER (REFRESH & RECOVERY GUMMIES) - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --- Color Palette Tokens --- */
:root {
  /* Yellow Palette */
  --color-yellow-primary: #F8C50A;
  --color-yellow-button: #F4CB42;
  --color-yellow-shadow: #DEA008;
  --color-yellow-light: #F8DE88;
  --color-yellow-bg: #FBF9F3;

  /* Green Palette */
  --color-green-primary: #466A15;
  --color-green-accent: #5A8A1C;
  --color-green-leaf: #7BAA2B;
  --color-green-highlight: #A5C95D;

  /* Neutral Palette */
  --color-heading-dark: #0F120F;
  --color-body-dark: #2B2B2B;
  --color-white: #FFFFFF;
  --color-cream-bg: #F2E9C6;

  /* Lemon Accent Palette */
  --color-lemon-bright: #FFD329;
  --color-orange-pulp: #F7A31C;
  --color-orange-deep: #D67C10;

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Radius */
  --shadow-sm: 0 4px 12px rgba(15, 18, 15, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 18, 15, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 18, 15, 0.12);
  --shadow-yellow-glow: 0 8px 25px rgba(248, 197, 10, 0.4);
  --shadow-green-glow: 0 8px 25px rgba(90, 138, 28, 0.3);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 9999px;
}

/* --- Global Resets & Smooth Scroll --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-yellow-bg);
  color: var(--color-body-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-yellow-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-yellow-shadow);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-green-primary);
}

/* ==========================================================================
   SPECIAL SCROLL-ACTIVATED BACKGROUND LOGO WATERMARK
   ========================================================================== */
#bg-scroll-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--logo-scale, 1)) rotate(var(--logo-rotate, 0deg));
  width: 650px;
  height: 650px;
  pointer-events: none;
  z-index: 0;
  opacity: var(--logo-opacity, 0.05);
  transition: opacity 0.3s ease-out, transform 0.2s cubic-bezier(0.1, 0.5, 0.1, 1);
}

#bg-scroll-logo svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 15px 35px rgba(70, 106, 21, 0.2));
}

/* Relative container to keep content above background watermark */
.content-wrapper {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   FIXED HEADER & NAVBAR
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
}

.navbar-custom {
  position: relative;
  width: 100%;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(251, 249, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244, 203, 66, 0.3);
}

.navbar-custom.scrolled {
  padding: 10px 0;
  box-shadow: 0 6px 24px rgba(15, 18, 15, 0.12);
  background: rgba(251, 249, 243, 0.98);
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand-custom img {
  height: 52px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand-custom:hover img {
  transform: rotate(15deg) scale(1.05);
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.7rem;
  /* color: var(--color-heading-dark); */
  background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-green-highlight) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1;
}

.brand-subtext {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-green-primary);
  letter-spacing: 0.15em;
  display: block;
}

.nav-link-custom {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-heading-dark) !important;
  margin: 0 8px;
  padding: 8px 16px !important;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  position: relative;
}

.nav-link-custom:hover {
  color: var(--color-green-primary) !important;
  background-color: rgba(90, 138, 28, 0.1);
}

.nav-link-custom.active {
  color: var(--color-green-primary) !important;
  background-color: rgba(70, 106, 21, 0.15);
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(70, 106, 21, 0.15);
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  background-color: var(--color-green-primary);
  border-radius: 2px;
}

/* Custom Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--color-yellow-button) 0%, var(--color-yellow-primary) 100%);
  color: var(--color-heading-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: var(--shadow-yellow-glow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(248, 197, 10, 0.6);
  color: var(--color-heading-dark);
  background: linear-gradient(135deg, var(--color-lemon-bright) 0%, var(--color-yellow-primary) 100%);
}

.btn-green-custom {
  background: linear-gradient(135deg, var(--color-green-accent) 0%, var(--color-green-primary) 100%);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: var(--shadow-green-glow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-green-custom:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(70, 106, 21, 0.5);
  color: var(--color-white);
}

/* ==========================================================================
   HERO BANNER SECTION (#home)
   ========================================================================== */
.hero-section {
  padding-top: 140px;
  padding-bottom: 90px;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(248, 222, 136, 0.4) 0%, rgba(251, 249, 243, 0) 70%);
      /* width: 100%;
    min-height: 400px;
    background-image: url("../assets/images/banner2.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; */
    
   /* width: 100%;
    min-height: 100vh;
    background: url("") center center / contain no-repeat; */
    

}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90, 138, 28, 0.12);
  color: var(--color-green-primary);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.text-gradient-green {
  background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-green-highlight) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-yellow {
  background: linear-gradient(135deg, var(--color-orange-deep) 0%, var(--color-yellow-shadow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--color-body-dark);
  margin-bottom: 32px;
  max-width: 520px;
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
  text-align: center;
}

.hero-product-img {
  max-width: 90%;
  height: auto;
  animation: floatAnim 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(15, 18, 15, 0.15));
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* Feature Badges Strip (Post-Banner) */
.features-strip-section {
  /* background: var(--color-white); */
  padding: 60px 0;
  border-top: 1px solid rgba(244, 203, 66, 0.3);
  border-bottom: 1px solid rgba(244, 203, 66, 0.3);
  box-shadow: var(--shadow-sm);
  background: var(--color-yellow-bg);
}

.feature-badge-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--color-yellow-bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 203, 66, 0.4);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-badge-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-green-accent);
  box-shadow: var(--shadow-md);
  background: var(--color-white);
}

.badge-icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-yellow-primary) 0%, var(--color-lemon-bright) 100%);
  color: var(--color-green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(248, 197, 10, 0.4);
}

.badge-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-heading-dark);
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   PRODUCT SECTION (#product)
   ========================================================================== */
.section-padding {
  padding: 90px 0;
  background-color:#fff;
}

.section-tag {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-green-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-body-dark);
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 48px auto;
}

/* Product Card Showcase */
.product-card-main {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  /* border: 2px solid var(--color-yellow-light); */
  position: relative;
  overflow: hidden;
}

.product-card-main::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-yellow-light) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.product-pouch-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.spec-pill {
  background: var(--color-cream-bg);
  color: var(--color-heading-dark);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-yellow-shadow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.product-features-list li {
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(15, 18, 15, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-features-list li i {
  color: var(--color-green-accent);
  font-size: 1.2rem;
}

/* Price Box */
.price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-heading-dark);
}

.original-price {
  font-size: 1.4rem;
  text-decoration: line-through;
  color: #888;
}

.discount-tag {
  background: var(--color-green-primary);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* 100% Certified Badges Strip */
.certification-wrapper {
  /* background: linear-gradient(135deg, var(--color-cream-bg) 0%, var(--color-yellow-bg) 100%); */
  /* border-radius: var(--radius-md); */
  padding: 30px;
  /* border: 1px solid rgba(244, 203, 66, 0.4); */
  margin-top: 50px;
}

.cert-badge-item {
  text-align: center;
  padding: 15px;
}

.cert-icon {
  /* width: 60px;
  height: 60px; */
  margin: 0 auto 12px auto;
  /* background: var(--color-white); */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 1.8rem;
  color: var(--color-green-primary); */
  /* box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-yellow-primary); */
}
.cert-icon img{
  height:100px;
}

/* .cert-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  margin: 0;
  color: var(--color-heading-dark);
} */

/* Powerful Ingredients Cards */
.ingredient-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(244, 203, 66, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-green-accent);
}

.ingredient-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-yellow-primary) 0%, var(--color-yellow-button) 100%);
  color: var(--color-green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.ingredient-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--color-green-primary);
}

.ingredient-desc {
  font-size: 0.95rem;
  color: var(--color-body-dark);
  margin: 0;
}

/* ==========================================================================
   HOW IT WORKS SECTION (#how-it-works)
   ========================================================================== */
.how-it-works-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-yellow-light);
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

.how-it-works-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-green-primary);
}

.step-number-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-green-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.9rem;
  padding: 4px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-green-glow);
}

.step-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 15px auto 20px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-yellow-bg) 0%, var(--color-cream-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--color-green-primary);
  border: 2px solid var(--color-yellow-primary);
}

.step-title {
font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.28px;
}

/* Connecting Arrows between steps on desktop */
.step-arrow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-green-accent);
  opacity: 0.6;
}

/* Science Section */
.science-container {
  background:#f5f5f5;
  color: #2B2B2B;
  border-radius: var(--radius-lg);
  padding: 50px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

/* .science-container h3 {
  
} */

.science-step-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(90, 138, 28, 0.4);
  height: 100%;
}

.science-chemical {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  /* color: var(--color-yellow-primary); */
  margin-bottom: 8px;
}
.science-step-box img{
  width:30%;
}
.lead {
  font-size: 1rem;
  font-weight: 500;
}
.cta-banner-middle {
  background: linear-gradient(135deg, var(--color-green-primary) 0%, var(--color-green-accent) 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin-top: 60px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-middle h3 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* ==========================================================================
   OUR STORY & FOUNDER SECTION (#our-story)
   ========================================================================== */
.founder-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-yellow-light);
}

.founder-avatar-box {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-yellow-primary) 0%, var(--color-green-highlight) 100%);
  padding: 6px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.founder-avatar-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-white);
}

.founder-title-badge {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-green-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-box {
  background: var(--color-cream-bg);
  border-left: 4px solid var(--color-green-primary);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  font-size: 1.1rem;
  font-style: italic;
}

/* Key Pillars */
.pillar-card {
  background: var(--color-yellow-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(244, 203, 66, 0.4);
  height: 100%;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.pillar-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-green-primary);
  margin-bottom: 8px;
}

/* Interactive Timeline */
.timeline-wrapper {
  position: relative;
  padding-left: 30px;
  margin-top: 40px;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 4px;
  background: var(--color-yellow-shadow);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-green-primary);
  border: 4px solid var(--color-white);
  box-shadow: 0 0 0 3px var(--color-green-accent);
}

.timeline-content {
  background: var(--color-white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(244, 203, 66, 0.3);
}

/* FAQ Accordion Styling */
.accordion-custom .accordion-item {
  border: none;
  margin-bottom: 16px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-custom .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-heading-dark);
  background: var(--color-white);
  padding: 20px 28px;
  box-shadow: none !important;
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--color-green-primary);
  background: var(--color-cream-bg);
}

.accordion-custom .accordion-body {
  font-size: 1.05rem;
  color: var(--color-body-dark);
  padding: 20px 28px 24px 28px;
  background: var(--color-white);
}

/* ==========================================================================
   CONTACT US SECTION (#contact)
   ========================================================================== */
.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-yellow-light);
}

.info-item-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-cream-bg);
  color: var(--color-green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  min-width: 48px;
}

.form-control-custom {
  background: var(--color-yellow-bg);
  border: 1.5px solid rgba(244, 203, 66, 0.5);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-heading-dark);
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  background: var(--color-white);
  border-color: var(--color-green-accent);
  box-shadow: 0 0 0 4px rgba(90, 138, 28, 0.15);
  outline: none;
}

/* Pre-Footer Banner */
.prefooter-banner {
  background:#f5f5f5f5;
  padding: 60px 0;

  /* border-top: 6px solid var(--color-yellow-shadow); */

}
.fliter-copy{
  margin-top:30px;
}

/* Footer */
.img-vitality{
  width:150px;height:150px;
}
.footer-custom {

  background: var(--color-heading-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 30px 0;
}

.footer-custom h5 {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--color-lemon-bright);
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-top: 30px;
}

/* WhatsApp Floating Action Button (Over Back-To-Top Arrow) */
#whatsapp-float {
  position: fixed;
  bottom: 86px; /* Positioned directly over/above the back-to-top button */
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 1005;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  animation: whatsappPulse 2.5s infinite;
}

#whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
  color: #FFFFFF;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--color-heading-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

#whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 64px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Back to Top Floating Button */
#back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-green-primary);
  color: var(--color-white);
  border: none;
  box-shadow: var(--shadow-green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  transform: translateY(-4px);
  background: var(--color-green-accent);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .step-arrow-connector {
    transform: rotate(90deg);
    margin: 15px 0;
  }
  .product-card-main {
    padding: 24px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  #bg-scroll-logo {
    width: 380px;
    height: 380px;
  }
}
