/* ============================================================
   LIFE MAKER PHARMA CHEMICALS & PACKAGING
   Main Stylesheet – Premium Pharmaceutical Corporate Website
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --blue-dark:   #0d2b4e;
  --blue-mid:    #1a3e6f;
  --blue-light:  #2563a8;
  --blue-bright: #3b82f6;
  --red-primary: #C0392B;
  --red-dark:    #96281B;
  --red-light:   #e74c3c;
  --green:       #27ae60;
  --green-dark:  #1e8449;
  --silver:      #8c9aab;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --light-bg:    #f1f5f9;
  --text-dark:   #0f1c2e;
  --text-mid:    #334155;
  --text-light:  #64748b;
  --border:      #e2e8f0;
  --shadow-sm:   0 2px 8px rgba(13,43,78,0.08);
  --shadow-md:   0 8px 32px rgba(13,43,78,0.12);
  --shadow-lg:   0 20px 60px rgba(13,43,78,0.16);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #ffffff 100%);
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: var(--transition); }

/* ============================================================
   TOPBAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red-primary), var(--blue-bright));
  z-index: 3000;
  box-shadow: 0 0 18px rgba(59,130,246,.4);
  pointer-events: none;
}
.topbar {
  background:
    linear-gradient(90deg, #07182d 0%, var(--blue-dark) 45%, #123866 100%);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-link {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  transition: var(--transition);
  white-space: nowrap;
}
.topbar-link:hover { color: var(--white); }
.topbar-contact {
  min-width: 0;
  flex-wrap: nowrap;
}
.topbar-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.topbar-whatsapp:hover { background: #1db954; color: var(--white); }

/* ============================================================
   NAVBAR
   ============================================================ */
.main-navbar {
  background: rgba(255,255,255,.94);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  width: 100%;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,.65);
}
.main-navbar.scrolled {
  padding: 6px 0;
  box-shadow: 0 14px 38px rgba(13,43,78,.12);
}

/* Brand Logo */
.brand-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon img,
.logo-icon svg {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--blue-dark);
  letter-spacing: 1px;
}
.brand-sub { font-size: 10px; color: var(--text-light); font-weight: 600; letter-spacing: 0.3px; }

/* Nav Links */
.main-navbar .nav-link {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.main-navbar .nav-link::before {
  content: '';
  position: absolute;
  inset: auto 14px 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--red-primary), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
  border-radius: 2px;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--blue-light);
  background: rgba(37, 99, 168, 0.06);
}
.main-navbar .nav-link:hover::before,
.main-navbar .nav-link.active::before { transform: scaleX(1); }
.main-navbar .nav-link.active::after {
  display: none;
}

/* Nav Dropdown */
.nav-dropdown {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 260px;
  margin-top: 8px;
}
.nav-dropdown .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-dropdown .dropdown-item:hover {
  background: rgba(37, 99, 168, 0.08);
  color: var(--blue-light);
}

/* Nav CTA Button */
.btn-nav-cta {
  background: var(--red-primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-nav-cta:hover {
  background: var(--red-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}

/* Mobile Nav Toggler */
.navbar-toggler {
  border: 2px solid var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  background: none;
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.toggler-icon span {
  display: block;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   PAGE HEADER SECTION
   ============================================================ */
.page-header-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-light) 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-header-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-pattern.svg') center/cover;
  opacity: 0.05;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,78,0.9) 0%, rgba(26,62,111,0.7) 100%);
}
.page-header-section .container { position: relative; z-index: 1; }
.breadcrumb { margin-bottom: 12px; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); font-size: 13px; }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); font-size: 13px; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.page-header-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin: 0;
}
.page-header-sub {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-top: 8px;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-pad { padding: 90px 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 168, 0.1);
  color: var(--blue-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 10px 22px rgba(37,99,168,.08);
}
.section-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: .85;
}
.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}
.section-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
}
.section-text.light { color: rgba(255,255,255,0.85); }
.text-accent { color: var(--red-primary); }
.text-accent-light { color: #ff8b80; }
.text-gradient-red {
  background: linear-gradient(135deg, var(--red-primary), #e74c3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-light-custom { background: var(--light-bg); }
.bg-dark-custom { background: linear-gradient(135deg, var(--blue-dark) 0%, #0a1f3c 100%); }
.bg-blue-gradient { background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-dark) 100%); }
.text-white-80 { color: rgba(255,255,255,0.8); }

.products-showcase,
.welcome-section,
.manufacturing-section,
.export-snapshot,
.why-section {
  position: relative;
  overflow: hidden;
}
.products-showcase::before,
.export-snapshot::before,
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,43,78,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,43,78,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.products-showcase > .container,
.welcome-section > .container,
.manufacturing-section > .container,
.export-snapshot > .container,
.why-section > .container { position: relative; z-index: 1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  color: var(--white);
  border: none;
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--red-dark), #7b1e12);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192,57,43,0.4);
}
.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}
.btn-outline-light-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1db954);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1db954, #17a045);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}
.btn-light-cta {
  background: var(--white);
  color: var(--blue-dark);
  border: none;
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-light-cta:hover {
  background: var(--off-white);
  color: var(--blue-dark);
  transform: translateY(-2px);
}
.btn-product-detail {
  color: var(--blue-light);
  font-weight: 600;
  font-size: 14px;
  padding: 0;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.btn-product-detail:hover { color: var(--red-primary); gap: 10px; }

.tilt-ready {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
}
.tilt-ready:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(135deg, #07182d 0%, var(--blue-dark) 42%, #153f72 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 0 50px;
  perspective: 1200px;
}
.min-vh-hero { min-height: unset; }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.08) 0%, transparent 34%),
    linear-gradient(155deg, rgba(37,99,168,0.34) 0%, transparent 58%),
    linear-gradient(90deg, rgba(7,24,45,0.2), rgba(7,24,45,0.72));
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.min-vh-hero { min-height: calc(90vh - 180px); }
.hero-container { position: relative; }
.hero-container { position: relative; z-index: 1; }

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(900px) rotateX(63deg) translateY(-18%);
  transform-origin: top center;
  opacity: .28;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,168,0.25);
  border: 1px solid rgba(59,130,246,0.3);
  padding: 7px 18px;
  border-radius: 30px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 18px 42px rgba(0,0,0,.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: hero-rise .8s ease .12s both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.5px;
  text-shadow: 0 18px 50px rgba(0,0,0,.32);
  animation: hero-rise .85s ease .22s both;
}

