/* ========================================
   XONIX - Custom CSS with Neural Glass Design
   ======================================== */

:root {
  /* Primary Colors */
  --xonix-blue: #009eff;
  --xonix-blue-rgb: 0, 158, 255;
  --xonix-blue-soft: rgba(0, 158, 255, 0.3);
  --xonix-blue-glow: rgba(0, 158, 255, 0.8);
  --xonix-blue-subtle: rgba(0, 158, 255, 0.1);

  --xonix-orange: #f7931e;
  --xonix-orange-rgb: 247, 147, 30;
  --xonix-orange-soft: rgba(247, 147, 30, 0.3);
  --xonix-orange-glow: rgba(247, 147, 30, 0.8);

  /* Background Colors - Dark Theme */
  --xonix-slate: #002429;
  --xonix-dark: #001a1f;
  --xonix-darker: #000d10;

  /* Dark Color Variants */
  --dark-24: rgba(0, 36, 41, 0.95);
  --dark-26: rgba(0, 26, 31, 0.98);
  --dark-13: rgba(0, 13, 16, 1);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-normal: 0.5s ease;
  --transition-slow: 0.8s ease;
}

/* ========================================
   Base Styles
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: linear-gradient(
    135deg,
    var(--xonix-slate) 0%,
    var(--xonix-dark) 50%,
    var(--xonix-slate) 100%
  );
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(0, 158, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 158, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

/* ========================================
   Typography
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

p {
  line-height: 1.6;
  color: #d1d5db;
}

a {
  color: var(--xonix-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--xonix-orange);
}

/* ========================================
   Color Classes
   ======================================== */

.text-xonix-blue {
  color: var(--xonix-blue);
  text-shadow: 0 0 20px var(--xonix-blue-glow);
  animation: neural-glow 2s ease-in-out infinite;
}

.text-xonix-orange {
  color: var(--xonix-orange);
  text-shadow: 0 0 15px var(--xonix-orange-glow);
  animation: orange-glow 2s ease-in-out infinite;
}

.bg-xonix-blue {
  background-color: var(--xonix-blue);
}

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--xonix-blue) 0%,
    var(--xonix-orange) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.gradient-text-glow {
  background: linear-gradient(
    90deg,
    var(--xonix-blue) 0%,
    var(--xonix-orange) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(0, 158, 255, 0.4))
    drop-shadow(0 0 20px rgba(247, 147, 30, 0.2));
}

.bg-xonix-orange {
  background-color: var(--xonix-orange);
}

.text-light {
  color: #f3f4f6 !important;
}

.gradient-text {
  background: linear-gradient(90deg, var(--xonix-blue), var(--xonix-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Glass Morphism
   ======================================== */

.glass-morphism {
  background: linear-gradient(
    135deg,
    rgba(0, 158, 255, 0.12) 0%,
    rgba(0, 158, 255, 0.08) 25%,
    rgba(247, 147, 30, 0.06) 50%,
    rgba(0, 158, 255, 0.08) 75%,
    rgba(0, 36, 41, 0.9) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 158, 255, 0.3);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 36, 41, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 20px rgba(0, 158, 255, 0.1);
  transition: all var(--transition-normal);
}

.glass-morphism:hover {
  border-color: rgba(247, 147, 30, 0.6);
  box-shadow: 0 12px 40px rgba(0, 158, 255, 0.2),
    0 0 35px rgba(247, 147, 30, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  transition: all var(--transition-fast);
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--xonix-blue);
  border-color: var(--xonix-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: #0075cc;
  border-color: #0075cc;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 158, 255, 0.3),
    0 0 20px var(--xonix-blue-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--xonix-orange);
  color: var(--xonix-orange);
}

.btn-secondary:hover {
  background: var(--xonix-orange);
  color: #fff;
  box-shadow: 0 10px 25px rgba(247, 147, 30, 0.3);
}

.btn-play {
  background: transparent;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-play:hover {
  color: var(--xonix-orange);
}

.play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 158, 255, 0.1);
  border: 2px solid rgba(0, 158, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: 0.75rem;
  margin-left: 4px;
}

.btn-play:hover .play-icon {
  background: rgba(247, 147, 30, 0.2);
  border-color: rgba(247, 147, 30, 0.6);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 158, 255, 0.3);
}

/* ========================================
   Navbar
   ======================================== */

.navbar-section {
  background: transparent !important;
  transition: all var(--transition-normal);
  z-index: 1030;
}

.navbar-section.scrolled {
  background: linear-gradient(
    135deg,
    var(--xonix-slate) 0%,
    var(--xonix-dark) 100%
  ) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 158, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-custom {
  padding: 1rem 0;
}

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
}

.logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--xonix-blue-glow));
  transition: all var(--transition-fast);
}

