/* ==========================================================================
   1. FONTS & RESET
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {

  background-color: #0f1712;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* ==========================================================================
   3. LAYOUT & CONTAINER SKELETON
   ========================================================================== */
.container-common {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 170px;
}

/* ==========================================================================
   4. SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  width: 100%;
  background-image: url('../images/header/header-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 19px 0;
  position: relative;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.site-header.is-visible {
  transform: translateY(0);
}

.header-container {
  display: grid;
  /* grid-template-columns: 1fr auto 1fr; */
  grid-template-columns: 45% 7% 50%;
  align-items: center;
}

.header-container> :nth-child(2) {
  justify-self: center;
  /* Horizontal center */
  align-self: center;
  /* Vertical center */
}

/* Desktop Navigation (Left Nav) */
.left-nav {
  display: flex;
  justify-content: flex-end;
  margin-right: 65px;
}

/* Center Logo */
.header-logo-container {
  display: flex;
  justify-content: center;
  z-index: 101;
}

.site-logo {
  display: inline-block;
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.02);
}

.logo-img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 52px;
}

/* Right Group (Right Nav & Action Button) */
.right-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 65px;
}

.right-nav {
  display: flex;
}

/* Navigation Typography & Lists */
.nav-list {
  display: flex;
  gap: 48px;
}

.nav-item {
  display: flex;
}

.nav-link {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: normal;
  transition: color 0.3s ease;
}

