/* ===== TECHPRO MOULDS — SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --white: #ffffff;
  --navy: #0f2a52;
  --navy-dark: #091d3a;
  --navy-mid: #163870;
  --blue: #0082c0;
  --blue-light: #1fa8e8;
  --blue-pale: #daeef8;
  --blue-dark: #006499;
  --gray-50: #f4f7fb;
  --gray-100: #e8eef6;
  --gray-200: #d0daea;
  --gray-400: #7a90aa;
  --gray-600: #4a5e78;
  --gray-800: #1e2f44;
  --text: #0f1f33;
  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --shadow-sm: 0 2px 8px rgba(9,29,58,0.10);
  --shadow-md: 0 6px 24px rgba(9,29,58,0.16);
  --shadow-lg: 0 16px 48px rgba(9,29,58,0.22);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; user-select: none; -webkit-user-select: none; -webkit-user-drag: none; pointer-events: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); border-bottom: 2px solid var(--gray-200);
  box-shadow: var(--shadow-sm); transition: box-shadow var(--transition);
}
header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 130px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-icon { height: 180px; width: 180px; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600; font-size: 0.92rem; color: var(--gray-800);
  padding: 6px 14px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--navy); background: var(--blue-pale); }
.nav-links a.active { color: var(--blue); background: var(--blue-pale); }

/* ===== PRODUCTS DROPDOWN ===== */
.nav-dropdown {
  position: relative; display: flex; align-items: center;
}
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 5px;
  font-weight: 600; font-size: 0.92rem; color: var(--gray-800);
  padding: 6px 14px; border-radius: 6px; cursor: pointer;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap; user-select: none;
  background: none; border: none; font-family: inherit;
}
.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger { color: var(--navy); background: var(--blue-pale); }
.nav-dropdown-trigger.active { color: var(--blue); background: var(--blue-pale); }
.nav-dropdown-trigger svg {
  width: 14px; height: 14px; transition: transform 0.22s ease; flex-shrink: 0;
}
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

/* The panel — padding-top creates invisible bridge so mouse can travel from trigger to panel */
.nav-dropdown-panel {
  display: none;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 12px; /* bridge gap — mouse stays inside .nav-dropdown while crossing */
  z-index: 1100;
}
.nav-dropdown:hover .nav-dropdown-panel { display: block; }
/* Inner box */
.nav-dropdown-panel-inner {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 220px;
  animation: dropdownFade 0.18s ease;
}
@keyframes dropdownFade { from{opacity:0;transform:translateY(-4px);} to{opacity:1;transform:translateY(0);} }
/* Small arrow notch pointing up */
.nav-dropdown-panel-inner::before {
  content: ''; position: absolute; top: 7px; left: 50%;
  width: 12px; height: 12px; background: var(--white);
  border-left: 1.5px solid var(--gray-200); border-top: 1.5px solid var(--gray-200);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  color: var(--gray-800); transition: all var(--transition); white-space: nowrap;
  text-decoration: none;
}
.nav-dropdown-panel a:hover { background: var(--blue-pale); color: var(--navy); }
.nav-dropdown-panel a.all-products {
  color: var(--blue); border-bottom: 1px solid var(--gray-100); margin-bottom: 4px;
  padding-bottom: 12px; font-weight: 700;
}
.nav-dropdown-panel a.all-products:hover { background: var(--blue-pale); }
.nav-dropdown-panel .dd-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue-light);
  flex-shrink: 0; opacity: 0.7;
}

/* ===== MOBILE PRODUCTS ACCORDION ===== */
.mobile-products-item { display: flex; flex-direction: column; }
.mobile-products-trigger {
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 1rem; color: var(--gray-800);
  padding: 14px 16px; border-radius: 10px; cursor: pointer;
  transition: all var(--transition); background: none; border: none;
  font-family: inherit; width: 100%; text-align: left;
}
.mobile-products-trigger:hover { background: var(--blue-pale); color: var(--navy); }
.mobile-products-trigger.active { color: var(--blue); background: var(--blue-pale); }
.mobile-products-trigger svg {
  width: 16px; height: 16px; transition: transform 0.25s ease; flex-shrink: 0;
  color: var(--gray-400);
}
.mobile-products-trigger.open svg { transform: rotate(180deg); }
.mobile-products-submenu {
  display: none; flex-direction: column; gap: 1px;
  padding: 4px 0 4px 16px;
}
.mobile-products-submenu.open { display: flex; }
.mobile-products-submenu a {
  font-size: 0.88rem; font-weight: 500; color: var(--gray-600);
  padding: 10px 14px; border-radius: 8px; transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.mobile-products-submenu a:hover { background: var(--blue-pale); color: var(--navy); }
.mobile-products-submenu a::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue-light); flex-shrink: 0;
}
.mobile-products-submenu .sub-all {
  font-weight: 700; color: var(--blue); font-size: 0.88rem;
  border-bottom: 1px solid var(--gray-100); margin-bottom: 2px; padding-bottom: 12px;
}
.header-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-brochure {
  display: flex; align-items: center; gap: 7px; font-weight: 600; font-size: 0.85rem;
  color: var(--navy); border: 2px solid var(--navy); padding: 7px 16px; border-radius: 7px;
  transition: all var(--transition); white-space: nowrap;
}
.btn-brochure:hover { background: var(--navy); color: var(--white); }
.btn-brochure svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary {
  font-weight: 700; font-size: 0.88rem; color: var(--white); background: var(--blue);
  padding: 8px 20px; border-radius: 7px;
  transition: background var(--transition), transform var(--transition); white-space: nowrap;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 6px; transition: background var(--transition); }
