/* ===========================
   AQUAPURE - MAIN STYLESHEET
   Colors: #002579, #28b6fc, #fff
   =========================== */

:root {
  --primary: #002579;
  --accent: #28b6fc;
  --white: #ffffff;
  --dark: #0d1b3e;
  --text: #11111;
  --light-bg: #f0f7ff;
  --card-shadow: 0 8px 32px rgba(0, 37, 121, .10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}


/* ===== NAVBAR ===== */
#mainNav {
  background: rgba(0, 37, 121, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  transition: all .3s;
  border-bottom: 2px solid rgba(40, 182, 252, .15);
}

.navbar-brand {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  color: var(--white) !important;
  letter-spacing: 2px;
}

.navbar-brand img {
  width: 100px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, .85) !important;
  font-weight: 600;
  font-size: .95rem;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: all .2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
  background: rgba(40, 182, 252, .1);
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 6px;
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler {
  border: 2px solid var(--accent) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2328b6fc' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
  height: 49rem;
  background: linear-gradient(135deg, #001860 0%, #002579 40%, #003fad 70%, #0050d0 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: radial-gradient(ellipse at 70% 50%, rgba(40, 182, 252, .15) 0%, transparent 70%); */
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(40, 182, 252, .25);
  border-radius: 50%;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: .5;
  }

  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.hero-tag {
  display: inline-block;
  background: rgba(40, 182, 252, .2);
  color: var(--accent);
  border: 1px solid rgba(40, 182, 252, .4);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-title .text-accent {
  color: var(--accent);
}

.img-hero {
  width: 100%;
}

.hero-sub {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.btn-primary-custom {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: .95rem;
  transition: all .3s;
  box-shadow: 0 6px 20px rgba(40, 182, 252, .35);
  font-family: 'Nunito', sans-serif;
}

.btn-primary-custom:hover {
  background: #1a9de0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(40, 182, 252, .45);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255, 255, 255, .5);
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  transition: all .3s;
  font-family: 'Nunito', sans-serif;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--white);
  color: var(--white);
}

.stat-box {
  background: rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  border: 1px solid rgba(40, 182, 252, .2);
}

.stat-box h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--accent);
  margin: 0;
  letter-spacing: 1px;
}

.stat-box p {
  color: rgba(255, 255, 255, .7);
  font-size: .78rem;
  margin: 0;
  font-weight: 600;
}

/* ===== HERO IMAGE FIX ===== */

.hero-bottle-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-bottle-visual {
  position: relative;
  z-index: 2;
  animation: bob 3s ease-in-out infinite;
}

.hero-bottle-visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(40, 182, 252, .45));
}

/* Glow Effect */
.bottle-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle,
      rgba(40, 182, 252, .35),
      transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(35px);
  z-index: 1;
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

/* Responsive */
@media (max-width: 991px) {

  .hero-section {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-bottle-wrap {
    margin-top: 40px;
  }

  .hero-bottle-visual img {
    max-width: 320px;
  }
}

@media (max-width: 576px) {

  .hero-title {
    font-size: 3rem;
  }

  .hero-sub {
    font-size: .95rem;
  }

  .hero-bottle-visual img {
    max-width: 250px;
  }

  .hero-btns a {
    width: 100%;
    margin-bottom: 12px;
  }
}

.wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #001860, #002579, #003fad);
  padding: 140px 0 70px;
  position: relative;
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(40, 182, 252, .1), transparent);
}

.page-hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: 3px;
  position: relative;
}

.breadcrumb {
  position: relative;
}

.breadcrumb-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .5);
}

/* ===== SECTIONS ===== */
.section-pad {
  padding: 80px 0;
}

.bg-light-blue {
  background: var(--light-bg);
}

.section-tag {
  display: inline-block;
  background: rgba(40, 182, 252, .12);
  color: var(--accent);
  border: 1.5px solid rgba(40, 182, 252, .3);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.text-accent {
  color: var(--accent);
}

.section-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  transition: all .3s;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--white);
}

.feature-card h5 {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.feature-card p {
  color: #11111;
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== PRODUCT PREVIEW CARDS ===== */

.product-preview-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  transition: all .35s ease;
  position: relative;
  height: 100%;
}

.product-preview-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  border-radius: 30px;
  padding: 5px 12px;
  letter-spacing: .5px;
}

.product-img-wrap {
  width: 100%;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}

.product-img {
  max-width: 100%;
  max-height: 210px;
  object-fit: contain;
  transition: transform .4s ease;
}

.product-preview-card:hover .product-img {
  transform: scale(1.06);
}

.product-preview-card h5 {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.product-price {
  font-size: .95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Responsive */

@media (max-width: 991px) {

  .product-img-wrap {
    height: 200px;
  }

  .product-img {
    max-height: 180px;
  }
}

@media (max-width: 576px) {

  .section-pad {
    padding: 60px 0;
  }

  .product-preview-card {
    padding: 24px 18px;
  }

  .product-img-wrap {
    height: 180px;
  }

  .product-img {
    max-height: 160px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--card-shadow);
  border-left: 4px solid var(--accent);
  transition: all .3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.stars {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testi-author {
  font-weight: 800;
  color: var(--primary);
  font-size: .9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #003fad, #0050d0);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(40, 182, 252, .2), transparent);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.cta-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
}

.cta-sub {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
  margin-bottom: 28px;
  position: relative;
}

.btn-white-custom {
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 13px 32px;
  border-radius: 12px;
  font-weight: 800;
  font-size: .95rem;
  transition: all .3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
  font-family: 'Nunito', sans-serif;
  position: relative;
}

.btn-white-custom:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--dark);
  padding: 60px 0 0;
}

.footer-brand {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 100px;
}

.footer-desc {
  color: #fff;
  font-size: .9rem;
  line-height: 1.7;
}

.footer-heading {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .85rem;
  margin-bottom: 16px;
}

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

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

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: .9rem;
  transition: .2s;
}

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

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

.footer-contact li {
  color: #ffffff;
  font-size: .88rem;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 3px;
  width: 16px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(40, 182, 252, .15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .2s;
  border: 1.5px solid rgba(40, 182, 252, .25);
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-hr {
  border-color: rgba(255, 255, 255, .1);
  margin: 40px 0 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .4);
  font-size: .85rem;
  margin: 0;
}

.footer-bottom .text-accent {
  color: var(--accent);
}

/* ===== ABOUT PAGE ===== */
.about-img-wrap {
  position: relative;
  padding: 20px;
}

.about-img-main {
  background: linear-gradient(135deg, var(--primary), #003fad);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  color: rgba(255, 255, 255, .15);
  font-size: 8rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 37, 121, .25);
}

.about-img-badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: .9rem;
  box-shadow: 0 6px 20px rgba(40, 182, 252, .4);
}

.about-img-stat {
  position: absolute;
  top: 20px;
  left: -10px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(0, 37, 121, .15);
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}

.about-img-stat span {
  display: block;
  font-size: 2rem;
  font-family: 'Bebas Neue';
  color: var(--accent);
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary);
}

