/* ==========================================
   ARAVAA GLOBAL - STATIC NO-ANIMATION CSS
   All animations and transitions removed
   ========================================== */

/* Page Load State - Remove transitions, ensure content visible */
body {
  opacity: 1;
  transform: none;
}

body.page-exiting {
  opacity: 1;
  transform: none;
}

/* Header - Remove animation, keep scrolled visual state only */
.site-header {
  transform: none;
  transition: none;
  will-change: auto;
}

.site-header.header-scrolled {
  background-color: rgba(3, 12, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.22);
}

/* Nav Link - Keep underline on hover, no animation */
.nav-link {
  position: relative;
  transition: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
  display: none;
}

.nav-link:hover::after,
.nav-link.active::after {
  display: block;
}

/* Card Hover - Remove transitions, keep transform states for :hover */
.product-card,
.industry-card,
.why-card,
.pipeline-card,
.trust-card,
.mv-card,
.lab-card,
.qc-card,
.legacy-image-wrap,
.form-card,
.contact-info-card {
  will-change: auto;
  transition: none;
}

.product-card img,
.industry-card img,
.why-card img,
.lab-card img,
.legacy-image-wrap img,
.industries-hero-media img {
  transition: none;
  will-change: auto;
}

.product-card:hover img,
.industry-card:hover img,
.why-card:hover img,
.lab-card:hover img,
.legacy-image-wrap:hover img {
  transform: scale(1.045);
}

/* Button - Keep hover scale, no animation */
.btn {
  transition: none;
  will-change: auto;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

/* Accessibility: Reduced Motion - Keep overrides */
@media (prefers-reduced-motion: reduce) {
  body {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .site-header {
    transform: none !important;
    transition: none !important;
  }

  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
