/* Volunteer Application Luxury Styling - Match Start Fundraiser Page */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  /* Luxury Color Palette */
  --volunteer-luxury-primary: #1e1b4b;
  --volunteer-luxury-secondary: #8b5cf6;
  --volunteer-luxury-accent: #06b6d4;
  --volunteer-luxury-gold: #f59e0b;
  --volunteer-luxury-success: #10b981;
  --volunteer-luxury-warning: #f59e0b;
  --volunteer-luxury-danger: #ef4444;
  --volunteer-pure-white: #ffffff;

  /* Sophisticated Grays */
  --volunteer-gray-platinum: #f8fafc;
  --volunteer-gray-silver: #f1f5f9;
  --volunteer-gray-cloud: #e2e8f0;
  --volunteer-gray-steel: #cbd5e1;
  --volunteer-gray-slate: #94a3b8;
  --volunteer-gray-charcoal: #64748b;
  --volunteer-gray-gunmetal: #475569;
  --volunteer-gray-onyx: #334155;
  --volunteer-gray-obsidian: #1e293b;
  --volunteer-gray-void: #0f172a;

  /* Luxury Gradients */
  --volunteer-gradient-luxury: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --volunteer-gradient-royal: linear-gradient(135deg, #1e1b4b 0%, #3730a3 50%, #8b5cf6 100%);

  /* Professional Shadows */
  --volunteer-shadow-whisper: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --volunteer-shadow-elegant: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --volunteer-shadow-luxurious: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --volunteer-shadow-majestic: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --volunteer-shadow-divine: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Typography */
  --volunteer-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --volunteer-font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --volunteer-space-xs: 0.25rem;
  --volunteer-space-sm: 0.5rem;
  --volunteer-space-md: 1rem;
  --volunteer-space-lg: 1.5rem;
  --volunteer-space-xl: 2rem;
  --volunteer-space-2xl: 3rem;
  --volunteer-space-3xl: 4rem;

  /* Border Radius */
  --volunteer-radius-elegant: 12px;
  --volunteer-radius-luxurious: 16px;
  --volunteer-radius-divine: 24px;

  /* Transitions */
  --volunteer-transition-swift: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --volunteer-transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --volunteer-transition-graceful: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--volunteer-font-sans);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 25%, #f1f5f9 75%, #f8fafc 100%);
  color: var(--volunteer-gray-onyx);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

/* Animations */
@keyframes volunteer-glow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  }
  50% { 
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  }
}

@keyframes volunteer-bounceDown {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

@keyframes volunteer-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes volunteer-fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Container */
.volunteer-luxury-container {
  min-height: 100vh;
}

/* HERO SECTION - EXACT MATCH TO PROJECTS */
.volunteer-hero-section {
  background: var(--volunteer-gradient-royal);
  color: white;
  padding: var(--volunteer-space-3xl) 0 var(--volunteer-space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: var(--volunteer-space-lg);
  border-radius: var(--volunteer-radius-divine);
  box-shadow: var(--volunteer-shadow-divine);
}

.volunteer-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(59, 130, 246, 0.05) 25%,
    rgba(16, 185, 129, 0.05) 50%,
    rgba(245, 158, 11, 0.05) 75%,
    rgba(239, 68, 68, 0.1) 100%
  );
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  opacity: 1;
  z-index: 1;
}

.volunteer-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--volunteer-space-lg);
}

.volunteer-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--volunteer-space-sm);
  background: rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  padding: var(--volunteer-space-sm) var(--volunteer-space-lg);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--volunteer-space-lg);
  border: 1px solid rgba(139, 92, 246, 0.3);
  animation: volunteer-glow 3s ease-in-out infinite;
}

.volunteer-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--volunteer-space-lg);
  letter-spacing: -0.02em;
}

.volunteer-hero-title span {
  background: var(--volunteer-gradient-luxury);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.volunteer-hero-subtitle {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto var(--volunteer-space-2xl);
  opacity: 0.9;
  line-height: 1.6;
}

.volunteer-hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity var(--volunteer-transition-smooth);
  cursor: pointer;
}

.volunteer-hero-scroll:hover {
  opacity: 1;
}

.volunteer-hero-scroll svg {
  margin-top: var(--volunteer-space-sm);
  animation: volunteer-bounceDown 2s infinite;
}

/* Main Section */
.volunteer-main-section {
  margin: 0 auto;
  padding: 0 var(--volunteer-space-xl);
}

/* Layout */
.volunteer-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--volunteer-space-2xl);
  align-items: start;
}

