/**
 * Plugin CSS - Urgence DÃ©pannage
 * Version: 1.0.0
 * Styles pour le plugin d'urgence dÃ©pannage automobile
 */

/* Variables CSS pour la cohÃ©rence */
:root {
  --erp-primary: #ef4444;
  --erp-primary-dark: #dc2626;
  --erp-primary-darker: #b91c1c;
  --erp-success: #10b981;
  --erp-success-dark: #059669;
  --erp-warning: #f59e0b;
  --erp-error: #ef4444;
  --erp-accent: #6366f1;
  --erp-white: #ffffff;
  --erp-gray-50: #f9fafb;
  --erp-gray-100: #f3f4f6;
  --erp-gray-200: #e5e7eb;
  --erp-gray-300: #d1d5db;
  --erp-gray-400: #9ca3af;
  --erp-gray-500: #6b7280;
  --erp-gray-600: #4b5563;
  --erp-gray-700: #374151;
  --erp-gray-800: #1f2937;
  --erp-gray-900: #111827;
  --erp-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --erp-border-radius: 12px;
  --erp-border-radius-lg: 16px;
  --erp-border-radius-xl: 24px;
  --erp-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --erp-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --erp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --erp-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --erp-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --erp-spacing-xs: 0.25rem;
  --erp-spacing-sm: 0.5rem;
  --erp-spacing-md: 1rem;
  --erp-spacing-lg: 1.5rem;
  --erp-spacing-xl: 2rem;
  --erp-spacing-2xl: 3rem;
}

/* Reset et base */
.erp-floating-button,
.erp-indicator,
.erp-modal,
.erp-modal * {
  box-sizing: border-box;
  font-family: var(--erp-font-family);
}

/* Bouton flottant */
.erp-floating-button {
  position: fixed;
  left: 20px;
  bottom: 20px;
  transform: translateX(0);
  z-index: 10000;
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.erp-floating-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.erp-button-content {
  background: linear-gradient(135deg, #ef4444, #dc5926);
  color: white;
  padding: 10px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--erp-spacing-md);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: var(--erp-transition);
  min-width: 180px;
  user-select: none;
  backdrop-filter: blur(10px);
}

.erp-button-content:hover {
  background: linear-gradient(135deg, #dc2626, #dc5926);
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.4);
}

.erp-button-content:active {
  transform: scale(0.98);
}

.erp-icon {
  font-size: 24px;
  animation: erp-emergency-pulse 2s ease-in-out infinite;
  transform-origin: center;
  display: inline-block;
}

.erp-text {
  line-height: 1.2;
  text-align: center;
  flex: 1;
}


/* Indicateur visuel */
.erp-indicator {
  display: none;
}

/* Modale */
.erp-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.erp-modal.open {
  display: flex;
}

.erp-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: erp-fadeIn 0.3s ease-out;
}

.erp-modal-content {
  position: relative;
  backdrop-filter: blur(20px);
  border-radius: var(--erp-border-radius-xl);
  box-shadow: var(--erp-shadow-xl);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  animation: erp-modalSlideIn 0.3s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Header de la modale */
.erp-modal-header {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: var(--erp-spacing-xl);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.erp-modal-header h2 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--erp-font-family);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.erp-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--erp-transition);
  line-height: 1;
}

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

.erp-close-btn:active {
  transform: scale(0.95);
}

/* Barre de progression */
.erp-progress {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.erp-progress-step {
  height: 8px;
  border-radius: 4px;
  flex: 1;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}

.erp-progress-step.active {
  background: white;
}

/* Corps de la modale */
.erp-modal-body {
  padding: var(--erp-spacing-xl);
  max-height: calc(90vh - 140px);
  overflow-y: auto;
  font-family: var(--erp-font-family);
  background: rgba(255, 255, 255, 0.98);
  line-height: 1.6;
}

.erp-modal-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--erp-gray-900);
  margin-bottom: var(--erp-spacing-lg);
  text-align: center;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.erp-modal-body p {
  font-size: 1rem;
  color: var(--erp-gray-600);
  line-height: 1.6;
  margin-bottom: var(--erp-spacing-md);
}

/* Scrollbar personnalisÃ©e */
.erp-modal-body::-webkit-scrollbar {
  width: 6px;
}

.erp-modal-body::-webkit-scrollbar-track {
  background: var(--erp-blue-50);
  border-radius: 3px;
}

.erp-modal-body::-webkit-scrollbar-thumb {
  background: var(--erp-blue-300);
  border-radius: 3px;
}

.erp-modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--erp-blue-400);
}

/* Types de rÃ©paration */
.erp-repair-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--erp-spacing-lg);
  margin-bottom: var(--erp-spacing-xl);
}

