/* ===== CSS VARIABLES — NutriWell Brand ===== */
:root {
  --primary:       #1a5c6b;
  --primary-dark:  #0f3d48;
  --primary-light: #e8f4f2;
  --sage:          #9cc5b4;
  --sage-dark:     #6fa898;
  --sage-light:    #dff0e8;
  --gold:          #d4a843;
  --gold-hover:    #b8922e;
  --purple:        #443390;
  --white:         #ffffff;
  --off-white:     #f5faf8;
  --gray-light:    #eef3f1;
  --gray:          #7a8a85;
  --dark:          #0f2b30;
  --text:          #2c3e3a;
  --footer-bg:     #0d4f5e;
  --shadow-sm:     0 2px 12px rgba(26,92,107,0.08);
  --shadow-md:     0 8px 32px rgba(26,92,107,0.12);
  --shadow-lg:     0 16px 48px rgba(26,92,107,0.16);
  --radius:        16px;
  --radius-sm:     10px;
  --radius-pill:   30px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
section { padding: 80px 0; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== BUTTONS (Legacy) ===== */
.btn {
  display: inline-block; padding: 13px 32px; border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: all 0.35s cubic-bezier(.4,0,.2,1); border: none;
  letter-spacing: 0.3px;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(212,168,67,0.4); }
.btn-primary-legacy { background: var(--primary); color: var(--white); }
.btn-primary-legacy:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,92,107,0.3); }

/* ===== NEW BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: linear-gradient(135deg, var(--primary), var(--sage-dark));
  color: white; border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem;
  transition: all 0.3s; box-shadow: 0 4px 15px rgba(26,92,107,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(26,92,107,0.4); }
.btn-outline-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: rgba(255,255,255,0.1);
  color: white; border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px); transition: all 0.3s;
}
.btn-outline-hero:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: white;
  color: var(--primary); border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem;
  transition: all 0.3s;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent;
  color: white; border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }

/* ===== NAVBAR (New Design) ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,92,107,0.08);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(15,43,48,0.12);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 90px;
}
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
}
.logo-img {
  height: 200px;
  width: auto;
  display: block;
  /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
}
.logo-img:not(.nav-logo-img):hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 6px 12px rgba(26, 92, 107, 0.12));
}
.nav-logo-img {
  margin-top: 16px;
  height: 180px;
  width: auto;
  pointer-events: none; /* Disables all click, hover, and pointer events */
  cursor: default; /* Ensures the mouse cursor remains default when hovering */
}

/* Footer Logo Container - Styled as a white card where the image covers the box */
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 22px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.logo-footer {
  height: 180px;
  width: auto;
  display: block;
  margin-top: -40px;
  margin-bottom: -40px;
  opacity: 1;
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; display: block; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: flex; gap: 4px; align-items: center; list-style: none;
}
.nav-link {
  padding: 8px 16px; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.82rem;
  color: var(--dark); transition: all 0.25s; text-transform: uppercase; letter-spacing: 0.5px;
  cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-cta {
  padding: 10px 22px; border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--primary), var(--sage-dark));
  color: white; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.82rem;
  transition: all 0.3s; margin-left: 8px; cursor: pointer;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,92,107,0.35); }

/* Mobile Menu */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: 90px; left: 0; right: 0;
    flex-direction: column; background: white;
    border-top: 1px solid var(--gray-light);
    padding: 16px 24px; gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-link { display: block; padding: 12px 16px; }
  .nav-cta { display: block; text-align: center; margin: 8px 0 0; padding: 12px 22px; }
}

