/* ================================================================
   KarindoLED v2 — Custom CSS
   Inspired by: madeinevolve.com · thisisstudiox.com · fluid.glass
   ================================================================ */

/* ---- Design Tokens ---- */
:root {
  --color-black: #0b1012;
  --color-grey: #212325;
  --color-cream: #f3f0ec;
  --color-taupe: #d4cec6;
  --color-white: #ffffff;
  --brand-red: #CC0000;
  --brand-light: #FF4444;
  --brand-dark: #0F172A;

  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  }


body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-sans);
  overscroll-behavior: none;
  overflow-x: hidden;
}

body::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }

::selection {
  background: var(--brand-red);
  color: var(--color-white);
}

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-quart);
}

.loader-cube {
  width: 4rem;
  height: 4rem;
  perspective: 1000px;
}

.loader-cube-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: cube-spin 1.2s var(--ease-in-out-quad) infinite;
}

.loader-cube-face {
  position: absolute;
  width: 4rem;
  height: 4rem;
  background: var(--brand-red);
}

.loader-cube-face:nth-child(1) { transform: translateZ(2rem); }
.loader-cube-face:nth-child(2) { transform: rotateY(180deg) translateZ(2rem); }
.loader-cube-face:nth-child(3) { transform: rotateY(90deg) translateZ(2rem); }
.loader-cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(2rem); }
.loader-cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(2rem); }
.loader-cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(2rem); }

@keyframes cube-spin {
  0% { transform: rotateX(-30deg) rotateY(0deg); }
  100% { transform: rotateX(-30deg) rotateY(-360deg); }
}

.loader-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-grey);
  opacity: 0.6;
}

/* ---- 24-Column Grid ---- */
.grid-24 {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .grid-24 {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}

/* ---- Top Nav ---- */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.4rem;
  padding: 0 1.5rem;
  background: color-mix(in srgb, var(--color-cream) 85%, transparent);
  backdrop-filter: blur(2rem);
  -webkit-backdrop-filter: blur(2rem);
  border-bottom: 1px solid rgba(11,16,18,0.06);
  transition: background 0.3s var(--ease-out-quart);
}

.top-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-black);
}

.top-nav-logo img {
  height: 2.8rem;
  width: auto;
}

.top-nav-hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-black);
  padding: 0;
  transition: opacity 0.3s;
}

.top-nav-hamburger:hover {
  opacity: 0.7;
}

/* ---- Hero Nav Mode (centered menu, no logo) ---- */
.top-nav--hero {
  justify-content: center;
}
.top-nav--hero .top-nav-logo {
  position: absolute;
  left: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-1rem);
  transition: opacity 0.5s var(--ease-out-quart), transform 0.5s var(--ease-out-quart);
}
.top-nav:not(.top-nav--hero) .top-nav-logo {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: opacity 0.5s var(--ease-out-quart), transform 0.5s var(--ease-out-quart);
}
.top-nav--hero .nav-links {
  margin: 0 auto;
}
.top-nav--hero .top-nav-hamburger {
  display: none;
}
@media (max-width: 768px) {
  .top-nav--hero {
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease-out-quart);
  }
  .top-nav:not(.top-nav--hero) {
    transform: translateY(0);
    transition: transform 0.4s var(--ease-out-quart);
  }
}
}

.top-nav-hamburger span {
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out-quart);
}

.top-nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.top-nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.top-nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---- Inline Nav Links ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,16,18,0.55);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-black);
}

.nav-link.active {
  color: var(--brand-red);
}

/* ---- Nav Dropdown ---- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  background: color-mix(in srgb, var(--color-cream) 95%, transparent);
  backdrop-filter: blur(2rem);
  -webkit-backdrop-filter: blur(2rem);
  border: 1px solid rgba(11,16,18,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity 0.3s, transform 0.3s;
  padding: 0.75rem 0;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown-content a {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11,16,18,0.5);
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-content a:hover {
  color: var(--color-black);
  background: rgba(11,16,18,0.03);
}

/* ---- Mobile Nav Panel ---- */
.mobile-nav-panel {
  position: fixed;
  top: 5.4rem;
  left: 0;
  right: 0;
  z-index: 99;
  background: color-mix(in srgb, var(--color-cream) 97%, transparent);
  backdrop-filter: blur(2rem);
  -webkit-backdrop-filter: blur(2rem);
  border-bottom: 1px solid rgba(11,16,18,0.06);
  padding: 1rem 1.5rem 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out-quart), opacity 0.3s;
}

.mobile-nav-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-black);
  text-decoration: none;
  padding: 0.6rem 0;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--brand-red);
}

.mobile-nav-sub {
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.mobile-nav-sub a {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(11,16,18,0.5);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.mobile-nav-sub a:hover {
  color: var(--color-black);
}

@media (min-width: 769px) {
  .mobile-nav-panel {
    display: none;
  }
  .top-nav-hamburger {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* ---- Section Labels (Studio X) ---- */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.section-label::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--brand-red);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---- Process Cards (Studio X) ---- */
.process-card {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 2rem 0;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-quart);
}

.process-card:hover .process-card-title {
  color: var(--brand-red);
}

.process-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.process-card-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.process-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .process-card-title { font-size: 1.3rem; }
}

.process-card-arrow {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-quart);
}

