/* Professional Passport Fortis - Main Styles */
/* Brand Colors: Orange, Black, Cream */

:root {
  /* Fortis Brand Colors - Orange */
  --fortis-50: #fff7ed;
  --fortis-100: #ffedd5;
  --fortis-200: #fed7aa;
  --fortis-300: #fdba74;
  --fortis-400: #fb923c;
  --fortis-500: #f97316;
  --fortis-600: #ea580c;
  --fortis-700: #c2410c;
  --fortis-800: #9a3412;
  --fortis-900: #7c2d12;
  --fortis-950: #431407;

  /* Neutral/Sand colors */
  --sand-50: #faf8f5;
  --sand-100: #f5f0e8;
  --sand-200: #e8dfd0;
  --sand-300: #d4c5ad;
  --sand-400: #bfa789;
  --sand-500: #a38a6a;

  /* Dark colors - Dark Sand/Warm Brown */
  --dark-900: #3d362d;
  --dark-800: #4a4238;
  --dark-700: #5c5347;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
}

/* Noise Texture Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.015;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Gradient Mesh Background */
.gradient-mesh {
  background:
    radial-gradient(at 40% 20%, rgba(249, 115, 22, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(251, 146, 60, 0.05) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(234, 88, 12, 0.05) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(212, 197, 173, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(249, 115, 22, 0.08) 0px, transparent 50%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #faf8f5;
}

::-webkit-scrollbar-thumb {
  background: #f97316;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ea580c;
}

/* Animation Keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Animation Classes */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 6s ease-in-out infinite 2s;
}

.animate-float-slow {
  animation: float 8s ease-in-out infinite;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

.animate-pulse-slow {
  animation: pulse-slow 4s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

.animate-gradient {
  animation: gradient 8s ease infinite;
}

/* Stagger Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Hero Section */
.hero-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 5rem 0;
  }
}

/* Ecosystem Diagram */
.ecosystem-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.ecosystem-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--fortis-500);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
  z-index: 10;
}

.ecosystem-center svg {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
}

.ecosystem-center span {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Outfit', system-ui, sans-serif;
}

.ecosystem-node {
  position: absolute;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.ecosystem-node:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ecosystem-node img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 6px;
}

.ecosystem-node-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: #3d362d;
  text-align: center;
  line-height: 1.2;
  font-family: 'Outfit', system-ui, sans-serif;
}

.ecosystem-node-badge {
  font-size: 0.6rem;
  padding: 2px 8px;
  background: var(--fortis-100);
  color: var(--fortis-700);
  border-radius: 9999px;
  margin-top: 4px;
}

.ecosystem-node-top {
  top: 0;
  right: 15%;
}

.ecosystem-node-right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.ecosystem-node-bottom {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.ecosystem-node-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.ecosystem-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, var(--fortis-300), var(--fortis-200));
  transform-origin: left center;
  z-index: 1;
}

.ecosystem-line-top {
  transform: rotate(-45deg);
}

.ecosystem-line-right {
  transform: rotate(0deg);
}

.ecosystem-line-bottom {
  transform: rotate(90deg);
}

.ecosystem-line-left {
  transform: rotate(180deg);
}

.hero-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(48px);
}

.hero-orb-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(249, 115, 22, 0.1);
}

.hero-orb-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(251, 146, 60, 0.1);
  animation-delay: -3s;
}

.hero-orb-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background-color: rgba(212, 197, 173, 0.1);
  filter: blur(64px);
}

/* Grid Pattern */
.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(249, 115, 22, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 1) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Animated Rings */
.ring {
  position: absolute;
  border-radius: 9999px;
  border: 1px solid;
}

.ring-1 {
  width: 20rem;
  height: 20rem;
  border-color: rgba(254, 215, 170, 0.3);
}

.ring-2 {
  width: 16rem;
  height: 16rem;
  border-color: rgba(253, 186, 116, 0.3);
  animation-delay: 1s;
}

.ring-3 {
  width: 12rem;
  height: 12rem;
  border-color: rgba(251, 146, 60, 0.3);
  animation-delay: 2s;
}

/* Feature Cards */
.feature-card {
  position: relative;
  background: var(--sand-100);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.feature-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
}

.feature-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--fortis-50), transparent);
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover .feature-card-gradient {
  opacity: 1;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--fortis-100);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--fortis-500);
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--fortis-600);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  color: white;
}

/* Dark Feature Cards (For Umbrellas section) */
.feature-card-dark {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(64, 64, 64, 0.5);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.5s ease;
}

.feature-card-dark:hover {
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-0.5rem);
}

.feature-icon-dark {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(249, 115, 22, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.feature-card-dark:hover .feature-icon-dark {
  background-color: rgba(249, 115, 22, 0.3);
}

/* Step Numbers */
.step-number {
  width: 4rem;
  height: 4rem;
  background-color: var(--fortis-500);
  color: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.step-connector {
  position: absolute;
  top: 2rem;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: rgba(254, 215, 170, 0.5);
}

/* Blog Cards */
.blog-card {
  background: var(--sand-100);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.blog-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  height: 12rem;
  position: relative;
  overflow: hidden;
}

.blog-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.2);
  transition: background-color 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
  background-color: rgba(26, 26, 26, 0.1);
}

.blog-card-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--fortis-500);
  color: white;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--fortis-600);
  box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.25);
  transform: translateY(-2px);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid #d1d5db;
  color: #374151;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--fortis-500);
  color: var(--fortis-600);
}

