/* ================================================================
   animations.css — Limra Adhesives UI Enhancement Layer
   Loaded after yellow-accent.css — extends, never overwrites
   ================================================================ */

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #fbd829 0%, #f5a623 100%);
  z-index: 99999;
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(251, 216, 41, 0.6);
}

/* ── Page Entry Animations ── */
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes fadeUp {
  from { transform: translateY(36px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.page-entry-header {
  animation: slideDown 0.55s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}
.page-entry-hero {
  animation: fadeUp 0.75s 0.15s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 0.68, 0, 1.2),
    transform 0.65s cubic-bezier(0.22, 0.68, 0, 1.2);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 0.68, 0, 1.2),
    transform 0.65s cubic-bezier(0.22, 0.68, 0, 1.2);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 0.68, 0, 1.2),
    transform 0.65s cubic-bezier(0.22, 0.68, 0, 1.2);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition:
    opacity 0.6s cubic-bezier(0.22, 0.68, 0, 1.2),
    transform 0.6s cubic-bezier(0.22, 0.68, 0, 1.2);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ── Back To Top Button ── */
#back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fbd829;
  color: #0f2c48;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(251, 216, 41, 0.5);
  opacity: 0;
  transform: translateX(-72px);
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.25s ease,
    background 0.2s ease;
  z-index: 998;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateX(0);
}
#back-to-top:hover {
  background: #d4b000;
  transform: translateX(0) scale(1.1);
  box-shadow: 0 6px 24px rgba(251, 216, 41, 0.65);
}
#back-to-top:active {
  transform: translateX(0) scale(0.95);
}

/* ── Floating Contact Bubbles — Base ── */
.contact-bubble {
  position: fixed;
  right: 24px;
  z-index: 1000;
}
#wa-bubble { bottom: 24px; }
#gm-bubble { bottom: 92px; }

/* Toggle Button */
.bubble-toggle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition:
    transform 0.3s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.3s ease;
  flex-shrink: 0;
}

.wa-toggle {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}
.wa-toggle:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
}

.gm-toggle {
  background: #EA4335;
  color: #fff;
  box-shadow: 0 4px 20px rgba(234, 67, 53, 0.45);
}
.gm-toggle:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(234, 67, 53, 0.6);
}

/* Pulsing ring */
.bubble-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  pointer-events: none;
  animation: bubblePulse 2.4s ease-out infinite;
}
.wa-toggle .bubble-ring { border: 2.5px solid rgba(37, 211, 102, 0.65); }
.gm-toggle .bubble-ring { border: 2.5px solid rgba(234, 67, 53, 0.55); }

@keyframes bubblePulse {
  0%   { transform: scale(1);   opacity: 0.85; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Second ring — offset pulse */
.bubble-ring-2 {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  pointer-events: none;
  animation: bubblePulse 2.4s 0.8s ease-out infinite;
}
.wa-toggle .bubble-ring-2 { border: 2px solid rgba(37, 211, 102, 0.35); }
.gm-toggle .bubble-ring-2 { border: 2px solid rgba(234, 67, 53, 0.3); }

/* ── Bubble Panel ── */
.bubble-panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.88) translateY(18px);
  transform-origin: bottom right;
  transition:
    opacity 0.28s cubic-bezier(0.22, 0.68, 0, 1.2),
    transform 0.32s cubic-bezier(0.22, 0.68, 0, 1.2);
  pointer-events: none;
}
.bubble-panel.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