.process-card.open .process-card-arrow {
  transform: rotate(45deg);
}

.process-card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-quart), opacity 0.3s;
  opacity: 0;
}

.process-card.open .process-card-content {
  max-height: 20rem;
  opacity: 1;
  padding-top: 1.5rem;
}

/* ---- Wordmark Footer (fluid.glass) ---- */
.footer-wordmark {
  position: absolute;
  inset: 0;
  background: var(--brand-red);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200'%3E%3Ctext x='0' y='160' font-size='180' font-weight='900' font-family='system-ui'%3EKARINDOLED%3C/text%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200'%3E%3Ctext x='0' y='160' font-size='180' font-weight='900' font-family='system-ui'%3EKARINDOLED%3C/text%3E%3C/svg%3E");
  -webkit-mask-size: 80%;
  mask-size: 80%;
  -webkit-mask-position: center 40%;
  mask-position: center 40%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

/* ---- Quote Panel (fluid.glass) ---- */
.quote-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: 48rem;
  max-width: 100vw;
  z-index: 200;
  background: var(--color-cream);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out-quart);
  overflow-y: auto;
  padding: 4rem;
}

.quote-panel.open {
  transform: translateX(0);
}

.quote-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.quote-panel-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ---- Filter Panel (fluid.glass) ---- */
.filter-panel {
  position: fixed;
  inset: 4rem 4rem 4rem auto;
  width: 36rem;
  max-width: calc(100vw - 8rem);
  z-index: 150;
  background: var(--color-cream);
  transform: translateX(120%);
  transition: transform 0.5s var(--ease-out-quart);
  overflow-y: auto;
  padding: 3rem;
}

.filter-panel.open {
  transform: translateX(0);
}

/* ---- Text Split (madeinevolve) ---- */
[data-split] {
  opacity: 0;
}

.split-char {
  display: inline-block;
}

/* ---- Scroll Reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(3rem);
}

[data-reveal="left"] {
  transform: translateX(-3rem);
}

[data-reveal="right"] {
  transform: translateX(3rem);
}

[data-reveal="scale"] {
  transform: scale(0.95);
}

/* ---- Marquee (existing) ---- */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee {
  animation: marquee 30s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

/* ---- Lightbox ---- */
.lightbox-overlay {
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
}

/* ---- Cart Slide-in ---- */
.cart-slide-enter {
  transform: translateX(100%);
}
.cart-slide-enter-active {
  transform: translateX(0);
  transition: transform 0.3s ease;
}
.cart-slide-leave {
  transform: translateX(0);
}
.cart-slide-leave-active {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

/* ---- Accordion ---- */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content.open {
  max-height: 500px;
}

/* ---- Fade-in utility (existing) ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Spinner ---- */
.spinner {
  border: 3px solid #e5e7eb;
  border-top: 3px solid var(--brand-red);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---- Decorative Shapes ---- */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.deco-diamond {
  position: absolute;
  pointer-events: none;
}

.deco-diamond::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  transform: rotate(45deg);
}

.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid currentColor;
  pointer-events: none;
}

.deco-dots {
  position: absolute;
  pointer-events: none;
  background-image: radial-gradient(circle, currentColor 0.5px, transparent 0.5px);
  background-size: 24px 24px;
}

.deco-line-h {
  position: absolute;
  height: 1px;
  background: currentColor;
  pointer-events: none;
}

.deco-line-v {
  position: absolute;
  width: 1px;
  background: currentColor;
  pointer-events: none;
}

/* ---- Icon Utilities ---- */
.icon-xs { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-sm { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-md { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.icon-lg { width: 2rem; height: 2rem; flex-shrink: 0; }
.icon-xl { width: 3rem; height: 3rem; flex-shrink: 0; }

/* ---- Section Divider ---- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-taupe), transparent);
  opacity: 0.3;
}

.section-divider-dot {
  width: 0.4rem;
  height: 0.4rem;
  background: var(--brand-red);
  transform: rotate(45deg);
  margin: 0 auto;
}

/* ---- Animated Section Backgrounds ---- */

/* Morphing blob */
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 40% 50% 60% 50%; }
  75% { border-radius: 60% 30% 50% 50% / 30% 60% 40% 70%; }
}

@keyframes blob-hue {
  0%, 100% { filter: hue-rotate(0deg) blur(60px); }
  50% { filter: hue-rotate(15deg) blur(60px); }
}

.bg-blob {
  position: absolute;
  inset: -50%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(204,0,0,0.08) 0%, rgba(204,0,0,0.02) 40%, transparent 70%);
  animation: blob-morph 18s ease-in-out infinite, blob-hue 12s ease-in-out infinite;
  z-index: 0;
}

/* Pulse ring */
@keyframes pulse-ring-expand {
  0% { transform: scale(0.8); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.1; }
  100% { transform: scale(0.8); opacity: 0.4; }
}

.bg-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(204,0,0,0.15);
  pointer-events: none;
  animation: pulse-ring-expand 4s ease-in-out infinite;
}