.erp-repair-type {
  border: 1px solid var(--erp-gray-200);
  border-radius: var(--erp-border-radius-lg);
  padding: var(--erp-spacing-xl);
  cursor: pointer;
  transition: var(--erp-transition);
  text-align: center;
  background: #ffffff;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--erp-shadow-sm);
}

.erp-repair-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229, 231, 235, 0.3), transparent);
  transition: left 0.5s ease;
}

.erp-repair-type:hover {
  border-color: var(--erp-gray-300);
  background: var(--erp-gray-50);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.erp-repair-type:hover::before {
  left: 100%;
}

.erp-repair-type:active {
  transform: translateY(0);
}

.erp-repair-type-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--erp-spacing-md);
  display: inline-block;
  border: 3px solid var(--erp-primary);
  border-radius: 50%;
  position: relative;
  transition: transform 0.2s ease;
}

.erp-repair-type:hover .erp-repair-type-icon {
  transform: scale(1.1);
}

/* IcÃ´nes CSS simples avec contours rouges */
.erp-icon-battery::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 28px;
  border: 2px solid var(--erp-primary);
  border-radius: 2px;
}

.erp-icon-battery::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 4px;
  background: var(--erp-primary);
  border-radius: 1px;
}

.erp-icon-tire::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border: 3px solid var(--erp-primary);
  border-radius: 50%;
}

.erp-icon-tire::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border: 2px solid var(--erp-primary);
  border-radius: 50%;
}

.erp-icon-engine::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 24px;
  height: 3px;
  background: var(--erp-primary);
  border-radius: 2px;
}

.erp-icon-engine::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 24px;
  height: 3px;
  background: var(--erp-primary);
  border-radius: 2px;
}

.erp-icon-fuel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 24px;
  border: 2px solid var(--erp-primary);
  border-radius: 0 0 8px 8px;
}

.erp-icon-fuel::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 60%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border: 2px solid var(--erp-primary);
  border-radius: 0 4px 0 0;
}

.erp-icon-electrical::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 16px solid var(--erp-primary);
}

.erp-icon-electrical::after {
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid var(--erp-primary);
}

.erp-icon-lockout::before {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border: 2px solid var(--erp-primary);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}

.erp-icon-lockout::after {
  content: '';
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 12px;
  background: var(--erp-primary);
  border-radius: 2px;
}

/* IcÃ´nes pour les sections de rÃ©sumÃ© */
.erp-summary-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
}

.erp-icon-check::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 12px;
  border: 2px solid var(--erp-success);
  border-left: none;
  border-top: none;
}

.erp-icon-location::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 16px;
  border: 2px solid var(--erp-primary);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.erp-icon-location::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: var(--erp-primary);
  border-radius: 50%;
}

.erp-icon-clock::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid var(--erp-primary);
  border-radius: 50%;
}

.erp-icon-clock::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 6px;
  background: var(--erp-primary);
  transform-origin: bottom;
  transform: translate(-50%, -75%) rotate(90deg);
}

/* IcÃ´ne de succÃ¨s */
.erp-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
  border: 4px solid var(--erp-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erp-icon-success::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px;
  height: 24px;
  border: 4px solid var(--erp-success);
  border-left: none;
  border-top: none;
}

/* IcÃ´ne de localisation grande */
.erp-location-pin {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erp-icon-location-big::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 40px;
  height: 50px;
  border: 4px solid var(--erp-primary);
  border-radius: 50% 50% 50% 0;
}

.erp-icon-location-big::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--erp-primary);
  border-radius: 50%;
}

/* IcÃ´ne d'avertissement */
.erp-error-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
}

.erp-icon-warning::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid var(--erp-warning);
}

.erp-icon-warning::after {
  content: '!';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 12px;
}

/* IcÃ´nes dans les boutons */
.erp-btn-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
}

/* IcÃ´ne de succÃ¨s de localisation */
.erp-location-icon-success {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
  margin-right: 12px;
}

/* IcÃ´ne d'estimation */
.erp-estimate-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
}

.erp-repair-type-name {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--erp-gray-900);
  margin-bottom: var(--erp-spacing-sm);
  transition: color 0.2s ease;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.erp-repair-type:hover .erp-repair-type-name {
  color: var(--erp-gray-900);
}

.erp-repair-type-desc {
  font-size: 0.875rem;
  color: var(--erp-gray-500);
  line-height: 1.4;
}

/* Questions du diagnostic */
.erp-question {
  border: 2px solid var(--erp-blue-200);
  border-radius: var(--erp-border-radius);
  padding: var(--erp-spacing-lg);
  margin-bottom: var(--erp-spacing-lg);
  background: var(--erp-white);
  backdrop-filter: blur(10px);
  transition: var(--erp-transition);
  box-shadow: var(--erp-shadow-sm);
}