/* Panel header */
.bubble-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #fff;
}
.wa-panel .bubble-header  { background: #075E54; }
.gm-panel .bubble-header  { background: #C5221F; }

.bubble-header-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.bubble-header-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.bubble-header-text { flex: 1; min-width: 0; }
.bubble-name   { font-weight: 700; font-size: 14px; margin: 0; line-height: 1.3; }
.bubble-status { font-size: 11px; opacity: 0.85; margin: 3px 0 0; line-height: 1; }

.bubble-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  padding: 0 2px;
  transition: opacity 0.15s;
  flex-shrink: 0;
  margin-left: auto;
}
.bubble-close:hover { opacity: 1; }

/* Panel body */
.bubble-body {
  padding: 14px 14px 12px;
  background: #f0f0f0;
}
.bubble-greeting {
  background: #fff;
  border-radius: 4px 14px 14px 14px;
  padding: 10px 14px;
  font-size: 13px;
  color: #333;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  margin-bottom: 12px;
  line-height: 1.5;
}
.bubble-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.bubble-chip {
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  border: 1.5px solid;
  display: inline-block;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
  line-height: 1.5;
  cursor: pointer;
}
.wa-panel .bubble-chip { color: #128C7E; border-color: #128C7E; background: #fff; }
.wa-panel .bubble-chip:hover { background: #128C7E; color: #fff; transform: translateY(-1px); }
.gm-panel .bubble-chip { color: #EA4335; border-color: #EA4335; background: #fff; }
.gm-panel .bubble-chip:hover { background: #EA4335; color: #fff; transform: translateY(-1px); }

/* CTA row */
.bubble-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition: filter 0.2s ease;
  letter-spacing: 0.01em;
}
.wa-cta  { background: #25D366; }
.gm-cta  { background: #EA4335; }
.bubble-cta:hover { filter: brightness(1.1); color: #fff; }
.bubble-cta i, .bubble-cta svg { flex-shrink: 0; }

/* ── Collage Parallax Tilt ── */
.collage-tilt {
  transition: transform 0.12s ease-out;
  will-change: transform;
}

/* ── Enhanced Product Card Hover (auto-scroll gallery) ── */
.animate-scroll-x a:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow:
    0 16px 40px rgba(15, 44, 72, 0.14),
    0 0 0 2px rgba(251, 216, 41, 0.5) !important;
}

/* ── Section heading animated underline ── */
.heading-underline {
  position: relative;
  display: inline-block;
}
.heading-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: #fbd829;
  border-radius: 2px;
  transition: width 0.75s cubic-bezier(0.22, 0.68, 0, 1.2) 0.2s;
}
.heading-underline.visible::after {
  width: 100%;
}

/* ── Stats counter highlight ── */
[data-counter] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ── Bubble label tooltip on desktop ── */
@media (min-width: 768px) {
  .bubble-label {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 44, 72, 0.92);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-50%) translateX(6px);
  }
  .contact-bubble:hover .bubble-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
@media (max-width: 767px) {
  .bubble-label { display: none; }
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .bubble-panel   { width: 265px; right: 0; }
  #wa-bubble      { bottom: 16px; right: 14px; }
  #gm-bubble      { bottom: 80px; right: 14px; }
  #back-to-top    { left: 14px;   bottom: 16px; width: 42px; height: 42px; }
  .bubble-toggle  { width: 50px;  height: 50px; font-size: 22px; }
}

@media (max-width: 360px) {
  .bubble-panel { width: 240px; }
}

/* ── Accessibility: respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .page-entry-header, .page-entry-hero {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .bubble-ring, .bubble-ring-2 { animation: none !important; }
  .collage-tilt { transition: none !important; }
}

/* ================================================================
   WORLD-CLASS EFFECTS LAYER — high-end additions
   ================================================================ */

/* ── Glassmorphism Header on Scroll ── */
header.header-scrolled {
  background: rgba(8, 20, 36, 0.88) !important;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(251, 216, 41, 0.2) !important;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(251,216,41,0.08) !important;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* ── Ripple Click Effect ── */
.ripple-host {
  position: relative;
  overflow: hidden;
}
@keyframes rippleAnim {
  to { transform: scale(4.5); opacity: 0; }
}
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.6s linear forwards;
  pointer-events: none;
}

/* ── Animated Gradient Blobs (hero) ── */
@keyframes blob1Move {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%  { transform: translate(40px, -30px) scale(1.1); }
  70%  { transform: translate(-25px, 20px) scale(0.93); }
}
@keyframes blob2Move {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-35px, 28px) scale(1.06); }
  80%  { transform: translate(28px, -18px) scale(0.96); }
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
}
.hero-blob-1 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(251,216,41,0.13) 0%, transparent 70%);
  top: -120px;
  right: -60px;
  animation: blob1Move 11s ease-in-out infinite;
}
.hero-blob-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(15,44,72,0.1) 0%, transparent 70%);
  bottom: -60px;
  left: -40px;
  animation: blob2Move 14s ease-in-out infinite;
}
.hero-blob-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(251,216,41,0.08) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: blob1Move 9s 2s ease-in-out infinite;
}