/* Active Leaf Icon Styling & Placement */
.leaf-icon-wrapper {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 20px;
  height: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.active-leaf-icon {
  display: block;
  width: 100%;
  height: auto;
}

.nav-link.active .leaf-icon-wrapper,
.nav-link:hover .leaf-icon-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-link:hover {
  color: #FFCA05;
}

/* Contact Button */
.btn-contact {
  background: #FFCA05;
  color: #9D2820;
  text-align: center;

  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 999px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;


  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  line-height: normal;
  border: 1px solid #ffffff;
}

.btn-contact:hover {
  background-color: transparent;
  color: #FFC107;
  border-color: #FFC107;
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* ==========================================================================
   5. HAMBURGER TOGGLE (MOBILE) & DRAWER
   ========================================================================== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 105;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 3px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Hamburger active transformation */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 99998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Drawer Menu */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 100%;
  height: 100vh;
  background-color: #101c15;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.drawer-close {
  color: #FFFFFF;
  padding: 5px;
  transition: color 0.2s ease;
}

.drawer-close:hover {
  color: #FFC107;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
      margin-bottom: 100px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #FFC107;
  padding-left: 0;
}

.mobile-drawer-action {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-action .btn-contact {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   6. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1600px) {
  .container-common {
    padding: 0 100px;
  }
}

@media (max-width: 1400px) {
  .container-common {
    padding: 0 60px;
  }

  .left-nav {
    margin-right: 40px;
  }

  .right-group {
    margin-left: 40px;
  }

  .nav-list {
    gap: 32px;
  }
}

@media (max-width: 1200px) {
  .container-common {
    padding: 0 40px;
  }

  .left-nav {
    margin-right: 25px;
  }

  .right-group {
    margin-left: 25px;
  }

  .nav-list {
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .site-header {
    padding: 10px 0;
    height: 70px;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Hide Desktop navigation items */
  .desktop-nav,
  .right-group {
    display: none;
  }

  /* Show Hamburger toggle button */
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 576px) {
  .container-common {
    padding: 0 20px;
  }

  .logo-img {
    max-height: 44px;
  }
}

/* ==========================================================================
   7. STORY STORYTELLING SCROLL BANNER & PRELOADER
   ========================================================================== */
/* Preloader */
.story-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0f1712;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-content {
  text-align: center;
  width: 80%;
  max-width: 400px;
}

.preloader-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0px;
  letter-spacing: -0.02em;
}

.preloader-bar-container {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background-color: #FFCA05;
  transition: width 0.1s linear;
}

.preloader-percentage {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #A0AEC0;
  font-weight: 500;
}

/* Scroll Story Container */
.story-scroll-trigger {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.story-sticky {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#story-canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(16, 40, 22, 0.25) 0%, rgba(10, 23, 14, 0.7) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Story Content Overlay */
.story-content-container {
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 90%;
  max-width: 900px;
  height: 300px;
  /* Fixed height to isolate text animation size shifts */
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.story-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.story-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 4.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.slide-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #E2E8F0;
  letter-spacing: 0.01em;
  max-width: 600px;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Responsive Scaling for Text Slides */
@media (max-width: 991px) {
  .slide-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .slide-subtitle {
    font-size: 1.2rem;
    max-width: 500px;
  }

  .story-content-container {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .slide-title {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
  }

  .slide-subtitle {
    font-size: 1rem;
    max-width: 320px;
  }

  .story-content-container {
    height: 200px;
  }
}

/* ==========================================================================
   8. TEXT REVEAL ANIMATIONS
   ========================================================================== */
/* Premium Text Reveal Animation Styles */
.reveal-text {
  opacity: 1;
  /* Keep base element visible to prevent accessibility hidden state */
}

/* Before splitter runs, keep the titles clean and layout-stable. 
   When JS runs, it will inject these classes. */
.line-wrapper {
  display: block;
  overflow: hidden;
  position: relative;
}

.line-inner {
  display: block;
  opacity: 0;
  transform: translateY(80px);
  will-change: transform, opacity;
}

/* ==========================================================================
   9. OUR STORY SECTION LAYOUT
   ========================================================================== */
:root {
  --neruva-bg-cream: #FAF9F3;
  --neruva-brand-gold: #F9CE03;
  --neruva-dark-green: #0F3D21;
  --neruva-accent-red: #A13429;
  --neruva-text-gray: #4A554F;
  --neruva-card-bg: #FFFFFF;
  --neruva-card-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.neruva_story_section {
  background-color: #FCFCED;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.neruva_story_abs_left {
  position: absolute;
  left: 0;
  top: 180px;
  width: auto;
  max-width: 220px;
  z-index: 1;
  pointer-events: none;
  animation: leafFloatStory 6s ease-in-out infinite alternate;
}

.neruva_story_abs_right {
  position: absolute;
  right: 0;
  top: 40px;
  width: auto;
  max-width: 220px;
  z-index: 1;
  pointer-events: none;
  animation: leafFloatStory 3s ease-in-out infinite alternate;
}

@keyframes leafFloatStory {
  0% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(-20px);
  }
}


.neruva_story_container {

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: flex-end;
  z-index: 999;
  position: inherit;
}

/* Left Content Styles */
.neruva_story_content {
  display: flex;
  flex-direction: column;
}

.neruva_story_badge {
  color: #9D2820;

  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
  display: inline-block;
}

.neruva_story_heading {
  font-family: 'Fredoka', sans-serif;
  color: #193B1C;

  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 51px;


}

.neruva_story_heading br {
  display: block;
}

.neruva_story_description {
  font-family: 'DM Sans', sans-serif;
  color: #3A3A3A;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  width: 80%;
  line-height: normal;
  padding-top: 15px;
  padding-bottom: 35px;
}

/* Feature Cards Grid */
.neruva_story_cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.neruva_story_card {
  background-color: var(--neruva-card-bg);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--neruva-card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neruva_story_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(15, 61, 33, 0.05);
}

.neruva_story_icon_wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;

  background-color: #ebf0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.neruva_story_icon {
  width: 24px;
  height: 24px;
  stroke: var(--neruva-brand-gold);
}

.neruva_story_card_title {
  font-family: 'Fredoka', sans-serif;
  color: #193B1C;

  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  margin: 20px 0 10px 0;

}

.neruva_story_card_desc {
  font-family: 'DM Sans', sans-serif;
  color: #414844;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Right Side: Layered Product Composition */
.neruva_story_product_wrapper {
  position: relative;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}



.neruva_story_leaves {

  height: auto;
  width: 100%;

}



/* ==========================================================================
   10. RESPONSIVE BREAKPOINTS (OUR STORY)
   ========================================================================== */
@media (max-width: 1600px) {
  .neruva_story_container {

    gap: 60px;
  }

  .neruva_story_heading {
    font-size: 3.25rem;
  }
}

@media (max-width: 1200px) {
  .neruva_story_container {

    gap: 50px;
  }

  .neruva_story_heading {
    font-size: 2.85rem;
  }

  /* .neruva_story_leaves {
    max-width: 320px;
  } */

  .neruva_story_product {
    max-width: 280px;
  }

  .neruva_story_splash {
    max-width: 500px;
  }

  /* .neruva_story_product_wrapper {
    height: 520px;
  } */
}

@media (max-width: 991px) {
  .neruva_story_container {

    grid-template-columns: 1fr;
    gap: 60px;
  }

  .neruva_story_content {
    text-align: center;
    align-items: center;
  }

  .neruva_story_description {
    margin-left: auto;
    margin-right: auto;
  }

  .neruva_story_product_wrapper {
    /* height: 580px; */
    max-width: 600px;
    margin: 0 auto;
  }

  /* .neruva_story_leaves {
    max-width: 360px;
  } */

  .neruva_story_product {
    max-width: 300px;
  }

  .neruva_story_splash {
    max-width: 560px;
  }

  .neruva_story_abs_left {
    max-width: 140px;
  }

  .neruva_story_abs_right {
    max-width: 140px;
  }
}

@media (max-width: 767px) {
  .neruva_story_container {

    gap: 30px;
  }

  .neruva_story_heading {
    font-size: 2.35rem;
  }

  .neruva_story_cards {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 500px;
  }

  .neruva_story_card {
    padding: 24px;
  }

  /* .neruva_story_product_wrapper {
    height: 460px;
  } */

  /* .neruva_story_leaves {
    max-width: 280px;
  } */

  .neruva_story_product {
    max-width: 240px;
  }

  .neruva_story_splash {
    max-width: 420px;
  }

  .neruva_story_abs_left,
  .neruva_story_abs_right {
    display: none;
  }
}

@media (max-width: 575px) {
  .neruva_story_section {
    padding: 80px 0;
  }

  .neruva_story_heading {
    font-size: 1.85rem;
  }

  /* .neruva_story_product_wrapper {
    height: 380px;
  } */

  .neruva_story_leaves {
    /* max-width: 220px; */
    bottom: 40px;
  }

  .neruva_story_product {
    max-width: 190px;
  }

  .neruva_story_splash {
    max-width: 340px;
  }
}

/* ==========================================================================
   11. OUR PRODUCTS SECTION Styles
   ========================================================================== */
.neruva_products_section {
  background: #F6F6F6;
  padding: 65px 0 130px;
  position: relative;
}

/* Heading styles */
.neruva_products_heading_wrap {
  text-align: center;
  margin-bottom: 60px;
}

.neruva_products_heading {
  color: #193B1C;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 57.6px;
  margin-bottom: 16px;
}

.neruva_products_description {
  color: #3A3A3A;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
  max-width: 600px;
  margin: 0 auto;
}

/* Product Grid */
.neruva_products_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-items: stretch;
}

/* Product Card */
.neruva_product_card {
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.015);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.neruva_product_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(25, 59, 28, 0.06);
}

.neruva_product_image_wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: #FFFFFF;
  position: relative;
}

.neruva_product_image_wrap img {
  max-width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.neruva_product_card:hover .neruva_product_image_wrap img {
  transform: scale(1.05);
}

.neruva_product_bottom {
  border-top: 1.5px solid #F1F1F1;
  padding: 20px;
  text-align: left;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.neruva_product_bottom span {
  color: #000;
  font-family: 'Fredoka', sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: normal;
  display: block;
}

.product_whatsapp_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  border: 1px solid #25D366;
}

.product_whatsapp_btn span {
  color: #000 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  display: inline-block !important;
}

.product_whatsapp_btn img {
  width: 22px;
  height: 22px;
}

.product_whatsapp_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Yellow Button wrap */
.neruva_products_button_wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.neruva_products_btn {
  display: inline-block;
  background-color: #F9CE03;
  color: #193B1C;
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 206, 3, 0.15);
}

.neruva_products_btn:hover {
  background-color: #E2BA00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 206, 3, 0.3);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .neruva_products_section {
    padding: 40px 0 100px;
  }

  .neruva_products_grid {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .neruva_products_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .neruva_products_heading {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 767px) {
  .neruva_products_section {
    padding: 80px 0;
  }

  .neruva_products_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .neruva_product_image_wrap {
    padding: 45px 30px;
  }

  .neruva_product_image_wrap img {
    max-height: 220px;
  }

}

@media (max-width: 575px) {
  .neruva_products_section {
    padding: 60px 0;
  }

  .neruva_products_heading {
    font-size: 32px;
    line-height: 38px;
  }

  .neruva_products_description {
    font-size: 16px;
    line-height: 24px;
  }

  .neruva_product_card {
    border-radius: 20px;
  }

  .neruva_product_bottom span {
    font-size: 17px;
  }

  .neruva_products_btn {
    padding: 15px 30px;
    font-size: 14px;
  }
}


/* ==========================
   HERITAGE SECTION
========================== */

.bg_green_area {
  width: 100%;
  background: linear-gradient(90deg, #193B1C 0%, #006609 100%);
  overflow: hidden;
}

.heritage_container {
  width: 100%;
  margin: 0 auto 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT IMAGE */

.heritage_image_col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.heritage_product_img {
  width: 100%;
  height: auto;
  display: block;
}

/* RIGHT CONTENT */

.heritage_content_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.heritage_subtitle {
  color: #FFF;
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.heritage_heading {
  color: #FFC107;
  font-family: 'Fredoka', sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 51px;
  margin: 0 0 15px;
}

.heritage_text {
  color: #EEE;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  max-width: 550px;
  margin-bottom: 40px;
}

.heritage_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 163px;
  height: 50px;
  border-radius: 50px;
  background: #FFC107;
  color: #9D2820;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  transition: all .3s ease;
}

.heritage_btn:hover {
  transform: translateY(-3px);
}

.banner-tag-wrapper {
  border: 1px solid #FFCA05;
  background-color: #9999998a;
  border-radius: 70px;
  position: absolute;
  top: 88%;
  left: 75px;
  z-index: 999;
  padding: 5px 60px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

.banner-tag-wrapper span {
  display: block;
  color: #FFCA05;
}

.wsp-icon-link {
  width: 52px;
  position: fixed;
  right: 52px;
  bottom: 50px;
  cursor: pointer;
  z-index: 9999;
}

/* ==========================================================================
   12. ABOUT US HIGHLIGHT SECTION (REBUILT)
   ========================================================================== */
.neruva_about_highlight_section {
  background-color: #F6F6F6;
  padding: 54px 0 65px;
  position: relative;
  overflow: visible;
  /* Allows decorative coconut to overflow section boundaries */
}

.about-highlight-wrapper {
  background-image: url('../images/about/oil-background.png');
  background-repeat: no-repeat;
  border-radius: 24px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: visible;
  z-index: 999;
  width: 100%;
  background-size: cover;
}

/* Left Content Area */
.about-highlight-content {
  width: 48%;
  padding: 100px 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  overflow: hidden;
  z-index: 2;
}

/* Oil-drop background image */
.about-oil-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/about/oil-background.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

/* Elevate left card content above the absolute oil bg */
.about-highlight-label,
.about-highlight-heading,
.about-highlight-description,
.about-highlight-btn-wrap {
  position: relative;
  z-index: 2;
}

.coconut-image {
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 333px;
  height: 222px;
}

/* Decorative Coconut Image position */
.about-highlight-coconut {
  z-index: 1;
  pointer-events: none;
  transition: all 0.4s ease;
}

.about-highlight-label {
  font-family: 'Fredoka', sans-serif;
  color: #9D2820;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-block;
  margin-bottom: 20px;
}

.about-highlight-heading {
  font-family: 'Fredoka', sans-serif;
  color: #193B1C;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-highlight-description {
  font-family: 'DM Sans', sans-serif;
  color: #3A3A3A;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.highlight-btn {
  display: inline-block;
  background-color: #FFCA05;
  color: #9D2820;
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 16px 43px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(249, 206, 3, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-btn:hover {
  background-color: #193B1C;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px #193b1c30;
}

/* Right Banner Image Area */
.about-highlight-image-wrap {
  width: 52%;
  height: 100%;
  position: relative;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  overflow: hidden;
}

.about-highlight-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-highlight-image-wrap:hover .about-highlight-banner {
  transform: scale(1.02) translateY(-5px);
}

.tab-view {
  display: none;
}


/* ==========================================================================
   13. OUR TRADITIONAL PROCESS SECTION
   ========================================================================== */
.neruva_traditional_process_section {
  background-color: #f5f5f5;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  /* Clips absolute background elements stretching outside the container */
  z-index: 1;
}

.traditional_process_header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 3;
}

.process_title {
  color: #193B1C;
  /* Brand dark green */
  font-family: 'Fredoka', sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 15px;
}

.process_subtitle {
  color: #3A3A3A;
  /* Gray subtitle */
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 auto;
}

/* Grid Layout */
.traditional_process_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 3;
}

/* Card Design */
.traditional_process_card {
  background-color: #fffdee;
  /* Light cream */
  border-radius: 20px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 320px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.traditional_process_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(25, 59, 28, 0.05);
}

.traditional_process_icon {
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.traditional_process_icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.traditional_process_card_title {
  color: #193B1C;
  font-family: 'Fredoka', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.traditional_process_card_desc {
  color: #414844;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.traditional_process_number {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: #FFCA05;
  /* Yellow golden number */
  opacity: 0.6;
  font-family: 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

/* Absolute Foliage and Birds Decorations */
.traditional_process_dec_left {
  position: absolute;
  left: 0px;
  bottom: 65px;
  width: 173px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  animation: leafFloatStory 7s ease-in-out infinite alternate;
}

.traditional_process_dec_right {
  position: absolute;
  right: 0px;
  top: 80px;
  width: 158px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  animation: leafFloatStory 6s ease-in-out infinite alternate;
}

.prdct-small {
  align-items: flex-end;
}

.prdct-small img {
  height: 200px;
}

/* ==========================================================================
   15. PREMIUM BRAND FOOTER SHOWCASE SECTION
   ========================================================================== */
.neruva_footer_showcase_section {
  background-color: #193B1C;
  padding: 230px 0 0px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Watermark Background Text */
.footer_watermark {
  font-family: 'Fredoka', sans-serif;
  font-size: 361px;
  font-weight: 700;
  color: #FFFFFF;
  opacity: 0.1;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(-22%);
  z-index: 1;
  pointer-events: none;
  width: 100%;
  text-align: center;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Yellow Main Card */
.footer_showcase_card {
  background-color: #FFC107;
  border-radius: 39px 39px 0px 0px;
  padding: 110px 55px 30px;
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 -80px 30px -8px #193b1c7d;
}

/* Decorative Corner Dots */
.corner_dot {
  position: absolute;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: #193B1C;
  z-index: 4;
}

.dot_left {
  top: 45px;
  left: 55px;
}

.dot_right {
  top: 45px;
  right: 55px;
}

/* 3-Column Layout */
.footer_card_grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}

/* Left Column: Brand Statement */
.footer_brand_col {
  flex: 1.1;
  display: flex;
  align-items: center;
}

.footer_brand_statement {
  font-family: 'Fredoka', sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #193B1C;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0;
}

/* Center Column: Product Packshot */
.footer_product_col {
  flex: 0 0 38%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: -95px;
  margin-bottom: -15px;
}

.footer_product_img {
  max-width: 115%;
  height: auto;
  display: block;
  object-fit: contain;
  z-index: 5;
  filter: drop-shadow(0 20px 25px rgba(25, 59, 28, 0.15));
  animation: footerFloat 6s ease-in-out infinite alternate;
}

@keyframes footerFloat {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-15px);
  }
}

/* Right Column: Contact info */
.footer_contact_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact_item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 15px;
  border-bottom: 1.5px dotted #193B1C;
}

.contact_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact_icon_wrap {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact_icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact_text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #193B1C;
  line-height: 1.5;
  font-weight: 400;
  word-break: break-word;
}

.contact_text a {
  color: #193B1C;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact_text a:hover {
  opacity: 0.8;
}

/* Navigation Row */
.footer_nav_row {
  margin-top: 60px;
  margin-bottom: 25px;
}

.footer_nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.footer_nav_list a {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #193B1C;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
}

.footer_nav_list a:hover {
  opacity: 0.6;
}

/* Divider Line */
.footer_divider {
  border-bottom: 1.5px dotted #193B1C;
  margin-bottom: 35px;
  width: 100%;
}

/* Bottom Bar */
.footer_bottom_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_credits {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #282828;
  font-weight: 400;
}

.footer_socials {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social_link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social_link:hover {
  transform: scale(1.25);
}

/* ==========================================================================
   14. APPLY FOR DEALERSHIP SECTION
   ========================================================================== */
.neruva_dealership_section {
  background-color: #f5f5f5;
  padding: 70px 0 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.dealership_header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 3;
}

.dealership_subtitle {
  color: #7A7A7A;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 auto;
}

/* Card Container */
.dealership_card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.dealership_card.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Grid Layout */
.dealership_grid {
  display: flex;
  gap: 50px;
  align-items: stretch;
}

/* Left Side: Image Area */
.dealership_image_wrap {
  flex: 0 0 38%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
}

.dealership_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 23px;
  display: block;
}

/* Right Side: Form Area */
.dealership_form_wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Form Styles */
#dealership-form {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
  padding: 65px 65px 60px 0px;
}

.form_row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.form_group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.form_group.full_width {
  flex: none;
  width: 100%;
  margin-bottom: 25px;
}

.form_label {
  color: #414844;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.form_input,
.form_select,
.form_textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #333333;
  border: 1px solid #C4C7C752;
  border-radius: 11px;
  padding: 15px 20px;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  outline: none;
}

.form_input::placeholder,
.form_select::placeholder,
.form_textarea::placeholder {
  color: #A3A3A3;
}

.form_input:focus,
.form_select:focus,
.form_textarea:focus {
  border-color: #c4c7c7;
}

.form_textarea {
  height: 120px;
  resize: none;
}

/* Custom Select Arrow Styling */
.select_wrapper {
  position: relative;
  width: 100%;
}

.form_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 50px;
  cursor: pointer;
}

/* Add custom dropdown icon using SVG */
.select_wrapper::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 7px;
  background-image: url("../images/icons/arow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Style select placeholder option */
.form_select option[disabled][selected] {
  display: none;
}

.form_select:invalid,
.form_select option:first-child {
  color: #A3A3A3;
}

/* Error states */
.form_group.has_error .form_input,
.form_group.has_error .form_select,
.form_group.has_error .form_textarea {
  border-color: #9D2820;
  background-color: #FFFDFD;
}

.error_message {
  color: #9D2820;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  margin-top: 2px;
  display: block;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.form_group.has_error .error_message {
  opacity: 1;
  max-height: 20px;
  margin-top: 4px;
}

/* Submit Button styling */
.form_submit_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-top: 5px;
}

.btn_dealer_submit {
  background-color: #F9CE03;
  color: #193B1C;
  border-radius: 999px;
  padding: 16px 38px;
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 206, 3, 0.15);
}

.btn_dealer_submit:hover {
  transform: translateY(-2px);
  background-color: #E2BA00;
  box-shadow: 0 8px 25px rgba(249, 206, 3, 0.35);
}

.btn_dealer_submit:active {
  transform: translateY(0);
}

/* Success Message Container styling */
.dealership_success_msg {
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}

.dealership_success_msg.active {
  opacity: 1;
  visibility: visible;
}

.success_icon_wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(25, 59, 28, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.success_svg {
  width: 50px;
  height: 50px;
}

.success_circle {
  stroke: #193B1C;
  stroke-width: 2.5;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-linecap: round;
}

.success_check {
  stroke: #193B1C;
  stroke-width: 3.5;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dealership_success_msg.active .success_circle {
  animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.dealership_success_msg.active .success_check {
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes strokeCircle {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes strokeCheck {
  100% {
    stroke-dashoffset: 0;
  }
}

.success_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 30px;
  color: #193B1C;
  margin-bottom: 12px;
  font-weight: 600;
}

.success_text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #4A554F;
  max-width: 350px;
  line-height: 1.6;
}

input:-internal-autofill-selected {
  background-color: #fff !important;
}


@media (max-width:1600px) {
  .banner-tag-wrapper {

    padding: 5px 40px;
  }

  .wsp-icon-link {
    bottom: 50px;
  }

  .slide-title {
    font-size: 4rem;
    width: 70%;
  }

  .about-highlight-content {
    padding: 80px 40px 50px;
  }

  .coconut-image {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 250px;
    height: 166px;
  }

  .coconut-image img {
    width: 100%;
  }

  .neruva_products_section {
    padding: 40px 0 80px;
  }

  .heritage_content_col {
    padding: 60px 0px 60px;
  }

  .heritage_container {
    align-items: flex-end;
  }

  .neruva_traditional_process_section {
    padding: 80px 0;
  }

  .traditional_process_dec_left {
    bottom: 20%;
    width: 58px;
  }

  .traditional_process_dec_right {
    top: 100px;
    width: 100px
  }

  .traditional_process_grid {
    gap: 20px
  }

  .header-container {
    grid-template-columns: 42% 7% 50%;
  }

  .neruva_story_section {
    padding: 100px 0;
  }

  .footer_brand_statement {
    font-size: 42px;
  }

  .footer_card_grid {
    gap: 40px;
  }

  .footer_product_col {
    flex: 0 0 35%;
  }
}

@media (max-width:1300px) {
  .banner-tag-wrapper {
    top: 86%;
    left: 0px;
    right: 0px;
    width: fit-content;
    margin: auto;
    padding: 5px 60px;
  }

  .slide-title {
    font-size: 4.2rem;
    width: 100%;
  }

  .about-highlight-content {
    padding: 70px 30px 40px;
  }

  .neruva_products_section {
    padding: 40px 0 80px;
  }

  .heritage_content_col {
    padding: 40px 0px 40px;
  }

  .story-content-container {
    top: 73%;
  }

  .banner-tag-wrapper {
    top: 78%;
  }

  .nav-link {
    font-size: 14px;
  }

  .footer_product_col {
    flex: 0 0 28%;
  }

  .footer_card_grid {
    align-items: flex-start;
  }
}

@media (max-width:1200px) {
  .neruva_story_container {
    grid-template-columns: 1fr;
  }

  .neruva_story_section {
    padding: 60px 0 30px;
  }

  .neruva_products_grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .heritage_content_col {
    padding: 40px 50px 40px 0px;
  }

  .heritage_heading {
    font-size: 42px;
    line-height: 40px;
  }

  .heritage_text {

    margin-bottom: 25px;
  }

  .traditional_process_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .traditional_process_card {
    padding: 30px;
    min-height: 300px;
  }

  .neruva_traditional_process_section {
    padding: 60px 0;
  }

  .story-content-container {
    top: 68%;
  }

  .banner-tag-wrapper {
    top: 75%;
  }

  .btn-contact {
    font-size: 14px;
    padding: 10px 20px;
  }

  .neruva_products_section {
    padding: 25px 0 60px;
  }

  .dealership_card {
    max-width: 95%;
  }

  .dealership_grid {
    gap: 35px;
  }

  .footer_showcase_card {
    padding: 70px 50px 35px;
  }

  .footer_brand_statement {
    font-size: 32px;
  }

  .footer_product_img {
    max-width: 90%;
  }

  .footer_product_col {
    margin-top: -30px;
  }

  .footer_card_grid {
    align-items: center;
  }

  .contact_text {
    font-size: 14px;
  }
}

@media (max-width:1024px) {
  .about-highlight-wrapper {
    flex-direction: column;
    height: auto;
    min-height: auto;
    background-image: none;
    row-gap: 40px;
    position: initial;
  }

  .about-highlight-content {
    width: 100%;
    padding: 60px 50px;
    background-image: url('../images/about/oil-background.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 24px 24px;
  }

  .about-highlight-image-wrap {
    width: 100%;
    height: 600px;
  }

  .desktop-view {
    display: none;
  }

  .tab-none {
    display: none;
  }

  .tab-view {
    display: block;
  }

  .coconut-tab-image {
    width: 200px;
    position: absolute;
    top: -15px;
    right: 15px;
  }

  .coconut-tab-image img {
    width: 100%;
    animation: leafFloatStory 6s ease-in-out infinite alternate;
  }
}

@media (max-width:991px) {

  .heritage_container {
    gap: 40px;
  }

  .heritage_heading {
    font-size: 42px;
    line-height: 46px;
  }

  .slide-title {
    font-size: 3.8rem;
  }

  .about-highlight-heading {
    font-size: 50px;
  }

  .about-highlight-coconut {
    left: -60px;
    bottom: -60px;
    width: 200px;
  }

  .coconut-tab-image {
    top: -44px;
  }

  .heritage_container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 20px;
  }

  .heritage_content_col {
    padding: 50px 0px 25px 0px;
    width: 60%;
    margin: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .neruva_story_section {
    padding: 40px 0 30px;
  }

  .about-highlight-content {
    padding: 40px 40px;
  }

  .traditional_process_number {
    bottom: 25px;
    left: 30px;
  }

  .traditional_process_icon {
    width: 38px;
    height: 38px;
    margin-bottom: 15px;
  }

  .traditional_process_card_title {
    font-size: 22px;
  }

  .traditional_process_card_desc {
    margin-bottom: 10px;
  }

  .traditional_process_card {
    min-height: 275px;
  }

  .neruva_dealership_section {
    padding: 60px 0;
  }

  .dealership_card {
    padding: 30px;
  }

  .dealership_grid {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .form_submit_wrap {
    justify-content: center;
  }

  .dealership_image_wrap {
    flex: none;
    width: 100%;
    height: 550px;
    min-height: auto;
  }

  .dealership_image {
    object-position: center;
  }

  #dealership-form {
    padding: 10px 0px 10px 0px;
  }

  .form_group.full_width,
  .form_row {
    margin-bottom: 15px;
  }

  .neruva_footer_showcase_section {
    padding: 100px 0 60px;
  }

  .footer_watermark {
    font-size: 24vw;
  }

  .footer_showcase_card {
    padding: 60px 40px 30px;
    border-radius: 32px;
  }

  .dot_left {
    top: 30px;
    left: 35px;
  }

  .dot_right {
    top: 30px;
    right: 35px;
  }

  .footer_card_grid {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    margin-bottom: 40px;
  }

  .footer_brand_col {
    justify-content: center;
  }

  .footer_product_col {
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: 300px;
  }

  .footer_product_img {
    max-width: 100%;
  }

  .footer_contact_col {
    width: 100%;
    max-width: 500px;
    align-items: center;
  }

  .contact_item {
    width: 100%;
    justify-content: center;
    text-align: left;
  }

  .footer_nav_row {
    margin-top: 40px;
  }
}

@media (max-width:870px) {
  .story-content-container {
    top: 75%;
  }
}

@media (max-width:820px) {
  .neruva_products_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:767px) {

  .bg_green_area {
    padding: 60px 0 0;
  }

  .heritage_content_col {
    align-items: center;
  }

  .heritage_heading {
    font-size: 34px;
    line-height: 40px;
  }

  .heritage_text {
    max-width: 100%;
  }

  .heritage_product_img {
    max-width: 100%;
  }

  .slide-title {
    font-size: 3.5rem;
  }

  .wsp-icon-link {
    width: 45px;
    right: 30px;
  }

  .neruva_about_highlight_section {
    padding: 60px 0;
  }

  .about-highlight-content {
    padding: 50px 30px;
  }

  .about-highlight-heading {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .about-highlight-description {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .about-highlight-image-wrap {
    height: 500px;
    /* fixed height on mobile stacked */
  }

  .about-highlight-coconut {
    left: -40px;
    bottom: -40px;
    width: 140px;
  }

  .coconut-tab-image {
    width: 150px;
    top: -38px;
  }

  .neruva_traditional_process_section {
    padding: 60px 0;
  }

  .traditional_process_title {
    font-size: 38px;
  }

  .traditional_process_subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .traditional_process_grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }

  .traditional_process_card {
    padding: 30px;
    min-height: auto;
  }

  .traditional_process_dec_left,
  .traditional_process_dec_right {
    display: none;
    /* Hide foliage on mobile to keep layout clean */
  }

  .heritage_content_col {
    padding: 0 20px;
    width: 100%;
  }

  .traditional_process_number {
    position: initial;
  }

  .traditional_process_card_desc {
    margin-bottom: 20px;
  }

  .traditional_process_card_title {
    font-size: 24px;
  }
}

@media (max-width:575px) {

  .heritage_heading {
    font-size: 28px;
    line-height: 34px;
  }

  .heritage_text {
    font-size: 15px;
    line-height: 24px;
  }

  .heritage_btn {
    min-width: 130px;
    height: 45px;
  }

  .slide-title {
    font-size: 3rem;
    line-height: 0.9;
  }

  .banner-tag-wrapper {
    top: 85%;
    padding: 3px 40px;
    font-size: 18px;
  }

  .story-content-container {
    top: 73%;
  }

  .banner-tag-wrapper {
    top: 75%;
  }

  .story-content-container {
    top: 65%;
    justify-content: flex-end;
    height: fit-content;
  }

  .wsp-icon-link img {
    width: 40px;
  }

  .wsp-icon-link {
    width: 40px;
    right: 15px;
  }

  .about-highlight-content {
    padding: 40px 20px;
  }

  .about-highlight-heading {
    font-size: 32px;
  }

  .about-highlight-image-wrap {
    height: 500px;
    /* fixed height on small mobile stacked */
  }

  .about-highlight-coconut {
    left: -20px;
    bottom: -30px;
    width: 100px;
  }

  .mob-none {
    display: none;
  }

  .neruva_products_section {
    padding: 0px 0 70px;
  }

  .neruva_products_grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .highlight-btn {
    font-size: 14px;
    padding: 14px 25px;
  }

  .neruva_about_highlight_section {
    padding: 40px 0;
  }

  .neruva_products_heading_wrap {
    margin-bottom: 40px;
  }

  .neruva_products_section {
    padding: 25px 0 40px;
  }

  .bg_green_area {
    padding: 50px 0 0;
  }

  .neruva_traditional_process_section {
    padding: 40px 0;
  }

  .traditional_process_icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .dealership_subtitle {
    font-size: 16px;
  }

  .dealership_card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .dealership_image_wrap {
    height: 250px;
    border-radius: 12px;
  }

  .dealership_image {
    border-radius: 12px;
  }

  .form_row {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }

  .form_group {
    margin-bottom: 0;
  }

  .form_group.full_width {
    margin-bottom: 15px;
  }

  .form_input,
  .form_select,
  .form_textarea {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 10px;
  }

  .form_textarea {
    height: 120px;
  }

  .btn_dealer_submit {
    width: 100%;
    padding: 15px 30px;
  }

  .neruva_footer_showcase_section {
    padding: 80px 0 50px;
  }

  .footer_watermark {
    font-size: 28vw;
    transform: translateX(-50%) translateY(-10%);
  }

  .footer_showcase_card {
    padding: 45px 20px 25px;
    border-radius: 24px;
  }

  .corner_dot {
    display: none;
  }

  .footer_brand_statement {
    font-size: 24px;
  }

  .footer_card_grid {
    gap: 30px;
    margin-bottom: 30px;
  }

  .contact_item {
    gap: 12px;
  }

  .contact_text {
    font-size: 14px;
  }

  .footer_nav_row {
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .footer_nav_list {
    flex-direction: column;
    gap: 15px;
  }

  .footer_nav_list a {
    font-size: 14px;
  }

  .footer_divider {
    margin-bottom: 20px;
  }

  .footer_bottom_bar {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }

  .footer_credits {
    font-size: 11px;
    line-height: 1.5;
  }

  .footer_socials {
    justify-content: center;
  }

  .process_title{font-size: 30px;}
  .story_intro_title{ font-size: 35px;}
  .dealer_info_title{font-size: 35px;}


}

@media (max-width:420px) {
  .story-content-container {
    top: 62%;
  }

  .banner-tag-wrapper {
    top: 75%;
  }
}
/* ==========================================================================
   PRODUCTS PAGE BANNER
   ========================================================================== */
.products_page_banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.products_banner_img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 450px;
  object-fit: cover;
}

/* ==========================================================================
   CONTACT US PAGE
   ========================================================================== */

.contact_get_in_touch {
  padding: 80px 0;
  background-color: #F8FAF9;
  text-align: center;
}

.contact_heading_wrap {
  max-width: 600px;
  margin: 0 auto 50px;
}

.contact_heading_wrap h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 40px;
  color: #193B1C;
  margin-bottom: 15px;
}

.contact_heading_wrap p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.contact_cards_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact_card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.contact_card:hover {
  transform: translateY(-5px);
}

.contact_card_icon {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.contact_card_icon img {
  width: 50px;
  height: auto;
}

.contact_card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #193B1C;
  margin-bottom: 12px;
  line-height: 1.4;
}

.contact_card h3 a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
  word-break: break-all;
}

.contact_card h3 a:hover {
  opacity: 0.8;
}

.contact_card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.contact_card_link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #4CAF50;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}

.contact_form_section {
  padding: 60px 0 100px;
  background-color: #F8FAF9;
}

.contact_form_heading_wrap {
  text-align: center;
  margin-bottom: 50px;
}

.contact_form_heading_wrap h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 40px;
  color: #193B1C;
  margin-bottom: 15px;
}

.contact_form_heading_wrap p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #666;
}

.contact_form_split {
  display: flex;
  gap: 50px;
  align-items: stretch;
}

.contact_form_image {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.contact_form_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact_form_wrapper {
  flex: 1.5;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.contact_form_actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.contact_form_actions .highlight-btn,
.contact_form_actions .btn-whatsapp-outline {
  flex: 1;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.btn-whatsapp-outline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid #E5E7EB;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #193B1C;
  background: #FFF;
  transition: all 0.3s ease;
}

.btn-whatsapp-outline:hover {
  border-color: #25D366;
  color: #25D366;
}

.btn-whatsapp-outline img {
  width: 20px;
  height: 20px;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact_cards_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact_form_split {
    flex-direction: column;
  }
  .contact_form_image {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .contact_cards_grid {
    grid-template-columns: 1fr;
  }
  .contact_form_actions {
    flex-direction: column;
  }
  .form_submit_wrap{
    flex-direction: column;
  }
  .contact_form_actions .highlight-btn,
  .contact_form_actions .btn-whatsapp-outline, 
  .form_submit_wrap .highlight-btn, .form_submit_wrap .btn-whatsapp-outline {
    width: 100%;
    justify-content: center;
  }
  .contact_form_wrapper {
    padding: 30px;
  }
}


/* ==========================================================================
   BECOME A DEALER PAGE
   ========================================================================== */

.dealer_info_section {
  padding: 80px 0;
  background-color: #F8FAF9;
}

.dealer_info_grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.dealer_info_content {
  padding-right: 20px;
}

.dealer_info_subtitle {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #C0392B;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}


.dealer_info_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #193B1C;
  margin-bottom: 25px;
  line-height: 1.1;
}

.dealer_info_content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.dealer_info_highlight {
  color: #193B1C;
  font-weight: 600;
  font-size: 18px;
  margin-top: 30px;
}

.dealer_info_image {
  border-radius: 20px;
  overflow: hidden;
}

.dealer_product_img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Dealer Page */
@media (max-width: 1024px) {
  .dealer_info_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dealer_info_content {
    padding-right: 0;
  }
}


/* ==========================================================================
   OUR STORY PAGE
   ========================================================================== */

.story_intro_section {
  padding: 80px 0;
  background-color: #F8FAF9;
}

.story_intro_grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.story_intro_content {
  padding-right: 20px;
}

.story_intro_subtitle {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #C0392B; /* Refined red */
  font-weight: 600;
  margin-bottom: 10px;
}

.story_intro_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 48px;
  color: #193B1C;
  margin-bottom: 25px;
  line-height: 1.1;
  font-weight: 600;
}

.story_intro_content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.story_intro_image {
  border-radius: 20px;
  overflow: hidden;
}

.story_side_img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Our Story */
@media (max-width: 1024px) {
  .story_intro_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story_intro_content {
    padding-right: 0;
  }
}


.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-leaf-icon-wrapper {
  width: 24px;
  height: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  flex-shrink: 0;
}

.mobile-leaf-icon-wrapper img {
  width: 100%;
  height: auto;
}

.mobile-nav-link.active .mobile-leaf-icon-wrapper,
.mobile-nav-link:hover .mobile-leaf-icon-wrapper {
  opacity: 1;
  visibility: visible;
}
.form_ajax_message{
  font-family: 'DM Sans', sans-serif;
  font-weight:500 !important;
}