.hamburger:hover { background: var(--blue-pale); }
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; top: 130px; left: 0; right: 0;
  background: var(--white); border-bottom: 2px solid var(--gray-200);
  padding: 8px 16px 20px; z-index: 999; box-shadow: var(--shadow-md);
  flex-direction: column; gap: 2px;
  max-height: calc(100vh - 130px); overflow-y: auto;
  animation: mobileNavSlide 0.22s ease;
}
@keyframes mobileNavSlide { from{opacity:0;transform:translateY(-8px);} to{opacity:1;transform:translateY(0);} }
.mobile-nav.open { display: flex; }
/* Bigger tap targets — minimum 48px height per WCAG */
.mobile-nav a {
  font-weight: 600; font-size: 1rem; color: var(--gray-800);
  padding: 14px 16px; border-radius: 10px; transition: all var(--transition);
  display: flex; align-items: center; min-height: 48px;
}
.mobile-nav a:hover { background: var(--blue-pale); color: var(--navy); }
.mobile-nav a.active { color: var(--blue); background: var(--blue-pale); }
/* CTA row — full-width buttons stacked */
.mobile-nav .mobile-ctas {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--gray-200);
}
.mobile-nav .btn-brochure {
  flex: none; width: 100%; justify-content: center; text-align: center;
  font-size: 0.88rem; padding: 12px 16px;
}
.mobile-nav .btn-primary {
  flex: none; width: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; padding: 13px 16px; border-radius: 9px;
  background: var(--blue); color: var(--white);
}
.page-wrapper { padding-top: 130px; }

/* ===== WHATSAPP ===== */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center; color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.55);
  transition: transform var(--transition), box-shadow var(--transition), bottom 0.4s cubic-bezier(0.4,0,0.2,1);
}
/* Raise above sticky bar when it's visible */
.sticky-bar.visible ~ a.wa-btn,
body.sticky-visible .wa-btn { bottom: 76px; }
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.70); }
.wa-btn svg { width: 28px; height: 28px; }
.wa-tooltip {
  position: absolute; right: 64px; bottom: 50%; transform: translateY(50%);
  background: var(--navy); color: var(--white); font-size: 0.75rem; font-weight: 600;
  padding: 6px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.wa-btn:hover .wa-tooltip { opacity: 1; }

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; }
.section-sm { padding: 48px 24px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.section-label::before { content: ""; display: block; width: 24px; height: 2px; background: var(--blue); flex-shrink: 0; }
.section-title { font-family: var(--font-head); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--navy); line-height: 1.1; }
.section-title em { font-style: normal; color: var(--blue); }
.section-desc { font-size: 1rem; color: var(--gray-600); max-width: 560px; line-height: 1.75; margin-top: 12px; }

/* ===== TRUST BAR — perpetual marquee with blur edges ===== */
.trust-bar { background: var(--navy); padding: 0; overflow: hidden; height: 54px; display: flex; align-items: center; }
.trust-marquee-wrap {
  position: relative; width: 100%; overflow: hidden;
  display: flex; align-items: center; height: 100%;
}
/* Progressive gaussian blur fades on both sides */
.trust-marquee-fade {
  position: absolute; top: 0; bottom: 0; width: 160px; z-index: 2; pointer-events: none;
}
.trust-marquee-fade-l {
  left: 0;
  background: linear-gradient(to right,
    var(--navy) 0%,
    rgba(15,42,82,0.85) 30%,
    rgba(15,42,82,0.40) 65%,
    transparent 100%
  );
}
.trust-marquee-fade-r {
  right: 0;
  background: linear-gradient(to left,
    var(--navy) 0%,
    rgba(15,42,82,0.85) 30%,
    rgba(15,42,82,0.40) 65%,
    transparent 100%
  );
}
/* 4 copies in HTML — translate -25% = exactly one full set, seamless */
.trust-marquee-track {
  display: flex; align-items: center;
  animation: trustMarquee 24s linear infinite;
  white-space: nowrap; will-change: transform;
}
.trust-marquee-track:hover { animation-play-state: paused; }
@keyframes trustMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
.trust-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 48px; flex-shrink: 0; }
.trust-item svg { color: var(--blue-light); flex-shrink: 0; }
.trust-item span { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.90); letter-spacing: 0.02em; }
.trust-div { width: 1px; height: 20px; background: rgba(255,255,255,0.18); flex-shrink: 0; }