/* ── Gradient Animated Text ── */
@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-flow-text {
  background: linear-gradient(90deg, #fbd829 0%, #f5c518 25%, #e8a000 50%, #fbd829 75%, #fff5a0 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s linear infinite;
  display: inline;
}

/* Gold shimmer on dark backgrounds */
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.text-shimmer-gold {
  background: linear-gradient(90deg, #fbd829 0%, #fff8a0 40%, #fbd829 60%, #d4b000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 2.5s linear infinite;
}

/* ── 3D Perspective Card Tilt ── */
.card-3d-wrap {
  perspective: 900px;
  perspective-origin: 50% 50%;
}
.card-3d {
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
}

/* ── Typing Indicator (inside bubbles) ── */
.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  padding: 9px 14px;
  border-radius: 4px 14px 14px 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.07);
}
.typing-dot {
  width: 7px;
  height: 7px;
  background: #c0c0c0;
  border-radius: 50%;
  animation: typingBounce 1.3s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.18s; }
.typing-dot:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingBounce {
  0%, 55%, 100% { transform: translateY(0);    background: #c8c8c8; }
  27%           { transform: translateY(-7px); background: #888; }
}

/* ── Notification Badge ── */
.bubble-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 10px;
  background: #ff3b30;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #fff;
  z-index: 4;
  animation: badgeBounce 0.5s cubic-bezier(0.22, 0.68, 0, 1.6) both;
  font-family: Inter, sans-serif;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(255,59,48,0.5);
}
@keyframes badgeBounce {
  0%   { transform: scale(0) rotate(-15deg); }
  70%  { transform: scale(1.25) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* ── Animated CTA Gradient Background ── */
@keyframes ctaBgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cta-animated-bg {
  background: linear-gradient(135deg, #081828 0%, #0f2c48 25%, #1a4577 55%, #0f2c48 80%, #051020 100%) !important;
  background-size: 400% 400% !important;
  animation: ctaBgShift 9s ease infinite !important;
}

/* ── Stat Icons Animated Pulse ── */
@keyframes statIconAnim {
  0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 0px #fbd829); }
  50%       { transform: scale(1.14) rotate(-4deg); filter: drop-shadow(0 0 8px rgba(251,216,41,0.7)); }
}
.stat-icon-anim {
  display: inline-block;
  animation: statIconAnim 3s ease-in-out infinite;
}

/* ── CTA Button Enhanced Glow ── */
a.bg-yellow-accent,
button.bg-yellow-accent {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22,0.68,0,1.2),
              box-shadow 0.25s ease !important;
}
a.bg-yellow-accent:hover,
button.bg-yellow-accent:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 8px 30px rgba(251,216,41,0.55),
              0 0 0 3px rgba(251,216,41,0.25) !important;
}
a.bg-yellow-accent:active,
button.bg-yellow-accent:active {
  transform: translateY(0) scale(0.98) !important;
}

/* CTA button inner shimmer sweep */
a.bg-yellow-accent::after,
button.bg-yellow-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
a.bg-yellow-accent:hover::after,
button.bg-yellow-accent:hover::after {
  transform: translateX(100%);
}

/* ── Scroll Hint (hero only) ── */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  animation: fadeIn 0.8s 2s both, scrollHintFade 1s 4.5s ease forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollHintFade { to { opacity: 0; } }
.scroll-hint-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(15,44,72,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-hint-wheel {
  width: 3px;
  height: 8px;
  background: rgba(15,44,72,0.4);
  border-radius: 2px;
  animation: wheelBob 1.6s ease-in-out infinite;
}
.scroll-hint-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(15,44,72,0.4);
  font-family: Inter, sans-serif;
}
@keyframes wheelBob {
  0%, 100% { transform: translateY(0);   opacity: 1; }
  65%       { transform: translateY(11px); opacity: 0; }
}

/* ── Page Loader ── */
#page-loader {
  position: fixed;
  inset: 0;
  background: #0a1e35;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
#page-loader.loader-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-ring-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-spinner {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(251,216,41,0.18);
  border-top-color: #fbd829;
  border-radius: 50%;
  animation: loaderSpin 0.8s linear infinite;
}
.loader-spinner-2 {
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(251,216,41,0.08);
  border-bottom-color: rgba(251,216,41,0.5);
  border-radius: 50%;
  animation: loaderSpin 1.2s linear infinite reverse;
}
@keyframes loaderSpin { to { transform: rotate(360deg); } }
.loader-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  object-fit: contain;
  animation: fadeIn 0.4s 0.15s both;
}
.loader-brand-text {
  color: rgba(255,255,255,0.55);
  font-family: Inter, sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fadeIn 0.4s 0.25s both;
}