.value-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

.mv-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  transition: all .3s;
}

.mv-card:hover,
.mv-card-center {
  border-color: var(--accent);
}

.mv-card-center {
  background: linear-gradient(135deg, var(--primary), #003fad);
  color: #fff;
}

.mv-card-center h4 {
  color: #fff;
}

.mv-card-center p {
  color: rgba(255, 255, 255, .85);
}

.mv-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.mv-card h4 {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.mv-card p {
  font-size: .95rem;
  line-height: 1.7;
}

.cert-badge {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: var(--card-shadow);
  transition: .3s;
}

.cert-badge:hover {
  transform: translateY(-4px);
  border: 2px solid var(--accent);
}

.cert-badge i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.cert-badge p {
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.team-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  transition: .3s;
}

.team-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: var(--white);
}

.team-card h5 {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card span {
  font-size: .82rem;
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.team-card p {
  font-size: .88rem;
  color: var(--text);
}

/* ===== SERVICES PAGE ===== */
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  transition: all .3s;
  height: 100%;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}

.service-icon-wrap {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 20px;
}

.service-card h4 {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 5px 0;
  font-size: .88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list i {
  color: var(--accent);
  font-size: .9rem;
}

.process-step {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 20px;
  box-shadow: var(--card-shadow);
  position: relative;
  transition: .3s;
}

.process-step:hover {
  transform: translateY(-4px);
  border: 2px solid var(--accent);
}

.process-num {
  font-family: 'Bebas Neue';
  font-size: 3.5rem;
  color: rgba(0, 37, 121, .08);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
}

.process-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.process-step h5 {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.process-step p {
  font-size: .9rem;
  color: var(--text);
}

/* ===== PRODUCT PAGE ===== */
.filter-bar-section {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 2px solid var(--light-bg);
  position: sticky;
  top: 74px;
  z-index: 100;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  border: 2px solid #e0e7ef;
  background: var(--white);
  color: var(--text);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: .2s;
  font-family: 'Nunito', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  transition: all .3s;
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 37, 121, .14);
}

/* PRODUCT IMAGE */
.product-img {
  width: 100%;
  max-width: 160px;
  height: 220px;
  object-fit: contain;
  transition: .3s;
}

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

/* PRODUCT IMAGE AREA */
.prod-img-area {
  background: linear-gradient(135deg,
      rgba(0, 37, 121, .05),
      rgba(40, 182, 252, .08));
  padding: 25px;
  text-align: center;
  position: relative;
  min-height: 280px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.product-badge-wrap {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.badge-bestseller {
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  border-radius: 20px;
  padding: 3px 12px;
}

.badge-popular {
  background: #ff6b35;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  border-radius: 20px;
  padding: 3px 12px;
}

.badge-value {
  background: #22c55e;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  border-radius: 20px;
  padding: 3px 12px;
}

/* .prod-img-area {
  background: linear-gradient(135deg, rgba(0, 37, 121, .05), rgba(40, 182, 252, .08));
  padding: 32px;
  text-align: center;
  font-size: 5rem;
  color: var(--accent);
  position: relative;
} */

.spring-bg {
  background: linear-gradient(135deg, rgba(34, 197, 94, .05), rgba(40, 182, 252, .1));
}

.gallon-bg {
  background: linear-gradient(135deg, rgba(0, 37, 121, .08), rgba(40, 182, 252, .12));
  color: var(--primary);
}

.pack-bg {
  background: linear-gradient(135deg, rgba(255, 107, 53, .05), rgba(40, 182, 252, .08));
}

.prod-volume {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: .78rem;
  font-weight: 800;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  padding: 2px 10px;
  font-family: 'Nunito';
}

.prod-body {
  padding: 20px;
}

.prod-name {
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 6px;
}

.prod-desc {
  font-size: .83rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 12px;
}

.prod-specs {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.prod-specs span {
  font-size: .78rem;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: 8px;
  padding: 3px 10px;
  font-weight: 700;
}

.prod-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.prod-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}

.prod-price span {
  font-size: 1.5rem;
}

.prod-unit {
  font-size: .78rem;
  color: #999;
  font-weight: 600;
}

.qty-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: .2s;
}

.qty-btn:hover {
  background: var(--accent);
}

.qty-input {
  width: 55px;
  text-align: center;
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 4px;
  font-weight: 800;
  font-size: .9rem;
  font-family: 'Nunito';
}

.btn-add-cart {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 11px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  transition: all .3s;
}

.btn-add-cart:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.cart-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #22c55e;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(34, 197, 94, .35);
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  transition: .3s;
}

.contact-info-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.ci-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  color: #fff;
}

.contact-info-card h5 {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-info-card p {
  color: var(--text);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0;
}

.checkout-form-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 32px;
}

.checkout-form-box label {
  font-weight: 700;
  color: var(--primary);
  font-size: .9rem;
  display: block;
  margin-bottom: 6px;
}

.checkout-form-box .form-control {
  border: 2px solid #e0e7ef;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Nunito', sans-serif;
  transition: .2s;
  font-size: .9rem;
}

.checkout-form-box .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(40, 182, 252, .15);
  outline: none;
}

.map-placeholder {
  background: var(--light-bg);
  border-radius: 18px;
  overflow: hidden;
}

.map-mock {
  padding: 60px 20px;
  text-align: center;
}

.map-mock i {
  font-size: 4rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.map-mock p {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.branch-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0, 37, 121, .06);
  border-left: 3px solid var(--accent);
}

.branch-item i {
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 2px;
}

.branch-item strong {
  color: var(--primary);
  font-size: .9rem;
}

.branch-item small {
  color: #11111;
  font-size: .82rem;
}

/* FAQ Accordion */
.aqua-accordion .accordion-item {
  border: 2px solid #e0e7ef;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.aqua-accordion .accordion-button {
  font-weight: 700;
  color: var(--primary);
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  background: var(--white);
}

.aqua-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary), #003fad);
  color: var(--white);
  box-shadow: none;
}

