/* ===========================================
       COCOE — Nature's Fresh Hydration
       Premium Brand CSS Design System
       =========================================== */

/* ─── CSS Custom Properties ─────────────── */
:root {
  --primary: #1a823e;
  --primary-dark: #369c59;
  --primary-light: #e8f4fd;
  --secondary: #F5E9DA;
  --accent: #2D6A4F;
  --accent-light: #369c59;
  --neutral-100: #FFFFFF;
  --neutral-200: #F8F9FA;
  --neutral-300: #EFEFEF;
  --neutral-400: #D4D4D4;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;
  --dark-bg: #0d1b2a;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
}

/* ─── Reset & Base ───────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--neutral-100);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* ─── Utility ────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

/* ─── Section Labels & Headers ───────────── */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--neutral-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--neutral-600);
  max-width: 580px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.title-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 24px;
}

.title-line.center {
  margin: 0 auto 24px;
}

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--neutral-100);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-size: 1rem;
  padding: 16px 32px;
}

.btn-whatsapp:hover {
  background: #235c42;
  border-color: #235c42;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.32);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 20px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  padding: 20px 12px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  /* width: 100px; */
  height: 60px;
  /* background: rgba(255,255,255,0.12); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.navbar.scrolled .logo-icon {
  /* background: rgba(45, 106, 79, 0.1); */
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  transition: var(--transition);
}

.navbar.scrolled .logo-text {
  color: var(--neutral-900);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.navbar.scrolled .nav-link {
  color: var(--neutral-800);
}

.navbar.scrolled .nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 9px 22px;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

.navbar.scrolled .nav-cta {
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--neutral-800);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO SECTION ───────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 40, 70, 0.85) 0%,
      rgba(0, 80, 130, 0.70) 40%,
      rgba(0, 40, 60, 0.60) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  /* background: rgba(82, 183, 136, 0.15); */
  border: 1px solid rgba(82, 183, 136, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
    /* Text stroke */
  -webkit-text-stroke: 1px #ffffff;

  /* Optional fallback for non-supporting browsers */
  text-shadow: 
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 480px;
}

.hero-br {
  display: block;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.hero-stat:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-product-ring {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 12px rgba(255, 255, 255, 0.05);
  position: relative;
}

.hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neutral-800);
  box-shadow: var(--shadow-lg);
}

.hero-floating-badge i {
  color: var(--accent);
  font-size: 0.9rem;
}

.badge-top {
  top: 40px;
  right: -20px;
}

