/* AI Matchmaking Interface Styles */

:root {
  --color-primary: var(--color-primary);
  --color-primary-dark: var(--color-primary-dark);
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  --color-secondary: var(--color-secondary);
  --color-dark: #131315;
  --color-light-bg: #EFEAF9;
  --color-white: #FFFFFF;
  --font-heading: 'Parkinsans', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* Container and Layout */
.ai-matching-container {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  min-height: 100vh;
  font-family: var(--font-body);
}

.ai-matching-container .container {
  position: relative;
  z-index: 2;
}

/* Progress Header */
.progress-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  backdrop-filter: blur(10px);
}

.progress-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.progress-header .step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.progress-header .step.active {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.progress-header .progress-line {
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

.step-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.step-labels span.active {
  color: var(--color-white);
  font-weight: 600;
}

/* Welcome Section */
.welcome-section {
  color: var(--color-white);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* Input Section */
.ai-input-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  background: var(--color-white);
}

.input-header h3 {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
}

.input-header p {
  color: #6c757d;
  line-height: 1.6;
}

/* Text Input */
.ai-text-input {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ai-text-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb), 0.15);
}

.ai-text-input::placeholder {
  color: #adb5bd;
  font-style: italic;
}

.input-footer {
  display: flex;
  justify-content: flex-end;
}

/* Voice Input */
.voice-control-panel {
  text-align: center;
}

.btn-voice-record {
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 180px;
}

.btn-voice-record:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.3);
  color: var(--color-white);
}

.btn-voice-record i {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

/* Recording State */
.recording-state {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid var(--color-primary);
}

.recording-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.recording-dot {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 1s infinite;
}

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

.waveform-container {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

#waveformCanvas {
  border-radius: 8px;
  background: var(--color-white);
}

/* Transcription Display */
.transcription-display {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
  border-left: 4px solid var(--color-primary);
}

.transcription-display h6 {
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.transcription-text {
  background: var(--color-white);
  border-radius: 8px;
  padding: 0.75rem;
  min-height: 60px;
  font-style: italic;
  color: #495057;
  border: 1px solid #dee2e6;
}

/* Suggestion Chips */
.suggestion-chips h6 {
  color: var(--color-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-button {
  background: var(--color-light-bg);
  color: var(--color-dark);
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chip-button:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(var(--color-primary-rgb), 0.2);
}

.chip-button.selected {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary-dark);
}

/* Action Button */
.ai-analyze-btn {
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 250px;
  transition: all 0.3s ease;
}

.ai-analyze-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.3);
}

.ai-analyze-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Loading Section */
.loading-section .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: var(--color-white);
}