.bg-pulse-ring:nth-child(2) { animation-delay: -1s; }
.bg-pulse-ring:nth-child(3) { animation-delay: -2s; }
.bg-pulse-ring:nth-child(4) { animation-delay: -3s; }

/* Gradient sweep */
@keyframes gradient-sweep {
  0% { transform: translateX(-100%) skewX(-15deg); }
  50% { transform: translateX(0%) skewX(-15deg); }
  100% { transform: translateX(-100%) skewX(-15deg); }
}

.bg-gradient-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(204,0,0,0.03) 50%, transparent 100%);
  animation: gradient-sweep 8s ease-in-out infinite;
  z-index: 0;
}

/* Scan line */
@keyframes scan-line {
  0% { top: -5%; }
  100% { top: 105%; }
}

.bg-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(204,0,0,0.3) 50%, transparent 100%);
  pointer-events: none;
  animation: scan-line 4s linear infinite;
  z-index: 1;
}

/* Constellation particle */
.bg-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(204,0,0,0.25);
  pointer-events: none;
}

.bg-particle-connector {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}

/* Grid overlay for products */
.bg-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(204,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,0,0,0.03) 1px, transparent 1px);
  background-size: 4rem 4rem;
  z-index: 0;
}

/* Process connecting line */
.bg-process-line {
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(204,0,0,0.2) 10%, rgba(204,0,0,0.2) 90%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.bg-process-dot {
  position: absolute;
  left: 2rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--brand-red);
  border-radius: 50%;
  transform: translateX(-0.25rem) translateY(-0.25rem);
  pointer-events: none;
  z-index: 1;
}

/* CTA orbit ring */
@keyframes orbit-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.bg-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(204,0,0,0.08);
  pointer-events: none;
  animation: orbit-spin 20s linear infinite;
}

.bg-orbit-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  border-radius: 50%;
  background: rgba(204,0,0,0.2);
  pointer-events: none;
}

/* Background parallax container */
.bg-parallax {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-parallax > * {
  will-change: transform;
}

/* Animated gradient wave for footer */
@keyframes wave-shift {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-5%) translateY(-2%); }
  50% { transform: translateX(-10%) translateY(0); }
  75% { transform: translateX(-5%) translateY(2%); }
  100% { transform: translateX(0) translateY(0); }
}

.bg-wave {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 30% 50%, rgba(204,0,0,0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(204,0,0,0.02) 0%, transparent 50%);
  animation: wave-shift 15s ease-in-out infinite;
  z-index: 0;
}

/* Scroll-driven bar for any section */
.bg-scroll-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-red), transparent);
  pointer-events: none;
  z-index: 2;
}

/* ---- Float Animation (GSAP handles this, but CSS fallback) ---- */
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ---- Gradient glows ---- */
.glow-red {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.glow-red-sm {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,0.2) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}

/* ---- FAB WhatsApp ---- */
.fab-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 98;
  width: 3.5rem;
  height: 3.5rem;
  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.3);
  transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s;
  cursor: pointer;
}

.fab-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.fab-wa-pulse {
  animation: fab-pulse 2s ease-in-out infinite;
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5); }
}

/* ---- Image Overlay Utilities ---- */
.img-overlay {
  position: absolute;
  inset: 0;
}

.img-overlay-gradient-dark {
  background: linear-gradient(to top, rgba(11,16,18,0.9) 0%, rgba(11,16,18,0.3) 50%, rgba(11,16,18,0.1) 100%);
}

.img-overlay-gradient-hero {
  background: linear-gradient(to bottom, rgba(11,16,18,0.7) 0%, rgba(11,16,18,0.2) 40%, rgba(11,16,18,0.2) 60%, rgba(11,16,18,0.7) 100%);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-card-placeholder {
  background: var(--color-grey);
  position: relative;
  overflow: hidden;
}

.img-card-placeholder img {
  transition: transform 0.6s var(--ease-out-quart);
}

.img-card-placeholder:hover img {
  transform: scale(1.05);
}

/* ---- Service Card ---- */
.service-card {
  background: white;
  border: 1px solid rgba(212, 206, 198, 0.3);
  padding: 2rem;
  transition: all 0.3s var(--ease-out-quart);
  cursor: default;
}

.service-card:hover {
  border-color: rgba(204, 0, 0, 0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.service-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  color: var(--color-cream);
  transition: background 0.3s var(--ease-out-quart);
}

.service-card:hover .service-card-icon {
  background: var(--brand-red);
}

/* ---- Product Card Image ---- */
.product-card-img {
  position: absolute;
  inset: 0;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-quart);
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

/* ---- Scroll Padding (for fixed navbar) ---- */
.scroll-pad {
  padding-top: 5.4rem;
}

/* ---- Misc ---- */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

[x-cloak] { display: none !important; }
