/* =================================================================
 * XAXE Immersive UX (Tier 1+2+3)
 * Premium cybersecurity feel with subtle animations
 * Respects prefers-reduced-motion + active across all viewports
 * ================================================================= */

/* ───────── Custom Cursor (Desktop + Mobile) ───────── */
.xaxe-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.xaxe-cursor-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.08s ease-out, opacity 0.2s;
}
.xaxe-cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  transition: transform 0.18s ease-out, width 0.2s, height 0.2s, opacity 0.2s, border-color 0.2s;
}
.xaxe-cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  border-color: var(--theme-color, #3C72FC);
  background: rgba(60, 114, 252, 0.1);
}
@media (hover: none) {
  /* Disable on actual touch devices */
  .xaxe-cursor { display: none; }
}

/* ───────── Scroll Progress Bar ───────── */
.xaxe-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--theme-color, #3C72FC), var(--theme-color2, #E0009B));
  z-index: 99998;
  transition: width 0.05s linear;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(60, 114, 252, 0.6);
}

/* =================================================================
 * WhatsApp Floating Button — LOCKED bottom-right
 * Force position dengan semua possible override
 * ================================================================= */
a.whatsapp-float,
.whatsapp-float {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  top: auto !important;
  left: auto !important;
  width: 60px !important;
  height: 60px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #25D366 !important;
  background-color: #25D366 !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45) !important;
  z-index: 99999 !important;
  text-decoration: none !important;
  border: 0 !important;
  transform: none !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s !important;
  animation: xaxe-wa-bounce 2.5s ease-in-out infinite !important;
  /* Anti scroll-snap interference */
  contain: layout !important;
}
.whatsapp-float:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6) !important;
  opacity: 1 !important;
  background: #25D366 !important;
  color: #fff !important;
}
.whatsapp-float svg {
  width: 32px !important;
  height: 32px !important;
  fill: #fff !important;
  display: block !important;
}
@keyframes xaxe-wa-bounce {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}
/* Scroll-top button: stack DI ATAS WA dengan jarak proper */
.scroll-top {
  bottom: 100px !important;
  right: 28px !important;
  z-index: 99998 !important;
}
/* Mobile: WA tetap di kanan bawah, sedikit lebih kecil */
@media (max-width: 575px) {
  a.whatsapp-float,
  .whatsapp-float {
    bottom: 16px !important;
    right: 16px !important;
    width: 52px !important;
    height: 52px !important;
  }
  .whatsapp-float svg {
    width: 28px !important;
    height: 28px !important;
  }
}

/* ───────── Magnetic Button Effect ───────── */
[data-magnetic] {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.ot-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(60, 114, 252, 0.4);
}

/* ───────── 3D Card Tilt with Shine ───────── */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
  will-change: transform;
  position: relative;
  overflow: hidden;
}
[data-tilt]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 70%
  );
  background-size: 200% 200%;
  background-position: 0% 0%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s, background-position 0.6s;
  z-index: 1;
}
[data-tilt]:hover::before {
  opacity: 1;
  background-position: 100% 100%;
}
[data-tilt] > * {
  position: relative;
  z-index: 2;
}

/* ───────── Glass Morphism Cards ───────── */
.feature-card, .blog-card, .testi-card.style2 {
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s,
              border-color 0.4s;
}
.feature-card:hover, .blog-card:hover, .testi-card.style2:hover {
  border-color: rgba(60, 114, 252, 0.5);
  box-shadow: 0 20px 60px rgba(60, 114, 252, 0.2),
              0 0 0 1px rgba(60, 114, 252, 0.3);
  transform: translateY(-8px);
}


/* ───────── Particle Background Canvas (Hero) ───────── */
.xaxe-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

/* ───────── Animated Underline on Links ───────── */
a:not(.ot-btn):not(.xaxe-float-wa):not(.xaxe-coverage-link):not(.brand-card) {
  position: relative;
  display: inline-block;
}
a:not(.ot-btn):not(.xaxe-float-wa):not(.xaxe-coverage-link):not(.brand-card)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--theme-color, #3C72FC), var(--theme-color2, #E0009B));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
a:not(.ot-btn):not(.xaxe-float-wa):not(.xaxe-coverage-link):not(.brand-card):hover::after {
  transform: scaleX(1);
}

/* ───────── Icon Spin/Scale on Hover ───────── */
.feature-card i,
.box-title + .box-text i,
[class*="-card"] i.fa,
[class*="-card"] i.fas,
[class*="-card"] i.far {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}
[data-tilt]:hover i,
.feature-card:hover i,
.blog-card:hover i {
  transform: scale(1.15) rotate(-5deg);
}