/* Form Card */
.volunteer-form-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--volunteer-radius-divine);
  box-shadow: var(--volunteer-shadow-luxurious);
  overflow: hidden;
  transition: var(--volunteer-transition-smooth);
}

.volunteer-form-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--volunteer-shadow-majestic);
  border-color: rgba(139, 92, 246, 0.2);
}

/* Form Header */
.volunteer-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--volunteer-space-md);
  padding: var(--volunteer-space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: var(--volunteer-gradient-royal);
  color: white;
  position: relative;
  overflow: hidden;
}

.volunteer-form-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.volunteer-header-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--volunteer-radius-elegant);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.volunteer-header-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.volunteer-header-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 var(--volunteer-space-xs) 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.volunteer-header-content p {
  opacity: 0.9;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Progress Indicator */
.volunteer-progress-indicator {
  display: flex;
  align-items: center;
  gap: var(--volunteer-space-sm);
  position: relative;
  z-index: 1;
}

.volunteer-progress-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--volunteer-transition-smooth);
  backdrop-filter: blur(10px);
}

.volunteer-progress-circle.active {
  background: rgba(255, 255, 255, 0.9);
  color: var(--volunteer-luxury-secondary);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.volunteer-progress-line {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  transition: var(--volunteer-transition-smooth);
}

/* Form Content */
.volunteer-form-content {
  padding: var(--volunteer-space-2xl);
}

/* Form Steps */
.volunteer-form-step {
  display: none;
  animation: volunteer-fadeInUp 0.4s ease;
}

.volunteer-form-step.active {
  display: block;
}

.volunteer-step-header {
  text-align: center;
  margin-bottom: var(--volunteer-space-2xl);
  padding-bottom: var(--volunteer-space-lg);
  border-bottom: 2px solid rgba(139, 92, 246, 0.1);
}

.volunteer-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--volunteer-space-md);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--volunteer-gray-obsidian);
  margin: 0 0 var(--volunteer-space-sm) 0;
}

.volunteer-section-title i {
  color: var(--volunteer-luxury-secondary);
  font-size: 1.25rem;
}

.volunteer-step-header p {
  color: var(--volunteer-gray-charcoal);
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}

/* Form Grid */
.volunteer-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--volunteer-space-lg);
  margin-bottom: var(--volunteer-space-lg);
}

/* Form Fields */
.volunteer-form-field-luxury {
  position: relative;
  margin-bottom: var(--volunteer-space-lg);
}

.volunteer-field-label {
  display: flex;
  align-items: center;
  gap: var(--volunteer-space-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--volunteer-gray-obsidian);
  margin-bottom: var(--volunteer-space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.volunteer-field-label i {
  color: var(--volunteer-luxury-secondary);
  font-size: 0.875rem;
}

.required {
  color: var(--volunteer-luxury-danger);
  font-weight: 700;
  margin-left: var(--volunteer-space-xs);
}

/* Django Form Elements */
.volunteer-form-content input[type="text"],
.volunteer-form-content input[type="email"],
.volunteer-form-content input[type="number"],
.volunteer-form-content input[type="date"],
.volunteer-form-content input[type="tel"],
.volunteer-form-content textarea {
  width: 100%;
  padding: var(--volunteer-space-md) var(--volunteer-space-lg);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--volunteer-radius-luxurious);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  font-size: 0.875rem;
  color: var(--volunteer-gray-obsidian);
  font-family: inherit;
  transition: var(--volunteer-transition-smooth);
  font-weight: 500;
}

.volunteer-form-content input:focus,
.volunteer-form-content textarea:focus {
  outline: none;
  border-color: var(--volunteer-luxury-secondary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

.volunteer-form-content input.error,
.volunteer-form-content textarea.error {
  border-color: var(--volunteer-luxury-danger);
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.volunteer-form-content input::placeholder,
.volunteer-form-content textarea::placeholder {
  color: var(--volunteer-gray-slate);
}

/* Select Styling */
.volunteer-select-wrapper {
  position: relative;
}

.volunteer-form-content select {
  width: 100%;
  padding: var(--volunteer-space-md) 2.5rem var(--volunteer-space-md) var(--volunteer-space-lg);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--volunteer-radius-luxurious);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  font-size: 0.875rem;
  color: var(--volunteer-gray-obsidian);
  cursor: pointer;
  appearance: none;
  transition: var(--volunteer-transition-smooth);
  font-weight: 500;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238b5cf6' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--volunteer-space-md) center;
  background-size: 16px;
}

.volunteer-form-content select:focus {
  outline: none;
  border-color: var(--volunteer-luxury-secondary);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

/* Textarea Styling */
.volunteer-form-content textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Hours Input Wrapper */
.volunteer-hours-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.volunteer-hours-input-wrapper input {
  padding-right: 5rem;
}

.volunteer-hours-label {
  position: absolute;
  right: var(--volunteer-space-lg);
  color: var(--volunteer-gray-charcoal);
  font-size: 0.875rem;
  font-weight: 600;
  pointer-events: none;
}

/* Error Styling */
.volunteer-field-error {
  color: var(--volunteer-luxury-danger);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: var(--volunteer-space-xs);
  display: flex;
  align-items: center;
  gap: var(--volunteer-space-xs);
}

.volunteer-field-error::before {
  content: "⚠";
  font-size: 0.875rem;
}

/* Reference Section */
.volunteer-reference-section {
  background: rgba(139, 92, 246, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--volunteer-radius-luxurious);
  padding: var(--volunteer-space-xl);
  margin-top: var(--volunteer-space-xl);
}

.volunteer-reference-title {
  display: flex;
  align-items: center;
  gap: var(--volunteer-space-sm);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--volunteer-gray-obsidian);
  margin: 0 0 var(--volunteer-space-sm) 0;
}

.volunteer-reference-title i {
  color: var(--volunteer-luxury-secondary);
}

.volunteer-reference-description {
  color: var(--volunteer-gray-charcoal);
  font-size: 0.875rem;
  margin-bottom: var(--volunteer-space-lg);
  line-height: 1.6;
}

/* Form Navigation */
.volunteer-form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--volunteer-space-2xl);
  padding-top: var(--volunteer-space-xl);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.volunteer-nav-spacer {
  flex: 1;
}

/* Luxury Buttons */
.volunteer-luxury-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--volunteer-space-sm);
  padding: var(--volunteer-space-md) var(--volunteer-space-xl);
  border: none;
  border-radius: var(--volunteer-radius-luxurious);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--volunteer-transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-family: inherit;
  min-width: 140px;
}

