/* ============================================================
   ORGANIC PHARMACEUTICALS — Global Stylesheet
   Design System: Navy + Emerald + Gold
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* ── Design Tokens ── */
:root {
  --primary:       #0d2b5e;
  --primary-dark:  #081a3a;
  --primary-light: #006AB4;
  --secondary:     #0281C7;
  --secondary-dark:#006AB4;
  --accent:        #9EDBF4;
  --accent-light:  #9EDBF4;
  --white:         #ffffff;
  --bg-light:      #f5f8ff;
  --bg-subtle:     #eef3fb;
  --text-dark:     #1a1a2e;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;
  --border:        #e2e8f0;
  --shadow-sm:     0 2px 8px rgba(13,43,94,0.08);
  --shadow-md:     0 8px 32px rgba(13,43,94,0.12);
  --shadow-lg:     0 20px 60px rgba(13,43,94,0.18);
  --radius:        12px;
  --radius-lg:     20px;
  --radius-full:   9999px;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --font-body:     'Inter', sans-serif;
  --font-heading:  'Playfair Display', serif;
  --header-h:      80px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
section { position: relative; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 700; }
p { color: var(--text-muted); }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 10px 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.d-flex { display: flex; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.align-center { align-items: center; }

/* Section Header */
.section-header { margin-bottom: 56px; text-align: center; }
.section-header .tag {
  display: inline-block;
  background: rgba(2,129,199,0.1);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: var(--radius-full);
  margin: 18px auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(2,129,199,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(2,129,199,0.5);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-outline {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}
.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, var(--accent), #e09000);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(240,165,0,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,165,0,0.5);
}
.btn svg { width: 18px; height: 18px; }

/* ────────────────────────────────────────────────
   HEADER / NAVIGATION
──────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: all var(--transition);
}
#header.transparent { background: transparent; }
#header.scrolled {
  background: rgba(8,26,58,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  height: 68px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 48px; width: auto;  }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
}
.nav-logo-text span:last-child {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.nav-cta { margin-left: 12px; padding: 10px 22px; font-size: 0.85rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--primary-dark);
  padding: 20px 24px 30px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: slideDown 0.3s ease;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.85);
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-mobile a:hover, .nav-mobile a.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.nav-mobile .btn { margin-top: 12px; justify-content: center; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ────────────────────────────────────────────────
   HERO SECTION
──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(8,26,58,0.93) 0%, rgba(0,100,60,0.7) 100%),
    url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C360,80 1080,0 1440,40 L1440,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E") bottom/cover no-repeat;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,0.2);
  border: 1px solid rgba(240,165,0,0.4);
  color: var(--accent-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.hero h1 .highlight {
  color: var(--accent-light);
  font-style: italic;
}
.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 600px;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeInUp 0.7s 0.4s ease both;
  flex-wrap: wrap;
}
.hero-stat-item {}
.hero-stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent-light);
  font-weight: 700;
  display: block;
}
.hero-stat-item .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Page Banner (for inner pages) */
.page-banner {
  min-height: 380px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
.breadcrumb a { color: var(--accent-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ────────────────────────────────────────────────
   STATS / COUNTER SECTION
──────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.stat-icon {
  width: 56px; height: 56px;
  background: rgba(0,168,107,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ────────────────────────────────────────────────
   ABOUT SNIPPET
──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 460px;
}
.about-badge-box {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 160px;
}
.about-badge-box .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--secondary);
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-badge-box .lbl { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.about-tag {
  position: absolute;
  top: -20px; left: -20px;
  background: linear-gradient(135deg, var(--accent), #e09000);
  color: var(--primary-dark);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.about-content .section-header { text-align: left; }
.about-content .section-header .divider { margin: 18px 0 0; }
.about-content p { margin-bottom: 16px; font-size: 1rem; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--secondary);
}
.about-feature .icon { font-size: 1.4rem; flex-shrink: 0; }
.about-feature h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 2px; }
.about-feature p { font-size: 0.85rem; color: var(--text-muted); }

/* ────────────────────────────────────────────────
   PRODUCTS
──────────────────────────────────────────────── */
.products-section { background: var(--bg-light); }
.product-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(2,129,199,0.3);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card.hidden { display: none; }
.product-img-wrap {
  background: var(--bg-subtle);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  position: relative;
  overflow: hidden;
}
.product-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(2,129,199,0.06) 0%, transparent 70%);
}
/* Single image (default) */
.product-img-wrap img {
  height: 160px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition), opacity var(--transition);
  position: relative;
  z-index: 1;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

/* Dual-image hover swap (main + full) */
.product-img-wrap .img-main,
.product-img-wrap .img-hover {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  height: 160px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.product-img-wrap .img-main  { opacity: 1;  transform: translate(-50%, -50%) scale(1); z-index: 2; }
.product-img-wrap .img-hover { opacity: 0;  transform: translate(-50%, -50%) scale(0.9); z-index: 3; }
.product-card:hover .product-img-wrap .img-main  { opacity: 0;  transform: translate(-50%, -50%) scale(1.08); }
.product-card:hover .product-img-wrap .img-hover { opacity: 1;  transform: translate(-50%, -50%) scale(1); }
.product-cat-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.product-composition {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.5;
}
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; margin-top: auto; padding-top: 12px; }
.product-tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(2,129,199,0.08);
  color: var(--secondary-dark);
  font-weight: 500;
}
.product-enquire {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
  border: 1.5px solid var(--border);
}
.product-enquire:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

/* ────────────────────────────────────────────────
   WHY CHOOSE US
──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.why-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(2,129,199,0.12), rgba(2,129,199,0.04));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.why-card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; line-height: 1.7; }

/* ────────────────────────────────────────────────
   THERAPEUTIC AREAS
──────────────────────────────────────────────── */
.therapeutic-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.therapeutic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.therapeutic-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.therapeutic-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  border-color: rgba(240,165,0,0.3);
}
.therapeutic-card .t-icon { font-size: 2.6rem; margin-bottom: 14px; }
.therapeutic-card h4 { color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; }

/* ────────────────────────────────────────────────
   MANUFACTURING PROCESS
──────────────────────────────────────────────── */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 36px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--secondary), var(--accent));
}
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 30px 0;
  position: relative;
}
.step-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(2,129,199,0.4);
  position: relative;
  z-index: 1;
}
.step-content { flex: 1; padding-top: 12px; }
.step-content h4 { color: var(--primary); font-size: 1.05rem; margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; }