/* ===== HERO (ORIGINAL LEFT/RIGHT LAYOUT) ===== */
.hero {
  min-height: calc(100vh - 130px);
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-mid) 70%, #1a5299 100%);
  position: relative; overflow: hidden; display: flex; align-items: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(0,130,192,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 85%, rgba(0,100,153,0.25) 0%, transparent 55%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.18; animation: orbFloat 8s ease-in-out infinite; pointer-events: none; }
.hero-orb-1 { width: 420px; height: 420px; background: var(--blue-light); right: -80px; top: -100px; animation-duration: 10s; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--blue); left: 10%; bottom: -60px; animation-duration: 13s; animation-delay: -4s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(255,255,255,0.6); right: 30%; top: 20%; animation-duration: 7s; animation-delay: -2s; opacity: 0.06; }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1);} 33%{transform:translateY(-24px) scale(1.04);} 66%{transform:translateY(12px) scale(0.97);} }
.hero-streak {
  position: absolute; top: 0; right: 0; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,153,214,0.20), transparent);
  transform: rotate(-20deg) scaleX(60); transform-origin: top right; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto;
  padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; width: 100%;
}
.hero-left { display: flex; flex-direction: column; gap: 24px; }
.hero-title { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; color: var(--white); line-height: 1.05; }
.hero-title em { font-style: normal; color: var(--blue-light); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.80); max-width: 440px; line-height: 1.7; }
.hero-stats { display: flex; gap: 28px; padding-top: 8px; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat .num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.60); font-weight: 500; letter-spacing: 0.04em; }
.hero-stat-div { width: 1px; background: rgba(255,255,255,0.18); align-self: stretch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta-main {
  font-weight: 700; font-size: 0.95rem; color: var(--navy); background: var(--white);
  padding: 13px 28px; border-radius: 8px; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.hero-cta-main:hover { background: var(--blue-light); color: var(--white); transform: translateY(-2px); }
.hero-cta-sec {
  font-weight: 600; font-size: 0.95rem; color: var(--white);
  border: 2px solid rgba(255,255,255,0.40); padding: 13px 28px; border-radius: 8px;
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.hero-cta-sec:hover { border-color: var(--white); background: rgba(255,255,255,0.10); }

/* ===== HERO RIGHT — PHOTO SLIDER (reference image style) ===== */
.hero-right { position: relative; }
.hero-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  aspect-ratio: 4/3;
  background: var(--navy-dark);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.7s ease;
  display: flex;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
/* blue-tinted placeholder when no image */
.hero-slide-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, #1a5299 50%, var(--blue-dark) 100%);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.18);
}
/* gradient overlay from bottom */
.hero-slide-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(9,29,58,0.92) 0%, rgba(9,29,58,0.35) 40%, transparent 70%);
}
/* dot indicators */
.hero-slider-dots {
  position: absolute; bottom: 18px; right: 22px; z-index: 4;
  display: flex; gap: 6px; align-items: center;
}
.hero-slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: all var(--transition); border: none; padding: 0;
}
.hero-slider-dot.active { background: var(--blue-light); width: 20px; border-radius: 4px; }
/* red accent bar on right edge (matching reference) */
.hero-slider::after {
  content: ""; position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 4px; background: var(--blue); border-radius: 2px 0 0 2px; z-index: 5;
}
/* progress bar at very bottom */
.hero-slider-progress {
  position: absolute; bottom: 0; left: 0; height: 3px; z-index: 6;
  background: var(--blue-light); animation: heroProgress 4s linear infinite;
}
@keyframes heroProgress { from{width:0%;} to{width:100%;} }

/* ===== HOME PRODUCTS SLIDER ===== */
.products-section { background: var(--gray-50); }
.slider-wrap { position: relative; margin-top: 40px; overflow: hidden; }
.slider-track { display: flex; gap: 20px; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.prod-card {
  flex: 0 0 calc((100% - 80px) / 5); min-width: 200px;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 14px; overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.prod-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--blue); }