/* ── Floating Card Shadow Lift ── */
.shadow-lift {
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22,0.68,0,1.2) !important;
}
.shadow-lift:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px rgba(15,44,72,0.18), 0 0 0 1px rgba(251,216,41,0.15) !important;
}

/* ── Nav link hover underline slide ── */
nav a {
  position: relative;
}
nav a:not([style]):not(.text-yellow-accent)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fbd829;
  border-radius: 1px;
  transition: width 0.22s ease;
}
nav a:not([style]):not(.text-yellow-accent):hover::after {
  width: 100%;
}

/* ── Enhanced stat bar icons ── */
.stats-bar-section .material-symbols-outlined {
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: default;
}
.stats-bar-section:hover .material-symbols-outlined {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 0 10px rgba(251,216,41,0.8));
}

/* ── Reduced motion overrides for new effects ── */
@media (prefers-reduced-motion: reduce) {
  .hero-blob, .gradient-flow-text, .text-shimmer-gold,
  .stat-icon-anim, .cta-animated-bg, .typing-dot,
  .loader-spinner, .loader-spinner-2, .scroll-hint { animation: none !important; }
  a.bg-yellow-accent:hover, button.bg-yellow-accent:hover {
    transform: none !important;
  }
  .card-3d { transform: none !important; }
}

/* ================================================================
   LIMRA NAVBAR — Attractive Redesign
   ================================================================ */

/* Neutralise old nav-link underline rule that conflicts */
nav a:not([style]):not(.text-yellow-accent)::after,
nav a:not([style]):not(.text-yellow-accent):hover::after { content: none !important; }

/* ── Header shell ── */
.limra-header {
  background: linear-gradient(135deg, #060f1a 0%, #0d2642 55%, #091e33 100%);
  border-bottom: none !important;
  box-shadow: 0 2px 28px rgba(0,0,0,0.38);
  transition: background 0.32s ease, box-shadow 0.32s ease;
}
.limra-header.header-scrolled {
  background: rgba(6,15,26,0.94) !important;
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  box-shadow: 0 4px 36px rgba(0,0,0,0.45) !important;
}

/* glowing accent line along bottom of header */
.header-accent-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(251,216,41,0.35) 12%,
    rgba(251,216,41,1) 50%,
    rgba(251,216,41,0.35) 88%,
    transparent 100%);
  pointer-events: none;
}

/* ── Logo ── */
.limra-logo-link { text-decoration: none; flex-shrink: 0; }
.limra-logo-box {
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.22);
  transition: box-shadow 0.28s ease, transform 0.28s cubic-bezier(0.22,0.68,0,1.2);
  flex-shrink: 0;
}
.limra-logo-link:hover .limra-logo-box {
  box-shadow: 0 0 0 2.5px #fbd829, 0 5px 20px rgba(251,216,41,0.38);
  transform: scale(1.07) rotate(-2deg);
}
.limra-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 3px;
}
.limra-brand-name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #fff;
  font-family: Inter, sans-serif;
  line-height: 1;
}
.limra-brand-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fbd829;
  opacity: 0.82;
  font-family: Inter, sans-serif;
  line-height: 1;
}

/* ── Desktop nav links ── */
.nav-link {
  position: relative;
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.22s ease;
  font-family: Inter, sans-serif;
  letter-spacing: 0.015em;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: #fbd829;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.22,0.68,0,1.2);
}
.nav-link:hover {
  color: rgba(255,255,255,0.97);
  background: rgba(255,255,255,0.09);
}
.nav-link:hover::after { transform: scaleX(1); }

/* Active state — added by production-bundle.js */
.nav-link.text-yellow-accent,
.nav-link.font-bold {
  color: #fbd829 !important;
  background: rgba(251,216,41,0.11);
  font-weight: 600;
}
.nav-link.text-yellow-accent::after,
.nav-link.font-bold::after { transform: scaleX(1); }

/* Separator bar */
.nav-sep {
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,0.14);
  margin: 0 10px;
  flex-shrink: 0;
  align-self: center;
}

/* ── WA / Gmail pill buttons ── */
.nav-contact-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 22px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.24s cubic-bezier(0.22,0.68,0,1.2);
  font-family: Inter, sans-serif;
  white-space: nowrap;
  line-height: 1;
}
.nav-contact-btn i { font-size: 16px; flex-shrink: 0; }
.nav-contact-btn svg { flex-shrink: 0; }
.nav-contact-btn::after { display: none !important; }

