/* ============================================================
   HIGHLIGHT DRUGS & PHARMACEUTICAL PVT. LTD.
   Global Styles & Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --green-950:  #0a192f;
  --green-900:  #0f2942;
  --green-800:  #173d61;
  --green-700:  #1f5787;
  --green-600:  #2b73b3;
  --green-500:  #378fd9;
  --green-400:  #63a9e3;
  --green-100:  #d6ebfa;
  --green-50:   #f0f7fd;

  --gold-700:   #34495e;
  --gold-600:   #5b758c;
  --gold-500:   #7f9eb5;
  --gold-400:   #a5bfd4;
  --gold-100:   #ebf0f5;

  --white:      #FFFFFF;
  --off-white:  #F8FAF8;
  --gray-50:    #F4F7F4;
  --gray-100:   #E8EDEA;
  --gray-200:   #C8D4CC;
  --gray-400:   #8FA59A;
  --gray-600:   #4A6055;
  --gray-800:   #1E2D26;
  --dark:       #0a192f;

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Roboto', 'Inter', sans-serif;

  --radius-sm:  4px;
  --radius-md:  6px;
  --radius-lg:  8px;
  --radius-xl:  12px;
  --radius-full: 4px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --shadow-glow: 0 0 40px rgba(82,183,136,0.18);

  --nav-height: 76px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Utility ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* ─── Section Label ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-600);
  background: var(--green-50); border: 1px solid var(--green-100);
  padding: 6px 16px; border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-500);
}

/* ─── Section Headings ─── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
  color: var(--green-900);
  margin-bottom: 16px;
}
.section-title span { color: var(--green-600); }
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-600);
  max-width: 600px; margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 600;
  transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(45,106,79,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45,106,79,0.45);
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
}
.btn-secondary {
  background: var(--white);
  color: var(--green-700);
  border: 2px solid var(--green-500);
}
.btn-secondary:hover {
  background: var(--green-50);
  border-color: var(--green-600);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-700), var(--gold-500));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(183,146,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(183,146,76,0.45);
}
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-icon {
  width: 18px; height: 18px; transition: transform var(--transition);
}
.btn:hover .btn-icon { transform: translateX(3px); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.navbar.transparent { background: transparent; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-size: 0.82rem; font-weight: 700;
  color: var(--green-900); letter-spacing: -0.01em;
  white-space: nowrap;
}
.navbar.transparent:not(.scrolled) .nav-logo-name { color: var(--white); }
.nav-logo-tagline {
  font-size: 0.68rem; font-weight: 400;
  color: var(--gray-400); letter-spacing: 0.04em;
}
.navbar.transparent:not(.scrolled) .nav-logo-tagline { color: rgba(255,255,255,0.65); }

.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-link {
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 0.9rem; font-weight: 500;
  color: var(--gray-600); transition: all var(--transition);
  position: relative;
}
.navbar.transparent:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }
.nav-link:hover { color: var(--green-700); background: var(--green-50); }
.navbar.transparent:not(.scrolled) .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.nav-link.active { color: var(--green-700); font-weight: 600; }
.navbar.transparent:not(.scrolled) .nav-link.active { color: var(--white); }
.nav-cta { margin-left: 12px; }

/* Mobile menu */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; padding: 4px; cursor: pointer;
}
.nav-hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--green-800); transition: all var(--transition);
}
.navbar.transparent:not(.scrolled) .nav-hamburger span { background: var(--white); }

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--white);
  padding: 24px; border-top: 1px solid var(--gray-100);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  flex-direction: column; gap: 4px;
  transform: translateY(-8px); opacity: 0;
  transition: all var(--transition);
}
.mobile-menu.open {
  display: flex; transform: translateY(0); opacity: 1;
}
.mobile-link {
  padding: 12px 16px; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 500; color: var(--gray-700);
  transition: all var(--transition);
}
.mobile-link:hover { background: var(--green-50); color: var(--green-700); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 75vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/Main gate.webp');
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 47, 0.85) 0%,
    rgba(15, 41, 66, 0.75) 50%,
    rgba(23, 61, 97, 0.65) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  padding-top: var(--nav-height);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease both;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-400);
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 580px; line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-stats {
  display: flex; gap: 48px; margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeInUp 0.8s ease 0.4s both;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.stat-number span { color: var(--gold-400); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: var(--green-900);
  padding: 20px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem; font-weight: 500;
}
.trust-icon { font-size: 1.2rem; }
.trust-divider {
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.15);
}

