/* Revolutionary Contact Experience Styles */

.revolutionary-contact {
  position: relative;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
  overflow: hidden;
  min-height: 100vh;
}

.revolutionary-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Background Effects */
.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.contact-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 40%);
  animation: particleFloat 30s ease-in-out infinite;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
  animation: shapeFloat 40s linear infinite;
}

/* Header Styles */
.contact-main-title {
  background: linear-gradient(135deg, var(--primary, #0f172a) 0%, var(--secondary, #1e293b) 50%, var(--accent, #0052cc) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
}

.welcome-animation {
  animation: welcomeSlideIn 0.8s ease-out forwards;
}

/* Contact Method Selector */
.contact-method-selector {
  margin-bottom: 3rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.method-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent, #0052cc) 0%, var(--accent-light, #4f9bff) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.method-card:hover::before,
.method-card.active::before {
  transform: scaleX(1);
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: var(--accent, #0052cc);
}

.method-card.active {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1) 0%, rgba(79, 155, 255, 0.1) 100%);
  border-color: var(--accent, #0052cc);
  transform: translateY(-4px);
}

/* Method Card Icons */
.method-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent, #0052cc) 0%, var(--accent-light, #4f9bff) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.3);
  transition: all 0.3s ease;
}

.method-card:hover .method-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0, 82, 204, 0.4);
}

.icon-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--accent, #0052cc);
  border-radius: 50%;
  animation: iconPulse 2s infinite;
  opacity: 0.6;
}

.icon-pulse.urgent {
  border-color: #dc3545;
  animation: urgentPulse 1s infinite;
}

/* Method Card Content */
.method-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary, #0f172a);
  margin-bottom: 0.75rem;
}