.nav-wa-btn {
  color: #2dd36f;
  border-color: rgba(37,211,102,0.4);
  background: rgba(37,211,102,0.1);
  margin-left: 4px;
}
.nav-wa-btn:hover {
  color: #fff !important;
  border-color: #25D366;
  background: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(37,211,102,0.35);
}

.nav-gm-btn {
  color: #ff7b6e;
  border-color: rgba(234,67,53,0.38);
  background: rgba(234,67,53,0.1);
  margin-left: 6px;
}
.nav-gm-btn:hover {
  color: #fff !important;
  border-color: #EA4335;
  background: #EA4335;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(234,67,53,0.3);
}

/* ── Hamburger ── */
.limra-hamburger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.13);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.22s ease;
  flex-shrink: 0;
}
.limra-hamburger:hover {
  background: rgba(251,216,41,0.12);
  border-color: rgba(251,216,41,0.5);
  transform: scale(1.05);
}
.ham-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.22,0.68,0,1.2);
}

/* ── Mobile menu ── */
#main-nav.mobile-open {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  position: fixed !important;
  top: 80px !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(5,13,25,0.97) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  padding: 10px 0 24px !important;
  gap: 0 !important;
  z-index: 49 !important;
  border-top: 1px solid rgba(251,216,41,0.22) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55) !important;
  max-height: calc(100vh - 80px) !important;
  overflow-y: auto !important;
  animation: mobileNavDrop 0.3s cubic-bezier(0.22,0.68,0,1.2) both;
}
@keyframes mobileNavDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* staggered link entrance */
#main-nav.mobile-open a:nth-child(1)  { animation: mobileNavLink 0.26s 0.04s both; }
#main-nav.mobile-open a:nth-child(2)  { animation: mobileNavLink 0.26s 0.09s both; }
#main-nav.mobile-open a:nth-child(3)  { animation: mobileNavLink 0.26s 0.14s both; }
#main-nav.mobile-open a:nth-child(4)  { animation: mobileNavLink 0.26s 0.19s both; }
#main-nav.mobile-open a:nth-child(5)  { animation: mobileNavLink 0.26s 0.24s both; }
#main-nav.mobile-open a:nth-child(6)  { animation: mobileNavLink 0.26s 0.30s both; }
#main-nav.mobile-open a:nth-child(7)  { animation: mobileNavLink 0.26s 0.36s both; }
@keyframes mobileNavLink {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

#main-nav.mobile-open .nav-link {
  width: 100% !important;
  border-radius: 0 !important;
  padding: 15px 24px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  color: rgba(255,255,255,0.82) !important;
  transition: background 0.18s, padding-left 0.2s, color 0.18s !important;
  background: transparent !important;
}
#main-nav.mobile-open .nav-link::after { display: none !important; }
#main-nav.mobile-open .nav-link:hover {
  background: rgba(251,216,41,0.07) !important;
  padding-left: 32px !important;
  color: rgba(255,255,255,0.97) !important;
}
#main-nav.mobile-open .nav-link.text-yellow-accent,
#main-nav.mobile-open .nav-link.font-bold {
  color: #fbd829 !important;
  background: rgba(251,216,41,0.09) !important;
  border-left: 3px solid #fbd829 !important;
  padding-left: 21px !important;
}
#main-nav.mobile-open .nav-sep { display: none !important; }
#main-nav.mobile-open .nav-contact-btn {
  display: flex !important;
  margin: 6px 20px !important;
  border-radius: 14px !important;
  padding: 13px 18px !important;
  justify-content: center !important;
  font-size: 14px !important;
  width: calc(100% - 40px) !important;
  transform: none !important;
  box-shadow: none !important;
}
#main-nav.mobile-open .nav-wa-btn  { margin-top: 14px !important; }

/* Hide hamburger on desktop — our display:flex above overrides Tailwind's md:hidden */
@media (min-width: 768px) {
  .limra-hamburger { display: none; }
}

