/* ============================================================
   LUXEVAC — Bootstrap Redevelopment Stylesheet
   Fonts: Montserrat (headings), Inter (body)
   Colors: --lx-primary: #0B7A33  --lx-accent: #A7E635
   ============================================================ */

/* ---- Bootstrap Core ----
   Loaded via CDN <link> tag in index.html instead of @import,
   since this is now a plain static project (no npm/bundler). */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --lx-primary:       #0B7A33;
  --lx-primary-dark:  #065A24;
  --lx-accent:        #A7E635;
  --lx-accent-hover:  #96CF30;
  --lx-dark:          #111111;
  --lx-dark-2:        #1F2937;
  --lx-bg-light:      #F8FAFC;
  --lx-bg-gray:       #f9fafb;
  --lx-text-muted:    #6b7280;
  --lx-border:        #e5e7eb;
  --font-heading:     'Montserrat', sans-serif;
  --font-body:        'Inter', sans-serif;
  --transition:       all 0.3s ease;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--lx-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

::selection {
  background: var(--lx-accent);
  color: var(--lx-dark);
}

/* Utility overrides */
.bg-light-gray { background: var(--lx-bg-light) !important; }
.bg-gray-50    { background: var(--lx-bg-gray) !important; }
.text-dark-brand { color: var(--lx-dark) !important; }
.text-gray-400 { color: #9ca3af !important; }
.shadow-xl     { box-shadow: 0 20px 60px rgba(0,0,0,0.12) !important; }
.ls-wide       { letter-spacing: 0.08em; }
.fw-black      { font-weight: 900; }
.object-cover  { object-fit: cover; }
.object-contain{ object-fit: contain; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-scale { transform: scale(0.95) translateY(0); }
.animate-scale.animated { transform: scale(1); }
.animate-slide-right { transform: translateX(50px); }
.animate-slide-right.animated { transform: translateX(0); }
.animate-fade-left {
  animation: fadeInLeft 0.8s ease forwards;
}
@keyframes fadeInLeft {
  from { opacity:0; transform: translateX(-50px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes bounceY {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}
@keyframes spinMe {
  to { transform: rotate(360deg); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.lx-btn-primary {
  background: var(--lx-primary);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(11,122,51,0.2);
}
.lx-btn-primary:hover {
  background: var(--lx-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(11,122,51,0.25);
}
.lx-btn-primary:active { transform: scale(0.96); }

.lx-btn-outline {
  border: 2px solid var(--lx-primary);
  color: var(--lx-primary);
  background: transparent;
  border-radius: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.lx-btn-outline:hover {
  background: var(--lx-primary);
  color: #fff;
}

.lx-btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.lx-btn-outline-white:hover { background: rgba(255,255,255,0.1); color:#fff; }

.lx-btn-lg {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.lx-navbar {
  transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.3s ease;
  background: transparent;
}
.lx-navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.10);
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.lx-logo { height: 2.75rem; width: auto; transition: var(--transition); }

.lx-nav-link {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: #fff !important;
  transition: color 0.2s;
  padding: 0.4rem 0;
}
.lx-navbar.scrolled .lx-nav-link { color: var(--lx-dark-2) !important; }
.lx-nav-link:hover { color: var(--lx-accent) !important; }
.lx-navbar.scrolled .lx-nav-link:hover { color: var(--lx-primary) !important; }

.lx-toggler { background: transparent; padding: 0.25rem; }
.lx-icon-toggle { color: #fff; width: 24px; height: 24px; }
.lx-navbar.scrolled .lx-icon-toggle { color: var(--lx-dark); }

/* Mobile menu slide panel */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    padding: 1.5rem;
    z-index: 99;
  }
  .lx-nav-link { color: var(--lx-dark-2) !important; font-size:1rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.lx-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--lx-dark);
  overflow: hidden;
}
.lx-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.72) 55%, transparent 100%);
  z-index: 1;
}
.lx-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.lx-hero-brand-tag {
  position: absolute;
  bottom: 5rem;
  right: 3rem;
  z-index: 20;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.lx-hero-content { max-width: 740px; }
.lx-hero-eyebrow { }
.lx-eyebrow-line {
  display: inline-block;
  width: 3rem;
  height: 2px;
  background: var(--lx-accent);
}
.lx-eyebrow-text {
  color: var(--lx-accent);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.lx-hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.lx-gradient-text {
  background: linear-gradient(to right, var(--lx-primary), var(--lx-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lx-hero-desc {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.lx-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: bounceY 2s ease infinite;
  z-index: 20;
}
.lx-scroll-icon { width: 32px; height: 32px; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.lx-section { padding: 6rem 0; }

.lx-section-heading { margin-bottom: 4rem; }
.lx-eyebrow-tag {
  display: block;
  color: var(--lx-accent);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.lx-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--lx-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.lx-subheading {
  font-size: 1.05rem;
  color: var(--lx-text-muted);
  line-height: 1.75;
  max-width: 640px;
}
.lx-dark-section .lx-heading { color: #fff; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.lx-about-image-wrap { position: relative; padding: 1.5rem; }
.lx-about-blob {
  position: absolute;
  border-radius: 1rem;
  z-index: 0;
}
.lx-about-blob-tl {
  top: 0; left: 0;
  width: 8rem; height: 8rem;
  background: rgba(167,230,53,0.2);
}
.lx-about-blob-br {
  bottom: 0; right: 0;
  width: 12rem; height: 12rem;
  background: rgba(11,122,51,0.1);
}
.lx-about-photo-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  background: #0a0a0a;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}
.lx-about-photo-frame img { object-fit: cover; width:100%; height:100%; }
.lx-about-vignette-tb {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}
.lx-about-vignette-lr {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 50%);
  z-index: 2;
}

/* EXIT sign */
.lx-exit-sign-wrap {
  position: absolute; top: 8%; right: 6%;
  z-index: 20;
}
.lx-exit-glow-outer {
  position: absolute; inset: -1rem;
  background: rgba(0,255,102,0.3);
  border-radius: 0.5rem;
  filter: blur(16px);
  animation: pulseGlow 2s ease-in-out infinite;
}
.lx-exit-glow-inner {
  position: absolute; inset: -0.5rem;
  background: rgba(11,122,51,0.4);
  border-radius: 0.5rem;
  filter: blur(6px);
}
@keyframes pulseGlow {
  0%,100% { opacity:0.6; }
  50%      { opacity:1; }
}
.lx-exit-sign-panel {
  position: relative;
  background: var(--lx-primary);
  border: 2px solid rgba(167,230,53,0.8);
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 0 30px rgba(11,122,51,0.6);
}
.lx-exit-man-icon {
  background: var(--lx-accent);
  border-radius: 0.25rem;
  padding: 0.375rem;
}
.lx-exit-text {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-shadow: 0 0 8px rgba(167,230,53,0.8);
}
.lx-exit-arrow {
  filter: drop-shadow(0 0 8px rgba(167,230,53,0.8));
}

/* Engineer figure */
.lx-engineer-wrap {
  position: absolute; bottom: 0; right: 5%;
  z-index: 20;
  width: 40%;
}
.lx-engineer-shadow {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 75%; height: 1rem;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  filter: blur(6px);
}
.lx-engineer-jacket {
  position: relative;
  background: linear-gradient(to bottom, #1e3a5f, #0f2744);
  border-radius: 2rem 2rem 0 0;
  padding: 1rem 0.5rem 0.5rem;
  border-top: 3px solid rgba(11,122,51,0.3);
  border-left: 3px solid rgba(11,122,51,0.3);
  border-right: 3px solid rgba(11,122,51,0.3);
  display: flex;
  flex-direction: column;
  min-height: 120px;
}
.lx-jacket-stripe {
  position: absolute; left: 0; right: 0;
  height: 8px;
  background: var(--lx-accent);
  box-shadow: 0 0 10px rgba(167,230,53,0.5);
}
.lx-jacket-stripe-1 { top: 2rem; }
.lx-jacket-stripe-2 { top: 3.5rem; }
.lx-jacket-collar {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 3rem; height: 1.5rem;
  background: #f5f5dc;
  border-radius: 0 0 0.5rem 0.5rem;
}
.lx-jacket-brand {
  display: none;
}

/* Hard hat */
.lx-hardhat-wrap {
  position: absolute; top: -4.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 30;
}
.lx-hardhat-dome {
  position: relative;
  width: 7rem; height: 4rem;
  background: linear-gradient(to bottom, #fff, #fff, #e5e7eb);
  border-radius: 100% 100% 0 0;
  border: 3px solid #d1d5db;
  overflow: hidden;
  transform: perspective(600px) rotateX(12deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.lx-hardhat-highlight {
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), transparent);
}
.lx-hardhat-ridge {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 6px;
  background: linear-gradient(to bottom, #d1d5db, #9ca3af);
}
.lx-hardhat-brand-badge {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.lx-hardhat-brand-badge::before {
  content: 'LUXEVAC';
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--lx-primary);
  padding: 0.45rem 0.7rem;
  border-radius: 0.25rem;
  border: 1px solid var(--lx-accent);
  white-space: nowrap;
}
.lx-hardhat-brim {
  position: absolute; bottom: -0.5rem;
  left: -0.75rem; right: -0.75rem;
  height: 0.75rem;
  background: linear-gradient(to bottom, #fff, #e5e7eb);
  border-radius: 50%;
  border: 3px solid #d1d5db;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: perspective(600px) rotateX(12deg);
}

/* Tablet Device */
.lx-tablet-device {
  position: absolute; bottom: 15%; left: 10%;
  z-index: 20;
  background: #111;
  border: 2px solid #333;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transform: rotate(-6deg);
}
.lx-tablet-ok {
  color: var(--lx-accent);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lx-tablet-bar-track {
  width: 5rem; height: 4px;
  background: rgba(11,122,51,0.3);
  border-radius: 9999px;
  margin-top: 0.25rem;
  overflow: hidden;
}
.lx-tablet-bar-fill {
  width: 75%; height: 100%;
  background: var(--lx-accent);
  border-radius: 9999px;
}

/* Watermarks */
.lx-about-watermark {
  position: absolute; top: 1rem; left: 1rem; z-index: 30;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.lx-about-audit-badge {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 30;
  background: rgba(11,122,51,0.9);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px 0 0 9999px;
}

/* About feature cards */
.lx-feature-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: var(--transition);
}
.lx-feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.lx-feature-icon-wrap {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  background: #f0fdf4;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
}
.lx-feature-icon { width: 1.5rem; height: 1.5rem; color: var(--lx-primary); }
.lx-feature-title { font-size: 1.05rem; font-weight: 700; color: var(--lx-dark); margin-bottom: 0.25rem; }
.lx-feature-desc  { font-size: 0.85rem; color: var(--lx-text-muted); margin: 0; line-height: 1.6; }

.lx-learn-more-btn { color: var(--lx-primary); }
.lx-learn-more-btn i { transition: transform 0.2s; }
.lx-learn-more-btn:hover i { transform: translateX(4px); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.lx-product-card {
  background: var(--lx-bg-light);
  border-radius: 1rem;
  border: 1px solid var(--lx-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.5s ease;
  overflow: hidden;
}
.lx-product-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.lx-product-img-wrap {
  position: relative;
  height: 16rem;
  overflow: hidden;
  cursor: pointer;
  background: #f3f4f6;
  transition: transform 0.7s ease;
}
.lx-product-img-wrap:hover { transform: scale(1.04); }
.lx-product-img-dark { background: #1a1a2e; }
.lx-product-img {
  width: 100%; height: 100%;
  display: block;
}
.lx-product-tags {
  position: absolute; top: 1rem; left: 1rem;
  display: flex; flex-wrap: wrap; gap: 0.375rem;
  max-width: 85%;
}
.lx-product-tag {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.55rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lx-primary);
}
.lx-product-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--lx-dark);
  margin-bottom: 1rem;
  cursor: pointer;
  min-height: 5rem;
  line-height: 1.3;
  transition: color 0.2s;
}
.lx-product-card:hover .lx-product-title { color: var(--lx-primary); }
.lx-product-specs { margin-bottom: 1.5rem; }
.lx-spec-icon { width: 1rem; height: 1rem; color: var(--lx-accent); margin-top: 2px; }
.lx-spec-text { font-size: 0.75rem; color: #6b7280; }
.lx-cert-badge {
  font-size: 0.55rem;
  font-weight: 700;
  color: #9ca3af;
  border: 1px solid var(--lx-border);
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
}
.lx-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.lx-btn-view {
  background: transparent;
  border: 1px solid var(--lx-border);
  color: #4b5563;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.6rem 0;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}
.lx-btn-view:hover { background: #f9fafb; color: #111; }
.lx-btn-enquire {
  background: var(--lx-primary);
  color: #fff;
  border: none;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.6rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.lx-btn-enquire:hover { background: var(--lx-primary-dark); }

/* ============================================================
   FEATURES (DARK)
   ============================================================ */
.lx-dark-section {
  background: var(--lx-dark);
  color: #fff;
}
.lx-adv-icon-wrap {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--lx-primary), var(--lx-accent));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(167,230,53,0.15);
}
.lx-adv-icon { width: 2rem; height: 2rem; color: var(--lx-dark); }
.lx-adv-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.lx-adv-desc  { font-size: 0.85rem; color: #9ca3af; line-height: 1.65; margin: 0; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.lx-sector-card {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--lx-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lx-sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.lx-sector-icon-wrap {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: #f9fafb;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lx-sector-card:hover .lx-sector-icon-wrap { background: var(--lx-primary); }
.lx-sector-icon { width: 2rem; height: 2rem; color: var(--lx-primary); transition: color 0.3s; }
.lx-sector-card:hover .lx-sector-icon { color: #fff; }
.lx-sector-name {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lx-dark);
}

/* ============================================================
   EVACUATION PLAN
   ============================================================ */
.lx-evac-list { margin-top: 2rem; }
.lx-evac-list li { padding: 0.5rem 0; }
.lx-evac-list li + li { margin-top: 1rem; }
.lx-evac-check {
  width: 1.25rem; height: 1.25rem;
  color: var(--lx-accent);
  margin-top: 2px;
}
.lx-evac-desc { font-size: 0.875rem; color: #6b7280; }

.lx-evac-image-wrap { position: relative; }
.lx-evac-image-bg {
  position: absolute; inset: 0;
  background: #14532d;
  border-radius: 2rem;
  transform: rotate(3deg) scale(1.05);
  opacity: 0.1;
  z-index: 0;
}
.lx-branded-image {
  position: relative; z-index: 1;
  border: 8px solid #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}
.lx-branded-image img { display: block; width: 100%; }
.lx-branded-watermark {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 0.25rem;
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.lx-std-card {
  background: #fff;
  border: 1px solid var(--lx-border);
  border-radius: 1rem;
  padding: 1.25rem 0.75rem;
  min-height: 8rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  transition: var(--transition);
}
.lx-std-card:hover {
  border-color: rgba(11,122,51,0.3);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.lx-std-code { font-weight: 900; font-size: 0.875rem; color: var(--lx-primary); display: block; margin-bottom: 0.5rem; }
.lx-std-desc  { font-size: 0.65rem; color: #6b7280; font-weight: 700; line-height: 1.5; }

.lx-divider { height: 1px; background: rgba(0,0,0,0.08); }

.lx-approval-card {
  background: #fff;
  border: 1px solid var(--lx-border);
  border-radius: 1rem;
  padding: 1.5rem;
  min-height: 6.5rem;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  transition: var(--transition);
}
.lx-approval-card:hover {
  border-color: rgba(11,122,51,0.3);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.lx-approval-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lx-dark);
  margin-bottom: 0.5rem;
}
.lx-approval-desc { font-size: 0.65rem; color: #9ca3af; font-weight: 700; line-height: 1.5; }

/* ============================================================
   FAQ
   ============================================================ */
.lx-faq-list { display: flex; flex-direction: column; gap: 1rem; }
.lx-faq-item { border: 1px solid var(--lx-border); border-radius: 0.75rem; overflow: hidden; }
.lx-faq-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem;
  background: transparent; border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background 0.2s;
}
.lx-faq-btn:hover { background: #f9fafb; }
.lx-faq-btn span { font-weight: 700; color: var(--lx-dark); font-size: 0.95rem; }
.lx-faq-icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.lx-faq-minus { color: var(--lx-primary); }
.lx-faq-plus  { color: #9ca3af; }
.lx-faq-answer {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--lx-border);
}
.lx-faq-answer p {
  margin: 1rem 0 0;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.lx-contact-icon-wrap {
  width: 3.5rem; height: 3.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--lx-primary);
}
.lx-contact-icon { width: 1.5rem; height: 1.5rem; }
.lx-contact-label { font-weight: 700; color: var(--lx-dark); margin-bottom: 0.25rem; }
.lx-contact-text  { font-size: 0.875rem; color: #6b7280; margin: 0; line-height: 1.6; }
.lx-contact-link  { font-size: 0.875rem; color: #6b7280; text-decoration: none; transition: color 0.2s; }
.lx-contact-link:hover { color: var(--lx-primary); }

.lx-map-wrap {
  height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  filter: grayscale(100%);
  transition: filter 0.4s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.lx-map-wrap:hover { filter: grayscale(0); }

/* Form */
.lx-form-card {
  background: #fff;
  border: 1px solid var(--lx-border);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.lx-form-title { font-size: 1.5rem; font-weight: 900; color: var(--lx-dark); margin-bottom: 2rem; }
.lx-form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}
.lx-form-input {
  width: 100%;
  background: #f9fafb;
  border: none;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--lx-dark);
  outline: none;
  transition: box-shadow 0.2s;
}
.lx-form-input:focus { box-shadow: 0 0 0 3px rgba(11,122,51,0.15); }
.lx-form-textarea { resize: vertical; min-height: 7rem; }

.lx-form-success {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: var(--lx-primary);
}
.lx-form-error {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #dc2626;
}
.lx-spinner { animation: spinMe 1s linear infinite; }

/* ============================================================
   FOOTER
   ============================================================ */
.lx-footer { background: var(--lx-dark); color: #fff; padding: 6rem 0 3rem; }
.lx-footer-logo { height: 3rem; width: auto; }
.lx-footer-brand-text { color: #9ca3af; font-size: 0.875rem; line-height: 1.7; margin-top: 1rem; }
.lx-social-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.6rem; font-weight: 900;
  text-decoration: none;
  transition: background 0.2s;
}
.lx-social-btn:hover { background: var(--lx-primary); color: #fff; }
.lx-footer-heading {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 2rem;
}
.lx-footer-links { display: flex; flex-direction: column; gap: 1rem; }
.lx-footer-links a { color: #9ca3af; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.lx-footer-links a:hover { color: var(--lx-accent); }
.lx-footer-contacts { display: flex; flex-direction: column; gap: 1rem; }
.lx-footer-contacts li { color: #9ca3af; font-size: 0.875rem; }
.lx-footer-contact-icon { width: 1rem; height: 1rem; color: var(--lx-primary); margin-top: 2px; }
.lx-footer-contacts a { color: #9ca3af; text-decoration: none; transition: color 0.2s; }
.lx-footer-contacts a:hover { color: #fff; }
.lx-footer-newsletter-text { color: #9ca3af; font-size: 0.875rem; margin-bottom: 1rem; }
.lx-footer-email-input {
  background: rgba(255,255,255,0.05);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
  transition: box-shadow 0.2s;
}
.lx-footer-email-input::placeholder { color: #6b7280; }
.lx-footer-email-input:focus { box-shadow: 0 0 0 2px var(--lx-primary); }
.lx-footer-subscribe-btn {
  background: var(--lx-primary);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.lx-footer-subscribe-btn:hover { background: var(--lx-primary-dark); }

.lx-footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6b7280;
}
.lx-footer-bottom a { color: #6b7280; text-decoration: none; transition: color 0.2s; }
.lx-footer-bottom a:hover { color: #fff; }

.lx-whatsapp-fab {
  position: fixed;
  bottom: 2.5rem; right: 2.5rem;
  z-index: 60;
  background: #25D366;
  color: #fff;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.3s;
}
.lx-whatsapp-fab:hover { transform: scale(1.12); color: #fff; }

/* ============================================================
   PRODUCT MODAL
   ============================================================ */
.lx-modal-overlay {
  position: fixed; inset: 0; z-index: 1050;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lx-modal-overlay.active { opacity: 1; pointer-events: all; }

.lx-modal-box {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  width: 100%;
  max-width: 72rem;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
}
.lx-modal-overlay.active .lx-modal-box { transform: translateY(0) scale(1); }

@media (min-width: 992px) {
  .lx-modal-box { flex-direction: row; }
}

.lx-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 30;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; border-radius: 50%;
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lx-modal-close:hover { background: #000; color: #f87171; }

/* Modal Left */
.lx-modal-media {
  background: #0d0d0d;
  position: relative;
  display: flex; flex-direction: column;
  min-height: 22rem;
  border-bottom: 1px solid #1f1f1f;
}
@media (min-width: 992px) {
  .lx-modal-media { width: 50%; border-bottom: none; border-right: 1px solid #1f1f1f; }
}
.lx-modal-catalog-header {
  padding: 1rem 1.5rem;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between;
}
.lx-modal-catalog-label { font-size: 0.65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; color: var(--lx-accent); }
.lx-modal-page-count { font-size: 0.75rem; font-weight: 700; color: #9ca3af; }

.lx-zoom-controls {
  position: absolute; top: 4rem; left: 1rem; z-index: 20;
  display: flex;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}
.lx-zoom-btn {
  background: transparent; border: none; color: #fff;
  width: 2rem; height: 2rem; font-size: 0.7rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
}
.lx-zoom-btn:hover { background: rgba(255,255,255,0.1); }
.lx-zoom-pct {
  background: transparent; border: none; border-left: 1px solid rgba(255,255,255,0.1); border-right: 1px solid rgba(255,255,255,0.1);
  color: var(--lx-accent); padding: 0 0.5rem; font-size: 0.7rem; font-weight: 700;
  cursor: pointer;
}

.lx-modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  width: 2.5rem; height: 2.5rem;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.lx-modal-nav:hover { background: #000; }
.lx-modal-prev { left: 1rem; }
.lx-modal-next { right: 1rem; }

.lx-modal-img-viewport {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  overflow: auto;
}
.lx-modal-img-scaler { transition: transform 0.15s ease-out; transform-origin: center; }
.lx-modal-main-img {
  max-width: 100%;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  display: block;
}
@media (min-width: 992px) { .lx-modal-main-img { max-height: 65vh; } }

.lx-modal-thumbs {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1rem;
  display: flex; justify-content: center; gap: 0.5rem; overflow-x: auto;
}
.lx-modal-thumb {
  width: 3rem; height: 4rem;
  border-radius: 0.25rem;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden; flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  opacity: 0.4;
}
.lx-modal-thumb:hover { opacity: 0.8; }
.lx-modal-thumb.active { border-color: var(--lx-accent); transform: scale(1.05); opacity: 1; }
.lx-modal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Modal Right */
.lx-modal-details {
  display: flex; flex-direction: column;
  overflow: hidden;
}
@media (min-width: 992px) { .lx-modal-details { width: 50%; max-height: 90vh; } }
.lx-modal-details-scroll { flex: 1; overflow-y: auto; padding: 2rem 2.5rem; }
.lx-modal-title { font-size: 1.75rem; font-weight: 900; color: var(--lx-dark); margin-bottom: 1rem; line-height: 1.2; }
.lx-modal-desc  { font-size: 0.875rem; color: #4b5563; line-height: 1.75; margin-bottom: 1.5rem; }
.lx-modal-tag  {
  background: #f0fdf4; border: 1px solid #bbf7d0;
  color: var(--lx-primary);
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  font-size: 0.6rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em;
}
.lx-modal-section-heading {
  font-size: 0.65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--lx-primary); padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--lx-border); margin-bottom: 1rem;
}
.lx-modal-table-wrap { border: 1px solid var(--lx-border); border-radius: 0.75rem; overflow: hidden; }
.lx-modal-table { border-collapse: collapse; font-size: 0.75rem; }
.lx-modal-table tr { border-bottom: 1px solid var(--lx-border); }
.lx-modal-table tr:last-child { border-bottom: none; }
.lx-modal-table tr:nth-child(odd)  { background: #fff; }
.lx-modal-table tr:nth-child(even) { background: rgba(249,250,251,0.5); }
.lx-modal-table td { padding: 0.75rem 1rem; }
.lx-modal-table td:first-child { font-weight: 700; color: #9ca3af; width: 40%; border-right: 1px solid var(--lx-border); }
.lx-modal-table td:last-child { font-weight: 500; color: #1f2937; }

.lx-modal-benefits li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.lx-modal-benefit-icon { width: 1rem; height: 1rem; color: var(--lx-accent); flex-shrink: 0; margin-top: 1px; }
.lx-modal-benefit-text { font-size: 0.75rem; color: #4b5563; line-height: 1.6; }

.lx-modal-cat-tag {
  background: #f3f4f6; color: #4b5563;
  padding: 0.25rem 0.6rem; border-radius: 0.25rem;
  font-size: 0.6rem; font-weight: 700;
}
.lx-modal-std-tag {
  border: 1px solid rgba(167,230,53,0.3);
  color: var(--lx-primary);
  background: rgba(167,230,53,0.05);
  padding: 0.25rem 0.6rem; border-radius: 0.25rem;
  font-size: 0.6rem; font-weight: 700;
}

.lx-modal-footer {
  background: #f9fafb;
  border-top: 1px solid var(--lx-border);
  padding: 1.5rem;
}
.lx-modal-enquire-btn {
  background: var(--lx-primary);
  color: #fff;
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 8px 24px rgba(11,122,51,0.15);
}
.lx-modal-enquire-btn:hover { background: var(--lx-primary-dark); }
.lx-modal-enquire-btn:active { transform: scale(0.97); }