.logo-img:hover {
  filter: drop-shadow(0 0 20px var(--xonix-blue-glow))
    drop-shadow(0 0 30px var(--xonix-blue-soft));
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--xonix-orange) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--xonix-orange);
  transition: width var(--transition-fast);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.dropdown-menu-custom {
  background: linear-gradient(
    135deg,
    rgba(0, 36, 41, 0.95),
    rgba(0, 26, 31, 0.98)
  );
  border: 1px solid rgba(0, 158, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
}

.dropdown-menu-custom .dropdown-item {
  color: #fff;
  transition: all var(--transition-fast);
}

.dropdown-menu-custom .dropdown-item:hover {
  background: rgba(0, 158, 255, 0.1);
  color: var(--xonix-orange);
}

.btn-mobile-menu {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 158, 255, 0.25);
}

/* ========================================
   Offcanvas Mobile Menu
   ======================================== */

.mobile-menu {
  background: linear-gradient(
    135deg,
    var(--xonix-slate) 0%,
    var(--xonix-dark) 100%
  ) !important;
  backdrop-filter: blur(20px);
}

.mobile-menu .offcanvas-header {
  border-bottom: 1px solid rgba(0, 158, 255, 0.2);
}

.mobile-menu .nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.mobile-menu .nav-link:hover {
  color: var(--xonix-orange) !important;
  padding-left: 1.5rem;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 158, 255, 0.15);
  top: 25%;
  left: 25%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(247, 147, 30, 0.15);
  bottom: 25%;
  right: 25%;
  animation-delay: 1s;
}

.neural-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(0, 158, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 158, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.neural-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.neural-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(
    circle,
    rgba(0, 158, 255, 0.8) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: energy-wave 6s linear infinite;
}

.neural-particle:nth-child(even) {
  background: radial-gradient(
    circle,
    rgba(247, 147, 30, 0.8) 0%,
    transparent 70%
  );
  animation-delay: -2s;
}

.hero-content {
  position: relative;
  z-index: 20;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.glass-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    rgba(0, 158, 255, 0.1),
    rgba(247, 147, 30, 0.05)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 158, 255, 0.3);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 36, 41, 0.3);
  max-width: 400px;
  animation: float 3s ease-in-out infinite;
}

.hero-heading {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subheading {
  font-size: 1.75rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.cursor-blink {
  display: inline-block;
  color: var(--xonix-blue);
  animation: blink 1s infinite;
  font-weight: bold;
}

.hero-description {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Sections
   ======================================== */

.section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 36, 41, 0.95) 0%,
    rgba(0, 26, 31, 0.98) 30%,
    rgba(0, 13, 16, 1) 50%,
    rgba(0, 26, 31, 0.98) 70%,
    rgba(0, 36, 41, 0.95) 100%
  );
}

.section-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(0, 158, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(247, 147, 30, 0.06) 0%,
      transparent 50%
    );
  opacity: 1;
}

.section > .container-custom {
  position: relative;
  z-index: 10;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    rgba(0, 158, 255, 0.1),
    rgba(247, 147, 30, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 158, 255, 0.3);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--xonix-blue);
}

.section-heading {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Products Section
   ======================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-overview-card {
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: 1rem;
}

.product-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 158, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 158, 255, 0.2);
}