/* Navigation Link Underline */
.nav-link {
  position: relative;
}

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

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

/* Header States */
.header-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--fortis-100);
  color: var(--fortis-700);
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
}

.badge-dark {
  background-color: rgba(249, 115, 22, 0.2);
  color: rgb(251, 146, 60);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
  background-color: var(--dark-900);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 32px 32px;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
}

/* Form Styles */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #5c5347;
  border-radius: 0.75rem;
  color: white;
  transition: all 0.2s ease;
}

.form-input::placeholder {
  color: #737373;
}

.form-input:focus {
  outline: none;
  border-color: var(--fortis-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

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

/* Dark Gradient Background */
.gradient-bg-dark {
  background: linear-gradient(135deg, #3d362d 0%, #4a4238 50%, #3d362d 100%);
}

.gradient-bg-animated {
  background: linear-gradient(-45deg, #3d362d, #4a4238, #431407, #3d362d);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

/* Mesh Gradient Dark */
.mesh-gradient-dark {
  background:
    radial-gradient(at 10% 20%, rgba(249, 115, 22, 0.3) 0px, transparent 50%),
    radial-gradient(at 90% 10%, rgba(251, 146, 60, 0.2) 0px, transparent 50%),
    radial-gradient(at 80% 90%, rgba(234, 88, 12, 0.25) 0px, transparent 50%),
    radial-gradient(at 20% 80%, rgba(212, 197, 173, 0.1) 0px, transparent 50%);
}

/* Glow Text */
.glow-text {
  text-shadow: 0 0 40px rgba(249, 115, 22, 0.5), 0 0 80px rgba(249, 115, 22, 0.3);
}

/* Typewriter */
@keyframes typewriter {
  0%, 100% { width: 0; }
  30%, 70% { width: 100%; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.typewriter-text {
  overflow: hidden;
  border-right: 3px solid var(--fortis-500);
  white-space: nowrap;
  animation: typewriter 4s steps(30) infinite, blink 1s step-end infinite;
}

/* Video Container */
.video-card {
  background-color: var(--sand-100);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.video-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.video-card video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background-color: #3d362d;
}

/* Document Cards */
.doc-card {
  background: var(--sand-100);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.5s ease;
}

.doc-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
}

.doc-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--fortis-100);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background-color 0.3s ease;
}

.doc-card:hover .doc-icon {
  background-color: var(--fortis-500);
}

.doc-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--fortis-600);
  transition: color 0.3s ease;
}

.doc-card:hover .doc-icon svg {
  color: white;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 20rem;
  max-width: 100%;
  background: white;
  z-index: 50;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(4px);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger */
.hamburger span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: #374151;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* Utility - Center */
.center-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Utility - Half position */
.top-half {
  top: 50%;
}

.left-half {
  left: 50%;
}

.translate-center {
  transform: translate(-50%, -50%);
}

/* Footer */
.footer {
  background-color: #3d362d;
  color: #a3a3a3;
}

.footer a {
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--fortis-400);
}

/* ================================
   Navigation Dropdowns
   ================================ */

/* Desktop Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.25s ease;
  padding: 0.75rem;
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background: var(--fortis-50);
}

.nav-dropdown-item-label {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1f2937;
  margin-bottom: 0.125rem;
  transition: color 0.2s ease;
}

.nav-dropdown-item:hover .nav-dropdown-item-label {
  color: var(--fortis-600);
}

.nav-dropdown-item-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Highlighted nav link (for Book a Demo) */
.nav-link-highlight {
  color: var(--fortis-600) !important;
  font-weight: 600 !important;
}

.nav-link-highlight:hover {
  color: var(--fortis-700) !important;
}

/* ================================
   Mobile Accordion Menu
   ================================ */

.mobile-accordion {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1rem;
}

.mobile-accordion:last-of-type {
  border-bottom: none;
}

.mobile-accordion-trigger {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 0;
}

.mobile-accordion-trigger svg {
  transition: transform 0.3s ease;
  color: #9ca3af;
}

.mobile-accordion.active .mobile-accordion-trigger svg {
  transform: rotate(180deg);
  color: var(--fortis-500);
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-left: 0;
}

.mobile-accordion.active .mobile-accordion-content {
  max-height: 300px;
  padding-top: 0.75rem;
}

.mobile-accordion-content a {
  border-left: 2px solid #e5e7eb;
  margin-left: 0.25rem;
  transition: border-color 0.2s ease;
}

.mobile-accordion-content a:hover {
  border-left-color: var(--fortis-500);
}

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

.bg-dark-700 {
  background-color: rgba(255, 255, 255, 0.05);
}

.bg-dark-800 {
  background-color: rgba(255, 255, 255, 0.03);
}

/* Footer Form Toggle Buttons */
.footer-form-toggle {
  background-color: rgba(255, 255, 255, 0.05);
  color: #a3a3a3;
  border: 1px solid transparent;
}

.footer-form-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #d4d4d4;
}

.footer-form-toggle.active {
  background-color: var(--fortis-500);
  color: white;
  border-color: var(--fortis-500);
}

/* Footer Form Panels */
.footer-form-panel {
  animation: fadeIn 0.3s ease;
}

.footer-form-panel.hidden {
  display: none;
}

/* Trust Badge Styling */
.trust-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(249, 115, 22, 0.3);
}