.method-card p {
  color: var(--secondary, #1e293b);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.method-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.75rem;
}

.response-time {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary, #1e293b);
}

.availability {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.availability.online {
  background: #d1fae5;
  color: #065f46;
}

.availability.available {
  background: #dbeafe;
  color: #1e40af;
}

.availability.fast {
  background: #fef3c7;
  color: #92400e;
}

.availability.urgent {
  background: #fee2e2;
  color: #991b1b;
}

.method-features {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(0, 82, 204, 0.1);
  color: var(--accent, #0052cc);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 82, 204, 0.2);
}

/* Contact Interface */
.contact-interface {
  position: relative;
  min-height: 0;
}

.contact-panel {
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  border-radius: 1.5rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  z-index: 50;
}

.contact-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  z-index: 50;
}

/* Panel Headers */
.panel-header {
  background: linear-gradient(135deg, var(--accent, #0052cc) 0%, var(--accent-light, #4f9bff) 100%);
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-header.urgent {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.agent-avatar,
.calendar-icon,
.form-icon,
.urgent-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.agent-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

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

.status-indicator.online {
  background: #10b981;
  animation: statusPulse 2s infinite;
}

.agent-info h5,
.scheduler-info h5,
.form-info h5,
.urgent-info h5 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.agent-info p,
.scheduler-info p,
.form-info p,
.urgent-info p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.btn-close-panel {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-close-panel:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Chat Interface */
.chat-conversation {
  padding: 2rem;
  max-height: 300px;
  overflow-y: auto;
}

.message {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent, #0052cc) 0%, var(--accent-light, #4f9bff) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.message-content {
  flex-grow: 1;
}

.message-content p {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 1rem;
  margin: 0 0 0.5rem 0;
  border: 1px solid #e2e8f0;
}

.message-time {
  font-size: 0.8rem;
  color: #64748b;
}

.quick-responses {
  padding: 0 2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-btn {
  background: rgba(0, 82, 204, 0.1);
  border: 1px solid rgba(0, 82, 204, 0.3);
  color: var(--accent, #0052cc);
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.quick-btn:hover {
  background: var(--accent, #0052cc);
  color: white;
  transform: translateY(-2px);
}

.chat-input {
  padding: 1rem 2rem 2rem;
}

.chat-input .input-group {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chat-input .form-control {
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.chat-input .btn {
  border: none;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--accent, #0052cc) 0%, var(--accent-light, #4f9bff) 100%);
}

/* Scheduler Content */
.scheduler-content {
  padding: 2rem;
}

.meeting-type-selector {
  margin-bottom: 2rem;
}

.meeting-type-selector h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary, #0f172a);
}

.meeting-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.meeting-type {
  margin: 0;
  cursor: pointer;
}

.meeting-type input {
  display: none;
}

.type-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.meeting-type:hover .type-card,
.meeting-type input:checked + .type-card {
  background: rgba(0, 82, 204, 0.1);
  border-color: var(--accent, #0052cc);
  transform: translateY(-2px);
}

.type-card i {
  font-size: 2rem;
  color: var(--accent, #0052cc);
  margin-bottom: 0.75rem;
}

.type-card span {
  display: block;
  font-weight: 600;
  color: var(--primary, #0f172a);
  margin-bottom: 0.5rem;
}

.type-card small {
  color: var(--secondary, #1e293b);
  font-size: 0.8rem;
}

.time-slots h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary, #0f172a);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.time-slot {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.time-slot:hover,
.time-slot.selected {
  background: var(--accent, #0052cc);
  color: white;
  border-color: var(--accent, #0052cc);
  transform: translateY(-2px);
}

.time-slot.unavailable {
  background: #f8f9fa !important;
  color: #6c757d !important;
  border-color: #dee2e6 !important;
  cursor: not-allowed !important;
  position: relative;
}

.time-slot.unavailable:hover {
  transform: none !important;
  background: #f8f9fa !important;
}

.unavailable-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  font-weight: 600;
  color: #dc3545;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced Form */
.enhanced-form {
  padding: 2rem;
}

.form-progress {
  margin-bottom: 2rem;
}

.progress-bar {
  background: #e2e8f0;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  background: linear-gradient(90deg, var(--accent, #0052cc) 0%, var(--accent-light, #4f9bff) 100%);
  height: 100%;
  width: 33.33%;
  transition: width 0.4s ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
}

.step {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.step.active {
  color: var(--accent, #0052cc);
  font-weight: 600;
}

.form-step {
  display: none;
  animation: stepSlideIn 0.4s ease-out forwards;
}

.form-step.active {
  display: block;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary, #0f172a);
  margin-bottom: 1.5rem;
}

.service-selector,
.budget-selector,
.timeline-selector {
  margin-bottom: 2rem;
}

.service-options,
.budget-options,
.timeline-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.service-option,
.budget-option,
.timeline-option {
  margin: 0;
  cursor: pointer;
}

.service-option input,
.budget-option input,
.timeline-option input {
  display: none;
}

.option-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-option:hover .option-card,
.service-option input:checked + .option-card {
  background: rgba(0, 82, 204, 0.1);
  border-color: var(--accent, #0052cc);
  transform: translateY(-2px);
}

.option-card i {
  font-size: 2rem;
  color: var(--accent, #0052cc);
  margin-bottom: 0.75rem;
}

.option-card span {
  display: block;
  font-weight: 600;
  color: var(--primary, #0f172a);
}

.budget-options {
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.budget-option span {
  display: block;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.budget-option:hover span,
.budget-option input:checked + span {
  background: rgba(0, 82, 204, 0.1);
  border-color: var(--accent, #0052cc);
  color: var(--accent, #0052cc);
}

.timeline-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.timeline-option:hover .timeline-card,
.timeline-option input:checked + .timeline-card {
  background: rgba(0, 82, 204, 0.1);
  border-color: var(--accent, #0052cc);
  transform: translateY(-2px);
}

.timeline-card.urgent {
  background: rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
}

.timeline-card.urgent i {
  color: #dc3545;
}

.timeline-card i {
  font-size: 2rem;
  color: var(--accent, #0052cc);
  margin-bottom: 0.75rem;
}

.timeline-card span {
  display: block;
  font-weight: 600;
  color: var(--primary, #0f172a);
  margin-bottom: 0.5rem;
}

.timeline-card small {
  color: var(--secondary, #1e293b);
  font-size: 0.8rem;
}

.urgency-slider {
  margin-bottom: 2rem;
}

.slider-container {
  position: relative;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--secondary, #1e293b);
}

.urgency-value {
  font-weight: 600;
  color: var(--accent, #0052cc);
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

/* Urgent Support */
.urgent-content {
  padding: 2rem;
}

.urgent-options {
  display: grid;
  gap: 1rem;
}

.urgent-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.urgent-option:hover {
  background: rgba(220, 53, 69, 0.1);
  border-color: #dc3545;
  color: inherit;
  text-decoration: none;
  transform: translateY(-2px);
}

.urgent-option .option-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.urgent-option .option-content h6 {
  margin: 0 0 0.25rem 0;
  font-weight: 600;
  color: var(--primary, #0f172a);
}

.urgent-option .option-content p {
  margin: 0 0 0.5rem 0;
  color: var(--secondary, #1e293b);
}

.urgent-option .status {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status.available {
  background: #d1fae5;
  color: #065f46;
}

.status.priority {
  background: #fee2e2;
  color: #991b1b;
}

.status.tracking {
  background: #dbeafe;
  color: #1e40af;
}

/* Contact Info Cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.info-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent, #0052cc) 0%, var(--accent-light, #4f9bff) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.info-card h6 {
  font-weight: 600;
  color: var(--primary, #0f172a);
  margin-bottom: 0.75rem;
}

.info-card p {
  color: var(--secondary, #1e293b);
  margin: 0;
  line-height: 1.5;
}

.current-time {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent, #0052cc);
  margin-top: 0.5rem;
}

/* Social Proof */
.social-proof {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.recent-contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.contact-indicator {
  font-size: 0.9rem;
  color: var(--secondary, #1e293b);
}

/* Form Validation */
.form-control.is-valid {
  border-color: #10b981;
  box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
}

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

.validation-feedback {
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.validation-feedback.valid {
  color: #10b981;
}

.validation-feedback.invalid {
  color: #dc3545;
}

/* Animations */
@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(2deg); }
  66% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes shapeFloat {
  0% { transform: translateX(0); }
  100% { transform: translateX(80px); }
}

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

@keyframes iconPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .method-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-interface {
    min-height: auto;
  }
  
  .contact-panel {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .contact-panel:not(.active) {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-main-title {
    font-size: 2.5rem;
  }
  
  .method-card {
    padding: 1.5rem;
  }
  
  .method-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .panel-header {
    padding: 1rem 1.5rem;
  }
  
  .chat-conversation,
  .scheduler-content,
  .enhanced-form,
  .urgent-content {
    padding: 1.5rem;
  }
  
  .meeting-types,
  .service-options {
    grid-template-columns: 1fr;
  }
  
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .method-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .quick-responses {
    flex-direction: column;
  }
  
  .quick-btn {
    text-align: center;
  }
  
  .slots-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  
  .form-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-navigation button {
    width: 100%;
  }
}

/* Dark Mode Support */
.dark-mode .revolutionary-contact {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.dark-mode .method-card,
.dark-mode .contact-panel,
.dark-mode .info-card,
.dark-mode .social-proof {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

.dark-mode .contact-main-title,
.dark-mode .method-card h4,
.dark-mode .step-title,
.dark-mode .info-card h6 {
  color: #ffffff;
}

.dark-mode .method-card p,
.dark-mode .info-card p,
.dark-mode .contact-indicator {
  color: #cbd5e1;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .contact-particles,
  .floating-shapes,
  .icon-pulse,
  .status-indicator {
    animation: none;
  }
  
  .method-card,
  .contact-panel,
  .info-card {
    transition: none;
  }
}

/* Focus States */
.method-card:focus,
.time-slot:focus,
.quick-btn:focus,
.urgent-option:focus {
  outline: 2px solid var(--accent, #0052cc);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .revolutionary-contact {
    background: white;
    color: black;
  }
  
  .contact-particles,
  .floating-shapes,
  .contact-background {
    display: none;
  }
  
  .method-card,
  .contact-panel,
  .info-card {
    background: white;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}