.volunteer-luxury-btn.primary {
  background: linear-gradient(135deg, var(--volunteer-luxury-secondary), var(--volunteer-luxury-primary));
  color: white;
  box-shadow: var(--volunteer-shadow-luxurious);
}

.volunteer-luxury-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--volunteer-shadow-majestic);
  background: linear-gradient(135deg, var(--volunteer-luxury-primary), #6366f1);
}

.volunteer-luxury-btn.secondary {
  background: rgba(139, 92, 246, 0.1);
  color: var(--volunteer-luxury-secondary);
  border: 2px solid rgba(139, 92, 246, 0.2);
}

.volunteer-luxury-btn.secondary:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

.volunteer-luxury-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.volunteer-btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.volunteer-luxury-btn:hover .volunteer-btn-shimmer {
  left: 100%;
}

/* Sidebar */
.volunteer-sidebar {
  position: sticky;
  top: var(--volunteer-space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--volunteer-space-xl);
}

.volunteer-sidebar-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--volunteer-radius-divine);
  box-shadow: var(--volunteer-shadow-luxurious);
  overflow: hidden;
  transition: var(--volunteer-transition-smooth);
}

.volunteer-sidebar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--volunteer-shadow-majestic);
  border-color: rgba(139, 92, 246, 0.2);
}

.volunteer-sidebar-header {
  display: flex;
  align-items: center;
  gap: var(--volunteer-space-md);
  padding: var(--volunteer-space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
}

.volunteer-sidebar-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--volunteer-luxury-secondary), var(--volunteer-luxury-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.volunteer-sidebar-icon.support {
  background: linear-gradient(135deg, var(--volunteer-luxury-success), #059669);
}

.volunteer-sidebar-header h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--volunteer-gray-obsidian);
  margin: 0;
}

.volunteer-sidebar-content {
  padding: var(--volunteer-space-lg);
}

/* Process List */
.volunteer-process-list {
  display: flex;
  flex-direction: column;
  gap: var(--volunteer-space-md);
}

.volunteer-process-item {
  display: flex;
  align-items: flex-start;
  gap: var(--volunteer-space-md);
  padding: var(--volunteer-space-md);
  background: rgba(139, 92, 246, 0.03);
  border-radius: var(--volunteer-radius-elegant);
  transition: var(--volunteer-transition-swift);
}

.volunteer-process-item:hover {
  background: rgba(139, 92, 246, 0.08);
  transform: translateX(4px);
}