.loading-animation .fa-robot {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.processing-steps {
  text-align: left;
  max-width: 300px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.step-item i {
  margin-right: 0.75rem;
  min-width: 20px;
}

.step-item.active {
  color: var(--color-primary);
  font-weight: 600;
}

.step-item.processing {
  color: var(--color-primary);
  font-weight: 600;
}

.progress {
  height: 8px;
  border-radius: 4px;
  background-color: #e9ecef;
}

.progress-bar {
  background: var(--gradient-primary);
  border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .progress-bar-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .progress-line {
    width: 2px;
    height: 20px !important;
  }
  
  .step-labels {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .ai-input-card .card-body {
    padding: 1.5rem;
  }
  
  .voice-input-section .row {
    flex-direction: column-reverse;
  }
  
  .suggestion-chips {
    margin-bottom: 2rem;
  }
  
  .ai-analyze-btn {
    min-width: 200px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .ai-matching-container {
    padding-top: 1rem;
  }
  
  .progress-header {
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .chips-container {
    justify-content: center;
  }
  
  .chip-button {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Animation for page entrance */
.ai-matching-container {
  animation: fadeInUp 0.8s ease-out;
}

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

/* Input validation states */
.ai-text-input.is-valid {
  border-color: #28a745;
}

.ai-text-input.is-invalid {
  border-color: #dc3545;
}

.valid-feedback {
  color: #28a745;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.invalid-feedback {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Success state for chips */
.chip-button.added {
  background: #28a745;
  color: white;
  animation: chipAdded 0.3s ease;
}

@keyframes chipAdded {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
/* AI Matchmaking Interface v2 - Enhanced Design 2025 */
/* High specificity overrides for proper rendering */

:root {
  /* Primary Colors */
  --color-primary: var(--color-primary);
  --color-primary-dark: var(--color-primary-dark);
  --color-secondary: var(--color-secondary);
  --color-dark: #131315;
  --color-light-bg: #EFEAF9;
  --color-white: #FFFFFF;
  
  /* Gradient */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  --gradient-animated: linear-gradient(-45deg, var(--color-primary), var(--color-primary-dark), var(--color-secondary), var(--color-primary));
  
  /* Glassmorphic */
  --glass-white: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: rgba(var(--color-primary-rgb), 0.15);
  
  /* Neumorphic */
  --neu-light: #ffffff;
  --neu-dark: #EFEAF9;
  --neu-shadow-light: rgba(255, 255, 255, 0.8);
  --neu-shadow-dark: rgba(0, 0, 0, 0.1);
  
  /* Glow Effects */
  --glow-primary: rgba(var(--color-primary-rgb), 0.4);
  --glow-secondary: rgba(var(--color-primary-rgb), 0.6);
  
  /* Typography */
  --font-heading: 'Parkinsans', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* ========================================
   RESET & OVERRIDES - HIGH PRIORITY
   ======================================== */

/* Reset any conflicting styles from other CSS files */
.ai-matching-page * {
  box-sizing: border-box !important;
}

/* Force body and main container layout for AI matching page */
.ai-matching-page {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  font-family: var(--font-body) !important;
}

.ai-matching-page .container-fluid,
.ai-matching-page .container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* Override any Bootstrap/theme margins that create empty space */
.ai-matching-page main,
.ai-matching-page .main-content,
.ai-matching-page .content-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove top spacing that creates empty area */
.ai-matching-page .ai-matching-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Main Container - High Specificity */
.ai-matching-page .ai-matching-container {
  min-height: 100vh !important;
  position: relative !important;
  background: var(--gradient-animated) !important;
  background-size: 400% 400% !important;
  animation: gradientShift 15s ease infinite !important;
  overflow: hidden !important;
  width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
}

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

/* Floating Background Shapes */
.floating-shape {
  position: absolute;
  background: var(--glass-white);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
  opacity: 0.6;
}

.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: 10s;
}

.floating-shape:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation-delay: 15s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% { 
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-40px) rotate(180deg);
    opacity: 0.8;
  }
  75% { 
    transform: translateY(-20px) rotate(270deg);
    opacity: 0.6;
  }
}

/* Particle Canvas */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
}

/* Progress Header - High Specificity */
.ai-matching-page .ai-matching-container .progress-header {
  position: relative !important;
  z-index: 10 !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--glass-border) !important;
  padding: 1rem 0 !important;
  margin: 0 !important;
}

.progress-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.progress-step {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.progress-step.active {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    0 0 0 4px rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.progress-step.active::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 50%;
  z-index: -1;
  animation: rotate 3s linear infinite;
}

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

.progress-line {
  width: 100px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 15px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.progress-line.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gradient-primary);
  width: 100%;
  animation: progressFill 1.5s ease-out;
}

@keyframes progressFill {
  from { width: 0%; }
  to { width: 100%; }
}

.step-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.step-labels span.active {
  color: var(--color-white);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 5;
  padding: 4rem 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--color-white);
}

.hero-icon {
  margin-bottom: 2rem;
  animation: iconFloat 3s ease-in-out infinite;
}

.hero-icon i {
  font-size: 5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 8px rgba(var(--color-primary-rgb), 0.3));
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-5deg); }
}

.ai-matching-container .hero-title {
  font-family: var(--font-heading) !important;
  font-size: 3rem !important;
  font-weight: 800 !important;
  color: var(--color-white) !important;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

/* Welcome Section Text Colors - High Specificity */
.ai-matching-page .ai-matching-container .welcome-section {
  color: var(--color-white) !important;
  text-align: center !important;
  padding: 3rem 1rem !important;
}

.ai-matching-page .ai-matching-container .hero-subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.2rem !important;
  line-height: 1.6 !important;
  max-width: 600px !important;
  margin: 0 auto 2rem !important;
}

.ai-matching-page .ai-matching-container .hero-stats {
  display: flex !important;
  justify-content: center !important;
  gap: 2rem !important;
  margin-top: 2rem !important;
}

.ai-matching-page .ai-matching-container .hero-stats .stat {
  text-align: center !important;
  min-width: 100px !important;
}

.ai-matching-page .ai-matching-container .hero-stats .stat-number {
  font-family: var(--font-heading) !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--color-white) !important;
  display: block !important;
}