.prod-card-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-pale) 0%, #c8e2f5 100%);
  position: relative; overflow: hidden;
}
.prod-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.prod-card-body { padding: 16px; }
.prod-card-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.prod-card-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); }
.prod-card-desc { font-size: 0.78rem; color: var(--gray-600); margin-top: 4px; line-height: 1.55; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; }
.slider-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.slider-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.slider-dots { display: flex; gap: 6px; align-items: center; }
.slider-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gray-200); cursor: pointer; transition: all var(--transition); }
.slider-dot.active { background: var(--blue); width: 22px; border-radius: 4px; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.why-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 14px; padding: 28px 24px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateY(-3px); }
.why-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; color: var(--blue-dark); margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; }

/* ===== SPECIALIZATIONS ===== */
.spec-section { background: var(--navy-dark); }
.spec-section .section-label { color: var(--blue-light); }
.spec-section .section-label::before { background: var(--blue-light); }
.spec-section .section-title { color: var(--white); }
.spec-section .section-desc { color: rgba(255,255,255,0.70); }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.spec-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 24px 20px; transition: background var(--transition), border-color var(--transition); }
.spec-card:hover { background: rgba(0,130,192,0.18); border-color: rgba(0,153,214,0.5); }
.spec-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(0,130,192,0.22); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--blue-light); }
.spec-card h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.spec-card p { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ===== PAGE HEROES ===== */
.page-hero {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-mid) 70%, #1a5299 100%);
  padding: 72px 24px 56px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(0,130,192,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(0,100,153,0.20) 0%, transparent 55%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .section-label { justify-content: center; color: var(--blue-light); }
.page-hero .section-label::before { background: var(--blue-light); }
.page-hero .section-title { color: var(--white); }
.page-hero .section-desc { color: rgba(255,255,255,0.75); margin: 12px auto 0; text-align: center; }
.page-hero-orb { position: absolute; border-radius: 50%; filter: blur(50px); pointer-events: none; opacity: 0.15; animation: orbFloat 9s ease-in-out infinite; }
.page-hero-orb-1 { width: 280px; height: 280px; background: var(--blue-light); right: -60px; top: -40px; }
.page-hero-orb-2 { width: 200px; height: 200px; background: var(--blue); left: 5%; bottom: -30px; animation-delay: -3s; }

/* ===== ABOUT ===== */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 72px 0 0; }
.about-img-wrap {
  background: linear-gradient(135deg, var(--blue-pale), #c0dcee);
  border-radius: 20px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-md); position: relative;
}
.about-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.about-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.about-img-placeholder span { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text p { font-size: 0.97rem; color: var(--gray-600); line-height: 1.78; }
.about-text p strong { color: var(--navy); }
.milestones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; padding: 40px; background: var(--navy); border-radius: 20px; box-shadow: var(--shadow-md); }
.milestone { text-align: center; }
.milestone .num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--blue-light); line-height: 1; }
.milestone .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 4px; font-weight: 500; }

/* ===== TEAM — 2 members, square, bigger ===== */
.team-section { padding: 72px 0 0; text-align: center; }
.team-section .section-label { justify-content: center; }
.team-section .section-desc { margin: 12px auto 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 36px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.team-card {
  text-align: center; background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: 16px; padding: 32px 24px;
  transition: box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center;
}
.team-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }
.team-avatar {
  width: 140px; height: 186px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-pale), #b8d8f0);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--navy); border: 3px solid var(--blue-pale); overflow: hidden; flex-shrink: 0;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.team-card .role { font-size: 0.8rem; color: var(--blue); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.team-card p { font-size: 0.83rem; color: var(--gray-600); margin-top: 10px; line-height: 1.6; }

/* ===== VALUES ===== */
.values-section { margin-top: 64px; padding: 48px; background: var(--gray-50); border-radius: 20px; border: 1.5px solid var(--gray-200); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 14px; padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), border-color var(--transition); }
.value-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }
.value-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--blue-dark); }
.value-card h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; }