/* ===== PAGE SECTIONS ===== */
.page { display: none; }
.page.active { display: block; }
body { padding-top: 90px; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION HEADINGS ===== */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px; }
.sec-head p { margin-top: 12px; color: var(--gray); font-size: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.sec-head .line { width: 50px; height: 3px; background: var(--gold); margin: 14px auto 0; border-radius: 2px; }

.section-tag {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 12px;
  border: 1px solid rgba(26,92,107,0.15);
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section-subtitle { font-size: 1rem; color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 48px; }
.text-teal { color: var(--primary); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0a2d38 0%, #0f4655 40%, #1a6b7a 100%);
  overflow: hidden; padding: 100px 0 60px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.15;
}
.hero-shape-1 {
  width: 600px; height: 600px; background: var(--sage);
  top: -200px; right: -100px; animation: floatShape 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 400px; height: 400px; background: var(--gold);
  bottom: -100px; left: -100px; animation: floatShape 10s ease-in-out infinite reverse;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

/* Particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; left: var(--x); top: -20px;
  width: var(--size); height: var(--size);
  background: rgba(255,255,255,0.4); border-radius: 50%;
  animation: particleFall 6s var(--delay) linear infinite;
}
@keyframes particleFall {
  0% { top: -20px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { top: 110%; opacity: 0; }
}

.hero-container {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 20px; backdrop-filter: blur(10px);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
  color: white; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px;
}
.title-highlight {
  background: linear-gradient(135deg, var(--gold), #f0c060);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,0.82); line-height: 1.8; font-size: 1rem;
  max-width: 560px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card-main {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  padding: 32px; color: white; position: relative; z-index: 2;
}
.hc-icon {
  width: 60px; height: 60px; background: linear-gradient(135deg, var(--gold), #f0c060);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: white; margin-bottom: 16px;
}
.hero-card-main h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.hero-card-main p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 20px; }
.hc-bar {
  height: 8px; background: rgba(255,255,255,0.15); border-radius: 4px; overflow: hidden;
}
.hc-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold), #f0c060); border-radius: 4px;
  animation: barFill 2s ease forwards;
}
@keyframes barFill { from { width: 0; } }

.hero-card-float {
  position: absolute; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px; padding: 12px 20px; color: white;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; z-index: 3;
  animation: floatCard 3s ease-in-out infinite;
}
.hero-card-float i { font-size: 1.1rem; color: var(--gold); }
.hero-card-float-1 { top: -30px; right: -20px; animation-delay: 0s; }
.hero-card-float-2 { bottom: 60px; left: -40px; animation-delay: 1s; }
.hero-card-float-3 { bottom: -20px; right: 20px; animation-delay: 0.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.75rem; z-index: 5;
}
.hero-scroll-indicator span {
  display: block; width: 2px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ===== TAGLINE BANNER ===== */
.tagline-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 18px 0; overflow: hidden;
}
.tagline-content {
  display: flex; gap: 40px; align-items: center;
  animation: scrollBanner 20s linear infinite;
  white-space: nowrap;
}
.tagline-content span {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.8rem;
  color: rgba(255,255,255,0.9); letter-spacing: 2px;
}
.tagline-content i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
@keyframes scrollBanner { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== HERO — VIDEO BACKGROUND ===== */
.hero-video {
  position: relative;
  width: 100%; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0;
  background: #05141c; /* Dark background that matches the video theme */
}

/* Video wrap */
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  background: #000; /* fallback black background */
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover; /* Default cover for desktop to fill screen */
  object-position: center;
  display: block;
}

/* Mobile responsiveness for the video hero section (maintaining the desktop background overlay layout) */
@media (max-width: 768px) {
  .hero-video {
    min-height: 55vh; /* Responsive height for mobile screens to reduce video cropping */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Same as desktop: covers the full background viewport */
    object-position: center;
  }
  
  .hero-video-content {
    position: relative;
    z-index: 2;
    padding: 50px 20px; /* Reduced vertical padding */
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px; /* Reduced gap */
    text-align: center;
  }
  
  .hv-line-1, .hv-line-2 {
    font-size: clamp(1.8rem, 6vw, 2.6rem) !important; /* Bold and clean responsive font sizing */
    line-height: 1.25;
    padding-bottom: 0.1em;
  }
  
  .hv-tag {
    font-size: 0.72rem;
    padding: 6px 16px;
    margin-bottom: 8px;
  }
  
  .hv-actions {
    display: flex;
    flex-direction: row; /* Keep side-by-side layout like desktop */
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%;
  }
  
  .hv-actions a {
    flex: 0 1 auto;
    min-width: 140px;
    padding: 12px 24px;
    font-size: 0.85rem;
    justify-content: center;
  }
  
  .hero-video .hero-scroll-indicator {
    display: flex !important; /* Keep the scroll indicator visible on mobile */
    bottom: 24px;
  }
}

/* Dark gradient overlay on video */
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(5, 20, 28, 0.55) 0%,
    rgba(5, 20, 28, 0.65) 60%,
    rgba(5, 20, 28, 0.85) 100%
  );
  pointer-events: none;
}

/* Centered content */
.hero-video-content {
  position: relative; z-index: 2;
  text-align: center; padding: 100px 24px 120px;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  width: 100%; max-width: 1000px; margin: 0 auto;
}

/* Tag pill */
.hv-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  padding: 8px 22px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  animation: hvFadeDown 1.2s ease both;
}
.hv-tag i { color: var(--gold); }

