/* PRAXIS - Modern Orange Design System */

:root {
  /* Orange Color Palette */
  --primary-orange: #ff6b35;
  --secondary-orange: #ff8a50;
  --dark-orange: #e85a2b;
  --light-orange: #ffa366;
  --accent-orange: #ff4500;
  
  /* Gradient System */
  --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8a50 100%);
  --primary-gradient-dark: linear-gradient(135deg, #e85a2b 0%, #ff6b35 100%);
  --secondary-gradient: linear-gradient(135deg, #ff8a50 0%, #ffa366 100%);
  --success-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --light-gradient: linear-gradient(135deg, #fdf8f5 0%, #fff2eb 100%);
  --glass-gradient: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 138, 80, 0.05) 100%);
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Semantic Colors */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  
  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
  
  /* Typography */
  --font-primary: 'Inter', 'Segoe UI', sans-serif;
  --font-secondary: 'Space Grotesk', 'Segoe UI', sans-serif;
  
  /* Spacing */
  --navbar-height: 80px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --border-radius-sm: 8px;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--white);
  background: var(--dark-gradient);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Modern Navbar - Dark Mode */
.modern-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  height: var(--navbar-height);
  transition: all 0.3s ease;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.brand-link:hover {
  transform: scale(1.02);
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  height: 48px;
  width: auto;
  transition: all 0.3s ease;
}

.brand-text {
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
}