.aqua-accordion .accordion-button::after {
  filter: none;
}

.aqua-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.aqua-accordion .accordion-body {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

.alert-success-custom {
  background: #e8f5e9;
  border: 2px solid #4caf50;
  border-radius: 12px;
  color: #2e7d32;
  padding: 14px 18px;
  font-weight: 700;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}


/* Links styling */
.footer-contact a{
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-contact a:hover{
  color: #28b6fc;
  text-decoration: none;
}

.contact-link{
  text-decoration: none;
  color: inherit;
  display: block;
}



.contact-info-card h5{
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-info-card p{
  margin: 0;
  font-size: 14px;
  /*color: #555;*/
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .stat-box h3 {
    font-size: 1.5rem;
  }

  .hero-btns .btn-outline-custom {
    margin-top: 12px;
  }

  .filter-bar {
    gap: 6px;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: .8rem;
  }

  .payment-method-wrap {
    flex-direction: column;
  }

  .step-dot .step-label {
    font-size: .65rem;
  }
}

/* flex helpers */
.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.fw-800 {
  font-weight: 800;
}


/* ABOUT PAGE EXTRA CSS */

.about-company-section .about-main-img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-img-wrap {
  position: relative;
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #00aaff;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-feature-box {
  background: #f5fbff;
  padding: 15px 18px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.about-feature-box i {
  color: #00aaff;
  margin-right: 8px;
}

.about-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* CHOOSE SECTION */

.choose-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 25px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.choose-card:hover {
  transform: translateY(-10px);
}

.choose-icon {
  width: 80px;
  height: 80px;
  background: #00aaff;
  color: #fff;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

/* STATS */

.stats-section {
  background: linear-gradient(135deg, #009dff, #00d4ff);
}

.stats-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 35px 20px;
  border-radius: 20px;
  color: #fff;
}

.stats-box h2 {
  font-size: 45px;
  font-weight: 800;
}

.stats-box p {
  margin: 0;
  font-size: 18px;
}

/* CERTIFICATE SECTION */

.certificate-section {
  position: relative;
  overflow: hidden;
}

.certificate-text {
  max-width: 750px;
  margin: auto;
}

.main-certificate-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
  transition: 0.4s ease;
}

.main-certificate-card:hover {
  transform: translateY(-8px);
}

.certificate-img-wrap {
  position: relative;
  background: #f5fbff;
  padding: 25px;
}

.main-certificate-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  border: 4px solid #e6f6ff;
}

.certificate-content {
  padding: 35px;
}

.certificate-content h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #111;
}

.certificate-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 25px;
}

.certificate-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.certificate-point {
  background: #f5fbff;
  padding: 15px 18px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.certificate-point:hover {
  background: #00aaff;
  color: #fff;
  transform: translateY(-3px);
}

.certificate-point i {
  color: #00aaff;
  margin-right: 8px;
}

.certificate-point:hover i {
  color: #fff;
}

/* MOBILE */

@media(max-width:768px) {

  .certificate-content {
    padding: 25px;
  }

  .certificate-content h3 {
    font-size: 24px;
  }

  .certificate-points {
    grid-template-columns: 1fr;
  }

}

/* TEAM */

.team-section .team-card {
  background: #fff;
  border-radius: 25px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.team-section .team-card:hover {
  transform: translateY(-10px);
}

.team-avatar {
  width: 90px;
  height: 90px;
  background: #00aaff;
  color: #fff;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin-bottom: 20px;
}

.team-card h5 {
  margin-bottom: 5px;
  font-weight: 700;
}

.team-card span {
  display: block;
  color: #00aaff;
  margin-bottom: 10px;
  font-weight: 600;
}

/* =====================================================
   AQUAPURE — FULL RESPONSIVE CSS
   Breakpoints: 1600px | 1440px | 1399px | 1280px |
                1199px | 991px  | 767px
   ===================================================== */


/* ─────────────────────────────────────────────────────
   1600px — Extra Large Desktops / Wide Screens
   ───────────────────────────────────────────────────── */
@media (max-width: 1600px) {

  /* NAVBAR */
  .navbar-brand img {
    width: 90px;
  }

  /* HERO */
  .hero-section {
    height: 46rem;
  }

  .hero-title {
    font-size: 5.5rem;
  }

  .hero-bottle-visual img {
    max-width: 440px;
  }

  .bottle-glow {
    width: 320px;
    height: 320px;
  }

  /* PRODUCTS */
  .product-img {
    max-width: 148px;
    height: 205px;
  }

  .prod-img-area {
    min-height: 260px;
  }

  /* SECTIONS */
  .section-pad {
    padding: 75px 0;
  }

  /* ABOUT */
  .about-img-main {
    padding: 50px;
    font-size: 7rem;
  }

  /* STATS */
  .stats-box h2 {
    font-size: 40px;
  }
}


/* ─────────────────────────────────────────────────────
   1440px — Large Laptops / Standard Desktops
   ───────────────────────────────────────────────────── */
@media (max-width: 1440px) {

  /* NAVBAR */
  .navbar-nav .nav-link {
    padding: 7px 13px !important;
    font-size: .9rem;
  }

  .navbar-brand img {
    width: 85px;
  }

  /* HERO */
  .hero-section {
    height: 44rem;
  }

  .hero-title {
    font-size: 5rem;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-bottle-visual img {
    max-width: 400px;
  }

  .bottle-glow {
    width: 290px;
    height: 290px;
  }

  .stat-box h3 {
    font-size: 1.8rem;
  }

  .stat-box p {
    font-size: .75rem;
  }

  /* SECTION */
  .section-title {
    font-size: 2.6rem;
  }

  .section-pad {
    padding: 70px 0;
  }

  /* PRODUCTS */
  .prod-img-area {
    min-height: 250px;
  }

  .product-img {
    max-width: 140px;
    height: 195px;
  }

  /* CERTIFICATE */
  .certificate-content h3 {
    font-size: 28px;
  }

  .certificate-content {
    padding: 28px;
  }

  /* STATS */
  .stats-box h2 {
    font-size: 38px;
  }

  .stats-box p {
    font-size: 16px;
  }
}


/* ─────────────────────────────────────────────────────
   1399px — Standard Desktops (Bootstrap XL breakpoint)
   ───────────────────────────────────────────────────── */
@media (max-width: 1399px) {

  /* NAVBAR */
  #mainNav {
    padding: 12px 0;
  }

  .navbar-brand img {
    width: 80px;
  }

  .navbar-nav .nav-link {
    padding: 6px 11px !important;
    font-size: .88rem;
  }

  /* HERO */
  .hero-section {
    height: 42rem;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-title {
    font-size: 4.6rem;
  }

  .hero-sub {
    font-size: 1rem;
    max-width: 440px;
  }

  .hero-bottle-visual img {
    max-width: 370px;
  }

  .bottle-glow {
    width: 270px;
    height: 270px;
  }

  /* STATS */
  .stat-box {
    padding: 12px 8px;
  }

  .stat-box h3 {
    font-size: 1.6rem;
  }

  /* SECTION */
  .section-title {
    font-size: 2.4rem;
  }

  .section-pad {
    padding: 65px 0;
  }

  .section-text {
    font-size: .95rem;
  }

  /* PRODUCT CARDS */
  .prod-img-area {
    min-height: 240px;
    padding: 22px;
  }

  .product-img {
    max-width: 130px;
    height: 185px;
  }

  .prod-name {
    font-size: .95rem;
  }

  .prod-price {
    font-size: 1.1rem;
  }

  .prod-price span {
    font-size: 1.35rem;
  }

  /* FEATURE CARDS */
  .feature-card {
    padding: 26px 20px;
  }

  .feature-icon {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }

  /* SERVICE */
  .service-card {
    padding: 26px 20px;
  }

  .service-icon-wrap {
    width: 62px;
    height: 62px;
    font-size: 1.6rem;
  }

  /* ABOUT */
  .about-img-main {
    font-size: 6.5rem;
    padding: 45px;
  }

  .about-img-stat span {
    font-size: 1.7rem;
  }

  /* CERTIFICATE */
  .certificate-content h3 {
    font-size: 26px;
  }

  .certificate-content {
    padding: 25px;
  }

  .certificate-points {
    gap: 12px;
  }

  /* STATS */
  .stats-box h2 {
    font-size: 36px;
  }

  .stats-box p {
    font-size: 15px;
  }

  .stats-box {
    padding: 28px 18px;
  }

  /* FOOTER */
  .footer-brand img {
    width: 85px;
  }

  .footer-desc {
    font-size: .85rem;
  }

  /* CTA */
  .cta-title {
    font-size: 2.8rem;
  }

  .cta-sub {
    font-size: 1rem;
  }
}


/* ─────────────────────────────────────────────────────
   1280px — Small Desktops / Large Laptops
   ───────────────────────────────────────────────────── */
@media (max-width: 1280px) {

  /* NAVBAR */
  .navbar-nav .nav-link {
    padding: 6px 9px !important;
    font-size: .85rem;
  }

  .navbar-brand img {
    width: 76px;
  }

  /* HERO */
  .hero-section {
    height: 42rem;
  }

  .hero-title {
    font-size: 4.2rem;
  }

  .hero-sub {
    font-size: .97rem;
    max-width: 410px;
  }

  .hero-bottle-visual img {
    max-width: 340px;
  }

  .bottle-glow {
    width: 250px;
    height: 250px;
  }

  /* STATS BOXES */
  .stat-box h3 {
    font-size: 1.5rem;
  }

  .stat-box p {
    font-size: .72rem;
  }

  /* SECTION */
  .section-title {
    font-size: 2.2rem;
  }

  .section-pad {
    padding: 60px 0;
  }

  /* PRODUCTS */
  .prod-img-area {
    min-height: 225px;
    padding: 18px;
  }

  .product-img {
    max-width: 120px;
    height: 172px;
  }

  .prod-body {
    padding: 16px;
  }

  .prod-name {
    font-size: .9rem;
  }

  .prod-desc {
    font-size: .8rem;
  }

  .prod-price {
    font-size: 1rem;
  }

  .prod-price span {
    font-size: 1.25rem;
  }

  .prod-specs span {
    font-size: .74rem;
    padding: 2px 8px;
  }

  /* FEATURE CARDS */
  .feature-card {
    padding: 24px 18px;
  }

  .feature-icon {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
    border-radius: 12px;
  }

  .feature-card h5 {
    font-size: .95rem;
  }

  .feature-card p {
    font-size: .85rem;
  }

  /* SERVICE */
  .service-card h4 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: .86rem;
  }

  .service-list li {
    font-size: .84rem;
  }

  /* PROCESS */
  .process-step {
    padding: 26px 16px;
  }

  .process-num {
    font-size: 3rem;
  }

  .process-icon {
    font-size: 2rem;
  }

  .process-step h5 {
    font-size: .95rem;
  }

  .process-step p {
    font-size: .86rem;
  }

  /* TESTIMONIAL */
  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-card p {
    font-size: .9rem;
  }

  /* ABOUT */
  .about-img-main {
    font-size: 6rem;
    padding: 40px;
  }

  .about-img-stat span {
    font-size: 1.5rem;
  }

  .mv-card {
    padding: 28px 20px;
  }

  .mv-icon {
    font-size: 2.2rem;
  }

  /* TEAM */
  .team-card {
    padding: 24px 16px;
  }

  .team-avatar {
    width: 75px;
    height: 75px;
    font-size: 1.8rem;
  }

  .team-card h5 {
    font-size: .95rem;
  }

  /* CERTIFICATE */
  .certificate-content h3 {
    font-size: 24px;
  }

  .certificate-content {
    padding: 22px;
  }

  .certificate-points {
    gap: 10px;
  }

  .certificate-point {
    padding: 12px 14px;
    font-size: .9rem;
  }

  /* STATS SECTION */
  .stats-box h2 {
    font-size: 34px;
  }

  .stats-box p {
    font-size: 14px;
  }

  /* CONTACT */
  .contact-info-card {
    padding: 22px 16px;
  }

  .ci-icon {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }

  .checkout-form-box {
    padding: 26px;
  }

  /* FOOTER */
  .main-footer {
    padding: 50px 0 0;
  }

  .footer-brand img {
    width: 76px;
  }

  .footer-links a {
    font-size: .86rem;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero-title {
    font-size: 3.2rem;
  }

  /* CTA */
  .cta-title {
    font-size: 2.5rem;
  }

  .btn-primary-custom,
  .btn-outline-custom,
  .btn-white-custom {
    padding: 11px 22px;
    font-size: .9rem;
  }
}


/* ─────────────────────────────────────────────────────
   1199px — Bootstrap LG breakpoint (tablets/small laptops)
   ───────────────────────────────────────────────────── */
@media (max-width: 1199px) {

  /* NAVBAR */
  #mainNav {
    padding: 10px 0;
  }

  .navbar-brand img {
    width: 72px;
  }

  .navbar-nav .nav-link {
    padding: 6px 8px !important;
    font-size: .83rem;
  }

  /* HERO */
  .hero-section {
    height: auto;
    min-height: 38rem;
    padding: 100px 0 60px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-title {
    font-size: 3.8rem;
  }

  .hero-sub {
    font-size: .95rem;
    max-width: 380px;
  }

  .hero-tag {
    font-size: .8rem;
    padding: 5px 14px;
  }

  .hero-bottle-visual img {
    max-width: 300px;
  }

  .bottle-glow {
    width: 220px;
    height: 220px;
  }

  .stat-box {
    padding: 10px 6px;
  }

  .stat-box h3 {
    font-size: 1.4rem;
  }

  .stat-box p {
    font-size: .68rem;
  }

  /* SECTION */
  .section-title {
    font-size: 2rem;
  }

  .section-pad {
    padding: 55px 0;
  }

  /* FEATURE CARDS */
  .feature-card {
    padding: 22px 16px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    border-radius: 10px;
    margin-bottom: 14px;
  }

  .feature-card h5 {
    font-size: .9rem;
  }

  /* PRODUCT CARDS */
  .prod-img-area {
    min-height: 210px;
    padding: 16px;
  }

  .product-img {
    max-width: 112px;
    height: 160px;
  }

  .product-badge-wrap {
    top: 10px;
    left: 10px;
  }

  .prod-volume {
    font-size: .72rem;
    padding: 2px 8px;
  }

  .prod-body {
    padding: 14px;
  }

  .prod-price {
    font-size: .95rem;
  }

  .prod-price span {
    font-size: 1.15rem;
  }

  .qty-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .qty-input {
    width: 48px;
    font-size: .85rem;
  }

  .btn-add-cart {
    padding: 9px;
    font-size: .85rem;
  }

  /* FILTER */
  .filter-bar-section {
    top: 64px;
  }

  .filter-btn {
    padding: 7px 16px;
    font-size: .82rem;
  }

  /* SERVICE */
  .service-card {
    padding: 24px 18px;
  }

  .service-icon-wrap {
    width: 58px;
    height: 58px;
    font-size: 1.5rem;
    border-radius: 14px;
  }

  .service-card h4 {
    font-size: .95rem;
  }

  .service-card p {
    font-size: .84rem;
  }

  /* PROCESS */
  .process-step {
    padding: 22px 14px;
  }

  .process-num {
    font-size: 2.5rem;
    top: 8px;
    right: 12px;
  }

  .process-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  /* TESTIMONIAL */
  .testimonial-card {
    padding: 20px 16px;
  }

  /* ABOUT */
  .about-img-main {
    font-size: 5.5rem;
    padding: 36px;
  }

  .about-img-badge {
    font-size: .82rem;
    padding: 8px 16px;
  }

  .about-img-stat {
    padding: 12px 16px;
    font-size: .85rem;
  }

  .mv-card {
    padding: 24px 18px;
  }

  .cert-badge {
    padding: 22px 16px;
  }

  .cert-badge i {
    font-size: 2rem;
  }

  /* TEAM */
  .team-avatar {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }

  /* STATS */
  .stats-box h2 {
    font-size: 30px;
  }

  .stats-box {
    padding: 24px 16px;
  }

  /* CERTIFICATE */
  .main-certificate-card {
    border-radius: 20px;
  }

  .certificate-content h3 {
    font-size: 22px;
  }

  .certificate-content {
    padding: 20px;
  }

  /* CONTACT */
  .checkout-form-box {
    padding: 22px;
  }

  .checkout-form-box .form-control {
    padding: 10px 14px;
    font-size: .86rem;
  }

  /* FOOTER */
  .main-footer {
    padding: 44px 0 0;
  }

  .footer-heading {
    font-size: .8rem;
  }

  .footer-links a {
    font-size: .83rem;
  }

  .footer-contact li {
    font-size: .83rem;
  }

  .social-links a {
    width: 34px;
    height: 34px;
    font-size: .9rem;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 110px 0 55px;
  }

  .page-hero-title {
    font-size: 2.8rem;
  }

  /* CTA */
  .cta-section {
    padding: 58px 0;
  }

  .cta-title {
    font-size: 2.3rem;
  }
}


/* ─────────────────────────────────────────────────────
   991px — Bootstrap MD breakpoint (tablets portrait)
   ───────────────────────────────────────────────────── */
@media (max-width: 991px) {

  /* NAVBAR — mobile menu */
  #mainNav {
    padding: 10px 0;
  }

  .navbar-brand img {
    width: 68px;
  }

  .navbar-nav .nav-link {
    padding: 10px 16px !important;
    font-size: .92rem;
    border-radius: 8px;
    margin: 2px 0;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(40, 182, 252, .12);
  }

  .cart-icon {
    margin-top: 6px;
  }

  /* HERO — centered layout */
  .hero-section {
    height: auto;
    min-height: unset;
    padding: 90px 0 50px;
    text-align: center;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-title {
    font-size: 3.4rem;
  }

  .hero-sub {
    font-size: .93rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tag {
    font-size: .78rem;
  }

  .hero-btns {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-stats {
    justify-content: center !important;
  }

  .hero-bottle-wrap {
    margin-top: 36px;
  }

  .hero-bottle-visual img {
    max-width: 280px;
  }

  .bottle-glow {
    width: 200px;
    height: 200px;
  }

  .stat-box {
    padding: 10px 12px;
    min-width: 90px;
  }

  .stat-box h3 {
    font-size: 1.5rem;
  }

  .stat-box p {
    font-size: .72rem;
  }

  /* WAVE */
  .wave-bottom svg {
    height: 50px;
  }

  /* SECTION */
  .section-title {
    font-size: 1.9rem;
  }

  .section-pad {
    padding: 50px 0;
  }

  .section-text {
    font-size: .93rem;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 100px 0 50px;
  }

  .page-hero-title {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }

  /* FEATURE CARDS — 2 columns */
  .feature-card {
    padding: 22px 18px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  /* PRODUCT GRID — 2 columns */
  .filter-bar-section {
    top: 60px;
    padding: 14px 0;
  }

  .filter-bar {
    gap: 6px;
  }

  .filter-btn {
    padding: 7px 14px;
    font-size: .8rem;
  }

  .product-card {
    border-radius: 16px;
  }

  .prod-img-area {
    min-height: 200px;
    padding: 16px;
  }

  .product-img {
    max-width: 110px;
    height: 155px;
  }

  .prod-body {
    padding: 14px;
  }

  .prod-name {
    font-size: .92rem;
  }

  .prod-desc {
    font-size: .8rem;
    margin-bottom: 10px;
  }

  .prod-specs {
    gap: 8px;
    margin-bottom: 10px;
  }

  .prod-specs span {
    font-size: .72rem;
    padding: 2px 8px;
  }

  .prod-price {
    font-size: .92rem;
  }

  .prod-price span {
    font-size: 1.1rem;
  }

  .qty-wrap {
    gap: 6px;
    margin-bottom: 12px;
  }

  .qty-btn {
    width: 28px;
    height: 28px;
    font-size: .95rem;
    border-radius: 7px;
  }

  .qty-input {
    width: 46px;
    padding: 3px;
  }

  .btn-add-cart {
    padding: 9px 10px;
    font-size: .84rem;
  }

  /* PRODUCT PREVIEW CARDS */
  .product-preview-card {
    padding: 24px 18px;
  }

  .product-img-wrap {
    height: 195px;
  }

  .product-img {
    max-height: 175px;
  }

  /* SERVICE — 2 columns */
  .service-card {
    padding: 22px 16px;
  }

  .service-icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .service-card h4 {
    font-size: .95rem;
  }

  /* PROCESS */
  .process-step {
    padding: 22px 16px;
  }

  .process-num {
    font-size: 2.8rem;
  }

  /* TESTIMONIALS */
  .testimonial-card {
    padding: 22px 18px;
  }

  /* ABOUT */
  .about-img-wrap {
    padding: 10px;
    margin-bottom: 32px;
  }

  .about-img-main {
    font-size: 5rem;
    padding: 36px;
  }

  .about-img-stat {
    left: 0;
  }

  .about-img-badge {
    bottom: 10px;
    right: 10px;
  }

  .mv-card {
    padding: 26px 20px;
    margin-bottom: 16px;
  }

  .mv-card-center {
    margin-bottom: 16px;
  }

  /* CHOOSE */
  .choose-card {
    padding: 28px 20px;
    margin-bottom: 20px;
  }

  .choose-icon {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }

  /* TEAM */
  .team-card {
    padding: 24px 16px;
    margin-bottom: 20px;
  }

  .team-avatar {
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
  }

  /* STATS SECTION */
  .stats-box {
    padding: 24px 18px;
    margin-bottom: 16px;
  }

  .stats-box h2 {
    font-size: 36px;
  }

  .stats-box p {
    font-size: 15px;
  }

  /* CERTIFICATE */
  .main-certificate-card {
    border-radius: 18px;
  }

  .certificate-img-wrap {
    padding: 18px;
  }

  .certificate-content h3 {
    font-size: 24px;
  }

  .certificate-content {
    padding: 24px;
  }

  .certificate-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* CONTACT */
  .contact-info-card {
    margin-bottom: 16px;
  }

  .checkout-form-box {
    padding: 24px;
  }

  .map-mock {
    padding: 40px 20px;
  }

  .map-mock i {
    font-size: 3rem;
  }

  .branch-item {
    padding: 12px;
  }

  /* FAQ */
  .aqua-accordion .accordion-button {
    font-size: .9rem;
  }

  /* CTA */
  .cta-section {
    padding: 54px 0;
    text-align: center;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-sub {
    font-size: .97rem;
  }

  /* FOOTER */
  .main-footer {
    padding: 40px 0 0;
  }

  .footer-brand {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .footer-brand img {
    width: 68px;
  }

  .footer-desc {
    font-size: .86rem;
  }

  .social-links {
    margin-top: 16px;
  }

  .footer-hr {
    margin: 32px 0 16px;
  }

  /* CART TOAST */
  .cart-toast {
    bottom: 20px;
    right: 16px;
    font-size: .88rem;
    padding: 12px 20px;
  }
}


/* ─────────────────────────────────────────────────────
   767px — Bootstrap SM / Mobile Landscape
   ───────────────────────────────────────────────────── */
@media (max-width: 767px) {

  /* NAVBAR */
  .navbar-brand img {
    width: 60px;
  }

  .navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
  }

  /* HERO */
  .hero-section {
    padding: 80px 0 44px;
  }

  .hero-title {
    font-size: 2.8rem;
    letter-spacing: 1px;
  }

  .hero-sub {
    font-size: .9rem;
  }

  .hero-tag {
    font-size: .74rem;
    padding: 4px 12px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns a,
  .hero-btns button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero-bottle-wrap {
    margin-top: 28px;
  }

  .hero-bottle-visual img {
    max-width: 230px;
  }

  .bottle-glow {
    width: 170px;
    height: 170px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 10px !important;
  }

  .stat-box {
    flex: 1 1 calc(50% - 5px);
    min-width: 100px;
  }

  .stat-box h3 {
    font-size: 1.4rem;
  }

  .stat-box p {
    font-size: .68rem;
  }

  /* WAVE */
  .wave-bottom svg {
    height: 40px;
  }

  /* SECTION */
  .section-title {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }

  .section-pad {
    padding: 44px 0;
  }

  .section-text {
    font-size: .9rem;
  }

  .section-tag {
    font-size: .75rem;
    padding: 3px 12px;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 90px 0 44px;
  }

  .page-hero-title {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }

  .breadcrumb {
    font-size: .85rem;
  }

  /* FEATURE CARDS — single column */
  .feature-card {
    padding: 20px 16px;
    margin-bottom: 16px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .feature-card h5 {
    font-size: .9rem;
  }

  .feature-card p {
    font-size: .84rem;
  }

  /* FILTER */
  .filter-bar-section {
    top: 58px;
    padding: 12px 0;
  }

  .filter-bar {
    gap: 5px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .filter-bar::-webkit-scrollbar {
    height: 3px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: .78rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* PRODUCT CARDS — single column */
  .product-card {
    border-radius: 14px;
    margin-bottom: 20px;
  }

  .prod-img-area {
    min-height: 190px;
    padding: 14px;
  }

  .product-img {
    max-width: 105px;
    height: 148px;
  }

  .prod-body {
    padding: 14px 12px;
  }

  .prod-name {
    font-size: .9rem;
  }

  .prod-desc {
    font-size: .78rem;
  }

  .prod-specs {
    gap: 6px;
  }

  .prod-specs span {
    font-size: .7rem;
    padding: 2px 7px;
  }

  .prod-price-row {
    gap: 6px;
    margin-bottom: 10px;
  }

  .prod-price {
    font-size: .9rem;
  }

  .prod-price span {
    font-size: 1.1rem;
  }

  .prod-unit {
    font-size: .72rem;
  }

  .qty-wrap {
    margin-bottom: 10px;
  }

  .qty-btn {
    width: 26px;
    height: 26px;
    font-size: .9rem;
    border-radius: 6px;
  }

  .qty-input {
    width: 44px;
    font-size: .82rem;
    padding: 3px;
  }

  .btn-add-cart {
    padding: 9px;
    font-size: .82rem;
    border-radius: 9px;
  }

  .product-badge-wrap {
    top: 8px;
    left: 8px;
  }

  .badge-bestseller,
  .badge-popular,
  .badge-value {
    font-size: .68rem;
    padding: 2px 9px;
  }

  .prod-volume {
    font-size: .68rem;
    padding: 1px 7px;
    bottom: 8px;
    right: 10px;
  }

  /* PRODUCT PREVIEW */
  .product-preview-card {
    padding: 20px 16px;
    margin-bottom: 20px;
  }

  .product-img-wrap {
    height: 175px;
  }

  .product-preview-card h5 {
    font-size: 1.05rem;
  }

  .product-badge {
    font-size: .68rem;
    padding: 4px 10px;
  }

  /* SERVICE */
  .service-card {
    padding: 20px 16px;
    margin-bottom: 20px;
  }

  .service-icon-wrap {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .service-card h4 {
    font-size: .93rem;
  }

  .service-card p {
    font-size: .83rem;
  }

  .service-list li {
    font-size: .82rem;
  }

  /* PROCESS */
  .process-step {
    padding: 20px 14px;
    margin-bottom: 16px;
  }

  .process-num {
    font-size: 2.5rem;
    top: 6px;
    right: 10px;
  }

  .process-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .process-step h5 {
    font-size: .9rem;
  }

  .process-step p {
    font-size: .84rem;
  }

  /* TESTIMONIALS */
  .testimonial-card {
    padding: 20px 16px;
    margin-bottom: 16px;
  }

  .testimonial-card p {
    font-size: .88rem;
  }

  .stars {
    font-size: 1rem;
  }

  .testi-author {
    font-size: .84rem;
  }

  /* ABOUT PAGE */
  .about-img-main {
    font-size: 4rem;
    padding: 28px;
  }

  .about-img-badge {
    font-size: .78rem;
    padding: 7px 14px;
    bottom: -10px;
    right: 14px;
  }

  .about-img-stat {
    padding: 10px 14px;
    font-size: .82rem;
    top: 10px;
    left: 0;
  }

  .about-img-stat span {
    font-size: 1.3rem;
  }

  .value-item {
    font-size: .9rem;
  }

  .mv-card {
    padding: 22px 16px;
    margin-bottom: 14px;
  }

  .mv-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .mv-card h4 {
    font-size: 1rem;
  }

  .mv-card p {
    font-size: .88rem;
  }

  .cert-badge {
    padding: 20px 14px;
  }

  .cert-badge i {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .cert-badge p {
    font-size: .78rem;
  }

  /* CHOOSE */
  .choose-card {
    padding: 24px 16px;
    margin-bottom: 16px;
  }

  .choose-icon {
    width: 62px;
    height: 62px;
    font-size: 24px;
    margin-bottom: 14px;
  }

  /* TEAM */
  .team-card {
    padding: 22px 14px;
    margin-bottom: 16px;
  }

  .team-avatar {
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
    margin-bottom: 14px;
  }

  .team-card h5 {
    font-size: .92rem;
  }

  .team-card span {
    font-size: .78rem;
  }

  .team-card p {
    font-size: .84rem;
  }

  /* STATS SECTION */
  .stats-box {
    padding: 22px 16px;
    margin-bottom: 14px;
  }

  .stats-box h2 {
    font-size: 32px;
  }

  .stats-box p {
    font-size: 14px;
  }

  /* CERTIFICATE */
  .main-certificate-card {
    border-radius: 16px;
  }

  .certificate-img-wrap {
    padding: 14px;
  }

  .certificate-content {
    padding: 18px;
  }

  .certificate-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .certificate-content p {
    font-size: .88rem;
    margin-bottom: 18px;
  }

  .certificate-points {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .certificate-point {
    padding: 11px 13px;
    font-size: .86rem;
  }

  /* CONTACT */
  .contact-info-card {
    padding: 20px 14px;
    margin-bottom: 14px;
  }

  .ci-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .contact-info-card h5 {
    font-size: .95rem;
  }

  .contact-info-card p {
    font-size: .84rem;
  }

  .checkout-form-box {
    padding: 18px;
    border-radius: 12px;
  }

  .checkout-form-box label {
    font-size: .86rem;
  }

  .checkout-form-box .form-control {
    padding: 10px 12px;
    font-size: .86rem;
    border-radius: 9px;
  }

  .map-mock {
    padding: 32px 16px;
  }

  .map-mock i {
    font-size: 2.5rem;
  }

  .map-mock p {
    font-size: .9rem;
  }

  .branch-item {
    padding: 10px 12px;
    gap: 10px;
  }

  .branch-item i {
    font-size: 1.1rem;
  }

  .branch-item strong {
    font-size: .86rem;
  }

  .branch-item small {
    font-size: .78rem;
  }

  /* FAQ */
  .aqua-accordion .accordion-button {
    font-size: .86rem;
  }

  .aqua-accordion .accordion-body {
    font-size: .85rem;
  }

  .aqua-accordion .accordion-item {
    border-radius: 10px !important;
    margin-bottom: 8px;
  }

  /* CTA */
  .cta-section {
    padding: 44px 0;
  }

  .cta-title {
    font-size: 1.9rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .cta-sub {
    font-size: .9rem;
    margin-bottom: 22px;
  }

  .btn-white-custom,
  .btn-primary-custom,
  .btn-outline-custom {
    padding: 11px 22px;
    font-size: .88rem;
    width: 100%;
    max-width: 300px;
  }

  /* FOOTER */
  .main-footer {
    padding: 36px 0 0;
  }

  .footer-brand {
    font-size: 1.35rem;
    letter-spacing: 1.5px;
  }

  .footer-brand img {
    width: 60px;
  }

  .footer-desc {
    font-size: .82rem;
  }

  .footer-heading {
    font-size: .78rem;
    margin-bottom: 12px;
    margin-top: 24px;
  }

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

  .footer-links a {
    font-size: .82rem;
  }

  .footer-contact li {
    font-size: .82rem;
    gap: 8px;
    margin-bottom: 8px;
  }

  .social-links {
    gap: 8px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    font-size: .85rem;
  }

  .footer-hr {
    margin: 28px 0 14px;
  }

  .footer-bottom p {
    font-size: .78rem;
  }

  /* CART TOAST */
  .cart-toast {
    bottom: 14px;
    right: 12px;
    left: 12px;
    text-align: center;
    font-size: .85rem;
    padding: 12px 16px;
    border-radius: 10px;
  }

  /* ANIMATE ON SCROLL */
  .animate-on-scroll {
    transition: all .4s ease;
  }
}


/* ─────────────────────────────────────────────────────
   Extra small — 480px and below (small mobile)
   ───────────────────────────────────────────────────── */
@media (max-width: 480px) {

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-bottle-visual img {
    max-width: 190px;
  }

  .bottle-glow {
    width: 140px;
    height: 140px;
  }

  .stat-box {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .section-pad {
    padding: 36px 0;
  }

  .page-hero-title {
    font-size: 1.7rem;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .prod-img-area {
    min-height: 170px;
  }

  .product-img {
    max-width: 92px;
    height: 130px;
  }

  .certificate-content h3 {
    font-size: 18px;
  }

  .stats-box h2 {
    font-size: 28px;
  }

  .about-img-main {
    font-size: 3.2rem;
    padding: 22px;
  }

  .mv-card,
  .cert-badge {
    border-radius: 14px;
  }

  .checkout-form-box {
    padding: 14px;
  }

  .main-footer {
    padding: 28px 0 0;
  }
}