.volunteer-process-step {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--volunteer-luxury-secondary), var(--volunteer-luxury-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.volunteer-process-content {
  flex: 1;
}

.volunteer-process-content strong {
  display: block;
  font-weight: 700;
  color: var(--volunteer-gray-obsidian);
  margin-bottom: var(--volunteer-space-xs);
  font-size: 0.875rem;
}

.volunteer-process-content span {
  color: var(--volunteer-gray-charcoal);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Contact Methods */
.volunteer-sidebar-content p {
  color: var(--volunteer-gray-charcoal);
  margin-bottom: var(--volunteer-space-lg);
  line-height: 1.6;
}

.volunteer-contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--volunteer-space-md);
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.volunteer-contact-method {
  display: flex;
  align-items: center;
  gap: var(--volunteer-space-sm);
  padding: var(--volunteer-space-sm) var(--volunteer-space-md);
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--volunteer-radius-elegant);
  color: var(--volunteer-luxury-success);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--volunteer-transition-swift);
}

.volunteer-contact-method:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

.volunteer-contact-method i {
  font-size: 0.875rem;
}

/* Toast Notifications */
.volunteer-toast-container-luxury {
  position: fixed;
  top: var(--volunteer-space-lg);
  right: var(--volunteer-space-lg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: var(--volunteer-space-sm);
  max-width: 400px;
}

.volunteer-toast-luxury {
  display: flex;
  align-items: center;
  gap: var(--volunteer-space-md);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--volunteer-radius-luxurious);
  box-shadow: var(--volunteer-shadow-majestic);
  padding: var(--volunteer-space-md) var(--volunteer-space-lg);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 4px solid;
}

.volunteer-toast-luxury.show {
  transform: translateX(0);
}

.volunteer-toast-luxury.volunteer-toast-success {
  border-left-color: var(--volunteer-luxury-success);
}

.volunteer-toast-luxury.volunteer-toast-success i {
  color: var(--volunteer-luxury-success);
}

.volunteer-toast-luxury.volunteer-toast-error {
  border-left-color: var(--volunteer-luxury-danger);
}

.volunteer-toast-luxury.volunteer-toast-error i {
  color: var(--volunteer-luxury-danger);
}

.volunteer-toast-luxury.volunteer-toast-info {
  border-left-color: var(--volunteer-luxury-accent);
}

.volunteer-toast-luxury.volunteer-toast-info i {
  color: var(--volunteer-luxury-accent);
}

.volunteer-toast-content {
  flex: 1;
  font-size: 0.9rem;
  color: var(--volunteer-gray-obsidian);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .volunteer-layout {
    grid-template-columns: 1fr 320px;
    gap: var(--volunteer-space-xl);
  }
}

@media (max-width: 1200px) {
  .volunteer-layout {
    grid-template-columns: 1fr 300px;
  }
  
  .volunteer-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .volunteer-layout {
    grid-template-columns: 1fr;
    gap: var(--volunteer-space-xl);
  }
  
  .volunteer-sidebar {
    position: static;
    order: 1;
  }
  
  .volunteer-form-main {
    order: 2;
  }
  
  .volunteer-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .volunteer-luxury-container {
    padding: var(--volunteer-space-md) 0;
  }
  
  .volunteer-main-section {
    padding: 0 var(--volunteer-space-md);
  }
  
  .volunteer-hero-section {
    padding: var(--volunteer-space-xl) var(--volunteer-space-md);
    margin: 0 var(--volunteer-space-md) var(--volunteer-space-lg);
  }
  
  .volunteer-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
  }
  
  .volunteer-hero-subtitle {
    font-size: 1rem;
  }
  
  .volunteer-form-header {
    flex-direction: column;
    gap: var(--volunteer-space-lg);
    text-align: center;
  }
  
  .volunteer-form-content {
    padding: var(--volunteer-space-lg);
  }
  
  .volunteer-form-navigation {
    flex-direction: column;
    gap: var(--volunteer-space-md);
  }
  
  .volunteer-nav-spacer {
    display: none;
  }
  
  .volunteer-luxury-btn {
    width: 100%;
    max-width: auto;
  }
  
  .volunteer-toast-container-luxury {
    left: var(--volunteer-space-md);
    right: var(--volunteer-space-md);
    max-width: none;
  }
}

@media (max-width: 576px) {
  .volunteer-form-header {
    scale: 0.8;
  }
  
  .volunteer-form-content {
    padding: var(--volunteer-space-lg);
  }
  
  .volunteer-hero-title {
    font-size: 2rem;
  }

  .volunteer-progress-indicator {
    scale: 0.8;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(139, 92, 246, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--volunteer-gradient-luxury);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--volunteer-gradient-royal);
}

/* Selection styling */
::selection {
  background: rgba(139, 92, 246, 0.2);
  color: var(--volunteer-luxury-primary);
}

/* Focus outline for accessibility */
*:focus {
  outline: 2px solid var(--volunteer-luxury-secondary);
  outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}