.nav-btn-primary:hover {
  background: var(--primary-gradient-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
  color: var(--white);
  text-decoration: none;
}

.nav-btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-btn-outline:hover {
  background: var(--primary-orange);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

/* User Menu */
.user-menu {
  position: relative;
}

.user-trigger {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.user-trigger:hover {
  background: rgba(255, 107, 53, 0.2);
}

.user-avatar {
  width: 36px;
  height: 36px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
}

.user-name {
  font-weight: 600;
  color: var(--white);
}

.dropdown-arrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.user-trigger[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-actions {
    display: none;
  }
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Flash Messages */
.modern-alert {
  position: fixed;
  top: calc(var(--navbar-height) + 1rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  min-width: 400px;
  max-width: 600px;
  animation: slideInDown 0.4s ease;
}

.alert-content {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-left: 4px solid var(--primary-orange);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alert-icon {
  font-size: 1.25rem;
  color: var(--primary-orange);
}

.alert-message {
  flex: 1;
  font-weight: 500;
  color: var(--white);
}

.alert-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.alert-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Main Content */
.main-content {
  min-height: 100vh;
}

.main-content.with-navbar {
  padding-top: var(--navbar-height);
}

/* Modern Footer */
.modern-footer {
  position: relative;
  background: var(--dark-gradient);
  color: var(--white);
  overflow: hidden;
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-brand-name {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.footer-section-title {
  font-family: var(--font-secondary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-orange);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright,
.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-tagline {
  font-style: italic;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-gradient-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
  color: var(--white);
}

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

.btn-secondary:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--primary-orange);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* Glass Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: var(--glass-shadow);
  padding: 2rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
}

/* Form Elements */
.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.form-group {
  margin-bottom: 1.5rem;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.fw-medium { font-weight: 500; }
.fw-normal { font-weight: 400; }
.fw-light { font-weight: 300; }

.fs-1 { font-size: 2.5rem; }
.fs-2 { font-size: 2rem; }
.fs-3 { font-size: 1.75rem; }
.fs-4 { font-size: 1.5rem; }
.fs-5 { font-size: 1.25rem; }
.fs-6 { font-size: 1rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.me-1 { margin-right: 0.25rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }

.ms-1 { margin-left: 0.25rem; }
.ms-2 { margin-left: 0.5rem; }
.ms-3 { margin-left: 1rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.d-grid { display: grid; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.justify-content-start { justify-content: flex-start; }
.justify-content-end { justify-content: flex-end; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }

.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.align-items-center { align-items: center; }
.align-items-baseline { align-items: baseline; }
.align-items-stretch { align-items: stretch; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 3rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }
.min-vh-100 { min-height: 100vh; }

.rounded { border-radius: var(--border-radius-sm); }
.rounded-lg { border-radius: var(--border-radius); }
.rounded-xl { border-radius: var(--border-radius-lg); }
.rounded-circle { border-radius: 50%; }

.text-primary { color: var(--primary-orange); }
.text-secondary { color: var(--gray); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-info { color: var(--info); }
.text-light { color: var(--light-gray); }
.text-dark { color: var(--dark-gray); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray); }

.bg-primary { background-color: var(--primary-orange); }
.bg-light { background-color: var(--light-gray); }
.bg-dark { background-color: var(--dark-gray); }
.bg-white { background-color: var(--white); }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.start-0 { left: 0; }
.end-0 { right: 0; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

.animate-slide-up {
  animation: slideUp 0.8s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }
  
  .navbar-container {
    padding: 0 1rem;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-actions .nav-btn {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .modern-alert {
    min-width: 90%;
    max-width: 90%;
    left: 5%;
    transform: none;
  }
  
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 1.5rem;
  }
  
  .brand-logo {
    height: 36px;
  }
  
  .footer-content {
    padding: 3rem 1rem 1rem;
  }
}

/* Bootstrap Grid System for Compatibility */
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col,
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex: 1 0 0%;
}

.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

@media (min-width: 992px) {
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
}

/* Dropdown styles for Bootstrap compatibility */
.dropdown-menu {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  display: none; /* Hidden by default */
  position: absolute;
  z-index: 1000;
}

.dropdown-menu.show {
  display: block; /* Show when toggled */
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  list-style: none;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-item:hover {
  background: rgba(255, 107, 53, 0.2);
  color: var(--primary-orange);
  text-decoration: none;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 107, 53, 0.3);
  border: none;
  margin: 0.5rem 0;
}

/* Hero section specific styles */
.hero-section {
  background: var(--primary-gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Feature cards */
.feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.08);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.2);
}

/* Dashboard Navigation */
.dashboard-nav {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--border-radius);
  backdrop-filter: blur(20px);
  color: var(--white);
}

.dashboard-nav h1 {
  color: var(--white);
}

.dashboard-nav .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.dashboard-nav small.text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
}

/* Stats Cards */
.stats-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  backdrop-filter: blur(20px);
  color: var(--white);
  transition: all 0.3s ease;
}

.stats-card:hover {
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
}

.stats-card h5, .stats-card h6 {
  color: var(--white);
}

.stats-card .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Quick action buttons */
.quick-action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
  display: block;
  text-align: left;
}

.quick-action-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
  color: var(--white);
  text-decoration: none;
  border-color: rgba(255, 107, 53, 0.4);
}

.quick-action-btn h6 {
  color: var(--white);
}

.quick-action-btn .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.quick-action-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.quick-action-btn.disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Missing variables and classes for registration page */
.form-control-custom {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary-orange); /* fallback for non-webkit browsers */
  font-weight: bold;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.form-text {
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 4px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.form-check-input:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-check-label {
  margin-left: 0.5rem;
}

.h-100 {
  height: 100% !important;
}

.g-3 > * {
  margin: 0.5rem !important;
}

.g-4 > * {
  margin: 0.75rem !important;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-90 {
  opacity: 0.9 !important;
}

.small {
  font-size: 0.875em;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.border-0 {
  border: 0 !important;
}

.alert {
  position: relative;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: var(--border-radius-sm);
}

.alert-info {
  color: #17a2b8;
  background-color: rgba(23, 162, 184, 0.15);
  border-color: rgba(23, 162, 184, 0.3);
}


.d-grid {
  display: grid !important;
}

.needs-validation .form-control:invalid,
.needs-validation .form-control-custom:invalid {
  border-color: var(--danger);
}

.needs-validation .form-control:valid,
.needs-validation .form-control-custom:valid {
  border-color: var(--success);
}

.was-validated .form-control:invalid,
.was-validated .form-control-custom:invalid {
  border-color: var(--danger);
}

.was-validated .form-control:valid,
.was-validated .form-control-custom:valid {
  border-color: var(--success);
}

/* Registration Page Styles - Dark Mode */
.registration-page {
  background: var(--dark-gradient);
  min-height: 100vh;
  padding: 2rem 0;
}

.registration-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.3));
}

.registration-title {
  font-family: var(--font-secondary);
  font-size: 3rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.registration-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.registration-card {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 107, 53, 0.3);
  height: 100%;
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.card-title {
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.card-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-errors {
  color: var(--danger);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  min-height: 1.2rem;
}

.form-help {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-help i {
  color: var(--primary-orange);
}

.form-check-custom {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  border: 2px solid rgba(255, 107, 53, 0.5);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.form-check-input:checked {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.form-check-input:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-check-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin: 0;
}

.btn-register {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.login-link {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.login-link p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.login-link a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-link a:hover {
  color: var(--dark-orange);
  text-decoration: underline;
}

/* Info Card */
.info-card {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 107, 53, 0.3);
  height: 100%;
}

.info-title {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.info-title i {
  color: var(--primary-orange);
}

.info-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.role-list {
  margin-bottom: 2rem;
}

.role-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s ease;
}

.role-item:hover {
  background: rgba(255, 107, 53, 0.15);
}

.role-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.role-icon-pm {
  background: var(--primary-gradient);
}

.role-icon-entrepreneur {
  background: var(--secondary-gradient);
}

.role-icon-student {
  background: var(--success-gradient);
}

.role-icon-researcher {
  background: var(--dark-gradient);
}

.role-content {
  flex: 1;
}

.role-title {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.role-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.next-steps {
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--border-radius-sm);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.next-steps-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.next-steps-header i {
  color: var(--primary-orange);
  font-size: 1.25rem;
}

.next-steps-header h6 {
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.next-steps p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.15);
  border-radius: var(--border-radius-sm);
}

.stat-number {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Trust Indicators */
.trust-indicators {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.trust-item {
  padding: 1rem;
}

.trust-number {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.trust-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive Design for Registration */
@media (max-width: 768px) {
  .registration-title {
    font-size: 2.5rem;
  }
  
  .registration-subtitle {
    font-size: 1.125rem;
  }
  
  .registration-card,
  .info-card {
    padding: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-indicators {
    margin-top: 2rem;
  }
  
  .trust-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .registration-page {
    padding: 1rem 0;
  }
  
  .registration-card,
  .info-card {
    padding: 1.5rem;
  }
  
  .registration-title {
    font-size: 2rem;
  }
  
  .role-item {
    padding: 0.75rem;
  }
  
  .role-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Dark Form Controls */
.form-control-dark,
.form-select.form-control-dark {
  background-color: rgba(40, 40, 40, 0.9);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--white);
  transition: all 0.3s ease;
}

.form-control-dark:focus,
.form-select.form-control-dark:focus {
  background-color: rgba(40, 40, 40, 1);
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
  color: var(--white);
}

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

.form-control-dark:disabled,
.form-select.form-control-dark:disabled {
  background-color: rgba(30, 30, 30, 0.8);
  border-color: rgba(255, 107, 53, 0.2);
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
  opacity: 0.8;
}

/* Fix select dropdown arrow color for dark mode */
.form-select.form-control-dark {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff6b35' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

.form-select.form-control-dark:disabled {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23666666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}