/* ────────────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────────────── */
.testimonials-section { background: var(--bg-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-icon { font-size: 2.5rem; color: var(--secondary); opacity: 0.3; line-height: 1; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--primary); }
.author-role { font-size: 0.78rem; color: var(--text-light); }

/* ────────────────────────────────────────────────
   CTA BANNER
──────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.1'/%3E%3C/svg%3E") center/100px repeat;
}
.cta-section h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 580px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ────────────────────────────────────────────────
   CONTACT FORM
──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { color: var(--primary); margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }
.contact-info-items { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(2,129,199,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--secondary);
}
.contact-info-item h4 { color: var(--primary); font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-info-item a:hover { color: var(--secondary); }
.contact-social { display: flex; gap: 12px; margin-top: 36px; }
.social-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--bg-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--primary);
}
.social-icon:hover { background: var(--secondary); color: var(--white); transform: translateY(-3px); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-title { margin-bottom: 32px; }
.form-title h3 { color: var(--primary); margin-bottom: 6px; }
.form-title p { font-size: 0.9rem; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(2,129,199,0.1);
}
.form-group input.error, .form-group textarea.error { border-color: #ef4444; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { font-size: 0.78rem; color: #ef4444; margin-top: 4px; display: none; }
.form-error.visible { display: block; }
.form-success {
  display: none;
  background: rgba(2,129,199,0.08);
  border: 1px solid rgba(2,129,199,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 20px;
  color: var(--secondary-dark);
  font-weight: 600;
  font-size: 0.92rem;
}
.form-success.visible { display: block; }

/* Map */
.map-wrap { margin-top: 70px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: none; }

/* ────────────────────────────────────────────────
   FAQ
──────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq-sidebar h3 { color: var(--primary); margin-bottom: 16px; }
.faq-sidebar p { font-size: 0.95rem; margin-bottom: 28px; }
.faq-categories { display: flex; flex-direction: column; gap: 10px; }
.faq-cat-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--bg-light);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
  text-align: left;
  border: 1.5px solid transparent;
}
.faq-cat-btn:hover, .faq-cat-btn.active {
  background: rgba(2,129,199,0.08);
  border-color: var(--secondary);
  color: var(--secondary);
}
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.accordion-item.open { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  transition: all var(--transition);
  gap: 16px;
}
.accordion-trigger:hover { color: var(--secondary); }
.accordion-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform var(--transition);
  color: var(--secondary);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: var(--secondary); color: var(--white); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.accordion-item.open .accordion-content { max-height: 400px; }
.accordion-body {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ────────────────────────────────────────────────
   POLICIES
──────────────────────────────────────────────── */
.policy-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.policy-tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  transition: all var(--transition);
}
.policy-tab.active, .policy-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.policy-panel { display: none; }
.policy-panel.active { display: block; }
.policy-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}
.policy-content h2 { margin-bottom: 8px; font-size: 1.8rem; }
.policy-date { color: var(--text-light); font-size: 0.85rem; margin-bottom: 32px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.policy-content h3 { font-size: 1.15rem; color: var(--primary); margin: 28px 0 12px; font-family: var(--font-body); font-weight: 700; }
.policy-content p { margin-bottom: 14px; font-size: 0.94rem; }
.policy-content ul { margin: 12px 0 14px 20px; list-style: disc; }
.policy-content ul li { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 6px; padding-left: 4px; }

/* ────────────────────────────────────────────────
   CERTIFICATIONS
──────────────────────────────────────────────── */
.cert-strip {
  background: var(--bg-subtle);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cert-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.cert-item:hover { opacity: 1; }
.cert-badge {
  width: 80px; height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
}
.cert-item span { font-size: 0.78rem; font-weight: 700; color: var(--primary); letter-spacing: 0.08em; }

/* Dosage Forms */
.dosage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}
.dosage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.dosage-card:hover { border-color: var(--secondary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dosage-card .d-icon { font-size: 2.2rem; margin-bottom: 12px; }
.dosage-card h4 { font-size: 0.88rem; color: var(--primary); }

/* ────────────────────────────────────────────────
   TEAM
──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.5);
}
.team-body { padding: 24px 20px; }
.team-body h4 { color: var(--primary); font-size: 1rem; margin-bottom: 4px; }
.team-body .role { font-size: 0.82rem; color: var(--secondary); font-weight: 600; margin-bottom: 10px; }
.team-body p { font-size: 0.85rem; }

/* ────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────── */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--secondary);
  font-size: 1rem;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item .f-icon {
  font-size: 1rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item p, .footer-contact-item a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--accent-light); }
.cert-badges-footer { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.cert-badge-sm {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(240,165,0,0.4);
  color: var(--accent-light);
  letter-spacing: 0.08em;
}

/* ── Back to Top ── */
#backToTop {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(2,129,199,0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 900;
  pointer-events: none;
  text-decoration: none;
}
#backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#backToTop:hover { background: var(--secondary-dark); transform: translateY(-3px); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 92px; right: 32px;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  z-index: 900;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ────────────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2); opacity: 0; }
}