.erp-question:hover {
  border-color: var(--erp-primary);
  background: var(--erp-light-blue);
  box-shadow: var(--erp-shadow);
}

.erp-question-text {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: var(--erp-spacing-md);
  color: var(--erp-blue-800);
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.erp-question-options {
  display: flex;
  gap: var(--erp-spacing-lg);
  flex-direction: row;
}

.erp-radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  padding: var(--erp-spacing-sm) var(--erp-spacing-md);
  border-radius: var(--erp-border-radius);
  transition: var(--erp-transition);
  border: 1px solid transparent;
}

.erp-radio-option:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: var(--erp-primary);
}

.erp-radio-option input {
  margin-right: var(--erp-spacing-sm);
  accent-color: var(--erp-primary);
  width: 16px;
  height: 16px;
}

.erp-radio-option.yes {
  color: var(--erp-success);
}

.erp-radio-option.no {
  color: var(--erp-error);
}

/* Boutons */
.erp-btn {
  background: var(--erp-primary);
  color: white;
  border: none;
  padding: var(--erp-spacing-md) var(--erp-spacing-xl);
  border-radius: var(--erp-border-radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--erp-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--erp-spacing-sm);
  text-decoration: none;
  font-family: var(--erp-font-family);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.025em;
  min-height: 44px;
  box-shadow: var(--erp-shadow-sm);
  width: 100%;
}

.erp-btn::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: width 0.3s ease, height 0.3s ease;
}

.erp-btn:hover::before {
  width: 300px;
  height: 300px;
}

.erp-btn:hover {
  background: var(--erp-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--erp-shadow-lg);
}

.erp-btn:active {
  transform: translateY(0);
}

.erp-btn:disabled {
  background: var(--erp-blue-300);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.erp-btn:disabled::before {
  display: none;
}

.erp-btn-secondary {
  background: var(--erp-blue-500);
}

.erp-btn-secondary:hover {
  background: var(--erp-blue-600);
}

.erp-btn-success {
  background: var(--erp-success);
}

.erp-btn-success:hover {
  background: var(--erp-success-dark);
}

.erp-submit-btn {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: white !important;
  border: 2px solid #059669 !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4) !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.erp-submit-btn:hover {
  background: linear-gradient(135deg, #059669, #047857) !important;
  border-color: #047857 !important;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5) !important;
  transform: translateY(-2px) !important;
}

.erp-submit-btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
}

/* Section de localisation */
.erp-location-intro {
  text-align: center;
  margin-bottom: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: var(--erp-border-radius-lg);
  border: 1px solid #e2e8f0;
}

.erp-location-pin {
  font-size: 80px;
  margin-bottom: 20px;
  color: var(--erp-primary);
  filter: drop-shadow(0 4px 8px rgba(239, 68, 68, 0.3));
  animation: erp-pulse 2s infinite;
}

.erp-location-text {
  font-size: 1.125rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.erp-location-cards {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.erp-location-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--erp-border-radius-lg);
  padding: 28px;
  transition: var(--erp-transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.erp-location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--erp-primary), #f97316);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.erp-location-card:hover {
  border-color: var(--erp-primary);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
  transform: translateY(-2px);
}

.erp-location-card:hover::before {
  opacity: 1;
}

.erp-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.3;
}

.erp-card-desc {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.erp-manual-input {
  display: block;
  margin-top: 20px;
}

.erp-address-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--erp-border-radius);
  font-size: 0.9375rem;
  font-family: var(--erp-font-family);
  transition: var(--erp-transition);
  background: white;
  min-height: 50px;
  margin-bottom: 12px;
  color: #000000 !important;
}

.erp-address-input:focus {
  outline: none;
  border-color: var(--erp-primary);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  color: #000000 !important;
}

.erp-address-input::placeholder {
  color: #94a3b8;
}

.erp-geo-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--erp-primary), #dc2626);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: var(--erp-border-radius);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: var(--erp-transition);
  min-height: 56px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  width: 100%;
}

.erp-geo-btn:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.erp-geo-btn:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.erp-validate-btn {
  background: #64748b;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: var(--erp-border-radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--erp-transition);
  min-height: 50px;
  text-transform: uppercase;
  width: 100%;
}

.erp-validate-btn:hover {
  background: #475569;
}