/* Main title — slow-motion reveal */
.hv-title {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; margin: 0;
}
.hv-line-1 {
  display: block;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900; color: white;
  letter-spacing: -1px; line-height: 1.2;
  padding-bottom: 0.1em;
  animation: hvSlowReveal1 2.4s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.hv-line-2 {
  display: block;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900; letter-spacing: -1px; line-height: 1.2;
  background: linear-gradient(135deg, var(--gold), #f5d080, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.1em;
  animation: hvSlowReveal2 2.4s cubic-bezier(0.16,1,0.3,1) 0.7s both;
}

/* Slow-motion keyframes — words rise from below with blur */
@keyframes hvSlowReveal1 {
  0%   { opacity: 0; transform: translateY(60px) scale(0.95); filter: blur(8px); }
  60%  { filter: blur(0px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0px); }
}
@keyframes hvSlowReveal2 {
  0%   { opacity: 0; transform: translateY(80px) scale(0.95); filter: blur(10px); }
  60%  { filter: blur(0px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0px); }
}
@keyframes hvFadeDown {
  0%   { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Action buttons */
.hv-actions {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: hvFadeUp 1.2s ease 1.4s both;
}
@keyframes hvFadeUp {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Keep scroll indicator on top */
.hero-video .hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  animation: hvFadeUp 1s ease 2s both;
}

/* ===== STATS SECTION ===== */
.stats-section { padding: 80px 0; background: var(--off-white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  background: white; border-radius: var(--radius); padding: 36px 24px;
  text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,92,107,0.06);
  transition: all 0.35s; opacity: 0; transform: translateY(30px);
}
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-icon {
  width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary-light), var(--sage-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--primary); font-size: 1.5rem;
}
.stat-number {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--primary); margin-bottom: 8px; line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--gray); font-weight: 600; letter-spacing: 0.3px; }

/* ===== MISSION SECTION ===== */
.mission-section { background: var(--white); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-img-wrap { position: relative; }
.mission-img-main {
  background: linear-gradient(135deg, var(--primary), var(--sage-dark));
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: 360px; /* Standardized height for perfect display of the cover image */
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mission-img-float {
  display: flex; gap: 12px; margin-top: 16px;
}
.mif-item {
  flex: 1; background: var(--off-white); border-radius: var(--radius-sm);
  padding: 14px 16px; display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--primary);
}
.mif-item i { color: var(--gold); font-size: 1rem; }
.mission-content { padding-left: 20px; }
.section-desc {
  color: var(--gray); line-height: 1.8; font-size: 0.97rem; margin-bottom: 28px;
}
.mission-points { display: flex; flex-direction: column; gap: 20px; }
.mp-item { display: flex; align-items: flex-start; gap: 16px; }
.mp-icon {
  flex-shrink: 0; width: 40px; height: 40px; background: var(--primary-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem;
}
.mp-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.mp-item p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== PRODUCTS HIGHLIGHT ===== */
.products-highlight { background: var(--off-white); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.product-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.35s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pc-header {
  padding: 28px; position: relative; display: flex;
  align-items: center; justify-content: space-between;
}
.pc-icon {
  width: 52px; height: 52px; background: rgba(255,255,255,0.2);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem;
}
.pc-badge {
  background: rgba(255,255,255,0.2); color: white; border-radius: var(--radius-pill);
  padding: 4px 12px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.3);
}
.pc-body { padding: 20px; flex: 1; }
.pc-body h3 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.pc-composition { font-size: 0.75rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.pc-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pc-tags span {
  background: var(--primary-light); color: var(--primary);
  padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 600;
}
.pc-link {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  padding: 12px; background: var(--off-white); color: var(--primary);
  font-weight: 700; font-size: 0.82rem; transition: all 0.3s;
  border-top: 1px solid var(--gray-light);
}
.pc-link:hover { background: var(--primary); color: white; }
.view-all-wrap { text-align: center; margin-top: 16px; }

/* ===== WHY SECTION ===== */
.why-section {
  position: relative; padding: 80px 0; overflow: hidden;
}
.why-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a2d38 0%, #0f4655 50%, #1a6b7a 100%);
}
.why-section .container { position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.why-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
  padding: 32px 28px; color: white; transition: all 0.35s;
}
.why-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-5px); }
.wc-icon {
  width: 56px; height: 56px; background: linear-gradient(135deg, rgba(212,168,67,0.3), rgba(212,168,67,0.1));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold); margin-bottom: 20px;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.87rem; opacity: 0.8; line-height: 1.65; }

/* ===== THERAPY SECTION ===== */
.therapy-section { background: var(--white); }
.therapy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.therapy-card {
  background: var(--off-white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.35s;
}
.therapy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.therapy-visual {
  padding: 32px; background: linear-gradient(135deg, rgba(26,92,107,0.08), rgba(110,168,152,0.1));
  display: flex; align-items: center; justify-content: center;
}
.tv-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--sage-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: white;
}
.therapy-body { padding: 24px; }
.therapy-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.therapy-body p { font-size: 0.87rem; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.therapy-body ul { display: flex; flex-direction: column; gap: 8px; }
.therapy-body li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; color: var(--primary); font-weight: 600;
}
.therapy-body li i { font-size: 0.8rem; color: var(--gold); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--off-white); padding: 60px 0; }
.cta-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--sage-dark) 100%);
  border-radius: calc(var(--radius) * 1.5); padding: 60px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9);
  padding: 6px 16px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.2);
}
.cta-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: white; margin-bottom: 14px; }
.cta-card p { color: rgba(255,255,255,0.8); line-height: 1.7; font-size: 0.95rem; max-width: 600px; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-visual { flex-shrink: 0; }
.cta-icon-ring {
  position: relative; width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
}
.cir-inner {
  width: 80px; height: 80px; background: rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold); z-index: 2;
  animation: heartPulse 2s ease-in-out infinite;
}
@keyframes heartPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.cir-pulse {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  animation: ringExpand 2s linear infinite;
}
.cir-pulse { width: 120px; height: 120px; }
.cir-pulse-2 { width: 140px; height: 140px; animation-delay: 1s; }
@keyframes ringExpand {
  0% { opacity: 0.8; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.2); }
}