.badge-bottom {
  bottom: 60px;
  left: -20px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.scroll-arrow {
  animation: bounceScroll 2s ease-in-out infinite;
}

@keyframes bounceScroll {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* ─── TRUST BAR ──────────────────────────── */
.trust-bar {
  background: var(--neutral-900);
  padding: 20px 0;
}

.trust-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 36px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}

.trust-item i {
  color: var(--accent-light);
  font-size: 1rem;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}

/* ─── ABOUT SECTION ──────────────────────── */
.about {
  background: var(--neutral-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  color: var(--neutral-600);
  margin-bottom: 20px;
  line-height: 1.85;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon-sm {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-sm svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.about-feature strong {
  display: contents;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.65;
  margin: 0;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 420px;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  top: 32px;
  right: -28px;
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-year {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.badge-desc {
  display: block;
  font-size: 0.72rem;
  opacity: 0.85;
  margin-top: 4px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─── BENEFITS SECTION ───────────────────── */
.benefits {
  position: relative;
  background: url('images/coconutfarm12.jpg') center/cover no-repeat fixed;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75),
    rgba(0, 60, 90, 0.65)
  );
  z-index: 0;
}

.benefits .container {
  position: relative;
  z-index: 1;
}

.benefits .section-title,
.benefits .section-label,
.benefits .section-subtitle,
.benefit-title,
.benefit-desc {
  color: #fff;
}

.benefit-desc {
  opacity: 0.85;
}

.benefits .section-subtitle {
  opacity: 0.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  color: #fff;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.75;
}

/* ─── PRODUCT SHOWCASE ───────────────────── */
.products {
  background: var(--neutral-200);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--secondary);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 50, 80, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-order-btn {
  background: #fff;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  transform: translateY(10px);
  transition: var(--transition);
}

.product-card:hover .product-order-btn {
  transform: translateY(0);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.product-badge.premium {
  background: #7c4dff;
}

.product-badge.value {
  background: var(--accent);
}

.product-info {
  padding: 24px;
}

.product-category {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 10px;
  line-height: 1.35;
}

.product-desc {
  font-size: 0.86rem;
  color: var(--neutral-600);
  margin-bottom: 20px;
  line-height: 1.7;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--neutral-300);
  padding-top: 16px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--neutral-900);
}

/* ─── ORDER SECTION ──────────────────────── */
.order-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #0a2540 100%);
  color: #fff;
}

.order-section .section-label {
  color: var(--accent-light);
}

.order-section .section-title {
  color: #fff;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.order-desc {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.8;
}

.order-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.order-benefits li i {
  color: var(--accent-light);
  font-size: 0.9rem;
  width: 18px;
}

.order-form-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.order-form-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.order-section .form-control {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 3px;
  width: 100%;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.order-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.order-section .form-control:focus {
  border-color: var(--primary);
  background: rgb(25 45 66);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.2);
}

.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  pointer-events: none;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
}

.qty-btn {
  width: 44px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qty-btn:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.qty-btn:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.qty-input {
  text-align: center;
  border-radius: 0 !important;
  border-left: none !important;
  border-right: none !important;
}

.order-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.order-note i {
  opacity: 0.8;
}

/* ─── WHY CHOOSE US ──────────────────────── */
.why-us {
  background: var(--neutral-100);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 24px;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  animation-delay: var(--delay);
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 44px;
  height: 44px;
  color: var(--primary);
  margin-bottom: 18px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 10px;
}

.why-content p {
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.75;
}

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials {
  background: var(--secondary);
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0;
}

.testimonial-card {
  min-width: 100%;
  padding: 48px 60px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-text {
  font-size: 1.12rem;
  color: var(--neutral-700, #374151);
  line-height: 1.85;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.author-info span {
  font-size: 0.82rem;
  color: var(--neutral-600);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--neutral-400);
  background: #fff;
  color: var(--neutral-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.85rem;
}

.testimonial-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neutral-400);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ─── GALLERY ────────────────────────────── */
.gallery {
  background: var(--neutral-100);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  animation-delay: var(--delay);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 50, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ─── CONTACT SECTION ────────────────────── */
.contact {
  background: var(--neutral-200);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 14px;
}

.contact-info>p {
  color: var(--neutral-600);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}

.contact-item .contact-icon .fa-whatsapp {
  color: var(--accent);
}

.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 0.88rem;
  color: var(--neutral-600);
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--neutral-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-600);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.contact-form .form-label {
  color: var(--neutral-800);
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-form .form-control {
  width: 100%;
  background: var(--neutral-200);
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--neutral-800);
  transition: var(--transition);
  resize: vertical;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.12);
}

.contact-form .form-control::placeholder {
  color: var(--neutral-400);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(45, 106, 79, 0.1);
  border: 1px solid rgba(45, 106, 79, 0.25);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: var(--dark-bg);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--accent-light);
  text-transform: uppercase;
  margin: 12px 0 16px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  background: rgba(82, 183, 136, 0.1);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-light);
}

.footer-cert {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 20px;
  margin: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
}

.cert-badge i {
    color: #1a823e;
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ─── LIGHTBOX ───────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 8999;
  display: none;
}

.lightbox-overlay.active {
  display: block;
}

.lightbox-content {
  position: relative;
  z-index: 9001;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-md);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 9002;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ─── WHATSAPP FLOAT ─────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: #1eb859;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--neutral-900);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

/* Scroll-triggered reveals */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered reveals */
.reveal-up[style*="--delay"] {
  transition-delay: var(--delay);
}



.product-price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.old-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}

.new-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}
.save-badge {
  background: #e8f8f0;
  color: var(--primary);
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}
.bulk-note {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  background: rgba(26,130,62,0.08);
  padding: 6px 10px;
  border-radius: 6px;
}

.cert-number {
  display: block;
  font-size: 0.8rem;
  color: #ccc;
  margin-top: 6px;
  letter-spacing: 0.5px;
}
/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {

  .benefits-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-product-ring {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 0;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-product-ring {
    width: 260px;
    height: 260px;
  }

  .badge-top {
    top: 10px;
    right: 10px;
  }

  .badge-bottom {
    bottom: 20px;
    left: 0px;
  }

  .about-grid,
  .order-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-secondary {
    display: none;
  }

  .about-badge-float {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }

  .gallery-item {
    height: 220px;
  }

  .section-pad {
    padding: 72px 0;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 40px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    color: var(--neutral-800);
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    padding: 36px 28px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .trust-container {
    flex-direction: column;
    gap: 0;
  }

  .trust-divider {
    width: 60px;
    height: 1px;
  }

  .trust-item {
    padding: 12px 20px;
  }

  .hero-br {
    display: none;
  }
}

@media (max-width: 580px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 200px;
  }

  .hero-stats {
    gap: 8px;
  }

  .hero-stat {
    padding: 0 14px;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .order-form-card {
    padding: 28px 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 992px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}