/* ══════════════════════════════════════════
   OVERVIEW / INTRO
══════════════════════════════════════════ */
.intro-section { background: var(--white); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.intro-img-wrap {
  position: relative;
}
.intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-img img { width: 100%; height: 420px; object-fit: cover; }
.intro-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--green-700);
  color: var(--white); border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.intro-img-badge .num {
  font-family: var(--font-serif);
  font-size: 2.2rem; font-weight: 700; line-height: 1;
}
.intro-img-badge .txt {
  font-size: 0.75rem; opacity: 0.85; margin-top: 4px;
}
.intro-text { }
.intro-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.intro-feature {
  display: flex; gap: 16px; align-items: flex-start;
}
.intro-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--green-50); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  border: 1px solid var(--green-100);
}
.intro-feature-body h4 {
  font-size: 1rem; font-weight: 600; color: var(--green-900);
  margin-bottom: 4px;
}
.intro-feature-body p { font-size: 0.88rem; color: var(--gray-600); }

/* ══════════════════════════════════════════
   SERVICES OVERVIEW (Home)
══════════════════════════════════════════ */
.services-section { background: var(--gray-50); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  inset: 0; opacity: 0;
  background: linear-gradient(135deg, var(--green-50), transparent);
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-200, #b7e4c7); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px;
  border: 1px solid var(--green-100);
}
.service-card h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--green-900); margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 0.88rem; font-weight: 600;
  color: var(--green-600); transition: gap var(--transition);
}
.service-card:hover .learn-more { gap: 10px; }

/* ══════════════════════════════════════════
   PRODUCT CATEGORIES
══════════════════════════════════════════ */
.categories-section { background: var(--white); }
.categories-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 56px;
}
.category-card {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; min-height: 320px;
  display: flex; align-items: flex-end;
  transition: all var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.04); }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,31,20,0.88) 0%, rgba(10,31,20,0.3) 60%, transparent 100%);
}
.category-body {
  position: relative; z-index: 1;
  padding: 32px;
}
.category-tag {
  display: inline-block; padding: 4px 12px;
  background: var(--gold-500); border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 600; color: var(--white);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 10px;
}
.category-body h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem; color: var(--white); font-weight: 700;
  margin-bottom: 8px;
}
.category-body p { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.why-section {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--white);
}
.why-section .section-title { color: var(--white); }
.why-section .section-label { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: var(--gold-400); }
.why-section .section-label::before { background: var(--gold-400); }
.why-section .section-subtitle { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px;
}
.why-card {
  padding: 32px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-align: center;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px; display: block;
}
.why-card h4 {
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-section {
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--green-900);
  max-width: 520px;
}
.cta-inner h2 span { color: var(--green-600); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2.5fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.footer-logo-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.footer-desc { font-size: 0.87rem; line-height: 1.7; max-width: 280px; }
.footer-certifications {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px;
}
.footer-cert {
  padding: 5px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.footer-col h5 {
  font-size: 0.85rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.87rem; color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--green-400); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; margin-bottom: 12px;
}
.footer-contact-icon { font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-link { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-link:hover { color: var(--green-400); }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(82,183,136,0.15) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green-400); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 16px;
}
.page-hero-title span { color: var(--gold-400); }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 560px; }

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */
.services-detail-grid {
  display: flex; flex-direction: column; gap: 80px;
  margin-top: 56px;
}
.service-detail-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.service-detail-row.reverse { direction: rtl; }
.service-detail-row.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail-img img { width: 100%; height: 380px; object-fit: cover; }
.service-detail-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-600);
  margin-bottom: 12px;
}
.service-detail-label span {
  width: 24px; height: 2px; background: var(--gold-500);
}
.service-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--green-900);
  margin-bottom: 16px; line-height: 1.2;
}
.service-detail-desc { color: var(--gray-600); line-height: 1.75; margin-bottom: 28px; }
.service-detail-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.service-detail-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--gray-700);
}
.check-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--green-600); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.65rem; margin-top: 1px;
}