.hero-subtext {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 500px;
  animation: hero-rise .85s ease .32s both;
}
.hero-cta { animation: hero-rise .85s ease .42s both; }

.hero-stats {
  gap: 20px;
  padding: 14px 18px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.13), 0 24px 56px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: hero-rise .85s ease .52s both;
}
.stat-item { display: flex; flex-direction: column; gap: 1px; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; }

/* Hero Visual – Full bleed right-side image */
.hero-bg-img-wrap {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: clamp(18px, 3.6vw, 72px);
  transform-style: preserve-3d;
}
.hero-bg-img {
  --hero-img-x: clamp(12px, 3vw, 56px);
  width: auto;
  height: clamp(560px, 88vh, 860px);
  max-width: 135%;
  object-fit: contain;
  display: block;
  animation: none;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,0.55));
  transform-origin: 70% center;
  transform: translateX(var(--hero-img-x));
}
/* Left-to-right transparent fade — blends image into hero background */
.hero-bg-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--blue-dark)         0%,
    rgba(13,43,78,0.88)      6%,
    rgba(13,43,78,0.40)      18%,
    rgba(13,43,78,0.05)      35%,
    rgba(13,43,78,0)         50%
  );
  pointer-events: none;
}
/* Also add a subtle top-to-bottom vignette */
.hero-bg-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,43,78,0.3) 0%,
    rgba(13,43,78,0)   30%,
    rgba(13,43,78,0)   70%,
    rgba(13,43,78,0.4) 100%
  );
}

/* Make sure text column sits above image */
.hero-container { position: relative; z-index: 1; }

/* Float cards — fixed positions relative to hero section */
.hero-float-card {
  position: absolute;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
  animation: float-card 4s ease-in-out infinite;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 24px 54px rgba(0,0,0,.22);
  transform-style: preserve-3d;
}
.hero-float-card i { font-size: 16px; color: #60a5fa; }
/* Position cards in the right image area */
.hero-float-card.card-1 { top: 18%;  right: 30%; animation-delay: 0s; }
.hero-float-card.card-2 { top: 52%;  right: 5%;  animation-delay: 1.5s; }
.hero-float-card.card-3 { bottom: 20%; right: 22%; animation-delay: 3s; }

@keyframes float-img {
  0%,100% { transform: translateX(var(--hero-img-x)); }
  50%      { transform: translateX(var(--hero-img-x)); }
}
@keyframes float-card {
  0%,100% { transform: translateY(0) translateZ(24px); }
  50%      { transform: translateY(-8px) translateZ(38px); }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive: hide image on mobile, cards on tablet */
@media (max-width: 991px) {
  .hero-bg-img-wrap { width: 50%; opacity: 0.6; }
  .hero-float-card  { display: none !important; }
}
@media (max-width: 767px) {
  .hero-bg-img-wrap { display: none; }
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator a {
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  animation: bounce-down 2s infinite;
  display: block;
}
@keyframes bounce-down {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  position: relative;
  z-index: 3;
  margin-top: -38px;
}
.trust-bar .container {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(226,232,240,.85);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(13,43,78,.14);
  padding: 15px 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  min-height: 34px;
  transition: transform .25s ease, color .25s ease;
}
.trust-item:hover { transform: translateY(-2px); color: var(--blue-dark); }
.trust-item i { color: var(--blue-light); font-size: 16px; }

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-features { display: flex; flex-direction: column; gap: 10px; }
.feature-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 500;
}
.feature-inline i { color: var(--green); font-size: 16px; }

.welcome-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.highlight-card::before,
.product-card::before,
.advantage-card::before,
.region-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.55), transparent 38%, rgba(37,99,168,.08));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.highlight-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.highlight-card:hover::before,
.product-card:hover::before,
.advantage-card:hover::before,
.region-card:hover::before { opacity: 1; }
.hc-icon {
  width: 44px; height: 44px;
  background:
    linear-gradient(135deg, var(--blue-light), var(--blue-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 12px 28px rgba(37,99,168,.24);
}
.hc-icon i { color: var(--white); font-size: 18px; }
.highlight-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.highlight-card p { font-size: 13px; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(13,43,78,.08), 0 2px 8px rgba(13,43,78,.06);
  border: 1px solid var(--border);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.product-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 32px 80px rgba(13,43,78,.18), 0 12px 30px rgba(37,99,168,.12);
  border-color: var(--blue-light);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.product-card-img::after,
.facility-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.28) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform .75s ease;
  pointer-events: none;
}
.product-card:hover .product-card-img::after,
.facility-img-card:hover::after { transform: translateX(120%); }
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,43,78,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.overlay-btn {
  background: var(--white);
  color: var(--blue-dark);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}
.overlay-btn:hover { background: var(--red-primary); color: var(--white); }

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,.98), #fff);
}
.product-icon-wrap {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 12px 24px rgba(13,43,78,.08);
}
.product-icon-wrap.color-blue { background: rgba(37,99,168,0.12); }
.product-icon-wrap.color-blue i { color: var(--blue-light); }
.product-icon-wrap.color-green { background: rgba(39,174,96,0.12); }
.product-icon-wrap.color-green i { color: var(--green); }
.product-icon-wrap.color-red { background: rgba(192,57,43,0.12); }
.product-icon-wrap.color-red i { color: var(--red-primary); }
.product-icon-wrap.color-silver { background: rgba(140,154,171,0.15); }
.product-icon-wrap.color-silver i { color: var(--silver); }