/* ===== FOOTER (New Design) ===== */
.footer { background: var(--footer-bg); color: white; padding-top: 0; }
.footer-wave {
  background: var(--off-white); line-height: 0;
}
.footer-wave svg { display: block; }
.footer-content { padding: 60px 24px 0; max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; }
.footer-desc { font-size: 0.85rem; opacity: 0.75; line-height: 1.8; margin: 16px 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-links h4 {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; opacity: 0.9;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; opacity: 0.7; transition: all 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--gold); padding-left: 4px; }
.footer-contact h4 {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; opacity: 0.9;
}
.footer-contact p {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; opacity: 0.75; margin-bottom: 10px;
}
.footer-contact p i { color: var(--gold); width: 16px; }
.footer-contact a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 11px 22px;
  background: var(--gold); color: white; border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.82rem;
  transition: all 0.3s;
}
.footer-contact-btn:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,67,0.35); color: white; }
.footer-form { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.footer-form input, .footer-form textarea {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 11px 14px; border-radius: 8px; color: white; font-size: 0.84rem;
  font-family: 'Inter', sans-serif; transition: border 0.3s;
}
.footer-form input::placeholder, .footer-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.footer-form input:focus, .footer-form textarea:focus { outline: none; border-color: var(--gold); }
.footer-form textarea { resize: none; height: 70px; }
.footer-form button {
  background: var(--gold); color: white; border: none; padding: 11px 28px;
  border-radius: var(--radius-pill); font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 0.85rem; cursor: pointer; align-self: flex-start;
  transition: all 0.3s;
}
.footer-form button:hover { background: var(--gold-hover); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; opacity: 0.5; }

/* ===== PRODUCTS PAGE ===== */
.prod-hero {
  position: relative;
  background: linear-gradient(135deg, #e8f4f5 0%, #eef8f8 40%, #f2fbfb 100%);
  padding: 0;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}
/* Subtle dot-grid pattern overlay like the reference */
.prod-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(11,122,135,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.prod-carousel-container {
  position: relative;
  width: 100%;
  z-index: 1;
}
.prod-carousel-track {
  position: relative;
  width: 100%;
  display: grid;
}
.prod-carousel-slide {
  grid-area: 1 / 1 / 2 / 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateY(15px);
}
.prod-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.prod-hero-container {
  width: 100%;
  max-width: 100%;
  padding: 60px 70px;
  margin: 0 auto;
}
.prod-hero-inner {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  align-items: center;
  gap: 36px;
}

/* Heading — bold italic serif like the reference */
.prod-hero-text h1 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2.6rem, 5.5vw, 3.6rem);
  font-weight: 700;
  font-style: italic;
  color: #0b7a87;
  margin-bottom: 22px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* Description — italic, lighter color */
.prod-hero-text p {
  font-style: italic;
  color: #5a6e6a;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 480px;
}
.prod-hero .btn-gold {
  background: #ef5b2c;
  color: white;
  padding: 15px 42px;
  font-size: 1.05rem;
  font-weight: 700;
  font-style: normal;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(239, 91, 44, 0.28);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  letter-spacing: 0.3px;
}
.prod-hero .btn-gold:hover {
  background: #d6491c;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(239, 91, 44, 0.38);
}

/* Product image — extra large display on the right */
.prod-hero-img {
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.prod-hero-img img {
  width: auto;
  height: 100%;
  max-height: 560px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 36px rgba(26,92,107,0.16));
  transition: transform 0.5s ease;
}
.prod-hero-img img:hover {
  transform: scale(1.03);
}

/* Dots Indicators */
.prod-carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.prod-carousel-dots .dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(26,92,107,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
/* Touch target expansion for mobile tapping comfort */
.prod-carousel-dots .dot::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
}
.prod-carousel-dots .dot.active {
  width: 36px;
  border-radius: 6px;
  background: var(--primary);
}

/* Tablet responsiveness */
@media (max-width: 1100px) {
  .prod-hero-container {
    padding: 50px 36px;
  }
  .prod-hero-inner {
    gap: 30px;
  }
  .prod-hero-text h1 {
    font-size: 2.4rem;
  }
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .prod-hero {
    min-height: auto;
  }
  .prod-carousel-track {
    min-height: auto;
  }
  .prod-hero-container {
    padding: 40px 20px 60px;
  }
  .prod-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .prod-hero-text h1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  .prod-hero-text p {
    font-size: 1.05rem;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .prod-hero .btn-gold {
    padding: 14px 36px;
    font-size: 1rem;
  }
  .prod-hero-img {
    height: 340px;
    width: 100%;
  }
  .prod-hero-img img {
    height: 320px;
    max-height: 320px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .prod-hero-container {
    padding: 32px 16px 50px;
  }
  .prod-hero-text h1 {
    font-size: 1.65rem;
  }
  .prod-hero-text p {
    font-size: 0.95rem;
  }
  .prod-hero-img {
    height: 260px;
  }
  .prod-hero-img img {
    height: 240px;
    max-height: 240px;
  }
}
.prod-showcase { background: var(--white); padding: 80px 0; }
.prod-showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.prod-showcase-card {
  background: var(--off-white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.35s;
}
.prod-showcase-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prod-showcase-card .ps-img { height: 240px; background: white; display: flex; align-items: center; justify-content: center; padding: 20px; }
.prod-showcase-card .ps-img img { max-height: 200px; object-fit: contain; }
.prod-showcase-card .ps-info { padding: 24px; }
.prod-showcase-card .ps-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.prod-showcase-card .ps-info .ps-type { font-size: 0.75rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.prod-showcase-card .ps-info p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }
.prod-list-sec { background: var(--primary); padding: 60px 0; }
.prod-list-sec .sec-head h2 { color: white; }
.prod-list-sec .sec-head .line { background: var(--gold); }
.prod-table { width: 100%; border-collapse: collapse; }
.prod-table tr { border-bottom: 1px solid rgba(255,255,255,0.15); transition: background 0.2s; }
.prod-table tr:hover { background: rgba(255,255,255,0.08); }
.prod-table td { padding: 16px 20px; color: white; }
.prod-table .p-name { font-weight: 700; font-family: 'Poppins', sans-serif; }
.prod-badge {
  display: inline-block; background: rgba(212,168,67,0.25);
  padding: 4px 14px; border-radius: 20px; font-size: 0.8rem;
  border: 1px solid rgba(212,168,67,0.4);
}
.prod-table .p-comp { font-size: 0.85rem; opacity: 0.85; }

/* ===== ABOUT US PAGE ===== */
.about-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--sage-dark) 100%);
  padding: 100px 0 80px; color: white; min-height: 320px;
  display: flex; align-items: center;
}
.about-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.ah-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); }
.ah-shape-1 { width: 480px; height: 480px; top: -160px; right: -80px; }
.ah-shape-2 { width: 300px; height: 300px; bottom: -100px; left: 5%; }
.about-breadcrumb { display: flex; align-items: center; margin-bottom: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.8); }
.about-hero-title { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.about-hero-sub { font-size: clamp(1rem, 2vw, 1.15rem); opacity: 0.88; max-width: 620px; line-height: 1.7; }
.about-story-sec { background: var(--white); padding: 90px 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.about-story-visual { display: flex; flex-direction: column; gap: 20px; }
.asv-main {
  background: white;
  border-radius: var(--radius);
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,92,107,0.06);
  min-height: 220px;
}
.about-main-logo {
  max-width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
}
.asv-badges { display: flex; gap: 12px; }
.asv-badge-item {
  flex: 1; background: var(--off-white); border: 1.5px solid var(--sage-light);
  border-radius: var(--radius-sm); padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; font-weight: 600; color: var(--primary);
}
.asv-badge-item i { color: var(--gold); }
.about-section-tag {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--radius-pill); margin-bottom: 12px;
}
.about-section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 22px; color: var(--dark); }
.text-teal-highlight { color: var(--primary); }
.about-story-content p { color: #555; line-height: 1.8; font-size: 0.95rem; }
.about-mvv-sec { background: var(--off-white); padding: 90px 0; }
.about-mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.about-mvv-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow-sm); border-top: 4px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mvv-mission { border-top-color: var(--primary); }
.mvv-vision  { border-top-color: var(--gold); }
.mvv-values  { border-top-color: var(--sage-dark); }
.about-mvv-icon {
  width: 60px; height: 60px; border-radius: 50%; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.mvv-mission .about-mvv-icon { background: var(--primary-light); color: var(--primary); }
.mvv-vision  .about-mvv-icon { background: #fef8e8; color: var(--gold); }
.mvv-values  .about-mvv-icon { background: var(--sage-light); color: var(--sage-dark); }
.about-mvv-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.about-mvv-card p { color: #555; line-height: 1.7; font-size: 0.88rem; }
.about-values-list { margin-top: 6px; }
.about-values-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: #555; padding: 6px 0;
  border-bottom: 1px solid var(--gray-light);
}
.about-values-list li:last-child { border-bottom: none; }
.about-values-list li i { color: var(--primary); font-size: 0.85rem; flex-shrink: 0; }
.about-stats-sec {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0; color: white;
}
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-stat-card {
  text-align: center; padding: 36px 20px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); transition: transform 0.3s, background 0.3s;
}
.about-stat-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.13); }
.about-stat-icon {
  font-size: 2rem; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--gold);
}
.about-stat-num {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); margin-bottom: 8px; line-height: 1;
}
.about-stat-label { font-size: 0.85rem; opacity: 0.8; letter-spacing: 0.3px; font-weight: 500; }
.about-diff-sec { background: var(--white); padding: 90px 0; }
.about-diff-timeline { margin-top: 40px; position: relative; }
.about-diff-timeline::before {
  content: ''; position: absolute;
  left: 38px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--sage-dark));
  opacity: 0.25;
}
.adt-item { display: flex; align-items: flex-start; gap: 28px; margin-bottom: 36px; position: relative; }
.adt-item:last-child { margin-bottom: 0; }
.adt-icon {
  flex-shrink: 0; width: 78px; height: 78px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--sage-light));
  border: 2.5px solid var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--primary);
  transition: transform 0.3s, background 0.3s, color 0.3s;
  position: relative; z-index: 1;
}
.adt-item:hover .adt-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--primary), var(--sage-dark));
  color: white;
}
.adt-content {
  background: var(--off-white); border-radius: var(--radius); padding: 28px 30px; flex: 1;
  border-left: 4px solid var(--primary);
  transition: box-shadow 0.3s, transform 0.3s;
}
.adt-item:hover .adt-content { box-shadow: var(--shadow-md); transform: translateX(4px); }
.adt-content h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.adt-content p { color: #555; line-height: 1.7; font-size: 0.9rem; }

/* ===== PURPOSE PAGE ===== */
.purpose-hero { background: linear-gradient(135deg, #0f3d48 0%, #1a5c6b 60%, #9cc5b4 100%); color: white; padding: 80px 0 60px; }
.purpose-hero-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.purpose-hero-text h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 14px; }
.purpose-hero-text p { opacity: 0.9; line-height: 1.7; margin-bottom: 24px; }
.purpose-quote-sec { background: var(--primary); padding: 60px 0; }
.pq-inner { display: grid; grid-template-columns: 1fr 220px; gap: 40px; align-items: center; }
.pq-text { border-left: 4px solid var(--gold); padding-left: 24px; color: white; font-size: 1.05rem; line-height: 1.8; font-style: italic; }
.pq-imgs { display: flex; flex-direction: column; gap: 12px; }
.pq-img { height: 90px; background: rgba(255,255,255,0.1); border-radius: var(--radius-sm); }
.acronym-sec { background: var(--off-white); }
.acronym-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.acronym-text p { color: #556; line-height: 1.7; margin-bottom: 22px; }
.acronym-bars { display: flex; flex-direction: column; gap: 8px; }
.a-bar { display: flex; align-items: center; border-radius: 8px; overflow: hidden; }
.a-letter { background: var(--primary-dark); color: white; width: 48px; height: 44px; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.a-word { padding: 0 20px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem; color: white; flex: 1; height: 44px; display: flex; align-items: center; }
.a-bar:nth-child(1) .a-word { background: #1a5c6b; }
.a-bar:nth-child(2) .a-word { background: #1e6878; }
.a-bar:nth-child(3) .a-word { background: #227585; }
.a-bar:nth-child(4) .a-word { background: #2a8290; }
.a-bar:nth-child(5) .a-word { background: #389a94; }
.a-bar:nth-child(6) .a-word { background: #4daa9e; }
.a-bar:nth-child(7) .a-word { background: #6fb8a8; }
.a-bar:nth-child(8) .a-word { background: #88c3b2; }
.a-bar:nth-child(9) .a-word { background: #9cc5b4; }
.mv-full-sec { background: var(--white); }
.mv-full-text { max-width: 860px; margin: 0 auto 40px; text-align: center; color: #556; line-height: 1.8; }
.vision-commitment { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vc-card { background: var(--off-white); border-radius: var(--radius); padding: 36px 30px; text-align: center; transition: all 0.3s; }
.vc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.vc-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.vc-card p { color: #556; line-height: 1.7; font-size: 0.92rem; }

/* ===== HEALTH TIPS PAGE ===== */
.ht-hero { background: linear-gradient(135deg, var(--primary-light) 0%, var(--sage-light) 100%); padding: 60px 0; }
.ht-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.ht-hero-text h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.ht-hero-text p { color: #556; line-height: 1.6; margin-bottom: 24px; }
.ht-hero-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ht-icon-box { background: white; border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.ht-icon-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ht-icon-box .ico { font-size: 42px; margin-bottom: 8px; }
.ht-icon-box span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--dark); text-transform: uppercase; letter-spacing: 0.5px; }
.challenge-sec { background: var(--white); }
.challenge-inner { display: grid; grid-template-columns: 340px 1fr 1fr; gap: 28px; align-items: start; }
.calendar-box { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-md); }
.calendar-box h3 { text-align: center; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; text-align: center; }
.cal-grid span { font-size: 0.8rem; color: #556; padding: 8px 4px; cursor: pointer; border-radius: 50%; transition: all 0.2s; }
.cal-grid span:hover { background: var(--primary-light); color: var(--primary); }
.cal-grid span.today { background: var(--primary); color: white; border-radius: 50%; font-weight: 700; }
.tip-card { background: var(--primary-light); border-radius: var(--radius); padding: 28px; text-align: center; }
.tip-card .t-ico { font-size: 56px; margin-bottom: 12px; }
.tip-card h4 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; color: var(--primary-dark); letter-spacing: 1px; }
.fruit-sec { background: var(--primary); padding: 50px 0; }
.fruit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.fruit-text { color: white; }
.fruit-text h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 18px; }
.fruit-text ul { list-style: disc; padding-left: 20px; }
.fruit-text li { margin-bottom: 8px; opacity: 0.9; font-size: 0.92rem; line-height: 1.5; }
.fruit-text .fb-label { font-weight: 700; }
.fruit-img { background: rgba(255,255,255,0.08); border-radius: var(--radius); height: 260px; display: flex; align-items: center; justify-content: center; font-size: 100px; }
.tips-grid-sec { background: var(--off-white); }
.tips-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tip-g-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.35s; }
.tip-g-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tip-g-card .tg-header { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 50px; }
.tip-g-card:nth-child(1) .tg-header { background: #fef3e8; }
.tip-g-card:nth-child(2) .tg-header { background: var(--primary-light); }
.tip-g-card:nth-child(3) .tg-header { background: #f0f8ff; }
.tip-g-card:nth-child(4) .tg-header { background: #fff0f0; }
.tip-g-card:nth-child(5) .tg-header { background: var(--sage-light); }
.tip-g-card:nth-child(6) .tg-header { background: #fef9e8; }
.tip-g-card .tg-body { padding: 20px; }
.tip-g-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.tip-g-card p { font-size: 0.82rem; color: #666; line-height: 1.6; }

/* ===== FADE-IN ANIMATION ===== */
.fade-up {
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .therapy-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-mvv-grid { grid-template-columns: 1fr 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .challenge-inner { grid-template-columns: 1fr 1fr; }
  .challenge-inner .calendar-box { grid-column: 1/-1; }
  .prod-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-visual { display: none; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero { padding: 80px 0 40px; min-height: auto; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { justify-content: center; }
  .tagline-content { gap: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .therapy-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .prod-hero-inner { grid-template-columns: 1fr; }
  .acronym-inner { grid-template-columns: 1fr; }
  .pq-inner { grid-template-columns: 1fr; }
  .pq-imgs { display: none; }
  .ht-hero-inner { grid-template-columns: 1fr; }
  .challenge-inner { grid-template-columns: 1fr; }
  .fruit-inner { grid-template-columns: 1fr; }
  .fruit-img { display: none; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .vision-commitment { grid-template-columns: 1fr; }
  .about-mvv-grid { grid-template-columns: 1fr; }
  .about-diff-timeline::before { display: none; }
  .adt-item { flex-direction: column; align-items: flex-start; }
  .adt-icon { width: 56px; height: 56px; font-size: 1.2rem; }
  .asv-badges { flex-direction: column; }
  .prod-showcase-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 40px 28px; }
  .mission-img-main {
    height: auto;
    aspect-ratio: 16/9; /* Maintain standard aspect ratio on mobile */
  }
  .mission-img-float {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .ht-hero-icons { grid-template-columns: 1fr 1fr; }
}

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

/* Page Hero */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--sage-dark) 100%);
  padding: 100px 0 70px; color: white; min-height: 280px;
  display: flex; align-items: center;
}
.page-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ph-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); }
.ph-shape-1 { width: 500px; height: 500px; top: -180px; right: -80px; }
.ph-shape-2 { width: 320px; height: 320px; bottom: -120px; left: 3%; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.65rem; opacity: 0.6; }
.breadcrumb span { color: rgba(255,255,255,0.9); }
.page-title { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; margin-bottom: 14px; line-height: 1.15; }
.page-subtitle { font-size: 1.05rem; opacity: 0.85; max-width: 560px; line-height: 1.7; }

/* Contact Cards Grid */
.contact-cards-section { background: var(--off-white); padding: 60px 0; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-info-card {
  background: white; border-radius: var(--radius); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: all 0.35s; border-top: 3px solid transparent;
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-top-color: var(--primary); }
.cic-icon {
  width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-light), var(--sage-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--primary); font-size: 1.4rem;
}
.contact-info-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.contact-info-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.5; }
.contact-info-card a { color: var(--primary); font-weight: 600; }
.contact-info-card a:hover { color: var(--gold); }

/* Contact Main Section */
.contact-main-section { background: var(--white); padding: 70px 0; }
.contact-main-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }

/* Form Header */
.cf-header { margin-bottom: 30px; }
.cf-header h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.cf-header p { color: var(--gray); font-size: 0.92rem; line-height: 1.6; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.82rem; font-weight: 700; color: var(--dark);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-input-wrap { position: relative; display: flex; align-items: center; }
.form-input-wrap i {
  position: absolute; left: 14px; color: var(--primary); font-size: 0.9rem; z-index: 1;
}
.form-input-wrap input,
.form-input-wrap select {
  width: 100%; padding: 13px 14px 13px 40px;
  border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--dark);
  background: var(--off-white); transition: all 0.3s; outline: none;
}
.form-input-wrap input:focus,
.form-input-wrap select:focus {
  border-color: var(--primary); background: white;
  box-shadow: 0 0 0 3px rgba(26,92,107,0.08);
}
.form-select-wrap select { appearance: none; cursor: pointer; }
.form-textarea-wrap textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--dark);
  background: var(--off-white); transition: all 0.3s; outline: none;
  resize: vertical; min-height: 140px;
}
.form-textarea-wrap textarea:focus {
  border-color: var(--primary); background: white;
  box-shadow: 0 0 0 3px rgba(26,92,107,0.08);
}
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; margin-top: 4px; }
.form-success {
  display: flex; align-items: center; gap: 12px;
  background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: var(--radius-sm);
  padding: 14px 18px; color: #2e7d32; font-size: 0.88rem; font-weight: 600;
}
.form-success i { font-size: 1.2rem; color: #27ae60; flex-shrink: 0; }

/* Side Cards */
.contact-side-card {
  background: var(--off-white); border-radius: var(--radius); padding: 28px;
  border: 1px solid rgba(26,92,107,0.08);
}
.contact-side-card h3 {
  font-size: 1rem; font-weight: 800; color: var(--dark);
  margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
}
.contact-side-card h3 i { color: var(--primary); font-size: 0.9rem; }
.contact-side-card > p { font-size: 0.85rem; color: var(--gray); margin-bottom: 16px; line-height: 1.5; }

/* Quick Connect */
.qc-options { display: flex; flex-direction: column; gap: 12px; }
.qc-option {
  display: flex; align-items: center; gap: 14px;
  background: white; border-radius: var(--radius-sm); padding: 14px 16px;
  border: 1px solid var(--gray-light); transition: all 0.2s;
}
.qc-option:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.qc-option > i { font-size: 1.1rem; color: var(--primary); width: 20px; text-align: center; flex-shrink: 0; }
.qc-option span { font-size: 0.7rem; font-weight: 800; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 2px; }
.qc-option p { font-size: 0.88rem; color: var(--dark); font-weight: 600; margin: 0; }
.qc-option a { color: var(--primary); }
.qc-option a:hover { color: var(--gold); }

/* Coverage / Quality List */
.coverage-list { display: flex; flex-direction: column; gap: 10px; }
.coverage-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--dark); font-weight: 500;
  padding: 8px 0; border-bottom: 1px solid var(--gray-light);
}
.coverage-item:last-child { border-bottom: none; }
.coverage-item i { color: var(--primary); font-size: 0.85rem; flex-shrink: 0; }

/* Social Links (Contact Page) */
.social-links-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 700;
  transition: all 0.25s; cursor: pointer;
}
.sl-linkedin { background: #e8f0fe; color: #0a66c2; }
.sl-linkedin:hover { background: #0a66c2; color: white; }
.sl-twitter { background: #e7f5fd; color: #1da1f2; }
.sl-twitter:hover { background: #1da1f2; color: white; }
.sl-facebook { background: #e8eeff; color: #1877f2; }
.sl-facebook:hover { background: #1877f2; color: white; }
.sl-instagram { background: #fce4f0; color: #e1306c; }
.sl-instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }

/* FAQ Section */
.faq-section { background: var(--off-white); padding: 70px 0; }
.faq-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; max-width: 860px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: white; border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(26,92,107,0.06);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-weight: 700; font-size: 0.95rem; color: var(--dark);
  cursor: pointer; transition: all 0.2s; user-select: none;
}
.faq-question:hover { background: var(--primary-light); color: var(--primary); }
.faq-question i { font-size: 0.85rem; color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question { background: var(--primary-light); color: var(--primary); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; padding: 0 24px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; }

/* Contact Responsive */
@media (max-width: 1024px) {
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .social-links-contact { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
  .social-links-contact { grid-template-columns: 1fr; }
}
