/* Solid Hex #F59E0B Button Styling (Maximum Specificity) */
a.btn-f59e0b-solid, 
button.btn-f59e0b-solid, 
.btn-f59e0b-solid,
a.btn-hex-f59e0b, 
button.btn-hex-f59e0b, 
.btn-hex-f59e0b {
  background: #F59E0B !important;
  background-color: #F59E0B !important;
  color: #0A1220 !important;
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
  border-radius: 9999px !important;
}

a.btn-f59e0b-solid:hover, 
button.btn-f59e0b-solid:hover, 
.btn-f59e0b-solid:hover,
a.btn-hex-f59e0b:hover, 
button.btn-hex-f59e0b:hover, 
.btn-hex-f59e0b:hover {
  background: #E08E09 !important;
  background-color: #E08E09 !important;
  color: #0A1220 !important;
  text-decoration: none !important;
}

a.btn-f59e0b-solid:active, 
button.btn-f59e0b-solid:active, 
.btn-f59e0b-solid:active,
a.btn-hex-f59e0b:active, 
button.btn-hex-f59e0b:active, 
.btn-hex-f59e0b:active {
  background: #D97706 !important;
  background-color: #D97706 !important;
  color: #0A1220 !important;
  text-decoration: none !important;
}

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.02em;
}

/* Custom Input Focus Ring */
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #0f766e !important;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15) !important;
}

/* Error Field Input Styling */
input.input-error, select.input-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}

/* Senior Accessible Contrast Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

/* --- ANIMATION UTILITIES --- */

/* Floating animation */
@keyframes floatAnim {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}
.animate-float {
  animation: floatAnim 4s ease-in-out infinite;
}

/* Scroll reveal fade-in-up effect */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover elevation card effects */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
}

/* FAQ Accordion Chevron Rotation */
.faq-icon.rotated {
  transform: rotate(180deg);
  color: #0f766e !important;
}

/* Smooth Fade-in animation */
.fade-in-animated {
  animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Back to Top Button styling */
#back-to-top {
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease;
  box-shadow: 0 4px 20px -2px rgba(13, 148, 136, 0.4);
}
#back-to-top.visible {
  opacity: 1 !important;
  pointer-events: auto !important;
}