.product-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.product-apps {
  font-size: 12px;
  color: var(--blue-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.product-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

/* Products Page Category Nav */
.product-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
.cat-nav-btn {
  padding: 9px 20px;
  border-radius: 30px;
  border: 2px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.cat-nav-btn:hover,
.cat-nav-btn.active {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

/* Product Detail Section */
.product-detail-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.product-detail-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red-primary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.product-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: -10px;
}
.product-detail-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}
.product-detail-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
}

.product-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pi-item {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border-left: 3px solid var(--blue-light);
}
.pi-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.pi-value { font-size: 14px; font-weight: 600; color: var(--text-dark); }

.features-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
}
.features-list li i { color: var(--green); font-size: 15px; margin-top: 3px; flex-shrink: 0; }

/* ============================================================
   FACILITY GRID (HOME)
   ============================================================ */
.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.facility-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 42px rgba(13,43,78,.14);
  border: 1px solid rgba(255,255,255,.65);
  transform-style: preserve-3d;
  transition: transform .3s ease, box-shadow .3s ease;
}
.facility-img-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 30px 78px rgba(13,43,78,.22);
}
.facility-img-card.main-card { grid-column: 1 / -1; }
.facility-img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.facility-img-card.main-card img { height: 260px; }
.facility-img-card:hover img { transform: scale(1.04); }
.facility-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13,43,78,0.85));
  color: var(--white);
  padding: 20px 14px 10px;
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

.facility-list { display: flex; flex-direction: column; gap: 12px; }
.facility-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  border: 1px solid rgba(37,99,168,.08);
  box-shadow: 0 8px 22px rgba(13,43,78,.05);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.facility-item:hover {
  background: var(--white);
  transform: translateX(6px);
  box-shadow: 0 14px 30px rgba(13,43,78,.09);
}
.facility-item i { color: var(--blue-light); font-size: 16px; width: 20px; }

/* ============================================================
   GLOBAL REACH / REGIONS
   ============================================================ */
.region-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 45px rgba(0,0,0,.12);
}
.region-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-8px) rotateX(3deg);
}
.region-icon { font-size: 32px; color: var(--red-light); margin-bottom: 14px; }
.region-card h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.region-card p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.6; }

/* ============================================================
   WORLD MAP – Leaflet Real Map
   ============================================================ */
.lmap-wrapper { margin-top: 8px; }

.lmap-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
}