.erp-location-continue {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: var(--erp-border-radius);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--erp-transition);
  width: 100%;
  min-height: 56px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.erp-location-continue:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.erp-location-success {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 2px solid #10b981;
  border-radius: var(--erp-border-radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.erp-location-success-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.erp-location-icon-success {
  font-size: 24px;
  color: #10b981;
}

.erp-location-success h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #065f46;
  margin: 0;
  text-transform: uppercase;
}

.erp-location-success p {
  color: #047857;
  font-size: 0.9375rem;
  margin: 0 0 8px 0;
  font-weight: 500;
}

.erp-coordinates {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  background: rgba(16, 185, 129, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8125rem;
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.erp-diagnostic-result {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid #3b82f6;
  border-radius: var(--erp-border-radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}

.erp-diagnostic-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e40af;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.erp-diagnostic-result p {
  color: #1e40af;
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.5;
}

.erp-btn-active {
  background: linear-gradient(135deg, var(--erp-primary), #dc2626) !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
}

/* Champs de saisie */
.erp-input {
  width: 100%;
  padding: var(--erp-spacing-md);
  border: 2px solid #3E3E3E;
  border-radius: var(--erp-border-radius);
  font-size: 0.875rem;
  font-family: var(--erp-font-family);
  transition: var(--erp-transition);
  background: var(--erp-white);
  backdrop-filter: blur(10px);
  min-height: 44px;
  box-shadow: var(--erp-shadow-sm);
  color: #000000 !important;
}

.erp-input:focus {
  outline: none;
  border-color: var(--erp-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--erp-white);
  color: #000000 !important;
}

.erp-input::placeholder {
  color: #3E3E3E;
}

/* Styles pour l'autocomplÃ©tion Google Places */
.pac-container {
  border-radius: var(--erp-border-radius) !important;
  border: 2px solid var(--erp-blue-300) !important;
  box-shadow: var(--erp-shadow-lg) !important;
  font-family: var(--erp-font-family) !important;
  z-index: 25000 !important; /* Au-dessus de la modale */
}

.pac-item {
  padding: 12px 16px !important;
  border-bottom: 1px solid var(--erp-blue-200) !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease !important;
}

.pac-item:hover {
  background-color: var(--erp-blue-50) !important;
}

.pac-item-selected {
  background-color: var(--erp-light-blue) !important;
  border-color: var(--erp-primary) !important;
}

.pac-matched {
  color: var(--erp-primary) !important;
  font-weight: 600 !important;
}

.pac-item-query {
  color: var(--erp-blue-800) !important;
  font-weight: 500 !important;
}

.pac-icon {
  margin-right: 12px !important;
}

/* Conteneur de saisie avec icÃ´ne */
.erp-manual-address {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  position: relative;
}

/* BoÃ®tes de message */
.erp-success-box {
  background: var(--erp-gray-50);
  border: 1px solid var(--erp-gray-200);
  border-radius: var(--erp-border-radius-lg);
  padding: var(--erp-spacing-xl);
  margin-bottom: var(--erp-spacing-xl);
  backdrop-filter: blur(10px);
  box-shadow: var(--erp-shadow-sm);
}

.erp-success-title {
  color: var(--erp-gray-800);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--erp-spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--erp-spacing-sm);
  letter-spacing: -0.025em;
}

.erp-success-box p {
  color: var(--erp-gray-600);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.erp-error-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--erp-border-radius-lg);
  padding: var(--erp-spacing-lg);
  margin-bottom: var(--erp-spacing-lg);
  color: var(--erp-error);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--erp-spacing-sm);
  backdrop-filter: blur(10px);
  box-shadow: var(--erp-shadow-sm);
}

.erp-info-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--erp-border-radius-lg);
  padding: var(--erp-spacing-lg);
  margin-top: var(--erp-spacing-xl);
  color: #1d4ed8;
  font-size: 0.875rem;
  line-height: 1.4;
  backdrop-filter: blur(10px);
  box-shadow: var(--erp-shadow-sm);
  text-align: center;
}

.erp-info-box strong {
  color: #1e40af;
}

/* Conteneur de la carte Google Maps */
.erp-map-container {
  margin: 24px 0;
  border: 2px solid var(--erp-blue-200);
  border-radius: var(--erp-border-radius-lg);
  padding: 20px;
  background: var(--erp-white);
  box-shadow: var(--erp-shadow);
}

.erp-google-map {
  width: 100%;
  height: 300px;
  border-radius: var(--erp-border-radius);
  border: 2px solid var(--erp-blue-300);
  background: var(--erp-blue-50);
  position: relative;
  overflow: hidden;
  margin-top: 16px;
}

/* Indicateur de chargement pour la carte */
.erp-google-map::before {
  content: 'ðŸ—ºï¸ Chargement de la carte...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--erp-blue-600);
  font-size: 14px;
  z-index: 1;
  pointer-events: none;
}

/* Masquer l'indicateur quand la carte est chargÃ©e */
.erp-google-map.loaded::before {
  display: none;
}
/* Style pour les contrÃ´les Google Maps */
.erp-google-map .gm-style-iw {
  border-radius: var(--erp-border-radius) !important;
  box-shadow: var(--erp-shadow-lg) !important;
}

