/* ==========================================================================
   Fortitude Transform CBO - Unified Global & Page-Specific Styling
   ========================================================================== */

:root {
  /* Redkits warm red-pink palette */
  --accent: #e8295b;         /* Redkits primary crimson-pink */
  --accent-light: #f05078;   /* Lighter warm rose */
  --accent-dark: #c01e48;    /* Deep crimson for hover */
  --accent-strong: #ff3366;  /* Vibrant hot pink-red */
  --accent-gradient: linear-gradient(135deg, #e8295b 0%, #ff6b9d 50%, #c01e48 100%);
  --muted: #6b7280;          /* Gray-500 */
  --glass: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 8px 32px 0 rgba(232, 41, 91, 0.06);
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --card-shadow: 0 12px 40px rgba(232, 41, 91, 0.05);
  --card-shadow-hover: 0 20px 48px rgba(232, 41, 91, 0.10);
  /* Sidebar */
  --sidebar-width: 280px;
  --sidebar-bg: rgba(15, 10, 20, 0.96);
}

/* Custom Scrollbar for Modern Browsers */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: var(--accent-light);
  border-radius: 4px;
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --------------------------------------------------------------------------
   Base Styles & Overrides
   -------------------------------------------------------------------------- */
html,
body,
h1, h2, h3, h4, h5, h6,
button, input, select, textarea {
  font-family: 'Montserrat', 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif !important;
}

html,
body {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

a {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accessibility Focus States */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0;
  transform: translateY(-120%);
  background: #111;
  color: #fff;
  padding: 0.4rem 0.6rem;
  border-radius: 0.3rem;
  z-index: 70;
  transition: transform 0.3s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  background-color: var(--glass);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
  position: relative;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header .nav-link {
  color: #374151; /* tailwind gray-700 */
  font-weight: 600;
  position: relative;
  transition: color 0.15s ease, transform 0.12s ease;
}

.site-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  width: 100%;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Mobile Navigation Menu (Morphing X & Hamburger)
   -------------------------------------------------------------------------- */
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.12s ease;
}

.menu-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}

.menu-btn .hamburger,
.menu-btn .hamburger::before,
.menu-btn .hamburger::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1), background-color 0.18s ease;
}

.menu-btn .hamburger {
  position: relative;
}

.menu-btn .hamburger::before,
.menu-btn .hamburger::after {
  position: absolute;
  left: 0;
}

.menu-btn .hamburger::before { top: -7px; }
.menu-btn .hamburger::after { top: 7px; }

/* When menu is active, morph to "X" */
.menu-btn.menu-open .hamburger {
  background-color: transparent !important;
}

.menu-btn.menu-open .hamburger::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.menu-open .hamburger::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
/* --------------------------------------------------------------------------
   Mobile Sidebar Navigation (slides in from the right)
   -------------------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s ease, opacity 0.4s ease;
}

.menu-visible .mobile-menu {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

/* Dark overlay backdrop */
.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 15, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.menu-visible .mobile-overlay {
  opacity: 1;
}

/* Sidebar panel */
.mobile-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--sidebar-width);
  max-width: 85vw;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.35);
  border-left: 1px solid rgba(232, 41, 91, 0.2);
  overflow-y: auto;
}

.menu-visible .mobile-sidebar {
  transform: translateX(0);
}

/* Sidebar header with logo */
.mobile-sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

/* Sidebar nav links */
.mobile-sidebar-nav {
  flex: 1;
  padding: 1rem 0;
}

.mobile-sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateX(24px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 3px solid transparent;
  text-decoration: none;
}

.menu-visible .mobile-sidebar-nav .nav-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-sidebar-nav .nav-link i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

.mobile-sidebar-nav .nav-link span {
  flex: 1;
}

.mobile-sidebar-nav .nav-link:hover,
.mobile-sidebar-nav .nav-link.active {
  color: white;
  background: rgba(232, 41, 91, 0.15);
  border-left-color: var(--accent);
}

.mobile-sidebar-nav .nav-link:hover i,
.mobile-sidebar-nav .nav-link.active i {
  color: var(--accent);
}

/* Staggered slide-in delays */
.mobile-sidebar-nav .nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-sidebar-nav .nav-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-sidebar-nav .nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-sidebar-nav .nav-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-sidebar-nav .nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-sidebar-nav .nav-link:nth-child(6) { transition-delay: 0.30s; }

/* Sidebar footer with donate button */
.mobile-sidebar-footer {
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hide mobile controls on desktop */
@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   Hero & Sliders
   -------------------------------------------------------------------------- */
.hero {
  background-size: cover;
  background-position: center;
  transition: background-image 1.5s ease-in-out;
  position: relative;
  overflow: hidden;
}

.hero .hero-inner {
  max-width: 58rem;
}

.hero h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
}

.hero p.lead {
  opacity: 0.92;
  color: #f8fafc;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.20);
}

/* --------------------------------------------------------------------------
   Colors & Utility Classes
   -------------------------------------------------------------------------- */
.bg-pink-accent {
  background-color: var(--accent);
}

.text-pink-accent {
  color: var(--accent);
}