.lmap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}
.lmap-header-left { display: flex; align-items: center; gap: 6px; color: #475569; font-size: 12px; letter-spacing: .5px; }
.lmap-header-left i { color: var(--red-primary); }

.lmap-header-stats { display: flex; align-items: center; gap: 0; }
.lmap-hstat { font-size: 12px; color: #64748b; padding: 0 16px; }
.lmap-hstat strong { color: #0d2b4e; font-weight: 700; }
.lmap-hstat-div { width: 1px; height: 16px; background: #e2e8f0; }

#lifemaker-map {
  height: 480px;
  width: 100%;
  background: #f8fafc;
}
@media (max-width: 768px) { #lifemaker-map { height: 320px; } }

.lmap-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px 20px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}
.lmap-legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #475569; font-weight: 500; }
.lmap-legend-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.lmap-legend-hq     { background: #C0392B; box-shadow: 0 0 6px #C0392B66; }
.lmap-legend-dist   { background: #2563a8; box-shadow: 0 0 6px #2563a866; }
.lmap-legend-market { background: #27ae60; box-shadow: 0 0 6px #27ae6066; }

/* Leaflet popup override */
.lmap-popup .leaflet-popup-content-wrapper {
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
  color: #1e293b !important;
  padding: 0 !important;
}
.lmap-popup .leaflet-popup-tip { background: #fff !important; }
.lmap-popup .leaflet-popup-content { margin: 0 !important; }
.lmap-popup-inner {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
}
.lmap-popup-flag { font-size: 28px; line-height: 1; margin-top: 2px; }
.lmap-popup-body { display: flex; flex-direction: column; gap: 2px; }
.lmap-popup-body strong { font-size: 14px; font-weight: 700; color: #0d2b4e; }
.lmap-popup-body span   { font-size: 11px; color: #94a3b8; font-weight: 500; }
.lmap-popup-body p      { font-size: 12px; color: #475569; margin: 6px 0 0; line-height: 1.5; }

/* Leaflet zoom controls */
.leaflet-control-zoom a {
  background: #fff !important;
  color: #475569 !important;
  border-color: #e2e8f0 !important;
}
.leaflet-control-zoom a:hover {
  background: #f1f5f9 !important;
  color: #0d2b4e !important;
}
.leaflet-control-attribution {
  background: rgba(255,255,255,0.85) !important;
  color: #94a3b8 !important;
  font-size: 10px !important;
}
.leaflet-control-attribution a { color: #64748b !important; }

@keyframes lmap-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================================
   EXPORT SNAPSHOT – Home Page Section
   ============================================================ */

/* Intro text */
.export-snap-intro {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  font-weight: 400;
  text-align: center;
}

/* 4 Pillars */
.esn-pillars-grid {
  position: relative;
}
.esn-pillar {
  display: flex;
}
.esn-pillar-card {
  width: 100%;
  min-height: 100%;
  padding: 28px 24px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.98));
  border: 1px solid rgba(226,232,240,.92);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(13,43,78,.08);
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.esn-pillar-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-light), var(--red-primary));
}
.esn-pillar-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.7), transparent 38%, rgba(37,99,168,.06)),
    linear-gradient(rgba(13,43,78,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,43,78,.035) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: .75;
  pointer-events: none;
}
.esn-pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37,99,168,.32);
  box-shadow: 0 30px 76px rgba(13,43,78,.16);
}
.esn-icon-wrap,
.esn-title,
.esn-desc {
  position: relative;
  z-index: 1;
}
.esn-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  font-size: 24px;
  box-shadow: 0 16px 34px rgba(13,43,78,.14);
  border: 1px solid rgba(255,255,255,.65);
}
.esn-icon-wrap.esn-blue,
.esn-title.esn-blue { color: #2563a8; }
.esn-icon-wrap.esn-green,
.esn-title.esn-green { color: #15803d; }
.esn-icon-wrap.esn-orange,
.esn-title.esn-orange { color: #c2410c; }
.esn-icon-wrap.esn-purple,
.esn-title.esn-purple { color: #7e22ce; }
.esn-icon-wrap.esn-blue { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.esn-icon-wrap.esn-green { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.esn-icon-wrap.esn-orange { background: linear-gradient(135deg, #fff7ed, #ffedd5); }
.esn-icon-wrap.esn-purple { background: linear-gradient(135deg, #faf5ff, #f3e8ff); }

.esn-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.esn-desc {
  font-size: 14px;
  color: #53657d;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 575px) {
  .esn-pillar-card {
    padding: 22px 18px;
    text-align: center;
  }
  .esn-icon-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .esn-title { font-size: 12px; }
  .esn-desc { font-size: 13px; }
}

/* Shipping Steps */
.esn-shipping-wrap {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px 24px;
}
.esn-shipping-title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2563a8;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
}

.esn-step {
  padding: 0 12px;
  position: relative;
  text-align: center;
}
.esn-step-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e2e8f0;
  margin-bottom: 0;
  position: relative;
}
.esn-step-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.esn-step:hover .esn-step-img img { transform: scale(1.04); }

/* Arrow between steps */
.esn-step-arrow {
  position: absolute;
  top: 35%;
  right: -14px;
  transform: translateY(-50%);
  z-index: 2;
  width: 28px; height: 28px;
  background: #2563a8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 11px;
  box-shadow: 0 2px 8px rgba(37,99,168,0.35);
}

.esn-step-body {
  padding: 14px 4px 0;
  text-align: left;
}
.esn-step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: #2563a8;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  margin-right: 6px;
  flex-shrink: 0;
  vertical-align: middle;
}
.esn-step-body strong {
  font-size: 13px;
  font-weight: 700;
  color: #2563a8;
  vertical-align: middle;
}
.esn-step-body p {
  font-size: 12px;
  color: #64748b;
  margin: 6px 0 0;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .esn-step { padding: 0 8px; margin-bottom: 20px; }
  .esn-step-arrow { display: none; }
  .esn-step-body { text-align: center; }
}

/* ============================================================
   WHY CHOOSE US – ADVANTAGE CARDS
   ============================================================ */
.advantage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 14px 34px rgba(13,43,78,.08);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.advantage-card:hover {
  transform: translateY(-9px) rotateX(2deg);
  box-shadow: 0 28px 68px rgba(13,43,78,.16);
  border-color: var(--blue-bright);
}
.adv-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 18px 36px rgba(37,99,168,.22);
}
.adv-icon i { color: var(--white); font-size: 20px; }
.advantage-card h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.advantage-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; margin: 0; }

/* Why Choose Us Detail Page */
.advantage-big-icon {
  width: 80px; height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.advantage-big-icon.color-blue { background: rgba(37,99,168,0.12); }
.advantage-big-icon.color-blue i { color: var(--blue-light); font-size: 32px; }
.advantage-big-icon.color-green { background: rgba(39,174,96,0.12); }
.advantage-big-icon.color-green i { color: var(--green); font-size: 32px; }
.advantage-big-icon.color-red { background: rgba(192,57,43,0.12); }
.advantage-big-icon.color-red i { color: var(--red-primary); font-size: 32px; }
.advantage-title { font-size: 22px; font-weight: 700; color: var(--text-dark); }
.advantage-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 0;
}
.advantage-point i { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.advantage-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.facility-divider { border: none; border-top: 1px solid var(--border); margin: 30px 0; }

/* ============================================================
   DISTRIBUTOR
   ============================================================ */
.distributor-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.distributor-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.dist-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--blue-dark);
  box-shadow: var(--shadow-md);
}
.dist-badge i { color: var(--green); font-size: 20px; }
.dist-contact { display: flex; flex-direction: column; gap: 10px; }
.dist-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.dist-contact-item i { color: rgba(255,255,255,0.5); width: 18px; }

/* Distributor Card (Distributor page) */
.distributor-name-block .official-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(39,174,96,0.1);
  color: var(--green-dark);
  border: 1px solid rgba(39,174,96,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

.distributor-card-large {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.dc-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dc-logo-block { display: flex; align-items: center; gap: 14px; color: var(--white); }
.dc-logo-block i { font-size: 36px; color: rgba(255,255,255,0.7); }
.dc-logo-block strong { display: block; font-size: 18px; font-weight: 700; }
.dc-logo-block span { font-size: 12px; color: rgba(255,255,255,0.6); }
.dc-country { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 600; }
.dc-body { padding: 28px; }
.dc-contact-row { display: flex; flex-direction: column; gap: 14px; }
.dc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.dc-contact-item > i {
  width: 40px; height: 40px;
  background: rgba(37,99,168,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 16px;
  flex-shrink: 0;
}
.dci-label { display: block; font-size: 11px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.dc-contact-item a, .dc-contact-item span { color: var(--text-dark); font-size: 15px; font-weight: 600; }
.dc-contact-item a:hover { color: var(--blue-light); }

/* Distributor Products */
.dist-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.dist-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.dpc-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.dpc-icon i { color: var(--white); font-size: 20px; }
.dist-product-card h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.dist-product-card p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ============================================================
   MANUFACTURING (ABOUT)
   ============================================================ */
.about-value-cards { display: flex; flex-direction: column; gap: 16px; }
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.value-card:hover {
  transform: translateX(4px);
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
}
.vc-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vc-icon i { color: var(--white); font-size: 18px; }
.vc-content h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.vc-content p { font-size: 13px; color: var(--text-light); margin: 0; line-height: 1.5; }

.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.mission-card.featured {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-color: var(--blue-dark);
}
.mission-card.featured h3,
.mission-card.featured p { color: var(--white); }
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.mission-icon {
  font-size: 36px;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.mission-card.featured .mission-icon { color: rgba(255,255,255,0.8); }
.mission-card h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.mission-card p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin: 0; }

.fact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.fact-card i { font-size: 36px; color: var(--blue-light); margin-bottom: 14px; display: block; }
.fact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.fact-card p { font-size: 14px; color: var(--text-light); margin: 0; }

.facility-preview-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.facility-preview-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.facility-preview-card:hover img { transform: scale(1.06); }
.facility-preview-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13,43,78,0.85));
  color: var(--white);
  padding: 20px 12px 8px;
  font-size: 12px;
  font-weight: 600;
}

/* Manufacturing Page */
.mfg-badge-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mfg-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mfg-badge:hover { border-color: var(--blue-light); transform: translateY(-2px); }
.mfg-badge i { font-size: 24px; color: var(--blue-light); }

.facility-detail-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.facility-detail-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.fdi-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px; height: 44px;
  background: var(--blue-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fdi-icon i { color: var(--white); font-size: 18px; }
.facility-title { font-size: 24px; font-weight: 700; color: var(--text-dark); }

.quality-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.quality-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.quality-pillar i { font-size: 32px; color: var(--blue-light); display: block; margin-bottom: 14px; }
.quality-pillar h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.quality-pillar p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ============================================================
   EXPORT PAGE
   ============================================================ */
.export-region-mini {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.export-region-mini i { font-size: 28px; color: var(--blue-light); display: block; margin-bottom: 8px; }
.export-region-mini span { font-size: 13px; font-weight: 700; color: var(--text-dark); }

.market-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  transition: var(--transition);
}
.market-card.featured {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.market-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.14);
}
.market-flag-icon { font-size: 36px; color: var(--red-light); margin-bottom: 16px; }
.market-card h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.market-countries { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.market-desc { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 16px; }
.market-products { display: flex; flex-wrap: wrap; gap: 6px; }
.market-products span {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Logistics Steps */
.logistics-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.logistics-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  padding-bottom: 30px;
}
.logistics-step:last-child { padding-bottom: 0; }
.step-connector {
  position: absolute;
  left: 31px;
  top: 56px;
  width: 2px;
  height: calc(100% - 26px);
  background: linear-gradient(to bottom, var(--blue-light), var(--border));
}
.step-connector.last { display: none; }
.step-circle {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.step-circle i { color: var(--white); font-size: 20px; }
.step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px; height: 22px;
  background: var(--red-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}
.step-content { flex: 1; padding-top: 12px; }
.step-content h4 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.step-content p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin: 0; }

.export-trust-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.export-trust-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.export-trust-card i { font-size: 32px; color: var(--red-light); display: block; margin-bottom: 14px; }
.export-trust-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.export-trust-card p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.6; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-box {
  background:
    linear-gradient(135deg, rgba(7,24,45,.96) 0%, rgba(26,62,111,.96) 60%, rgba(37,99,168,.96) 100%);
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  box-shadow: 0 34px 90px rgba(13,43,78,.24), inset 0 1px 0 rgba(255,255,255,.15);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  transform-style: preserve-3d;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.09) 42%, transparent 58%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  transform: translateZ(-1px);
}
.cta-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.cta-box p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  position: relative;
  z-index: 1;
}
.cta-box .btn { position: relative; z-index: 1; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}
.contact-info-card:hover { border-color: var(--blue-light); background: var(--white); }
.cic-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cic-icon i { color: var(--white); font-size: 17px; }
.cic-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); font-weight: 600; }
.cic-value { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.cic-value:hover { color: var(--blue-light); }

.pak-distributor-box {
  background: linear-gradient(135deg, rgba(13,43,78,0.06), rgba(37,99,168,0.06));
  border: 1px solid rgba(37,99,168,0.2);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.pak-distributor-box h5 { font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.pak-distributor-box p { font-size: 13px; color: var(--text-mid); margin-bottom: 10px; }
.pak-dist-info { display: flex; flex-direction: column; gap: 6px; }
.pak-dist-info strong { font-size: 15px; color: var(--text-dark); }
.pak-dist-info a, .pak-dist-info span { font-size: 13px; color: var(--text-light); }
.pak-dist-info a:hover { color: var(--blue-light); }

/* Inquiry Form */
.inquiry-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.form-title { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.form-subtitle { font-size: 15px; color: var(--text-light); margin-bottom: 28px; }

.form-label { font-size: 14px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.required { color: var(--red-primary); }
.form-control-custom {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}
.form-control-custom:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(37,99,168,0.1);
  outline: none;
}
.form-control-custom::placeholder { color: var(--text-light); }

.alert-success-custom {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  color: var(--green-dark);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
}
.alert-danger-custom {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.25);
  color: var(--red-dark);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
}

/* Map Section */
.map-section { }
.map-header { margin-bottom: 16px; }
.map-header h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); }
.map-header p { font-size: 14px; color: var(--text-light); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* WhatsApp CTA */
.whatsapp-cta-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.whatsapp-big-icon {
  font-size: 64px;
  color: #25D366;
  display: block;
  margin-bottom: 16px;
}
.whatsapp-cta-box h3 { font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.whatsapp-cta-box p { font-size: 16px; color: var(--text-light); margin: 0; }

/* ============================================================
   DISTRIBUTOR HIGHLIGHT (HOME)
   ============================================================ */
.distributor-highlight { position: relative; }
.distributor-highlight .section-title.light { color: var(--white); }
.distributor-highlight .section-text.light { color: rgba(255,255,255,0.85); }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer { background: var(--blue-dark); }
.footer-top { padding: 70px 0 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub { color: rgba(255,255,255,0.5); }
.footer-about { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-contact-item i { color: rgba(255,255,255,0.4); width: 15px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item:hover { color: var(--white); }

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a,
.footer-links li span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: block;
}
.footer-links li a:hover { color: var(--white); padding-left: 4px; }
.footer-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.footer-distributor { }
.footer-dist-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.4); font-weight: 600; margin-bottom: 8px; }
.footer-dist-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-dist-card strong { color: var(--white); font-size: 14px; }
.footer-dist-card span { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-dist-card a { color: var(--red-light); font-size: 13px; font-weight: 600; }
.footer-dist-card a:hover { color: var(--white); }

.footer-bottom { padding: 20px 0; }
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.45); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25D366, #1db954);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: var(--transition);
  animation: float-wa 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  color: var(--white);
}
@keyframes float-wa {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--blue-dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  z-index: 997;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--red-primary); }

/* ============================================================
   DISTRIBUTOR INTRO PAGE – DIST CTA
   ============================================================ */
.dist-cta-banner { }
.dist-cta-banner h2 { color: var(--white); }

/* ============================================================
   PLACEHOLDER IMAGES (SVG)
   ============================================================ */
img[src*="placeholder"],
img:not([src]),
img[src=""] {
  background: var(--light-bg);
  min-height: 200px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 60px 0; }
  .hero-section { min-height: 70vh; padding: 80px 0 60px; }
  .welcome-highlights-grid { grid-template-columns: 1fr 1fr; }
  .product-info-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 36px 28px; }
  .inquiry-form-wrapper { padding: 28px 22px; }

  .navbar-collapse {
    background: rgba(255,255,255,.98);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 12px;
    box-shadow: 0 24px 70px rgba(13,43,78,.16);
    border: 1px solid rgba(226,232,240,.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .main-navbar .nav-link { padding: 10px 14px; }
  .btn-nav-cta { margin: 8px 14px 0; display: block; text-align: center; }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .container,
  .container-fluid {
    max-width: 100%;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .row {
    --bs-gutter-x: 1.25rem;
  }
  img,
  iframe,
  video,
  canvas,
  svg {
    max-width: 100%;
  }
  .topbar { display: none; }
  .section-pad { padding: 48px 0; }
  .main-navbar { padding: 10px 0; }
  .main-navbar .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-brand {
    min-width: 0;
    margin-right: 8px;
  }
  .brand-logo {
    min-width: 0;
    gap: 8px;
  }
  .logo-icon,
  .logo-icon img,
  .logo-icon svg {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  .brand-text {
    min-width: 0;
  }
  .brand-name {
    font-size: 14px;
    letter-spacing: .7px;
    white-space: nowrap;
  }
  .brand-sub {
    font-size: 9px;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .navbar-toggler {
    flex: 0 0 auto;
    padding: 5px 9px;
  }
  .navbar-collapse {
    position: absolute;
    top: calc(100% + 6px);
    left: 18px;
    right: 18px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }
  .hero-section {
    min-height: auto;
    padding: 64px 0 46px;
  }
  .hero-container {
    max-width: 100%;
  }
  .hero-badge {
    font-size: 12px;
    max-width: 100%;
    white-space: normal;
  }
  .hero-headline {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.14;
    overflow-wrap: anywhere;
  }
  .hero-subtext {
    max-width: 100%;
    font-size: 16px;
  }
  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-cta .btn-primary-custom,
  .hero-cta .btn-outline-custom { width: 100%; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
    justify-content: space-between;
    padding: 14px;
  }
  .hero-stats .stat-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 120px;
  }
  .trust-bar {
    margin-top: 0;
    background: var(--white);
  }
  .trust-bar .container {
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    border-right: none;
  }
  .stat-divider { display: none; }
  .welcome-highlights-grid { grid-template-columns: 1fr 1fr; }
  .facility-grid { grid-template-columns: 1fr 1fr; }
  .facility-img-card.main-card { grid-column: 1 / -1; }
  .logistics-step { flex-direction: column; align-items: flex-start; }
  .step-connector { display: none; }
  .cta-box { padding: 28px 20px; }
  .inquiry-form-wrapper { padding: 24px 18px; }
  .product-info-grid { grid-template-columns: 1fr 1fr; }
  .mfg-badge-row { grid-template-columns: 1fr 1fr; }
  .topbar .col-md-8 { justify-content: center; }
  .esn-shipping-wrap {
    padding: 22px 16px;
    border-radius: 14px;
  }
  .lmap-frame,
  .map-embed,
  .world-map-container {
    max-width: 100%;
    overflow: hidden;
  }
  .lmap-header,
  .lmap-header-stats,
  .lmap-legend {
    flex-wrap: wrap;
    gap: 8px;
  }
  .lmap-hstat {
    padding: 0 8px 0 0;
  }
  .lmap-hstat-div {
    display: none;
  }
  .contact-info-card,
  .dc-contact-item,
  .dist-contact-item,
  .footer-contact-item {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .footer-top {
    padding: 46px 0 34px;
  }
  .footer-bottom,
  .footer-bottom .text-md-end {
    text-align: center !important;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 72px;
    width: 54px;
    height: 54px;
  }
  .scroll-top-btn {
    right: 16px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .tilt-ready,
  .tilt-ready:hover {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .section-title { font-size: 24px; }
  .hero-float-card { display: none; }
  .dc-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero-cta { flex-direction: column; }
  .cta-box .d-flex { flex-direction: column; gap: 12px; align-items: flex-start; }
  .container,
  .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .brand-name { font-size: 13px; }
  .brand-sub { max-width: 168px; }
  .hero-stats .stat-item {
    flex-basis: 100%;
    min-width: 0;
  }
  .btn-primary-custom,
  .btn-outline-custom,
  .btn-nav-cta {
    max-width: 100%;
    white-space: normal;
  }
}

/* ============================================================
   AOS OVERRIDES
   ============================================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================================
   SMOOTH SCROLLBAR & SELECTION
   ============================================================ */
::selection { background: rgba(37,99,168,0.2); color: var(--text-dark); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }

/* ============================================================
   ADDITIONAL UTILITIES & MISSING COMPONENTS
   ============================================================ */

/* Section separator line */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Product page nav scroll fix */
.products-intro { padding-bottom: 0; }

/* Why choose us page bg */
.wcu-intro { padding-bottom: 0; }
.advantages-detail .row.mb-5:last-child { margin-bottom: 0 !important; }

/* Distributor CTA banner fixes */
.dist-cta-banner .row { position: relative; z-index: 1; }
.dist-cta-banner p { color: rgba(255,255,255,0.75); font-size: 15px; margin-top: 6px; }

/* Export page container for world map */
.world-map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--blue-dark);
  padding: 8px;
}

/* Advantages detailed page – proper row spacing */
.advantages-detail > .container > .row {
  padding: 32px 0;
}

/* Ensure dc-contact-item i renders as flex */
.dc-contact-item > i {
  display: flex !important;
}

/* Hero pattern overlay */
.hero-section::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='%233b82f6' 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");
  pointer-events: none;
}

/* Page header pattern */
.page-header-section::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");
  pointer-events: none;
  z-index: 0;
}
.page-header-section .container { z-index: 2; position: relative; }

/* CTA section dark bg */
.cta-section.bg-blue-gradient .cta-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
}

/* Distributor page inquiry form center wrapper */
#distributor-inquiry .inquiry-form-wrapper {
  max-width: 100%;
}

/* Distributor intro page hero image placeholder */
.distributor-intro .distributor-visual img {
  background: linear-gradient(135deg, #1a3e6f, #0d2b4e);
}

/* Products page sticky nav */
.product-cat-nav {
  position: sticky;
  top: 75px;
  z-index: 50;
  background: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

/* About page facility preview grid */
.facilities-preview .row.g-3 > .col-6:nth-child(odd) {
  padding-top: 0;
}
.facilities-preview .row.g-3 > .col-6:nth-child(even) {
  padding-top: 20px;
}

/* Contact page map */
.map-embed iframe {
  display: block;
}

/* Form select arrow */
.form-select.form-control-custom {
  appearance: auto;
}

/* Remove Bootstrap focus ring override */
.btn:focus, .btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(37,99,168,0.25);
  outline: none;
}

/* Navbar active dropdown */
.main-navbar .dropdown-toggle.active::after {
  display: none;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .topbar, .main-navbar, .whatsapp-float, .scroll-top-btn, .main-footer { display: none; }
  .page-header-section { background: #0d2b4e !important; -webkit-print-color-adjust: exact; }
  body { font-size: 12pt; }
}

/* ============================================================
   WHY CHOOSE US – HERO BANNER
   ============================================================ */
.wcu-hero-banner {
  background: linear-gradient(135deg, #0a2240 0%, #0d3060 60%, #0a2240 100%);
  padding: 40px 0 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wcu-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.wcu-flag-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}
.wcu-flag-img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.25);
}
.wcu-flag-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.wcu-hero-title-wrap {
  position: relative;
}
.wcu-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}

/* ============================================================
   WHY CHOOSE US – ADVANTAGES SECTION
   ============================================================ */
.wcu-advantages-section {
  background: #f7f9fc;
}

.wcu-advantage-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 0;
  transition: background 0.2s;
}
.wcu-advantage-row:hover {
  background: rgba(37,99,168,0.03);
  border-radius: 8px;
}

/* Icon Column */
.wcu-adv-icon-col {
  flex: 0 0 90px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4px;
}
.wcu-adv-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  transition: transform 0.2s;
}
.wcu-advantage-row:hover .wcu-adv-icon {
  transform: scale(1.08) rotate(-3deg);
}

/* Icon color variants */
.wcu-adv-icon.color-blue {
  background: linear-gradient(135deg, #2563a8, #1a4a8f);
  color: #fff;
}
.wcu-adv-icon.color-green {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
}
.wcu-adv-icon.color-red {
  background: linear-gradient(135deg, #c21f28, #9b1220);
  color: #fff;
}

/* Content */
.wcu-adv-content {
  flex: 1;
}
.wcu-adv-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0a2240;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.wcu-adv-desc {
  color: #444;
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.mt-3 {
  margin-top: 1rem !important;
}

/* Bullet points */
.wcu-adv-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.wcu-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #333;
  font-weight: 500;
}
.wcu-point .fa-check-circle {
  color: #2563a8;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Divider */
.wcu-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #dde5f0 30%, #dde5f0 70%, transparent);
}

/* ============================================================
   WHY CHOOSE US – COUNTRY FLAGS GRID
   ============================================================ */
.wcu-flags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}
.wcu-flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}
.wcu-flag-item img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 5px;
  border: 1.5px solid #c8d4e8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wcu-flag-item img:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.wcu-flag-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #0a2240;
  letter-spacing: 0.02em;
}

/* ============================================================
   WHY CHOOSE US – PRODUCT LIST GRID
   ============================================================ */
.wcu-product-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  margin-top: 12px;
}
.wcu-product-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   CTA SECTION – BLUE GRADIENT
   ============================================================ */
.bg-blue-gradient {
  background: linear-gradient(135deg, #0a2240 0%, #1a4a8f 60%, #2563a8 100%) !important;
}
.cta-section h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
}
.text-white-80 {
  color: rgba(255,255,255,0.82) !important;
}
.btn-light-cta {
  background: #fff;
  color: #0a2240;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 12px 28px;
  transition: all 0.2s;
}
.btn-light-cta:hover {
  background: #f0f4ff;
  color: #0a2240;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-outline-light-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE – WHY CHOOSE US
   ============================================================ */
@media (max-width: 768px) {
  .wcu-advantage-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .wcu-adv-icon-col {
    flex: none;
  }
  .wcu-adv-points {
    grid-template-columns: 1fr;
  }
  .wcu-product-list-grid {
    grid-template-columns: 1fr;
  }
  .wcu-flags-grid {
    justify-content: center;
  }
  .wcu-point {
    justify-content: flex-start;
    text-align: left;
  }
  .wcu-advantage-row {
    text-align: left;
  }
}