.erp-google-map .gm-style-iw-d {
  overflow: hidden !important;
}

/* Sections de rÃ©sumÃ© */
.erp-summary-section {
  background: var(--erp-white);
  backdrop-filter: blur(10px);
  border-radius: var(--erp-border-radius);
  padding: var(--erp-spacing-lg);
  margin-bottom: var(--erp-spacing-lg);
  border: 1px solid var(--erp-gray-200);
  box-shadow: var(--erp-shadow-sm);
  transition: var(--erp-transition);
}

.erp-summary-section:hover {
  border-color: var(--erp-gray-300);
  box-shadow: var(--erp-shadow);
}

.erp-summary-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--erp-spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--erp-spacing-sm);
  color: #000000;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.erp-summary-section p {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.erp-summary-section small {
  font-size: 0.75rem;
  color: #333333;
  display: block;
  margin-top: var(--erp-spacing-xs);
}

/* DÃ©tails du diagnostic */
.erp-diagnostic-details {
  margin-top: var(--erp-spacing-md);
  padding-top: var(--erp-spacing-md);
  border-top: 1px solid var(--erp-gray-200);
}

.erp-diagnostic-details strong {
  color: #000000;
  font-size: 0.875rem;
  display: block;
  margin-bottom: var(--erp-spacing-sm);
}

.erp-yes-answers {
  list-style: none;
  padding: 0;
  margin: 0;
}

.erp-yes-answers li {
  color: #000000;
  font-size: 0.8125rem;
  line-height: 1.4;
  padding: 4px 0;
  padding-left: 12px;
  position: relative;
}

.erp-yes-answers li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  color: var(--erp-success);
  font-weight: bold;
}

/* Section tÃ©lÃ©phone */
.erp-phone-section {
  margin: var(--erp-spacing-xl) 0;
  padding: var(--erp-spacing-lg);
  background: var(--erp-white);
  border-radius: var(--erp-border-radius);
  border: 1px solid var(--erp-gray-200);
}

.erp-phone-section label {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: #000000;
  margin-bottom: var(--erp-spacing-sm);
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.erp-phone-section small {
  display: block;
  font-size: 0.75rem;
  color: #333333;
  margin-top: var(--erp-spacing-xs);
  font-style: italic;
}

/* BoÃ®te d'estimation */
.erp-estimate-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid #3b82f6;
  border-radius: var(--erp-border-radius-lg);
  padding: var(--erp-spacing-lg);
  margin: var(--erp-spacing-xl) 0;
  text-align: center;
}

.erp-estimate-box h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 var(--erp-spacing-sm) 0;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.erp-estimate-time {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e40af;
  margin: var(--erp-spacing-sm) 0;
}

.erp-estimate-box small {
  font-size: 0.875rem;
  color: #000000;
  display: block;
  margin-top: var(--erp-spacing-sm);
}

/* Navigation */
.erp-back-btn {
  margin-right: var(--erp-spacing-lg);
  padding: var(--erp-spacing-sm);
  background: var(--erp-gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--erp-transition);
  width: 40px;
  height: 40px;
  font-size: 1rem;
  color: var(--erp-gray-600);
  box-shadow: var(--erp-shadow-sm);
}

.erp-back-btn:hover {
  background: var(--erp-gray-200);
  color: var(--erp-white);
  transform: scale(1.1);
  box-shadow: var(--erp-shadow);
}

.erp-back-btn:active {
  transform: scale(0.95);
}

.erp-step-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--erp-spacing-xl);
}

.erp-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--erp-gray-800);
  margin: 0;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

/* Indicateur de chargement */
.erp-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--erp-white);
  border-radius: 50%;
  border-top-color: transparent;
  animation: erp-spin 1s ease-in-out infinite;
}

/* Forcer le texte en noir pour tous les Ã©lÃ©ments de la section succÃ¨s */
.erp-success-details * {
    color: #000000 !important;
}

/* SpÃ©cifiquement pour les listes dans le succÃ¨s final */
.erp-success-final ul li {
    color: #000000 !important;
}

/* Animations */
@keyframes erp-emergency-pulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
    filter: brightness(1);
  }
  50% { 
    opacity: 0.8; 
    transform: scale(1.15) rotate(5deg);
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  }
}

/* Animation plus intense au hover */
.erp-button-content:hover .erp-icon {
  animation: erp-emergency-intense 1s ease-in-out infinite;
}

@keyframes erp-emergency-intense {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    filter: brightness(1);
  }
  25% { 
    transform: scale(1.2) rotate(-10deg);
    filter: brightness(1.3) drop-shadow(0 0 12px rgba(255, 255, 255, 1));
  }
  75% { 
    transform: scale(1.2) rotate(10deg);
    filter: brightness(1.3) drop-shadow(0 0 12px rgba(255, 255, 255, 1));
  }
}