.hover\:bg-pink-accent:hover {
  background-color: var(--accent-dark);
}

/* --------------------------------------------------------------------------
   Premium Cards & Layouts
   -------------------------------------------------------------------------- */
.card {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(255, 105, 180, 0.15);
}

/* Contact Specific Cards */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: var(--card-shadow);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(255, 105, 180, 0.15);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f3f4f6;
  color: #4b5563;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* Value Cards (About Page) */
.values-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  border-radius: 0.8rem;
  padding: 1.25rem;
  color: white;
  min-height: 120px;
  box-shadow: var(--card-shadow);
  transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.value-card .icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.value-card .label {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Value Gradients */
.value-love { background: linear-gradient(135deg, #ff4da6, #ff7ab6); }
.value-honesty { background: linear-gradient(135deg, #4d94ff, #7ab6ff); }
.value-transparency { background: linear-gradient(135deg, #4dd4ff, #7ae6ff); }
.value-accountability { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.value-integrity { background: linear-gradient(135deg, #b84dff, #d47aff); }
.value-dignity { background: linear-gradient(135deg, #ffb84d, #ffd47a); }

/* Program Cards (Programs Page) */
.program-card {
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

.progress-bar {
  height: 8px;
  border-radius: 4px;
  background-color: #e5e7eb;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.stat-number {
  font-variant-numeric: tabular-nums;
}

.core-value {
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.core-value:hover {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   Forms & Interaction Elements
   -------------------------------------------------------------------------- */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: all 0.2s ease;
  background-color: #f9fafb;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
  background-color: white;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.field-help {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255, 77, 166, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(255, 77, 166, 0.35);
}

.btn-secondary {
  background: white;
  color: #374151;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-weight: 500;
  border: 1.5px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: var(--accent-light);
  color: var(--accent-dark);
  transform: translateY(-2px);
}

.donate-btn {
  background: var(--accent-gradient);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(255, 77, 166, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.donate-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-light), var(--accent-strong));
  transition: left 0.4s ease;
  z-index: -1;
}

.donate-btn:hover::before {
  left: 0;
}

.donate-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 30px rgba(255, 77, 166, 0.22);
}

/* CTA Styles */
.cta .btn-group {
  justify-content: center;
}

.cta .btn-secondary {
  color: white;
  border-color: white;
}

/* Form status messages */
#form-status {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

#form-status.success {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

#form-status.error {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* --------------------------------------------------------------------------
   WhatsApp Floating Button & Pulsing
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.18);
  z-index: 60;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.22);
}

.whatsapp-pulse {
  animation: whatsapp-pulse 2.6s infinite;
  border-radius: 9999px;
  position: absolute;
  width: 56px;
  height: 56px;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(37, 211, 102, 0.14);
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  60% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Animations & Transitions
   -------------------------------------------------------------------------- */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.fade-in-section.is-visible,
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

.fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  opacity: 0;
}

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

/* --------------------------------------------------------------------------
   Ultra-Stylish Modern Animated Footer (Pink/Plum color blend)
   -------------------------------------------------------------------------- */
.site-footer {
  background: linear-gradient(135deg, #2b001a 0%, #11000b 100%);
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #ff4da6, #ff85c2, #701a75) 1;
}

/* Subtle background dynamic abstract light */
.site-footer::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 77, 166, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.site-footer .footer-container {
  position: relative;
  z-index: 1;
}

.site-footer h3 {
  position: relative;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Elegant bottom accent line under footer headings */
.site-footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.site-footer h3:hover::after {
  width: 70px;
}

/* Elegant Link Hover Underlines and Motion */
.site-footer .footer-link {
  color: rgba(255, 240, 245, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.site-footer .footer-link i {
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.site-footer .footer-link:hover {
  color: #ffb3d9;
  transform: translateX(6px);
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.site-footer .footer-link:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Glassmorphic Animated Social Buttons */
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social-btn:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 8px 20px rgba(255, 77, 166, 0.4);
  color: white !important;
}

/* Bottom Copy Credits and Links */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  transition: all 0.2s ease;
}

.footer-bottom a:hover {
  text-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
}

/* Footer override link styles */
.footer-bottom a.skopedesigns {
  color: var(--accent);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Utility: Hover Lift Effect (used on team & feature cards)
   -------------------------------------------------------------------------- */
.hover-up {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hover-up:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(255, 77, 166, 0.12);
}

/* --------------------------------------------------------------------------
   Reduced Motion Accessibility Rules
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero,
  .value-card,
  .program-card,
  .btn-primary,
  .contact-card,
  .card,
  .whatsapp-float {
    transition: none !important;
    transform: none !important;
  }
  .whatsapp-pulse {
    animation: none !important;
  }
  .animate__animated {
    animation: none !important;
  }
  .fade-in-section {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   Form Select & Option Reset — prevents Tailwind color inheritance bleed
   -------------------------------------------------------------------------- */
select.form-input {
  color: #1f2937;
  background-color: #ffffff;
  appearance: auto;
}

select.form-input option {
  color: #1f2937 !important;
  background-color: #ffffff !important;
  font-weight: 400;
}

select.form-input option:disabled {
  color: #9ca3af !important;
}