.product-overview-card.active {
  border-color: var(--xonix-blue);
  box-shadow: 0 10px 30px rgba(0, 158, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(0, 158, 255, 0.15) 0%,
    rgba(247, 147, 30, 0.1) 100%
  );
}

.product-detail-card {
  border-radius: 1.5rem;
  min-height: 500px;
  transition: all var(--transition-normal);
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-icon-large {
  width: 70px;
  height: 70px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item {
  color: #d1d5db;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}

.feature-item i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-card {
  border-radius: 0.75rem;
  transition: all var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 158, 255, 0.15);
}

.metric-card {
  padding: 0.5rem;
}

.metric-value {
  font-size: 1.75rem;
}

.metric-label {
  font-size: 0.8rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cursor-pointer {
  cursor: pointer;
}

.product-card {
  padding: 2rem;
  border-radius: 1.25rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 158, 255, 0.1),
    transparent
  );
  transition: left var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.product-card:hover::before {
  left: 100%;
}

.product-icon {
  width: 60px;
  height: 60px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-subtitle {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #9ca3af;
}

.product-description {
  color: #d1d5db;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-list i {
  flex-shrink: 0;
  font-size: 1rem;
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 158, 255, 0.2);
  margin-top: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--xonix-blue);
}

.stat-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   Services Section
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  padding: 1.75rem;
  border-radius: 1rem;
  transition: all var(--transition-normal);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 158, 255, 0.15);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
}

.service-features li {
  padding: 0.25rem 0;
  color: #d1d5db;
}

/* ========================================
   About Section
   ======================================== */

.about-features {
  margin: 2rem 0;
}

.feature-box {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
}

.feature-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
}

.feature-box h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-box p {
  font-size: 0.9rem;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 158, 255, 0.15),
    rgba(247, 147, 30, 0.1)
  );
  color: var(--xonix-blue);
}

.stat-card .stat-value {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: #9ca3af;
}

/* ========================================
   Contact Section
   ======================================== */

.contact-info {
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all var(--transition-normal);
}

.contact-info:hover {
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 2rem;
  color: var(--xonix-blue);
  margin-bottom: 1rem;
}

.contact-info h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.form-control-custom {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 158, 255, 0.3);
  color: #fff;
  border-radius: 0.5rem;
  transition: all var(--transition-fast);
}

.form-control-custom:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--xonix-blue);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(0, 158, 255, 0.25);
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-label {
  font-weight: 500;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* ========================================
   Footer
   ======================================== */

.footer-section {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(0, 36, 41, 0.98) 0%,
    rgba(0, 26, 31, 1) 30%,
    rgba(0, 13, 16, 1) 50%,
    rgba(0, 26, 31, 1) 70%,
    rgba(0, 36, 41, 0.98) 100%
  );
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}

.footer-section > .container-custom {
  position: relative;
  z-index: 10;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--xonix-blue-glow));
}

.footer-contact {
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #d1d5db;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--xonix-orange);
}

.social-links {
  font-size: 1.25rem;
}

.social-links a {
  color: #fff;
  transition: all var(--transition-fast);
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 158, 255, 0.1);
}

.social-links a:hover {
  background: rgba(0, 158, 255, 0.3);
  color: var(--xonix-orange);
}

/* ========================================
   Form Status
   ======================================== */

.form-status-success {
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-status-error {
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ========================================
   Scrollbar
   ======================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--xonix-slate);
}

::-webkit-scrollbar-thumb {
  background: var(--xonix-blue);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--xonix-orange);
}

/* ========================================
   Smooth Scroll Links
   ======================================== */

.smooth-scroll {
  cursor: pointer;
}

/* ========================================
   Modal Enhancements
   ======================================== */

.modal-content {
  border: 1px solid rgba(0, 158, 255, 0.3);
}

.modal-header {
  border-bottom-color: rgba(0, 158, 255, 0.2);
}

.btn-close-white {
  filter: brightness(1.2);
}

.btn-close-white:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 158, 255, 0.25);
}