/* ===== PRODUCTS PAGE ===== */
.cat-tabs-wrap { background: var(--white); border-bottom: 2px solid var(--gray-200); position: sticky; top: 130px; z-index: 100; box-shadow: 0 2px 8px rgba(9,29,58,0.06); }
.cat-tabs-mobile-hint { display: none; font-size: 0.72rem; font-weight: 600; color: var(--gray-400); letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 20px 0; align-items: center; justify-content: center; gap: 6px; transition: opacity 0.4s; text-align: center; }
.cat-tabs-scroll { overflow-x: auto; scrollbar-width: none; padding: 0 24px; }
.cat-tabs-scroll::-webkit-scrollbar { display: none; }
.cat-tabs { max-width: 1280px; margin: 0 auto; display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.cat-tab { font-weight: 600; font-size: 0.85rem; color: var(--gray-600); padding: 16px 18px; white-space: nowrap; border-bottom: 3px solid transparent; transition: all var(--transition); position: relative; top: 2px; flex-shrink: 0; }
.cat-tab:hover { color: var(--navy); }
.cat-tab.active { color: var(--navy); border-bottom-color: var(--blue); background: var(--gray-50); }
.products-grid-section { padding: 48px 24px 80px; }

/* Category separator — line + pill + line like reference */
.products-grid-all { display: flex; flex-direction: column; gap: 0; }
.cat-separator {
  display: flex; align-items: center; gap: 16px;
  padding: 40px 0 28px;
}
.cat-separator:first-child { padding-top: 0; }
.cat-separator-line { flex: 1; height: 1px; background: var(--gray-200); }
.cat-separator-pill {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue);
  border: 1.5px solid var(--blue); border-radius: 100px;
  padding: 6px 18px; white-space: nowrap; background: var(--white);
}

/* ===== LIGHTBOX NAV ARROWS ===== */
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); cursor: pointer;
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.lb-nav:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.lb-prev { left: -18px; }
.lb-next { right: -18px; }

/* ===== LIGHTBOX FULLSCREEN BUTTON ===== */
.lb-fullscreen-btn {
  position: absolute; bottom: 10px; right: 10px; z-index: 5;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(9,29,58,0.65); border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.lb-fullscreen-btn:hover { background: var(--blue); }

/* ===== FULLSCREEN VIEWER ===== */
.fullscreen-viewer {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(5,12,24,0.96); align-items: center; justify-content: center;
  cursor: zoom-out;
}
.fullscreen-viewer.open { display: flex; animation: lbFadeIn 0.2s ease; }
.fullscreen-viewer img {
  max-width: 92vw; max-height: 92vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  cursor: default;
}
.fullscreen-close {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer; transition: background var(--transition);
}
.fullscreen-close:hover { background: rgba(255,255,255,0.25); }

/* ===== INQUIRY MODAL ===== */
.inquiry-overlay {
  display: none; position: fixed; inset: 0; z-index: 2500;
  background: rgba(9,29,58,0.70); align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(6px);
}
.inquiry-overlay.open { display: flex; animation: lbFadeIn 0.25s ease; }
.inquiry-modal {
  background: var(--white); border-radius: 20px;
  width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); position: relative;
  animation: lbSlideUp 0.3s ease;
}
.inquiry-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  color: var(--gray-800); cursor: pointer; transition: all var(--transition); z-index: 1;
}
.inquiry-close:hover { background: var(--navy); color: var(--white); }
.inquiry-header {
  padding: 36px 40px 0;
  border-bottom: 1.5px solid var(--gray-100);
  padding-bottom: 24px;
}
.inquiry-title { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.inquiry-subtitle { font-size: 0.88rem; color: var(--gray-600); margin-top: 6px; }
.inquiry-body { padding: 28px 40px 36px; }
.inquiry-footer-alt {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-100);
  font-size: 0.83rem; color: var(--gray-600);
}
.inquiry-wa {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.83rem; font-weight: 700; color: #1ea855;
  padding: 6px 14px; border-radius: 7px; background: #ecfdf5;
  border: 1.5px solid #6ee7b7; transition: all var(--transition);
}
.inquiry-wa:hover { background: #d1fae5; }

@media (max-width: 640px) {
  .inquiry-header { padding: 28px 24px 20px; }
  .inquiry-body { padding: 20px 24px 28px; }
  .lb-prev { left: -14px; }
  .lb-next { right: -14px; }
  .lb-nav { width: 32px; height: 32px; }
}

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-item { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 14px; overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow-sm); cursor: pointer; }
.product-item:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateY(-3px); }

/* Image area: gradient background shows if image is missing/broken */
.product-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-pale), #c0dcee);
  position: relative; overflow: hidden;
}
.product-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.product-img-label { position: absolute; top: 10px; left: 10px; background: var(--navy); color: var(--white); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; z-index: 2; }