@keyframes erp-bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -8px, 0);
  }
  70% {
    transform: translate3d(0, -4px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

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

@keyframes erp-modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes erp-spin {
  to { 
    transform: rotate(360deg); 
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Bouton flottant mobile */
  .erp-floating-button {
    left: 10px;
    bottom: 10px;
  }
  
  .erp-button-content {
    padding: var(--erp-spacing-sm) var(--erp-spacing-md);
    min-width: 140px;
    font-size: 0.75rem;
    border-radius: 24px;
  }
  
  .erp-icon {
    font-size: 18px;
  }
  
  /* Modale mobile */
  .erp-modal {
    padding: 10px;
  }
  
  .erp-modal-content {
    max-height: calc(100vh - 20px);
    margin: 0 auto;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    border-radius: var(--erp-border-radius-lg);
  }
  
  .erp-modal-header {
    padding: var(--erp-spacing-lg);
    text-align: center;
  }
  
  .erp-modal-header h2 {
    font-size: 1.25rem;
    text-align: center;
    margin: 0;
  }
  
  .erp-modal-body {
    padding: var(--erp-spacing-lg);
    max-height: calc(100vh - 140px);
    text-align: left;
  }
  
  .erp-modal-body h3 {
    font-size: 1.125rem;
    margin-bottom: var(--erp-spacing-md);
    text-align: center;
  }
  
  .erp-modal-body p {
    text-align: left;
    line-height: 1.5;
  }
  
  /* Types de rÃ©paration mobile */
  .erp-repair-types {
    grid-template-columns: 1fr;
    gap: var(--erp-spacing-md);
  }
  
  .erp-repair-type {
    padding: var(--erp-spacing-lg);
    text-align: center;
  }
  
  .erp-repair-type-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--erp-spacing-sm);
    margin-left: auto;
    margin-right: auto;
  }
  
  .erp-repair-type-name {
    font-size: 1rem;
    margin-bottom: var(--erp-spacing-xs);
    text-align: center;
  }
  
  .erp-repair-type-desc {
    font-size: 0.8125rem;
    text-align: center;
  }
  
  /* Questions mobile */
  .erp-question {
    padding: var(--erp-spacing-md);
    margin-bottom: var(--erp-spacing-md);
  }
  
  .erp-question-text {
    font-size: 0.9375rem;
    margin-bottom: var(--erp-spacing-sm);
    text-align: left;
    font-weight: 500;
  }
  
  .erp-question-options {
    flex-direction: row;
    gap: var(--erp-spacing-lg);
    justify-content: center;
    align-items: center;
  }
  
  .erp-radio-option {
    padding: var(--erp-spacing-xs) var(--erp-spacing-sm);
    font-size: 0.8125rem;
    text-align: center;
  }
  
  /* Localisation mobile */
  .erp-location-intro {
    padding: var(--erp-spacing-lg);
    margin-bottom: var(--erp-spacing-lg);
    text-align: center;
  }
  
  .erp-location-pin {
    font-size: 60px;
    margin-bottom: var(--erp-spacing-md);
  }
  
  .erp-location-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    text-align: center;
  }
  
  .erp-location-card {
    padding: var(--erp-spacing-lg);
  }
  
  .erp-card-title {
    font-size: 0.9375rem;
    line-height: 1.2;
    margin-bottom: var(--erp-spacing-sm);
    text-align: center;
  }
  
  .erp-card-desc {
    font-size: 0.875rem;
    margin-bottom: var(--erp-spacing-md);
    text-align: center;
  }
  
  .erp-address-input {
    padding: 12px 14px;
    font-size: 0.875rem;
    min-height: 48px;
    text-align: left;
  }
  
  .erp-geo-btn {
    font-size: 0.8125rem;
    padding: 12px 16px;
    min-height: 48px;
    text-align: center;
  }
  
  .erp-validate-btn {
    font-size: 0.8125rem;
    padding: 12px 16px;
    min-height: 48px;
    text-align: center;
  }
  
  .erp-location-continue {
    font-size: 0.9375rem;
    padding: 14px 20px;
    min-height: 52px;
    text-align: center;
  }
  
  /* Carte Google Maps mobile */
  .erp-google-map {
    height: 200px;
    margin-top: var(--erp-spacing-sm);
  }
  
  /* RÃ©sumÃ© mobile */
  .erp-summary-section {
    padding: var(--erp-spacing-md);
    margin-bottom: var(--erp-spacing-md);
  }
  
  .erp-summary-title {
    font-size: 0.9375rem;
    margin-bottom: var(--erp-spacing-xs);
    text-align: left;
  }
  
  .erp-summary-section p {
    font-size: 0.8125rem;
    text-align: left;
  }
  
  .erp-summary-section small {
    font-size: 0.75rem;
    text-align: left;
  }
  
  /* Diagnostic dÃ©tails mobile */
  .erp-diagnostic-details strong {
    font-size: 0.8125rem;
    text-align: left;
  }
  
  .erp-yes-answers li {
    font-size: 0.75rem;
    padding: 2px 0;
    padding-left: 10px;
    text-align: left;
  }
  
  /* Section tÃ©lÃ©phone mobile */
  .erp-phone-section {
    padding: var(--erp-spacing-md);
  }
  
  .erp-phone-section label {
    font-size: 0.9375rem;
    margin-bottom: var(--erp-spacing-xs);
    text-align: left;
  }
  
  .erp-phone-section small {
    font-size: 0.75rem;
    text-align: left;
  }
  
  /* Estimation mobile */
  .erp-estimate-box {
    padding: var(--erp-spacing-md);
    text-align: center;
  }
  
  .erp-estimate-box h4 {
    font-size: 1rem;
    margin-bottom: var(--erp-spacing-xs);
    text-align: center;
  }
  
  .erp-estimate-time {
    font-size: 1.25rem;
    text-align: center;
  }
  
  .erp-estimate-box small {
    font-size: 0.8125rem;
    text-align: center;
  }
  
  /* Boutons mobile */
  .erp-btn {
    padding: var(--erp-spacing-sm) var(--erp-spacing-lg);
    font-size: 0.8125rem;
    min-height: 48px;
    text-align: center;
  }
  
  .erp-submit-btn {
    font-size: 0.9375rem;
    padding: var(--erp-spacing-md) var(--erp-spacing-lg);
    min-height: 52px;
    text-align: center;
  }
  
  /* Navigation mobile */
  .erp-back-btn {
    width: 36px;
    height: 36px;
    margin-right: var(--erp-spacing-md);
  }
  
  .erp-step-header {
    margin-bottom: var(--erp-spacing-lg);
    align-items: center;
  }
  
  .erp-step-title {
    font-size: 1rem;
    text-align: left;
  }
  
  /* BoÃ®tes d'information mobile */
  .erp-info-box,
  .erp-error-box,
  .erp-success-box {
    padding: var(--erp-spacing-md);
    font-size: 0.8125rem;
    text-align: center;
  }
  
  .erp-diagnostic-result {
    padding: var(--erp-spacing-lg);
    text-align: center;
  }
  
  .erp-diagnostic-title {
    font-size: 1rem;
    margin-bottom: var(--erp-spacing-sm);
    text-align: center;
  }
  
  .erp-diagnostic-result p {
    font-size: 0.875rem;
    text-align: center;
  }
  
  /* SuccÃ¨s final mobile */
  .erp-success-final {
    text-align: center;
    padding: var(--erp-spacing-lg);
  }
  
  .erp-success-final h3 {
    font-size: 1.125rem;
    margin-bottom: var(--erp-spacing-md);
    text-align: center;
  }
  
  .erp-success-details p {
    font-size: 0.875rem;
    margin-bottom: var(--erp-spacing-sm);
    text-align: center;
  }
  
  .erp-success-details ul {
    text-align: left;
    margin: var(--erp-spacing-md) 0;
    padding-left: 20px;
  }
  
  .erp-success-details li {
    font-size: 0.8125rem;
    padding: 4px 0;
    text-align: left;
  }
}