/* ───────── Counter Animation Helper ───────── */
.xaxe-counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  background: linear-gradient(135deg, var(--theme-color, #3C72FC), var(--theme-color2, #E0009B));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ───────── Section SVG Dividers ───────── */
.xaxe-divider {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
}
.xaxe-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}

/* ───────── Reveal Animations (when entering viewport) ───────── */
.xaxe-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.xaxe-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.xaxe-reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.xaxe-reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ───────── Text Split Reveal (Hero Title) ───────── */
.xaxe-split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(50%) rotateX(-90deg);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom center;
}
.xaxe-split-char.is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* ───────── Parallax Wrapper ───────── */
[data-parallax] {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* ───────── Cursor Trail Dots ───────── */
.xaxe-trail-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 114, 252, 0.8), transparent 70%);
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  animation: xaxe-trail-fade 0.8s ease-out forwards;
}
@keyframes xaxe-trail-fade {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
}

/* ───────── Marquee (untuk partner logos jika ada) ───────── */
.xaxe-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.xaxe-marquee-track {
  display: flex;
  gap: 48px;
  animation: xaxe-marquee-scroll 30s linear infinite;
  width: max-content;
}
@keyframes xaxe-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.xaxe-marquee:hover .xaxe-marquee-track {
  animation-play-state: paused;
}

/* ───────── Glow Orb Background (subtle ambient) ───────── */
.xaxe-glow-orb {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 114, 252, 0.15), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

/* =================================================================
 * HERO v2 — Premium Mix (Konsep D)
 * Trust badge, dual CTA, cert strip, animated shield, floating stats
 * ================================================================= */

/* ───────── Trust Badge ───────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(60, 114, 252, 0.3);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  animation: hero-badge-shimmer 4s ease-in-out infinite;
}
.hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  animation: hero-badge-sweep 4s ease-in-out infinite;
}
@keyframes hero-badge-shimmer {
  0%, 100% { border-color: rgba(60, 114, 252, 0.3); }
  50% { border-color: rgba(224, 0, 155, 0.5); box-shadow: 0 0 20px rgba(60, 114, 252, 0.2); }
}
@keyframes hero-badge-sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.hero-badge-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #3C72FC, #E0009B);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 12px #25d366;
  animation: hero-pulse-dot 1.5s ease-in-out infinite;
}
@keyframes hero-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ───────── Dual CTA — Secondary Outlined Button ───────── */
.ot-btn.btn-outline {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ot-btn.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--theme-color, #3C72FC), var(--theme-color2, #E0009B));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
  border-radius: 50px;
}
.ot-btn.btn-outline:hover {
  border-color: transparent;
  color: #fff;
}
.ot-btn.btn-outline:hover::before { opacity: 1; }

/* ───────── Certification Strip ───────── */
.hero-cert-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.hero-cert-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.hero-cert-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.hero-cert-item:hover {
  background: rgba(60, 114, 252, 0.1);
  border-color: rgba(60, 114, 252, 0.4);
  color: #fff;
  transform: translateY(-2px);
}
.hero-cert-item i {
  color: #FFC700;
  font-size: 14px;
}