.product-body { padding: 16px; }
.product-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.product-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); }
.product-desc { font-size: 0.78rem; color: var(--gray-600); margin-top: 5px; line-height: 1.55; }
.product-enquire { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 0.78rem; font-weight: 700; color: var(--blue); letter-spacing: 0.04em; transition: gap var(--transition); }
.product-item:hover .product-enquire { gap: 10px; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; background: rgba(9,29,58,0.85);
  z-index: 2000; align-items: center; justify-content: center;
  padding: 20px 80px; backdrop-filter: blur(4px);
}
.lightbox-overlay.open { display: flex; animation: lbFadeIn 0.25s ease; }
@keyframes lbFadeIn { from{opacity:0;} to{opacity:1;} }

/* Wrapper: overflow visible so arrows outside card are not clipped */
.lightbox-wrap {
  position: relative; max-width: 740px; width: 100%;
  animation: lbSlideUp 0.3s ease;
}
@keyframes lbSlideUp { from{transform:translateY(24px);opacity:0;} to{transform:translateY(0);opacity:1;} }

.lightbox-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  width: 100%; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; position: relative;
}
.lightbox-img { background: linear-gradient(135deg, var(--blue-pale), #b8d9f0); display: flex; align-items: center; justify-content: center; padding: 0; min-height: 300px; overflow: hidden; position: relative; }
.lightbox-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.lightbox-img .lb-img-fallback { position: relative; z-index: 1; padding: 40px; }
.lightbox-img svg { color: var(--blue-dark); opacity: 0.5; }
.lightbox-info { padding: 36px 28px; display: flex; flex-direction: column; gap: 14px; justify-content: center; overflow-y: auto; max-height: 80vh; }
.lightbox-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.lightbox-name { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.lightbox-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }
.lightbox-specs { display: flex; flex-direction: column; gap: 8px; padding: 16px; background: var(--gray-50); border-radius: 10px; border: 1px solid var(--gray-200); }
.lightbox-spec-row { display: flex; justify-content: space-between; font-size: 0.78rem; }
.lightbox-spec-row span:first-child { color: var(--gray-600); font-weight: 600; }
.lightbox-spec-row span:last-child { color: var(--navy); font-weight: 700; }
.lightbox-enquire { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: var(--white); font-weight: 700; font-size: 0.88rem; padding: 12px 20px; border-radius: 9px; transition: all var(--transition); width: 100%; justify-content: center; margin-top: 4px; }
.lightbox-enquire:hover { background: #1ea855; transform: translateY(-1px); }
.lightbox-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; color: var(--gray-800); cursor: pointer; transition: all var(--transition); z-index: 10; }
.lightbox-close:hover { background: var(--navy); color: var(--white); }

/* ===== LIGHTBOX NAV ARROWS — on .lightbox-wrap, outside card, never clipped ===== */
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20; width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); cursor: pointer;
  transition: all var(--transition); box-shadow: var(--shadow-md);
}
.lb-nav:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.lb-prev { left: -60px; }
.lb-next { right: -60px; }

/* ===== CONTACT ===== */
.contact-body { padding: 64px 24px 80px; background: var(--gray-50); }
.contact-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.contact-info > p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 12px; transition: border-color var(--transition), box-shadow var(--transition); box-shadow: var(--shadow-sm); }
.contact-detail:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; color: var(--blue-dark); flex-shrink: 0; }
.contact-detail-text { display: flex; flex-direction: column; gap: 2px; }
.contact-detail-text strong { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.contact-detail-text span { font-size: 0.88rem; color: var(--gray-600); line-height: 1.55; }
.contact-form-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md); }
.contact-form-card h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.contact-form-card > p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { font-family: var(--font-body); font-size: 0.92rem; color: var(--text); background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 11px 14px; outline: none; transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; font-weight: 700; font-size: 0.95rem; color: var(--white); background: var(--navy); padding: 14px; border-radius: 9px; cursor: pointer; transition: background var(--transition), transform var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--blue); transform: translateY(-1px); }
.form-success { display: none; background: #ecfdf5; border: 1.5px solid #6ee7b7; border-radius: 10px; padding: 16px; color: #065f46; font-size: 0.88rem; font-weight: 600; align-items: center; gap: 10px; margin-top: 12px; }
.form-success.show { display: flex; }
.map-section { max-width: 1280px; margin: 48px auto 0; display: grid; grid-template-columns: 1.6fr 1fr; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); min-height: 340px; }
.map-frame { position: relative; background: linear-gradient(135deg, #d0e8f5, #b8d5ec); border-right: 1.5px solid var(--gray-200); min-height: 300px; }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.map-address-panel { padding: 36px 32px; display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.map-address-panel h4 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.map-addr-item { display: flex; gap: 10px; align-items: flex-start; }
.map-addr-item svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.map-addr-item span { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }
.map-open-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 700; color: var(--white); background: var(--navy); padding: 12px 20px; border-radius: 8px; transition: all var(--transition); width: fit-content; }
.map-open-btn:hover { background: var(--blue); transform: translateY(-1px); }

/* ===== FOOTER ===== */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 56px 24px 0; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-wrap { display: flex; align-items: center; }
.footer-logo-icon { height: 195px; width: 195px; object-fit: contain; display: block; }
.footer-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); transition: all var(--transition); }
.social-btn:hover { background: var(--blue); color: var(--white); }
.footer-col h5 { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; opacity: 0; transition: opacity var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a:hover::before { opacity: 1; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.footer-contact-item svg { color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.55; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px);} to{opacity:1;transform:translateY(0);} }
.anim-fadeup { animation: fadeUp 0.6s ease both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }

/* ===== STICKY QUOTE BAR ===== */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--navy);
  border-top: 2px solid var(--blue);
  box-shadow: 0 -4px 24px rgba(9,29,58,0.35);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.sticky-bar.visible { transform: translateY(0); pointer-events: auto; }
.sticky-bar.hidden { display: none; }
.sticky-bar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sticky-bar-text {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.88); font-weight: 500;
  flex: 1;
}
.sticky-bar-text svg { color: var(--blue-light); flex-shrink: 0; }
.sticky-bar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sticky-bar-cta {
  font-family: var(--font-body); font-weight: 700; font-size: 0.85rem;
  color: var(--navy); background: var(--white);
  padding: 9px 22px; border-radius: 7px; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.sticky-bar-cta:hover { background: var(--blue-light); color: var(--white); transform: translateY(-1px); }
.sticky-bar-dismiss {
  width: 30px; height: 30px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); transition: background var(--transition);
  flex-shrink: 0;
}
.sticky-bar-dismiss:hover { background: rgba(255,255,255,0.22); color: var(--white); }
@media (max-width: 640px) {
  .sticky-bar-inner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 12px 16px; }
  .sticky-bar-text { font-size: 0.82rem; }
  .sticky-bar-actions { width: 100%; justify-content: space-between; }
  .sticky-bar-cta { flex: 1; text-align: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .btn-brochure { display: none; }
  .btn-primary { display: none; }
  .hamburger { display: flex; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lightbox-card { grid-template-columns: 1fr; }
  .lightbox-img { min-height: 180px; padding: 24px; }
  /* On smaller screens, tabs scroll instead of center-wrap */
  .cat-tabs { justify-content: flex-start; flex-wrap: nowrap; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-right { display: block; }
  .hero-slider { aspect-ratio: 16/9; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; }
  .milestones { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .prod-card { flex: 0 0 calc((100% - 40px) / 3); }
  .map-section { grid-template-columns: 1fr; }
  .map-frame { min-height: 240px; border-right: none; border-bottom: 1.5px solid var(--gray-200); }
}
@media (max-width: 640px) {
  .hero { min-height: auto; }
  .hero-inner { padding: 40px 20px 48px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-cta-main, .hero-cta-sec { width: 100%; justify-content: center; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .milestones { grid-template-columns: 1fr 1fr; padding: 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .prod-card { flex: 0 0 calc((100% - 12px) / 2); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
  .cat-tabs-mobile-hint { display: flex; justify-content: center; text-align: center; }
  .cat-tabs-scroll { padding: 0 16px; }
  .cat-tab { padding: 14px 12px; font-size: 0.78rem; }
  .values-section { padding: 28px 16px; }
  .values-grid { grid-template-columns: 1fr; gap: 14px; }
  .map-address-panel { padding: 24px 20px; }
  .team-avatar { width: 110px; height: 146px; }
  .cat-separator { padding: 28px 0 20px; }
  .cat-separator-pill { font-size: 0.65rem; padding: 5px 14px; }
  /* Lightbox on mobile: full-width, arrows tucked inside */
  .lightbox-overlay { padding: 16px 20px; }
  .lightbox-card { grid-template-columns: 1fr; max-height: 85vh; overflow-y: auto; }
  .lightbox-img { min-height: 180px; }
  .lb-prev { left: -16px; }
  .lb-next { right: -16px; }
  .lb-nav { width: 34px; height: 34px; }
  .inquiry-header { padding: 28px 24px 20px; }
  .inquiry-body { padding: 20px 24px 28px; }
  /* WhatsApp raised above sticky bar on mobile */
  .wa-btn { bottom: 22px; right: 16px; width: 50px; height: 50px; }
  body.sticky-visible .wa-btn { bottom: 78px; }
  /* Section padding tighter on small screens */
  .section { padding: 56px 20px; }
  .section-sm { padding: 36px 20px; }
  /* Plant gallery mobile */
  .plant-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 140px);
    gap: 8px;
  }
  .plant-item:nth-child(4) { grid-column: span 1; }
  .plant-item:nth-child(5) { grid-column: span 2; }
  .plant-gallery-section { margin-top: 44px; }
  .plant-lb-prev { left: 8px; width: 38px; height: 38px; }
  .plant-lb-next { right: 8px; width: 38px; height: 38px; }
  .plant-lb-close { top: 12px; right: 12px; }
}

/* ===== CATEGORY LANDING PAGE (products.html) ===== */
.cat-landing-section { padding: 56px 0; }
.cat-landing-header { text-align: center; margin-bottom: 44px; }
.cat-landing-header .section-label { justify-content: center; }
.cat-landing-header .section-desc { margin: 12px auto 0; text-align: center; }
.cat-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  display: flex; flex-direction: column; gap: 10px;
  border: 1.5px solid var(--gray-200); border-radius: 16px; padding: 28px 24px;
  background: var(--white); box-shadow: var(--shadow-sm);
  text-decoration: none; color: inherit;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.cat-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateY(-2px); }
.cat-card-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-pale); color: var(--blue);
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 6px; width: fit-content;
}
.cat-card-name {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  color: var(--navy); line-height: 1.25;
}
.cat-card-desc {
  font-size: 0.83rem; color: var(--gray-600); line-height: 1.65; flex: 1;
}
.cat-card-cta {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--blue); margin-top: 4px;
}
@media (max-width: 900px) {
  .cat-landing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cat-landing-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ===== CATEGORY HERO IMAGES (products/*.html) ===== */
.cat-hero-images {
  padding: 40px 64px 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cat-hero-images:not(:has(.cat-hero-img-item)) { display: none; }
.cat-hero-img-item {
  position: relative; border-radius: 14px;
  overflow: hidden; background: var(--gray-100);
  min-width: 0;
  flex: 0 0 calc((100% - 32px) / 3);
}
.cat-hero-img-item img {
  width: 100%; aspect-ratio: 1 / 1;
  object-fit: cover; display: block;
  pointer-events: none;
}
.cat-hero-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: #fff; padding: 40px 18px 16px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .cat-hero-images { gap: 12px; padding: 28px 20px 44px; }
  .cat-hero-img-item { flex-basis: 100%; }
}

/* ===== PLANT GALLERY (about.html) ===== */
.plant-gallery-section { margin-top: 64px; }
.plant-gallery-header { text-align: center; margin-bottom: 32px; }
.plant-gallery-header .section-label { justify-content: center; }
.plant-gallery-header .section-desc { margin: 12px auto 0; text-align: center; }
.plant-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.plant-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
}
.plant-item:nth-child(4) { grid-column: span 2; }
.plant-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  pointer-events: none;
  transition: transform 0.38s ease;
}
.plant-item:hover img { transform: scale(1.05); }
.plant-zoom {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.25s;
}
.plant-item:hover .plant-zoom { background: rgba(0,0,0,0.32); }
.plant-zoom-icon {
  color: #fff; opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s, transform 0.25s;
}
.plant-item:hover .plant-zoom-icon { opacity: 1; transform: scale(1); }
/* Plant lightbox */
.plant-lb {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.93);
  align-items: center; justify-content: center;
}
.plant-lb.active { display: flex; }
.plant-lb-inner {
  position: relative; display: flex; flex-direction: column;
  align-items: center; max-width: 92vw; max-height: 92vh;
}
.plant-lb-inner img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain; border-radius: 8px; display: block;
  pointer-events: auto; user-select: none; -webkit-user-drag: none;
}
.plant-lb-counter {
  color: rgba(255,255,255,0.5); font-size: 0.82rem;
  font-family: var(--font-body); margin-top: 14px; letter-spacing: 0.04em;
}
.plant-lb-btn {
  position: fixed; display: flex;
  align-items: center; justify-content: center;
  border-radius: 50%; color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: background 0.2s, border-color 0.2s;
}
.plant-lb-btn:hover { background: rgba(255,255,255,0.24); border-color: rgba(255,255,255,0.4); }
.plant-lb-close { top: 20px; right: 20px; width: 42px; height: 42px; }
.plant-lb-prev { top: 50%; left: 20px; transform: translateY(-50%); width: 48px; height: 48px; }
.plant-lb-next { top: 50%; right: 20px; transform: translateY(-50%); width: 48px; height: 48px; }
@media (max-width: 900px) {
  .plant-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 180px 180px;
  }
  .plant-item:nth-child(4) { grid-column: span 1; }
  .plant-item:nth-child(5) { grid-column: span 2; }
}

