/* ==========================================================================
   VOLANT NEXUS - PAGE-SPECIFIC & COMPONENT STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HOME PAGE STYLES (index.html)
   -------------------------------------------------------------------------- */

/* Hero 80vh Full-Width Background & Glassmorphism Cards */
.hero-home-fullscreen {
  position: relative;
  height: 80vh;
  min-height: 620px;
  width: 100%;
  background: #090B0E;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Rotative Hero Background Slides - 100% Fail-Safe Opacity Transitions */
.hero-slide-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out !important;
  z-index: 1;
}

.hero-slide-bg.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
}

/* Content Wrap Always on Top of Background Slides */
.hero-content-wrap {
  position: relative !important;
  z-index: 10 !important;
  width: 100% !important;
}

/* Crisp Black Text Enforcement across Hero Section */
.hero-home-fullscreen .hero-title {
  color: #090B0E !important;
  text-shadow: none !important;
  font-weight: 900 !important;
}

.hero-home-fullscreen .hero-subtitle {
  color: #374151 !important;
  text-shadow: none !important;
  font-weight: 500 !important;
}

.hero-home-fullscreen .subheading-tag {
  color: #6DA00A !important;
  font-weight: 800 !important;
}

.hero-home-fullscreen .btn-outline-white {
  border: 1.5px solid #090B0E !important;
  color: #090B0E !important;
  background: rgba(255, 255, 255, 0.85) !important;
  transition: all 0.3s ease !important;
}

.hero-home-fullscreen .btn-outline-white:hover {
  background: #090B0E !important;
  color: #FFFFFF !important;
}

/* 5 Floating Cards Optimization - Luxury Frosted Glassmorphism Style */
.hero-glass-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.8) !important;
  border-radius: var(--radius-md, 14px) !important;
  padding: 1.35rem 1.15rem !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.hero-glass-card:hover {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: #83BE0D !important;
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 45px rgba(131, 190, 13, 0.25), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.hero-glass-card .glass-card-title {
  color: #090B0E !important; /* Crisp Deep Black Title */
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  margin-bottom: 0.35rem !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
}

.hero-glass-card .glass-card-desc {
  color: #374151 !important; /* High Contrast Dark Slate Body Text */
  font-size: 0.82rem !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

.hero-glass-card .glass-card-icon {
  color: #83BE0D !important;
  background: rgba(131, 190, 13, 0.18) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 0.75rem !important;
  font-size: 1.15rem !important;
  border: 1px solid rgba(131, 190, 13, 0.35) !important;
}

/* Hero Content Layout - Pinned & Bottom-Aligned 5 Cards Bar */
.hero-content-wrap {
  position: relative !important;
  z-index: 10 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  padding-top: 5rem !important;
  padding-bottom: 1.5rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.hero-header-text {
  margin-top: 1rem !important;
}

.hero-glass-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1.25rem !important;
  margin-top: auto !important; /* Force cards to pin flush to the bottom */
  margin-bottom: 0 !important;
}

/* ==========================================================================
   HERO SECTION TYPOGRAPHY, SLIDER DOTS & HIGH-CONTRAST LAYOUT
   ========================================================================== */
.hero-home-fullscreen {
  position: relative;
  height: 85vh;
  min-height: 680px;
  width: 100%;
  background: #FFFFFF !important;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Slide Images with Pre-cached Transitions */
.hero-slide-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 1;
}

.hero-slide-bg.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Content Container & Text Spacing */
.hero-content-wrap {
  position: relative !important;
  z-index: 10 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  padding-top: 4.5rem !important;
  padding-bottom: 2rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.hero-header-text {
  max-width: 850px !important;
  margin-top: 1rem !important;
}

.hero-header-text .subheading-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #6DA00A !important;
  margin-bottom: 0.85rem !important;
}

.hero-header-text .hero-title {
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
  color: #090B0E !important;
  margin-bottom: 1.25rem !important;
  text-shadow: none !important;
}

.hero-header-text .hero-subtitle {
  font-size: 1.12rem !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  color: #4B5563 !important;
  margin-bottom: 2.25rem !important;
  max-width: 720px !important;
  text-shadow: none !important;
}

.hero-btns {
  display: flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
}

.hero-btns .btn-primary {
  background: #83BE0D !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  padding: 0.85rem 1.85rem !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 25px rgba(131, 190, 13, 0.35) !important;
}

.hero-btns .btn-outline-white {
  border: 1.5px solid #090B0E !important;
  color: #090B0E !important;
  background: rgba(255, 255, 255, 0.85) !important;
  font-weight: 800 !important;
  padding: 0.85rem 1.85rem !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
}

.hero-btns .btn-outline-white:hover {
  background: #090B0E !important;
  color: #FFFFFF !important;
}

/* 5 Cards Bar Anchored at Bottom */
.hero-glass-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1.25rem !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
}

/* Interactive Hero Slider Navigation Dots */
.hero-slider-nav {
  position: absolute !important;
  top: 4.5rem !important;
  right: 3rem !important;
  z-index: 15 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: 99px !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.hero-slider-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #CBD5E1 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: none !important;
  padding: 0 !important;
}

.hero-slider-dot.active {
  width: 28px !important;
  border-radius: 99px !important;
  background: #83BE0D !important;
}

/* ==========================================================================
   ROCK-SOLID HERO & CATEGORY SHOWCASE LAYOUT (ZERO OVERLAP)
   ========================================================================== */
.hero-home-fullscreen {
  position: relative !important;
  min-height: 720px !important;
  padding-top: 5rem !important;
  padding-bottom: 3rem !important;
  width: 100% !important;
  background: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.hero-slide-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out !important;
  z-index: 1 !important;
}

.hero-slide-bg.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
}