/* ── Responsive tweaks ── */
@media (max-width: 360px) {
  .limra-brand-sub  { display: none; }
  .limra-brand-name { font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .limra-hamburger, .limra-logo-box,
  .nav-link, .nav-contact-btn { transition: none !important; }
  #main-nav.mobile-open,
  #main-nav.mobile-open a { animation: none !important; }
}

/* ================================================================
   LIMRA FOOTER — Professional Responsive Layout
   ================================================================ */

/* ── Background & Container ── */
.limra-footer {
  background: linear-gradient(180deg, #0d2642 0%, #091e33 45%, #060f1a 100%);
  color: rgba(255,255,255,0.58);
  position: relative;
  overflow: hidden;
}
.limra-footer::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(251,216,41,0.04) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.limra-footer::after {
  content: '';
  position: absolute;
  bottom: 30px; left: -50px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(13,38,66,0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Yellow accent line at top */
.footer-accent-top {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(251,216,41,0.38) 14%,
    rgba(251,216,41,1) 50%,
    rgba(251,216,41,0.38) 86%,
    transparent 100%);
}

/* ── Wrapper ── */
.footer-main-wrap {
  padding: 3.5rem 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── Desktop Grid: brand wider, contact slightly wider ── */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 0 3rem;
  align-items: start;
}

/* ── Brand Column ── */
.footer-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-link .limra-logo-box { padding: 7px; }

.footer-tagline {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.48);
  margin: 0;
  max-width: 260px;
}

.footer-social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

/* ── Social Buttons ── */
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22,0.68,0,1.2);
  flex-shrink: 0;
}
.footer-social-btn i { font-size: 17px; }
.footer-wa:hover    { color:#fff; background:#25D366; border-color:#25D366; transform:translateY(-3px); box-shadow:0 6px 18px rgba(37,211,102,0.35); }
.footer-gm:hover    { color:#fff; background:#EA4335; border-color:#EA4335; transform:translateY(-3px); box-shadow:0 6px 18px rgba(234,67,53,0.32); }
.footer-phone:hover { color:#fbd829; background:rgba(251,216,41,0.1); border-color:rgba(251,216,41,0.55); transform:translateY(-3px); box-shadow:0 6px 18px rgba(251,216,41,0.2); }

/* ── Column Headings ── */
.footer-heading {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fbd829;
  margin: 0 0 18px 0;
  font-family: Inter, sans-serif;
  position: relative;
  padding-bottom: 11px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 22px; height: 2px;
  background: rgba(251,216,41,0.5);
  border-radius: 1px;
}

/* ── Nav / Product Links ── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
  transition: color 0.2s ease, gap 0.22s ease;
  font-family: Inter, sans-serif;
}
.footer-links a::before {
  content: '';
  display: block;
  width: 0;
  height: 1.5px;
  background: #fbd829;
  border-radius: 1px;
  transition: width 0.22s cubic-bezier(0.22,0.68,0,1.2), margin-right 0.22s ease;
  flex-shrink: 0;
  margin-right: 0;
}
.footer-links a:hover { color: rgba(255,255,255,0.92); gap: 10px; }
.footer-links a:hover::before { width: 14px; }

/* ── Contact List ── */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  line-height: 1.55;
  font-family: Inter, sans-serif;
}
.footer-contact-icon {
  color: #fbd829;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: flex-start;
}
.footer-contact-icon .material-symbols-outlined { font-size: 16px; }
.footer-contact-list li > span:not(.footer-contact-icon),
.footer-contact-list li > a {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: #fbd829; }

/* ── Bottom Bar ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 11.5px;
  color: rgba(255,255,255,0.28);
  font-family: Inter, sans-serif;
  gap: 8px;
}
.footer-bottom p { margin: 0; }
.footer-bottom-right {
  color: rgba(251,216,41,0.42);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

/* ── Tablet: 640px – 1023px ── */
@media (min-width: 640px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
  /* Brand spans full width */
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-tagline { max-width: 460px; }
  /* Contact spans full width, items in a row */
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
  .footer-contact-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 2.5rem;
  }
  .footer-contact-list li { flex: 0 0 auto; }
}

/* ── Mobile: < 640px ── */
@media (max-width: 639px) {
  .footer-main-wrap { padding: 2.5rem 0 1rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.25rem;
  }

  /* Brand: full width, all content centered */
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-grid > div:first-child .footer-logo-link {
    justify-content: center;
  }
  .footer-tagline {
    max-width: 300px;
    text-align: center;
  }
  .footer-social-row { justify-content: center; }

  /* Product Range, Company, Get in Touch — left indent */
  .footer-grid > div:not(:first-child) {
    margin-left: 30px;
  }

  /* Contact: full width, left-aligned (icon+text pairs don't center well) */
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  /* Bottom bar: stacked and centered */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    margin-top: 2rem;
    padding-bottom: 1.25rem;
  }
  .footer-bottom-right { white-space: normal; }
}

/* ── Very small: < 380px — single column ── */
@media (max-width: 379px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: unset;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-social-btn,
  .footer-links a { transition: none !important; }
}