.ai-matching-page .ai-matching-container .hero-stats .stat-label {
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Input Section & Cards - High Specificity */
.ai-matching-page .ai-matching-container .input-section {
  padding: 2rem !important;
  margin: 2rem auto !important;
  max-width: 900px !important;
}

.ai-matching-page .ai-matching-container .input-card {
  background: var(--glass-white) !important;
  backdrop-filter: blur(40px) saturate(150%) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 24px !important;
  box-shadow: var(--shadow-glassmorphic) !important;
  padding: 2rem !important;
}

.ai-matching-page .ai-matching-container .section-title {
  color: var(--color-dark) !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
}

.ai-matching-page .ai-matching-container .section-subtitle {
  color: #6c757d !important;
  margin-bottom: 2rem !important;
  line-height: 1.6 !important;
}

.typewriter {
  overflow: hidden;
  border-right: 3px solid var(--color-white);
  white-space: nowrap;
  animation: 
    typing 4s steps(40, end) 1s both,
    blink-caret 0.75s step-end infinite 1s;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--color-white); }
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out 3s both;
}

/* Input Section */
.input-section {
  max-width: 800px;
  margin: 0 auto;
}

.input-card {
  background: var(--glass-white);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 
    0 8px 32px 0 var(--glass-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: scaleIn 0.8s ease-out 1.2s both;
}

.input-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 16px 48px 0 rgba(var(--color-primary-rgb), 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@keyframes scaleIn {
  from { 
    opacity: 0; 
    transform: scale(0.9) translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: scale(1) translateY(0); 
  }
}

.input-header {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-white);
}

.input-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.input-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Voice Input Section */
.voice-section {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.voice-visualizer-container {
  margin-bottom: 2rem;
  position: relative;
}

#voice-visualizer {
  width: 100%;
  max-width: 400px;
  height: 80px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.voice-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 24px rgba(var(--color-primary-rgb), 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.voice-button:hover {
  transform: scale(1.05);
  box-shadow: 
    0 12px 32px rgba(var(--color-primary-rgb), 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.voice-button.recording {
  animation: recordingPulse 1.5s ease-in-out infinite;
  box-shadow: 
    0 0 0 0 rgba(220, 53, 69, 0.7),
    0 8px 24px rgba(220, 53, 69, 0.4);
}

@keyframes recordingPulse {
  0% {
    box-shadow: 
      0 0 0 0 rgba(220, 53, 69, 0.7),
      0 8px 24px rgba(220, 53, 69, 0.4);
  }
  70% {
    box-shadow: 
      0 0 0 20px rgba(220, 53, 69, 0),
      0 8px 24px rgba(220, 53, 69, 0.4);
  }
  100% {
    box-shadow: 
      0 0 0 0 rgba(220, 53, 69, 0),
      0 8px 24px rgba(220, 53, 69, 0.4);
  }
}

.voice-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.voice-button:active::before {
  width: 200%;
  height: 200%;
}

.recording-info {
  display: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.recording-info.active {
  display: block;
  animation: fadeInUp 0.3s ease-out;
}

.recording-timer {
  font-weight: 700;
  color: #dc3545;
}

/* Divider */
.input-divider {
  text-align: center;
  margin: 3rem 0;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.input-divider::before,
.input-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2));
}

.input-divider::before {
  left: 0;
}

.input-divider::after {
  right: 0;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.2));
}

/* Text Input Section */
.text-section {
  position: relative;
}

.text-input-container {
  position: relative;
  margin-bottom: 2rem;
}

.neumorphic-input {
  width: 100%;
  min-height: 150px;
  padding: 1.5rem;
  background: linear-gradient(145deg, var(--neu-light), var(--neu-dark));
  border: none;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-dark);
  resize: vertical;
  box-shadow: 
    inset 5px 5px 10px rgba(0,0,0,0.05),
    inset -5px -5px 10px var(--neu-shadow-light),
    5px 5px 20px var(--neu-shadow-dark);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.neumorphic-input:focus {
  outline: none;
  box-shadow: 
    inset 8px 8px 15px rgba(var(--color-primary-rgb), 0.1),
    inset -8px -8px 15px rgba(255,255,255,0.9),
    0 0 30px rgba(var(--color-primary-rgb), 0.3);
}

.neumorphic-input::placeholder {
  color: #adb5bd;
  font-style: italic;
  transition: all 0.3s ease;
}

.neumorphic-input:focus::placeholder {
  opacity: 0;
  transform: translateY(-10px);
}

.floating-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: #6c757d;
  font-size: 1.1rem;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.floating-label.active {
  top: -10px;
  left: 1rem;
  font-size: 0.85rem;
  color: var(--color-primary);
  background: var(--neu-light);
  padding: 0 8px;
  border-radius: 4px;
}

.character-counter {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.counter-ring {
  width: 40px;
  height: 40px;
  margin-left: 10px;
  position: relative;
}

.counter-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.counter-ring .bg-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 3;
}

.counter-ring .progress-circle {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 3;
  stroke-dasharray: 113;
  stroke-dashoffset: 113;
  transition: stroke-dashoffset 0.3s ease;
  stroke-linecap: round;
}

/* Analyze Button */
.analyze-button {
  width: 100%;
  padding: 1.5rem 2rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 15px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 10px 30px var(--glow-primary),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.analyze-button:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px var(--glow-secondary),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.analyze-button:active {
  transform: translateY(-1px);
}

.analyze-button.processing {
  animation: processing 2s ease-in-out infinite;
  pointer-events: none;
}

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

.analyze-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.analyze-button:hover::before {
  left: 100%;
}

.button-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid var(--color-white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px;
}

.analyze-button.processing .button-spinner {
  display: inline-block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Fade In Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .input-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .voice-button {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }
  
  .progress-bar-wrapper {
    padding: 0 1rem;
  }
  
  .progress-step {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .progress-line {
    width: 60px;
    margin: 0 10px;
  }
  
  .step-labels {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
  
  .floating-shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 2rem 0;
  }
  
  .hero-section {
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .input-header h2 {
    font-size: 1.5rem;
  }
  
  .input-card {
    border-radius: 20px;
    padding: 1.5rem 1rem;
  }
  
  .voice-section,
  .text-section {
    padding: 1.5rem;
  }
}

/* High Performance Mode */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .floating-shape {
    animation: none;
  }
  
  .ai-matching-container {
    background: var(--gradient-primary);
    animation: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .neumorphic-input {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    color: var(--color-white);
  }
  
  .floating-label {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .floating-label.active {
    background: #2a2a2a;
    color: var(--color-white);
  }
}

/* Loading States */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  z-index: 100;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(var(--color-primary-rgb), 0.1);
  border-top: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Success States */
.success-state {
  text-align: center;
  color: var(--color-white);
  animation: fadeInUp 0.5s ease-out;
}

.success-state .checkmark {
  width: 80px;
  height: 80px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  animation: checkmarkBounce 0.6s ease-out;
}

@keyframes checkmarkBounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* AI Matchmaking Results Page Styles */

:root {
  --color-primary: var(--color-primary);
  --color-primary-dark: var(--color-primary-dark);
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  --color-secondary: var(--color-secondary);
  --color-dark: #131315;
  --color-light-bg: #EFEAF9;
  --color-white: #FFFFFF;
  --font-heading: 'Parkinsans', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* Container and Layout */
.ai-results-container {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  min-height: 100vh;
  font-family: var(--font-body);
}

/* Progress Header (reused from landing page) */
.progress-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  backdrop-filter: blur(10px);
}

.progress-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.progress-header .step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.progress-header .step.active {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.progress-header .step.completed {
  background: var(--color-white);
  color: #28a745;
}

.progress-header .progress-line {
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

.progress-header .progress-line.completed {
  background: rgba(255, 255, 255, 0.8);
}

.step-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.step-labels span.active {
  color: var(--color-white);
  font-weight: 600;
}

.step-labels span.completed {
  color: rgba(255, 255, 255, 0.9);
}

/* Results Header */
.results-header {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}

.results-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.results-subtitle {
  opacity: 0.9;
  font-size: 1.1rem;
}

/* Filters Section */
.filters-section {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-filter {
  background: #f8f9fa;
  color: var(--color-dark);
  border: 1px solid #dee2e6;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-filter:hover {
  background: var(--color-light-bg);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-filter.active {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: var(--color-primary-dark);
}

.search-box .form-control {
  border-color: #dee2e6;
}

.search-box .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb), 0.15);
}

/* Results Content */
.results-content {
  background: #f8f9fa;
  min-height: 70vh;
}

/* Mentor Cards */
.mentor-card {
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.mentor-card:hover {
  transform: translateY(-5px);
}

.mentor-card .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.mentor-card:hover .card {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Match Badge */
.match-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  border-radius: 12px;
  min-width: 70px;
}

.match-badge.gold {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--color-white);
}

.match-badge.silver {
  background: linear-gradient(135deg, #C0C0C0 0%, #A0A0A0 100%);
  color: var(--color-white);
}

.match-badge.bronze {
  background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
  color: var(--color-white);
}

.match-score {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.match-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mentor Actions */
.mentor-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-favorite.active {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-favorite.active i {
  color: #dc3545;
}

/* Mentor Header */
.mentor-avatar {
  position: relative;
  width: 60px;
  height: 60px;
}

.mentor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.availability-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
}

.availability-indicator.online {
  background-color: #28a745;
}

.availability-indicator.away {
  background-color: #ffc107;
}

.availability-indicator.offline {
  background-color: #6c757d;
}

.mentor-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.mentor-title {
  font-size: 0.9rem;
  color: #6c757d;
}

.mentor-rating .stars {
  display: inline-flex;
  gap: 1px;
  margin-right: 0.5rem;
}

.star {
  color: #ffc107;
}

.star.empty {
  color: #e9ecef;
}

.rating-text {
  font-size: 0.85rem;
  color: #6c757d;
}

/* Expertise Tags */
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.expertise-tag {
  background: var(--color-light-bg);
  color: var(--color-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

/* AI Explanation */
.ai-explanation {
  background: #f8f9fa;
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  padding: 0.75rem;
}

.explanation-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.explanation-text {
  font-size: 0.85rem;
  color: #495057;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Mentor Highlights */
.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #495057;
}

.highlight-item i {
  margin-right: 0.5rem;
  color: var(--color-primary);
  min-width: 16px;
}

/* Availability and Pricing */
.mentor-availability {
  border-top: 1px solid #e9ecef;
  padding-top: 0.75rem;
}

.availability-status.available {
  color: #28a745;
  font-weight: 500;
}

.availability-status.busy {
  color: #ffc107;
  font-weight: 500;
}

.availability-status.unavailable {
  color: #6c757d;
}

.pricing-info {
  font-weight: 500;
  color: var(--color-primary);
}

/* Card Footer */
.card-footer {
  border-top: 1px solid #e9ecef;
  padding: 1rem;
}

.btn-view-profile {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-view-profile:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-select-mentor {
  background: var(--gradient-primary);
  border: none;
  font-weight: 600;
}

.btn-select-mentor:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.3);
}

/* Sidebar */
.sidebar-sticky {
  position: sticky;
  top: 2rem;
}

/* Analysis Summary */
.analysis-summary .card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
}

.confidence-score {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
}

.key-insights ul {
  margin-bottom: 0;
}

.key-insights li {
  padding: 0.25rem 0;
  color: #495057;
  font-size: 0.9rem;
}

.key-insights li::before {
  content: "•";
  color: var(--color-primary);
  margin-right: 0.5rem;
}

/* Quick Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

/* Help Section */
.help-section .card-title {
  color: var(--color-dark);
  font-weight: 600;
}

.help-section .card-text {
  line-height: 1.5;
  color: #6c757d;
}

/* Modal */
.modal-content {
  border: none;
  border-radius: 16px;
}

.modal-header {
  border-bottom: 1px solid #e9ecef;
  background: var(--color-light-bg);
}

.modal-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
}

/* Load More Button */
#loadMoreBtn {
  border-color: var(--color-primary);
  color: var(--color-primary);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 500;
}

#loadMoreBtn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Responsive Design */
@media (max-width: 768px) {
  .results-title {
    font-size: 1.5rem;
  }
  
  .results-subtitle {
    font-size: 1rem;
  }
  
  .filter-buttons {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .mentor-card .card-body {
    padding: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .sidebar-sticky {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .results-header {
    text-align: center;
  }
  
  .results-header .col-md-4 {
    margin-top: 1rem;
  }
  
  .mentor-header {
    text-align: center;
  }
  
  .mentor-header .d-flex {
    flex-direction: column;
    align-items: center;
  }
  
  .mentor-avatar {
    margin-bottom: 1rem;
  }
  
  .expertise-tags {
    justify-content: center;
  }
  
  .card-footer .d-grid {
    gap: 0.5rem;
  }
  
  .card-footer .d-md-flex {
    flex-direction: column;
  }
}

/* Animation for results entrance */
.mentor-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.mentor-card:nth-child(1) { animation-delay: 0.1s; }
.mentor-card:nth-child(2) { animation-delay: 0.2s; }
.mentor-card:nth-child(3) { animation-delay: 0.3s; }
.mentor-card:nth-child(4) { animation-delay: 0.4s; }
.mentor-card:nth-child(5) { animation-delay: 0.5s; }

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

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Success states */
.btn-select-mentor.selected {
  background: #28a745;
  border-color: #28a745;
}

.btn-select-mentor.selected:hover {
  background: #218838;
  border-color: #218838;
}
/* AI Matchmaking Payment Page Styles */

:root {
  --color-primary: var(--color-primary);
  --color-primary-dark: var(--color-primary-dark);
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  --color-secondary: var(--color-secondary);
  --color-dark: #131315;
  --color-light-bg: #EFEAF9;
  --color-white: #FFFFFF;
  --color-bronze: #CD7F32;
  --font-heading: 'Parkinsans', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* Container and Layout */
.ai-payment-container {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  min-height: 100vh;
  font-family: var(--font-body);
}

/* Progress Header (reused) */
.progress-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  backdrop-filter: blur(10px);
}

.progress-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.progress-header .step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.progress-header .step.active {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.progress-header .step.completed {
  background: var(--color-white);
  color: #28a745;
}

.progress-header .progress-line {
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

.progress-header .progress-line.completed {
  background: rgba(255, 255, 255, 0.8);
}

.step-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.step-labels span.active {
  color: var(--color-white);
  font-weight: 600;
}

.step-labels span.completed {
  color: rgba(255, 255, 255, 0.9);
}

/* Payment Header */
.payment-header {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}

.payment-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-subtitle {
  opacity: 0.9;
  font-size: 1.1rem;
}

/* Payment Content */
.payment-content {
  background: #f8f9fa;
  min-height: 70vh;
}

/* Selected Mentor Card */
.selected-mentor-card .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.selected-mentor-card .card-header {
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #e9ecef;
}

.mentor-avatar-large {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mentor-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.mentor-title {
  font-size: 1rem;
  color: #6c757d;
}

.mentor-highlights {
  margin-top: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #495057;
}

.highlight-item i {
  margin-right: 0.5rem;
  color: var(--color-primary);
  min-width: 16px;
}

.badge.bg-bronze {
  background-color: var(--color-bronze) !important;
}

/* Package Selection */
.package-selection .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.package-option {
  background: var(--color-white);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-option:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.15);
}

.package-option.selected {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.02) 0%, rgba(var(--color-primary-rgb), 0.02) 100%);
  box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.2);
}

.package-option.popular {
  border-color: #ffc107;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.02) 0%, rgba(255, 193, 7, 0.02) 100%);
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.package-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.price-currency {
  font-size: 1rem;
  color: var(--color-primary);
  margin-left: 0.25rem;
}

.package-description {
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.savings-badge {
  background: #d4edda;
  color: #155724;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.package-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #495057;
  display: flex;
  align-items: center;
}

.feature-list li i {
  margin-right: 0.5rem;
  min-width: 16px;
}

.package-selector {
  margin-top: auto;
}

.package-selector input[type="radio"] {
  display: none;
}

.btn-package-select {
  background: #f8f9fa;
  color: var(--color-dark);
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-package-select:hover {
  background: var(--color-light-bg);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.package-option.selected .btn-package-select {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: var(--color-primary-dark);
}

.btn-package-select .selected-text {
  display: none;
}

.package-option.selected .btn-package-select .select-text {
  display: none;
}

.package-option.selected .btn-package-select .selected-text {
  display: inline;
}

/* Payment Form */
.payment-form .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Order Summary */
.order-summary {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e9ecef;
}

.summary-header h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.summary-row:last-of-type {
  margin-bottom: 0;
}

.summary-label {
  flex: 1;
  color: #6c757d;
}

.summary-value {
  font-weight: 500;
  color: var(--color-dark);
}

.total-row .summary-label,
.total-row .summary-value {
  font-size: 1.1rem;
  color: var(--color-dark);
}

.discount-row .summary-value {
  color: #28a745 !important;
}

/* Stripe Payment Element */
.payment-element-container {
  background: var(--color-white);
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
}

.payment-element-container label {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.stripe-element {
  min-height: 50px;
  padding: 0.75rem;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  background: var(--color-white);
}

.stripe-element.focused {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb), 0.15);
}

.stripe-element.invalid {
  border-color: #dc3545;
}

#payment-errors {
  font-size: 0.875rem;
}

/* Terms Section */
.terms-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

.form-check {
  margin-bottom: 0.75rem;
}

.form-check:last-child {
  margin-bottom: 0;
}

.form-check-label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #495057;
}

.form-check-label a {
  color: var(--color-primary);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

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

.form-check-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--color-primary-rgb), 0.15);
}

/* Payment Submit */
.btn-payment {
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  transition: all 0.3s ease;
  position: relative;
}

.btn-payment:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.3);
  color: var(--color-white);
}

.btn-payment:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-payment .spinner-border {
  width: 1rem;
  height: 1rem;
}

.security-badges {
  margin-top: 1rem;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.security-badge i {
  font-size: 1.2rem;
}

.security-badge small {
  color: #6c757d;
  font-size: 0.75rem;
}

.payment-note {
  color: #6c757d;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Support Section */
.support-section .card {
  border: 1px solid #e9ecef;
  border-radius: 12px;
}

.support-section h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.btn-payment.processing .button-text {
  opacity: 0.7;
}

.btn-payment.processing .spinner-border {
  display: inline-block !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .payment-title {
    font-size: 1.5rem;
  }
  
  .payment-subtitle {
    font-size: 1rem;
  }
  
  .mentor-avatar-large {
    width: 60px;
    height: 60px;
  }
  
  .package-option {
    padding: 1rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .order-summary,
  .payment-element-container,
  .terms-section {
    padding: 1rem;
  }
  
  .security-badges .d-flex {
    flex-direction: column;
    gap: 1rem;
  }
  
  .security-badge {
    flex-direction: row;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .payment-content {
    padding: 2rem 0;
  }
  
  .mentor-highlights .row {
    flex-direction: column;
  }
  
  .mentor-highlights .col-sm-6 {
    margin-bottom: 0.5rem;
  }
  
  .package-option {
    margin-bottom: 1rem;
  }
  
  .summary-row {
    align-items: flex-start;
  }
  
  .summary-label {
    margin-right: 1rem;
  }
}

/* Animation for page entrance */
.ai-payment-container {
  animation: fadeInUp 0.8s ease-out;
}

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

/* Package hover animations */
.package-option {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.package-option:nth-child(1) { animation-delay: 0.1s; }
.package-option:nth-child(2) { animation-delay: 0.2s; }
.package-option:nth-child(3) { animation-delay: 0.3s; }

/* Success states */
.package-option.selecting {
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Error states */
.stripe-element.error {
  border-color: #dc3545;
  background-color: #f8d7da;
}

.form-check-input.is-invalid {
  border-color: #dc3545;
}

.form-check-input.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15);
}

/* Success indicators */
.payment-success {
  color: #28a745;
}

.btn-payment.success {
  background: #28a745;
}

.btn-payment.success:hover {
  background: #218838;
}
/* AI Matchmaking Success Page Styles */

:root {
  --color-primary: var(--color-primary);
  --color-primary-dark: var(--color-primary-dark);
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  --color-secondary: var(--color-secondary);
  --color-dark: #131315;
  --color-light-bg: #EFEAF9;
  --color-white: #FFFFFF;
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --font-heading: 'Parkinsans', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* Container and Layout */
.ai-success-container {
  background: linear-gradient(135deg, var(--color-success) 0%, #20c997 100%);
  min-height: 100vh;
  font-family: var(--font-body);
}

/* Success Header */
.success-header {
  padding: 3rem 0 2rem;
  color: var(--color-white);
}

.success-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.success-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Success Animation */
.success-animation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkmark-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  animation: checkmarkBounce 1s ease-out;
  position: relative;
  z-index: 2;
}

.checkmark {
  font-size: 3rem;
  color: var(--color-success);
  animation: checkmarkPop 0.8s ease-out 0.5s both;
}

.confetti-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

@keyframes checkmarkBounce {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
}

@keyframes checkmarkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Success Content */
.success-content {
  background: #f8f9fa;
  min-height: 70vh;
}

/* Main Success Card */
.success-main-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Selected Mentor Summary */
.selected-mentor-summary {
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.03) 0%, rgba(var(--color-primary-rgb), 0.03) 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(var(--color-primary-rgb), 0.1);
}

.mentor-avatar-success {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.mentor-avatar-success img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid var(--color-white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.success-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.success-badge i {
  color: var(--color-white);
  font-size: 0.8rem;
}

.mentor-name-success {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  font-size: 1.4rem;
}

.mentor-title-success {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.match-badge-success {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}

.match-explanation-success {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 0;
}

.package-info-success {
  text-align: center;
}

.package-name-success {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.package-price-success {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

/* Next Steps Section */
.next-steps-section {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e9ecef;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
}

.next-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.next-step-card:hover {
  background: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.15);
}

.step-number {
  width: 35px;
  height: 35px;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h6 {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Gamification Card */
.gamification-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, var(--color-white) 0%, #f8f9fa 100%);
}

.profile-completion-score {
  text-align: center;
}

.completion-percentage {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.progress-bar.bg-gradient-primary {
  background: var(--gradient-primary) !important;
}

/* Achievement Tasks */
.achievement-tasks {
  margin-top: 1.5rem;
}

.achievement-task {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.achievement-task:hover {
  background: var(--color-white);
  border-color: var(--color-primary);
  transform: translateX(5px);
}

.achievement-task.completed {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
  border-color: var(--color-success);
}

.task-icon {
  flex-shrink: 0;
  width: 24px;
  display: flex;
  justify-content: center;
}

.task-icon i {
  font-size: 1.2rem;
}

.task-content h6 {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.task-content p {
  color: #6c757d;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.task-reward {
  margin-top: 0.5rem;
}

.badge.badge-success {
  background: var(--color-success) !important;
  color: var(--color-white);
  padding: 0.3rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 12px;
}

.badge.badge-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 0.3rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 12px;
}

/* Resources Card */
.resources-card,
.support-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.resources-card .card-header,
.support-card .card-header {
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #e9ecef;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.resource-item:hover {
  background: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.resource-content {
  flex: 1;
}

.resource-content h6 {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.resource-content small {
  font-size: 0.75rem;
}

/* Success Stats */
.success-stats .stat-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.success-stats .stat-label {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

/* Button Styles */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.3);
  background: var(--gradient-primary);
  border: none;
}

.btn-outline-primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .success-title {
    font-size: 2rem;
  }
  
  .success-subtitle {
    font-size: 1rem;
  }
  
  .checkmark-circle {
    width: 80px;
    height: 80px;
  }
  
  .checkmark {
    font-size: 2rem;
  }
  
  .selected-mentor-summary {
    padding: 1.5rem;
  }
  
  .selected-mentor-summary .row {
    text-align: center;
  }
  
  .selected-mentor-summary .row > div {
    margin-bottom: 1.5rem;
  }
  
  .mentor-avatar-success {
    width: 80px;
    height: 80px;
  }
  
  .next-step-card {
    margin-bottom: 1rem;
  }
  
  .achievement-task {
    flex-direction: column;
    text-align: center;
  }
  
  .task-icon {
    align-self: center;
  }
}

@media (max-width: 576px) {
  .success-header {
    padding: 2rem 0 1rem;
  }
  
  .success-title {
    font-size: 1.5rem;
  }
  
  .checkmark-circle {
    width: 60px;
    height: 60px;
  }
  
  .checkmark {
    font-size: 1.5rem;
  }
  
  .success-main-card .card-body {
    padding: 2rem 1rem;
  }
  
  .selected-mentor-summary {
    padding: 1rem;
  }
  
  .next-steps-section {
    padding: 1rem;
  }
  
  .gamification-card .card-body {
    padding: 2rem 1rem;
  }
}

/* Animation for page entrance */
.ai-success-container {
  animation: fadeIn 0.8s ease-out;
}

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

.success-main-card,
.gamification-card,
.resources-card,
.support-card {
  animation: slideInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.success-main-card { animation-delay: 0.1s; }
.gamification-card { animation-delay: 0.2s; }
.resources-card { animation-delay: 0.3s; }
.support-card { animation-delay: 0.4s; }

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

/* Confetti particles for success animation */
.confetti-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  animation: confettiFall 3s linear infinite;
}

.confetti-particle:nth-child(2n) {
  background: var(--color-warning);
  animation-delay: 0.3s;
}

.confetti-particle:nth-child(3n) {
  background: var(--color-success);
  animation-delay: 0.6s;
}

.confetti-particle:nth-child(4n) {
  background: var(--color-info);
  animation-delay: 0.9s;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Hover animations for interactive elements */
.next-step-card,
.achievement-task,
.resource-item {
  cursor: pointer;
}

/* Loading state */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Success state indicators */
.success-indicator {
  color: var(--color-success);
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
  }
  50% { 
    opacity: 0.8; 
    transform: scale(1.05);
  }
}