@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy-blue: #0A192F;
  --navy-blue-light: #112240;
  --electric-orange: #FF6B00;
  --electric-orange-hover: #E66000;
  --text-light: #E6F1FF;
  --text-muted: #8892B0;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--navy-blue);
  color: var(--text-light);
  overflow-x: hidden;
}

/* Glassmorphism Utilities */
.glass {
  background: rgba(17, 34, 64, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px 0 rgba(2, 12, 27, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: rgba(17, 34, 64, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-card:hover {
  transform: translateY(-6px);
  background: rgba(17, 34, 64, 0.8);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 20px 40px -15px rgba(2, 12, 27, 0.85), 0 0 20px 0 rgba(255, 107, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* 3D Background Container */
.spline-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  opacity: 0.8;
}

.spline-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--navy-blue) 100%);
  pointer-events: none;
}

/* Form Elements */
.input-field {
  width: 100%;
  background: rgba(10, 25, 47, 0.5);
  border: 1px solid rgba(136, 146, 176, 0.2);
  color: var(--text-light);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  outline: none;
  transition: all 0.3s ease;
}

.input-field:focus {
  border-color: var(--electric-orange);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric-orange) 0%, #FF8C00 100%);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

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

.accordion-toggle:checked ~ .accordion-content {
  max-height: 500px;
}

.accordion-toggle:checked ~ .accordion-label .icon-plus {
  transform: rotate(45deg);
}

/* Hide scrollbar for clean UI */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy-blue);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-blue-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Premium Orange Glass Card for Key Benefits Grid */
.orange-pop-card {
  background: rgba(255, 107, 0, 0.15); /* More vibrant, richer orange glass tint */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(255, 107, 0, 0.4); /* Thicker 2px bright glowing orange border */
  box-shadow: 0 12px 35px -12px rgba(2, 12, 27, 0.8), 0 0 20px 0 rgba(255, 107, 0, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.orange-pop-card h3 {
  color: #FFFFFF !important; /* Pure white title text */
}

.orange-pop-card p {
  color: #E2E8F0 !important; /* Lighter slate-white description text for extreme legibility */
}

.orange-pop-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 107, 0, 0.22); /* Intense glowing orange glass on hover */
  border-color: rgba(255, 107, 0, 0.75);
  box-shadow: 0 24px 48px -18px rgba(2, 12, 27, 0.9), 0 0 30px 0 rgba(255, 107, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