.hero-content-wrap {
  position: relative !important;
  z-index: 10 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
}

.hero-header-text {
  max-width: 820px !important;
  margin-bottom: 2.5rem !important;
}

.hero-header-text .subheading-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #6DA00A !important;
  margin-bottom: 0.85rem !important;
}

.hero-header-text .hero-title {
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
  color: #090B0E !important;
  margin-bottom: 1.25rem !important;
  text-shadow: none !important;
}

.hero-header-text .hero-subtitle {
  font-size: 1.12rem !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  color: #4B5563 !important;
  margin-bottom: 2.25rem !important;
  max-width: 720px !important;
  text-shadow: none !important;
}

.hero-btns {
  display: flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
}

.hero-glass-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1.25rem !important;
  width: 100% !important;
  margin-top: 1rem !important;
}

/* Category Showcase Section Layout Clean Isolation */
.category-showcase-section {
  position: relative !important;
  z-index: 5 !important;
  background: #FFFFFF !important;
  clear: both !important;
}

.category-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem !important;
  margin-top: 2rem !important;
}

/* ==========================================================================
   STRICT CATEGORY CARD IMAGE BOUNDS & LAYOUT ISOLATION (PREVENT OVERFLOW)
   ========================================================================== */
.category-card-white {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s ease !important;
}

.category-thumb-wrap {
  position: relative !important;
  width: 100% !important;
  height: 260px !important;
  max-height: 260px !important;
  overflow: hidden !important;
  background: #F8FAFC !important;
}

.category-thumb-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-height: 260px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.5s ease !important;
}

.category-card-white:hover .category-thumb-wrap img {
  transform: scale(1.05) !important;
}

.category-body-white {
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.category-title-white {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #090B0E !important;
  margin-bottom: 0.5rem !important;
}

.category-desc-white {
  font-size: 0.9rem !important;
  color: #4B5563 !important;
  line-height: 1.5 !important;
  margin-bottom: 1.25rem !important;
}

.category-footer-white {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: auto !important;
  padding-top: 1rem !important;
  border-top: 1px solid #F1F5F9 !important;
}

.category-spec-pill-white {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #6DA00A !important;
  background: rgba(131, 190, 13, 0.1) !important;
  padding: 0.35rem 0.75rem !important;
  border-radius: 99px !important;
}

.category-link-white {
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  color: #090B0E !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
}