/* ───────── Floating Stats Cards (overlap hero & features) ───────── */
.hero-stats-wrap {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  margin-bottom: 60px;
  padding: 0 16px;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-stat-card {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--theme-color, #3C72FC), var(--theme-color2, #E0009B));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s;
}
.hero-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(60, 114, 252, 0.4);
  box-shadow: 0 20px 50px rgba(60, 114, 252, 0.25);
}
.hero-stat-card:hover::before { transform: scaleX(1); }
.hero-stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(60, 114, 252, 0.15), rgba(224, 0, 155, 0.15));
  border-radius: 16px;
  font-size: 26px;
  position: relative;
}
.hero-stat-icon i {
  background: linear-gradient(135deg, var(--theme-color, #3C72FC), var(--theme-color2, #E0009B));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.hero-stat-suffix {
  display: inline-block;
  background: linear-gradient(135deg, var(--theme-color, #3C72FC), var(--theme-color2, #E0009B));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-wrap { margin-top: -40px; }
}
@media (max-width: 575px) {
  .hero-stat-card { padding: 20px 14px; }
  .hero-stat-number { font-size: 28px; }
  .hero-stat-icon { width: 48px; height: 48px; font-size: 22px; margin-bottom: 10px; }
}

/* ───────── Animated CSS Shield (Hero Decoration) ───────── */
.hero-shield-wrap {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
  filter: blur(0.3px);
}
.hero-shield-top-left {
  top: 18%;
  left: 8%;
  width: 120px;
  height: 120px;
}
.hero-shield-top-right {
  top: 22%;
  right: 8%;
  width: 100px;
  height: 100px;
}
.hero-shield {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-shield-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  background: linear-gradient(135deg, var(--theme-color, #3C72FC), var(--theme-color2, #E0009B));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shield-float 4s ease-in-out infinite;
}
.hero-shield-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--theme-color, #3C72FC), var(--theme-color2, #E0009B), transparent 60%, var(--theme-color, #3C72FC));
  -webkit-mask:
    radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  mask:
    radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  animation: shield-rotate 8s linear infinite;
}
.hero-shield-ring-2 {
  position: absolute;
  inset: -16px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  animation: shield-rotate-reverse 14s linear infinite;
}
.hero-shield-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(60, 114, 252, 0.4), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: shield-glow-pulse 3s ease-in-out infinite;
}
@keyframes shield-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes shield-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes shield-rotate-reverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
@keyframes shield-glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
@media (max-width: 991px) {
  .hero-shield-wrap { display: none; }
}

/* ───────── CTA Phone Button (secondary action) ───────── */
.ot-btn.btn-phone {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 18px 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ot-btn.btn-phone:hover {
  border-color: rgba(60, 114, 252, 0.6);
  background: rgba(60, 114, 252, 0.1) !important;
  color: #fff;
  transform: translateY(-3px);
}
.ot-btn.btn-phone i {
  background: linear-gradient(135deg, var(--theme-color, #3C72FC), var(--theme-color2, #E0009B));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
}

/* SCROLL SNAP DISABLED — caused empty space karena setiap section dipaksa 100vh.
   Halaman kembali ke natural section spacing dari theme. */


/* =================================================================
 * MERGE HERO + FEATURE SECTION (gabung visual, hilangkan gap besar)
 * Hero theme default punya padding-bottom: 500px yang bikin gap besar
 * sebelum feature cards. Persempit dan overlap feature cards ke hero.
 * ================================================================= */
.hero-style2 {
  padding-bottom: 240px !important; /* was 500px */
}
.feature-area-1 {
  margin-top: calc(-200px) !important; /* lift cards into hero */
  padding-top: 0 !important;
  position: relative;
  z-index: 3;
}
@media (max-width: 1399px) {
  .hero-style2 { padding-bottom: 200px !important; }
  .feature-area-1 { margin-top: -170px !important; }
}
@media (max-width: 1199px) {
  .hero-style2 { padding-bottom: 180px !important; }
  .feature-area-1 { margin-top: -160px !important; }
}
@media (max-width: 991px) {
  .hero-style2 { padding-bottom: 60px !important; padding-top: 100px !important; }
  .feature-area-1 { margin-top: -40px !important; padding-top: 30px !important; }
}
@media (max-width: 575px) {
  .hero-style2 { padding-bottom: 40px !important; padding-top: 80px !important; }
  .feature-area-1 { margin-top: 0 !important; padding-top: 20px !important; }
}


/* =================================================================
 * CLS PREVENTION — Reserve space untuk header, footer, & key sections
 * Prevents layout shift when content loads
 * ================================================================= */
/* Header & footer sekarang server-rendered (inline), tidak butuh placeholder reserve heights */
/* CLS-prevention reverted karena content-visibility & min-height yang aggressive justru cause CLS desktop 1.0+ */

/* =================================================================
 * A11Y: Improve color contrast (WCAG AA target 4.5:1)
 * Lebih aggressive: paksa text di dark bg jadi >= 4.5:1 ratio
 * ================================================================= */
:root {
  --body-color: #D0D0D0 !important;
  --light-color: #C0C0D0 !important;
}
.copyright-text, .copyright-text a, .copyright-text * {
  color: #C8C8C8 !important;
}
.line-btn,
.line-btn:link,
.line-btn:visited {
  color: #fff !important;
  border-color: rgba(255,255,255,0.5) !important;
}
.line-btn:hover, .line-btn:focus {
  background: #3C72FC !important;
  color: #fff !important;
}
ul.menu li, ul.menu li a,
.footer-widget li, .footer-widget li a,
.footer-widget p, .footer-widget .box-text,
.widget li {
  color: #D5D5D5 !important;
}
.footer-widget li a:hover { color: #fff !important; }
.box-text, .footer-text, .sec-text { color: #D0D0D0 !important; }
p { color: #D0D0D0 !important; }
.menu-style2 > li > a, .header-bottom .menu li a {
  color: #fff !important;
}

/* Even more contrast — force all body text to higher luminance */
li, ul li, ol li {
  color: #D5D5D5 !important;
}
.copyright-text a,
.copyright-text * {
  color: #E0E0E0 !important;
}
a.line-btn,
.line-btn {
  color: #FFFFFF !important;
  border-color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
}
.line-btn::before,
.line-btn::after {
  background-color: rgba(255,255,255,0.6) !important;
}
a:not(.ot-btn):not(.whatsapp-float) {
  color: #E5E5E5 !important;
}
a:not(.ot-btn):not(.whatsapp-float):hover {
  color: #FFFFFF !important;
}
.menu li a {
  color: #FFFFFF !important;
}

/* ───────── Respect reduced motion (accessibility) ───────── */
@media (prefers-reduced-motion: reduce) {
  .xaxe-cursor, .xaxe-trail-dot, .xaxe-particles, .xaxe-glow-orb { display: none !important; }
  .xaxe-float-wa { animation: none; }
  .xaxe-float-wa::before { display: none; }
  .hero-title .title1, .hero-title .title2 { animation: none; -webkit-text-fill-color: #fff; }
  .xaxe-marquee-track { animation: none; }
  [data-tilt], [data-magnetic] { transition: none; }
  .xaxe-reveal, .xaxe-reveal-scale, .xaxe-split-char {
    opacity: 1 !important;
    transform: none !important;
  }
}