/* Product Range Cards */
.product-range { background: var(--gray-50); }
.range-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.range-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.range-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.range-emoji { font-size: 2.4rem; margin-bottom: 16px; }
.range-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--green-900); margin-bottom: 8px; }
.range-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; }
.range-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.range-tag {
  padding: 3px 10px; background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 600; color: var(--green-700);
}

/* Product photo cards */
.product-img-card { padding: 0; overflow: hidden; }
.product-img-wrap {
  width: 100%; height: 450px; overflow: hidden;
  background: var(--white);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; }
.product-img-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-card h3,
.product-img-card p,
.product-img-card .range-tags { padding: 0 24px; }
.product-img-card h3 { padding-top: 20px; }
.product-img-card .range-tags { padding-bottom: 20px; }

/* Process Steps */
.process-section { background: var(--white); }
.process-steps {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 56px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  left: 28px; top: 56px; bottom: 56px; width: 2px;
  background: linear-gradient(to bottom, var(--green-500), var(--green-200, #b7e4c7));
}
.process-step {
  display: flex; gap: 32px; padding: 32px 0;
  position: relative;
}
.step-num {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--green-700); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.2rem;
  font-weight: 700; color: var(--white);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 4px var(--green-100);
  z-index: 1;
}
.step-body { padding-top: 10px; }
.step-body h4 { font-size: 1.1rem; font-weight: 700; color: var(--green-900); margin-bottom: 6px; }
.step-body p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-story { background: var(--white); }
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-img-stack { position: relative; padding: 24px 0 24px 24px; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-accent {
  position: absolute; top: 0; left: 0;
  width: 160px; height: 160px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-text {}
.about-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-style: italic;
  color: var(--green-700); line-height: 1.7;
  border-left: 3px solid var(--green-500);
  padding-left: 20px; margin: 28px 0;
}
.about-body { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }

/* Values */
.values-section { background: var(--green-50); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; text-align: center;
  border: 1px solid var(--green-100);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 2.8rem; margin-bottom: 20px; display: block; }
.value-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-900); margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }

/* Team / Certifications */
.cert-section { background: var(--white); }
.cert-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px;
}
.cert-card {
  background: var(--gray-50); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.cert-card:hover { border-color: var(--green-200, #b7e4c7); background: var(--green-50); }
.cert-emblem { font-size: 2.4rem; margin-bottom: 12px; }
.cert-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--green-900); margin-bottom: 6px; }
.cert-card p { font-size: 0.8rem; color: var(--gray-500); }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 64px;
}
.contact-info {}
.contact-info-card {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  border-radius: var(--radius-lg); padding: 40px 36px;
  color: var(--white); position: sticky; top: 100px;
}
.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 700; margin-bottom: 8px;
}
.contact-info-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-detail-body h5 { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-detail-body p { font-size: 0.9rem; color: rgba(255,255,255,0.9); }

/* Contact Form */
.contact-form-wrap {}
.form-header { margin-bottom: 40px; }
.form-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--green-900);
}
.contact-form {}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  background: var(--gray-50); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-family: var(--font-sans); font-size: 0.95rem;
  color: var(--gray-800); transition: all var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* Thank you state */
.form-success {
  text-align: center; padding: 48px 32px;
  display: none;
}
.form-success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--green-800); margin-bottom: 8px; }
.form-success p { color: var(--gray-600); }

/* Map placeholder */
.map-wrap {
  margin-top: 56px;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  height: 320px; display: flex; align-items: center; justify-content: center;
}
.map-placeholder {
  text-align: center; color: var(--gray-400);
}
.map-placeholder span { font-size: 3rem; display: block; margin-bottom: 8px; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.35); opacity: 0.75; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Scroll-reveal classes */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-row,
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-row.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid, .categories-grid,
  .values-grid, .range-grid { grid-template-columns: 1fr; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { gap: 20px; }
  .trust-divider { display: none; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .intro-img-badge { bottom: -16px; right: 16px; }
  .section { padding: 64px 0; }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
}