@media (max-width: 480px) {
  /* TrÃ¨s petit Ã©cran */
  .erp-floating-button {
    left: 8px;
    bottom: 8px;
  }
  
  .erp-button-content {
    padding: 8px 12px;
    min-width: 120px;
    font-size: 0.6875rem;
    border-radius: 20px;
  }
  
  .erp-icon {
    font-size: 16px;
  }
  
  .erp-modal {
    padding: 10px;
  }
  
  .erp-modal-content {
    max-height: calc(100vh - 80px);
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
  
  .erp-modal-header {
    padding: var(--erp-spacing-md);
    text-align: center;
  }
  
  .erp-modal-header h2 {
    font-size: 1.125rem;
    text-align: center;
  }
  
  .erp-modal-body {
    padding: var(--erp-spacing-md);
    max-height: calc(100vh - 120px);
	padding-bottom: 100px;  
	overflow: auto;  
  }
  
  .erp-modal-body h3 {
    font-size: 1rem;
    text-align: center;
  }
  
  .erp-location-intro {
    padding: var(--erp-spacing-md);
    margin-bottom: var(--erp-spacing-md);
    text-align: center;
  }
  
  .erp-location-pin {
    font-size: 50px;
    margin-bottom: var(--erp-spacing-sm);
  }
  
  .erp-location-text {
    font-size: 0.875rem;
    text-align: center;
  }
  
  .erp-location-card {
    padding: var(--erp-spacing-md);
  }
  
  .erp-card-title {
    font-size: 0.875rem;
    line-height: 1.1;
    text-align: center;
  }
  
  .erp-card-desc {
    font-size: 0.8125rem;
    text-align: center;
  }
  
  .erp-address-input {
    padding: 10px 12px;
    font-size: 0.8125rem;
    min-height: 44px;
  }
  
  .erp-geo-btn {
    font-size: 0.75rem;
    padding: 10px 14px;
    min-height: 44px;
  }
  
  .erp-validate-btn {
    font-size: 0.75rem;
    padding: 10px 14px;
    min-height: 44px;
  }
  
  .erp-location-continue {
    font-size: 0.875rem;
    padding: 12px 18px;
    min-height: 48px;
  }
  
  .erp-google-map {
    height: 180px;
  }
  
  .erp-question {
    padding: var(--erp-spacing-sm);
  }
  
  .erp-question-text {
    font-size: 0.875rem;
    text-align: left;
  }
  
  .erp-question-options {
    gap: var(--erp-spacing-md);
    justify-content: center;
  }
  
  .erp-radio-option {
    font-size: 0.75rem;
  }
  
  .erp-summary-section {
    padding: var(--erp-spacing-sm);
  }
  
  .erp-summary-title {
    font-size: 0.875rem;
    text-align: left;
  }
  
  .erp-summary-section p {
    font-size: 0.75rem;
    text-align: left;
  }
  
  .erp-phone-section {
    padding: var(--erp-spacing-sm);
  }
  
  .erp-estimate-box {
    padding: var(--erp-spacing-sm);
    text-align: center;
  }
  
  .erp-estimate-box h4 {
    font-size: 0.9375rem;
    text-align: center;
  }
  
  .erp-estimate-time {
    font-size: 1.125rem;
    text-align: center;
  }
  
  .erp-btn {
    padding: 10px 16px;
    font-size: 0.75rem;
    min-height: 44px;
    text-align: center;
  }
  
  .erp-submit-btn {
    font-size: 0.875rem;
    padding: 12px 18px;
    min-height: 48px;
    text-align: center;
  }
  
  .erp-back-btn {
    width: 32px;
    height: 32px;
    margin-right: var(--erp-spacing-sm);
  }
  
  .erp-step-title {
    font-size: 0.9375rem;
    text-align: left;
  }
  
  .erp-success-final h3 {
    font-size: 1rem;
    text-align: center;
  }
  
  .erp-success-details p {
    font-size: 0.8125rem;
    text-align: center;
  }
  
  .erp-success-details li {
    font-size: 0.75rem;
    text-align: left;
  }
}

/* Mode sombre (optionnel) */
@media (prefers-color-scheme: dark) {
  .erp-modal-content {
    background: var(--erp-blue-900);
    color: var(--erp-white);
  }
  
  .erp-repair-type {
    background: var(--erp-blue-800);
    border-color: var(--erp-blue-600);
    color: var(--erp-white);
  }
  
  .erp-repair-type:hover {
    background: var(--erp-blue-700);
  }
  
  .erp-question {
    background: var(--erp-blue-800);
    border-color: var(--erp-blue-600);
    color: var(--erp-white);
  }
  
  .erp-input {
    background: var(--erp-blue-800);
    border-color: var(--erp-blue-600);
    color: var(--erp-white);
  }
  
  .erp-summary-section {
    background: var(--erp-blue-800);
    border-color: var(--erp-blue-600);
  }
  
  .erp-map-container {
    background: var(--erp-blue-800);
    border-color: var(--erp-blue-600);
  }
}

/* AccessibilitÃ© */
@media (prefers-reduced-motion: reduce) {
  .erp-floating-button,
  .erp-indicator,
  .erp-btn,
  .erp-repair-type,
  .erp-question,
  .erp-input,
  .erp-back-btn {
    transition: none;
  }
  
  .erp-icon,
  .erp-location-icon,
  .erp-loading {
    animation: none;
  }
}

/* Focus visible pour l'accessibilitÃ© */
.erp-btn:focus-visible,
.erp-repair-type:focus-visible,
.erp-input:focus-visible,
.erp-back-btn:focus-visible,
.erp-close-btn:focus-visible {
  outline: 2px solid var(--erp-primary);
  outline-offset: 2px;
}

/* AmÃ©lioration du contraste pour l'accessibilitÃ© */
@media (prefers-contrast: high) {
  .erp-btn {
    border: 2px solid currentColor;
  }
  
  .erp-repair-type {
    border-width: 3px;
  }
  
  .erp-input {
    border-width: 2px;
  }
}