[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate { opacity: 1; transform: none !important; }
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.85); }

/* ────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-main { height: 360px; }
  .about-badge-box { right: 16px; bottom: -16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-sidebar { display: flex; flex-direction: row; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 40px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 90vh; }
  .hero-stats { gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-section h2 { font-size: 1.8rem; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .policy-content { padding: 28px 20px; }
  .process-timeline::before { left: 28px; }
  .step-num { width: 56px; height: 56px; font-size: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { gap: 24px; }
  #backToTop, .whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-float { bottom: 80px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: fit-content; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h2 { font-size: 1.6rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .therapeutic-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 20px; }
}

/* ────────────────────────────────────────────────
   PRODUCT DETAIL PAGE
──────────────────────────────────────────────── */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.product-detail-image {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.product-detail-image img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.product-detail-image:hover img {
  transform: scale(1.05);
}
.product-detail-image .product-cat-badge {
  top: 20px;
  left: 20px;
  font-size: 0.8rem;
  padding: 6px 14px;
}
.product-detail-info h1 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.product-detail-therapeutic {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 24px;
}
.product-detail-composition {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
  background: rgba(2, 129, 199, 0.05);
  padding: 16px 20px;
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.product-detail-tags .product-tag {
  font-size: 0.85rem;
  padding: 6px 14px;
}
.product-detail-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-detail-info h1 {
    font-size: 1.8rem;
  }
}
