/* Variables CSS Dark Luxury */
    :root {
      --primary-gold: rgba(201, 169, 97, 1);
      --primary-dark: #1C1C1E;
      --secondary-dark: #2C2C2E;
      --dark-bg: #000000;
      --accent-light: rgba(255, 255, 255, 0.1);
      --text-dark: #1C1C1E;
      --text-light: rgba(255, 255, 255, 0.9);
      --white: #ffffff;
      --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);
      --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.5);
      --shadow-gold: 0 4px 20px rgba(201, 169, 97, 0.4);
      --gradient-gold: linear-gradient(135deg, rgba(201, 169, 97, 1) 0%, rgba(181, 149, 77, 1) 100%);
      --gradient-dark: linear-gradient(180deg, rgba(28, 28, 30, 0.98) 0%, rgba(20, 20, 22, 1) 100%);
      --glass-bg: rgba(28, 28, 30, 0.85);
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Body Dark Luxury */
    body {
      background: var(--dark-bg) !important;
      color: var(--text-light) !important;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      padding-top: 90px;
    }
    
    /* Styles pour la validation des formulaires */
    .is-valid {
      border-color: #198754;
      padding-right: calc(1.5em + 0.75rem);
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right calc(0.375em + 0.1875rem) center;
      background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    }
    
    .is-invalid {
      border-color: #dc3545;
      padding-right: calc(1.5em + 0.75rem);
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right calc(0.375em + 0.1875rem) center;
      background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    }
    
    .invalid-feedback {
      display: block;
      width: 100%;
      margin-top: 0.25rem;
      font-size: 0.875em;
      color: #dc3545;
    }
    
    /* Hero Dark Luxury */
    .hero-devis {
      margin-top: -90px;
      padding-top: 90px;
      background:
        linear-gradient(135deg,
          rgba(0, 0, 0, 0.95) 0%,
          rgba(28, 28, 30, 0.85) 30%,
          rgba(20, 20, 22, 0.9) 70%,
          rgba(0, 0, 0, 0.98) 100%
        ),
        url('../images/dj_bg.jpg') center/cover;
      min-height: 100vh;
      display: flex;
      align-items: center;
      color: var(--text-light);
      position: relative;
      overflow: hidden;
      background-attachment: fixed;
      border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    }

    .hero-devis::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="20" cy="30" r="1.5" fill="%23C9A961" opacity="0.4"/><circle cx="180" cy="60" r="1" fill="%23C9A961" opacity="0.5"/><circle cx="50" cy="150" r="0.8" fill="%23C9A961" opacity="0.3"/><circle cx="150" cy="20" r="1.2" fill="%23C9A961" opacity="0.4"/><circle cx="100" cy="100" r="0.6" fill="%23C9A961" opacity="0.6"/><circle cx="30" cy="170" r="1" fill="%23C9A961" opacity="0.3"/></svg>') repeat;
      animation: float 25s ease-in-out infinite, shimmer 15s ease-in-out infinite alternate;
      z-index: 1;
      opacity: 0.4;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
    }

    @keyframes shimmer {
      0% { opacity: 0.4; }
      100% { opacity: 0.8; }
    }

    .hero-content {
      position: relative;
      z-index: 10;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: #ffffff;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
      position: relative;
    }

    .hero-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 1), transparent);
      border-radius: 2px;
      box-shadow: 0 0 15px rgba(201, 169, 97, 0.6);
    }

    .hero-subtitle {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
      color: #f8f9fa;
      opacity: 0.95;
      max-width: 600px;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    }

    .hero-description {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 800px;
      margin: 0 auto 2rem;
    }
    
    /* Sections de formulaire Dark Luxury */
    .form-section {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 2.5rem;
      margin-bottom: 2rem;
      box-shadow: var(--shadow-strong);
      border: 1px solid rgba(201, 169, 97, 0.2);
      transition: var(--transition-smooth);
    }

    .form-section:hover {
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 169, 97, 0.3);
      border-color: rgba(201, 169, 97, 0.5);
    }

    .section-title {
      border-bottom: 3px solid var(--primary-gold);
      padding-bottom: 1rem;
      margin-bottom: 2rem;
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--gradient-gold);
      border-radius: 2px;
      box-shadow: 0 0 15px rgba(201, 169, 97, 0.6);
    }

    .section-title h3 {
      color: var(--text-light);
      font-weight: 600;
      font-size: 1.5rem;
      margin: 0;
    }
    
    .form-label {
      color: var(--text-light);
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

    .form-control, .form-select {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(201, 169, 97, 0.3);
      border-radius: 10px;
      padding: 0.75rem 1rem;
      color: var(--text-light);
      transition: var(--transition-smooth);
    }

    .form-control:focus, .form-select:focus {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--primary-gold);
      box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25);
      color: var(--text-light);
    }

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

    /* Options des select - dark theme */
    .form-select option {
      background: #1C1C1E;
      color: rgba(255, 255, 255, 0.9);
      padding: 0.5rem;
    }

    .form-select option:hover,
    .form-select option:focus {
      background: rgba(201, 169, 97, 0.3);
      color: #ffffff;
    }

    .form-select option:checked {
      background: linear-gradient(135deg, rgba(201, 169, 97, 1) 0%, rgba(181, 149, 77, 1) 100%);
      color: #1C1C1E;
      font-weight: 600;
    }

    /* Pour les navigateurs qui supportent color-scheme */
    .form-select {
      color-scheme: dark;
    }

    /* Styles Select2 pour dark theme */
    .select2-container--bootstrap-5 .select2-selection {
      background: rgba(255, 255, 255, 0.05) !important;
      border: 1px solid rgba(201, 169, 97, 0.3) !important;
      border-radius: 10px !important;
      color: var(--text-light) !important;
      min-height: 44px;
    }

    .select2-container--bootstrap-5 .select2-selection--single {
      padding: 0.6rem 1rem;
    }

    .select2-container--bootstrap-5 .select2-selection__rendered {
      color: var(--text-light) !important;
      line-height: 1.5;
    }

    .select2-container--bootstrap-5 .select2-selection__placeholder {
      color: rgba(255, 255, 255, 0.4) !important;
    }

    .select2-container--bootstrap-5.select2-container--focus .select2-selection,
    .select2-container--bootstrap-5.select2-container--open .select2-selection {
      background: rgba(255, 255, 255, 0.08) !important;
      border-color: var(--primary-gold) !important;
      box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25) !important;
    }

    .select2-container--bootstrap-5 .select2-selection__arrow {
      height: 42px;
    }

    .select2-container--bootstrap-5 .select2-selection__arrow b {
      border-color: var(--primary-gold) transparent transparent transparent;
    }

    /* Dropdown Select2 */
    .select2-container--bootstrap-5 .select2-dropdown {
      background: #1C1C1E !important;
      border: 1px solid rgba(201, 169, 97, 0.3) !important;
      border-radius: 10px !important;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
      backdrop-filter: blur(20px);
    }

    .select2-container--bootstrap-5 .select2-results__option {
      background: transparent !important;
      color: rgba(255, 255, 255, 0.9) !important;
      padding: 0.75rem 1rem !important;
    }

    .select2-container--bootstrap-5 .select2-results__option--highlighted {
      background: rgba(201, 169, 97, 0.3) !important;
      color: #ffffff !important;
    }

    .select2-container--bootstrap-5 .select2-results__option--selected {
      background: linear-gradient(135deg, rgba(201, 169, 97, 0.4) 0%, rgba(181, 149, 77, 0.4) 100%) !important;
      color: #ffffff !important;
      font-weight: 600;
    }

    .select2-container--bootstrap-5 .select2-search__field {
      background: rgba(255, 255, 255, 0.05) !important;
      border: 1px solid rgba(201, 169, 97, 0.3) !important;
      border-radius: 8px !important;
      color: var(--text-light) !important;
      padding: 0.5rem !important;
    }

    .select2-container--bootstrap-5 .select2-search__field:focus {
      background: rgba(255, 255, 255, 0.08) !important;
      border-color: var(--primary-gold) !important;
      outline: none;
    }

    .select2-container--bootstrap-5 .select2-search__field::placeholder {
      color: rgba(255, 255, 255, 0.4) !important;
    }

    textarea.form-control {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-light);
    }

    .required-field::after {
      content: '*';
      color: var(--primary-gold);
      margin-left: 4px;
    }

    /* Boutons Dark Luxury */
    .btn-gold {
      background: var(--gradient-gold);
      color: var(--text-dark);
      border: none;
      padding: 15px 40px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition-smooth);
      box-shadow: var(--shadow-gold);
    }

    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
      color: var(--text-dark);
    }
    
    .btn-outline-gold {
      background: transparent;
      color: var(--text-light);
      border: 2px solid rgba(201, 169, 97, 0.6);
      padding: 15px 40px;
      border-radius: 50px;
      font-weight: 600;
      transition: var(--transition-smooth);
    }

    .btn-outline-gold:hover {
      background: var(--gradient-gold);
      color: var(--text-dark);
      border-color: rgba(201, 169, 97, 1);
      transform: translateY(-3px);
      box-shadow: var(--shadow-gold), 0 0 30px rgba(201, 169, 97, 0.4);
    }

    /* Styles pour input-group */
    .input-group {
      display: flex;
    }

    .input-group .form-control {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }

    .input-group .btn-outline-secondary {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      border-left: none;
    }

    /* Boutons outline secondary pour dark theme */
    .btn-outline-secondary {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(201, 169, 97, 0.3);
      color: var(--text-light);
      padding: 0.6rem 1rem;
      transition: var(--transition-smooth);
    }

    .btn-outline-secondary:hover {
      background: rgba(201, 169, 97, 0.2);
      border-color: var(--primary-gold);
      color: var(--text-light);
    }

    .btn-outline-secondary i {
      color: var(--primary-gold);
    }

    /* Amélioration des petits textes */
    small {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.875rem;
    }

    small.text-muted {
      color: rgba(255, 255, 255, 0.6) !important;
    }

    /* Icônes d'information */
    .fa-info-circle {
      color: rgba(201, 169, 97, 0.8);
      cursor: help;
      transition: var(--transition-smooth);
    }

    .fa-info-circle:hover {
      color: var(--primary-gold);
      transform: scale(1.1);
    }

    /* Tooltips dark theme */
    .tooltip {
      font-size: 0.875rem;
    }

    .tooltip-inner {
      background: rgba(28, 28, 30, 0.95);
      color: var(--text-light);
      border: 1px solid rgba(201, 169, 97, 0.3);
      padding: 0.5rem 0.75rem;
      border-radius: 8px;
      box-shadow: var(--shadow-soft);
    }

    .bs-tooltip-top .tooltip-arrow::before,
    .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
      border-top-color: rgba(28, 28, 30, 0.95);
    }

    .bs-tooltip-end .tooltip-arrow::before,
    .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
      border-right-color: rgba(28, 28, 30, 0.95);
    }

    .bs-tooltip-bottom .tooltip-arrow::before,
    .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
      border-bottom-color: rgba(28, 28, 30, 0.95);
    }

    .bs-tooltip-start .tooltip-arrow::before,
    .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
      border-left-color: rgba(28, 28, 30, 0.95);
    }

    /* Accordéons Dark Luxury */
    .accordion-item {
      background: linear-gradient(145deg, rgba(28, 28, 30, 0.6), rgba(20, 20, 22, 0.8));
      backdrop-filter: blur(10px);
      overflow: hidden;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(201, 169, 97, 0.2);
      border-radius: 15px;
      box-shadow: var(--shadow-soft);
      transition: var(--transition-smooth);
    }

    .accordion-item:hover {
      border-color: rgba(201, 169, 97, 0.5);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 169, 97, 0.3);
    }

    .accordion-button {
      background: rgba(28, 28, 30, 0.6);
      color: var(--text-light);
      font-weight: 600;
      padding: 1.5rem;
      border-radius: 15px 15px 0 0;
      border: none;
      transition: var(--transition-smooth);
    }

    .accordion-button:not(.collapsed) {
      background: var(--gradient-gold);
      color: var(--text-dark);
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: 0 0 0 0.25rem rgba(201, 169, 97, 0.25);
      border: none;
      outline: none;
    }

    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A961'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .accordion-body {
      padding: 2rem;
      background: rgba(20, 20, 22, 0.7);
      color: var(--text-light);
    }
    
    /* Checkboxes et formulaires modernes */
    .service-main-checkbox .form-check-input:checked {
      background-color: var(--primary-gold);
      border-color: var(--primary-gold);
    }
    
    .form-check-input {
      border-radius: 6px;
      border: 2px solid #dee2e6;
      transition: var(--transition-smooth);
    }

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

    .form-check-input:focus {
      box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    }
    
    .border-gold {
      border-color: var(--primary-gold) !important;
    }
    
    /* Cartes de services Dark Luxury */
    .sub-service-card {
      background: linear-gradient(145deg, rgba(28, 28, 30, 0.6), rgba(20, 20, 22, 0.8));
      backdrop-filter: blur(10px);
      transition: var(--transition-smooth);
      cursor: pointer;
      border: 1px solid rgba(201, 169, 97, 0.2);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .sub-service-card:hover {
      border-color: rgba(201, 169, 97, 0.5);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 169, 97, 0.3);
      transform: translateY(-5px);
    }

    .sub-service-card.border-primary {
      border-color: var(--primary-gold) !important;
      background: linear-gradient(145deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
      box-shadow: var(--shadow-gold);
    }

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

    /* Cartes de playlist Dark Luxury */
    .playlist-card {
      background: linear-gradient(145deg, rgba(28, 28, 30, 0.6), rgba(20, 20, 22, 0.8));
      backdrop-filter: blur(10px);
      transition: var(--transition-smooth);
      cursor: pointer;
      border: 1px solid rgba(201, 169, 97, 0.2);
      border-radius: 15px;
      padding: 1.5rem;
      box-shadow: var(--shadow-soft);
    }

    .playlist-card:hover {
      border-color: rgba(201, 169, 97, 0.5);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 169, 97, 0.3);
      transform: translateY(-3px);
    }

    .playlist-card.selected {
      border-color: var(--primary-gold);
      background: linear-gradient(145deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.08));
      box-shadow: var(--shadow-gold);
    }
    
    .playlist-card .form-check {
      margin-bottom: 0;
    }
    
    /* Conditional section */
    .conditional-section {
      display: none;
      transition: all 0.3s ease;
    }

    .conditional-section.visible {
      display: block;
    }
    
    /* Form checkboxes */
    .form-check-input:checked {
      background-color: var(--gold);
      border-color: var(--gold);
    }
    
    /* Styles pour le champ d'adresse */
    #address {
      transition: all 0.3s ease;
    }
    
    /* Progress indicator Dark Luxury */
    .progress-indicator {
      position: sticky;
      top: 20px;
      z-index: 100;
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border-radius: 15px;
      padding: 1.5rem;
      box-shadow: var(--shadow-strong);
      border: 1px solid rgba(201, 169, 97, 0.2);
    }

    .progress {
      height: 12px;
      border-radius: 10px;
      background: rgba(201, 169, 97, 0.2);
      overflow: hidden;
    }

    .progress-bar {
      background: var(--gradient-gold);
      transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 10px;
      position: relative;
      overflow: hidden;
    }

    .progress-bar::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    /* Summary styling Dark Luxury */
    #request-summary {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(201, 169, 97, 0.2);
      border-radius: 15px;
      padding: 1.5rem;
      color: var(--text-light);
    }

    .summary-card {
      border: none;
      margin-bottom: 20px;
      background: transparent;
    }

    .summary-card .card-header {
      background: rgba(201, 169, 97, 0.1);
      font-weight: 600;
      color: var(--text-light);
      border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    }

    .summary-card .card-body {
      background: transparent;
      color: var(--text-light);
    }
    
    .text-gold {
      color: var(--primary-gold) !important;
    }
    
    .bg-gold {
      background: var(--gradient-gold) !important;
    }
    
    /* Animations modernes */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .step-message {
      animation: fadeInBounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes fadeInBounce {
      0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
      }
      60% {
        opacity: 1;
        transform: translateY(5px) scale(1.05);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }
    
    /* Messages d'encouragement modernes */
    .encouragement {
      background: var(--gradient-gold);
      color: var(--text-dark);
      border-radius: 15px;
      padding: 1.5rem;
      box-shadow: var(--shadow-soft);
      border-left: 5px solid rgba(255, 255, 255, 0.3);
      animation: slideInGlow 0.6s ease-out;
    }

    .encouragement strong {
      color: var(--text-dark);
    }

    .encouragement i {
      color: var(--text-dark);
    }
    
    @keyframes slideInGlow {
      0% {
        opacity: 0;
        transform: translateX(-30px);
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
        box-shadow: var(--shadow-soft), 0 0 20px rgba(212, 175, 55, 0.3);
      }
    }

    /* Panneau flottant Dark Luxury */
    .floating-summary {
      position: fixed;
      top: 120px;
      right: 20px;
      width: 350px;
      max-height: calc(100vh - 140px);
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      box-shadow: var(--shadow-strong);
      border: 1px solid rgba(201, 169, 97, 0.3);
      z-index: 1000;
      overflow: hidden;
      transition: var(--transition-smooth);
      transform: translateX(370px);
    }

    .floating-summary.visible {
      transform: translateX(0);
    }

    .floating-summary.collapsed {
      transform: translateX(320px);
    }

    .floating-summary-header {
      background: var(--gradient-gold);
      color: var(--white);
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .floating-summary-header h4 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .floating-summary-toggle {
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.2rem;
      cursor: pointer;
      transition: var(--transition-smooth);
    }

    .floating-summary-toggle:hover {
      transform: scale(1.1);
    }

    .floating-summary-body {
      padding: 1.5rem;
      max-height: calc(100vh - 240px);
      overflow-y: auto;
    }

    .floating-summary-body::-webkit-scrollbar {
      width: 6px;
    }

    .floating-summary-body::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
    }

    .floating-summary-body::-webkit-scrollbar-thumb {
      background: var(--primary-gold);
      border-radius: 3px;
    }

    .floating-summary-body::-webkit-scrollbar-thumb:hover {
      background: rgba(201, 169, 97, 0.8);
    }

    /* Sections du panneau flottant */
    .summary-section {
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    }

    .summary-section:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .summary-section h5 {
      color: var(--text-light);
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .summary-section .value {
      color: var(--primary-gold);
      font-weight: 600;
    }

    .summary-section .empty {
      color: rgba(255, 255, 255, 0.5);
      font-style: italic;
      font-size: 0.9rem;
    }

    /* Éléments spécifiques du panneau flottant */
    .floating-summary-body .summary-section > div:not(.services-list):not(.empty):not(.value) {
      color: var(--text-light);
    }

    #floating-event-title,
    #floating-event-date,
    #floating-event-location,
    #floating-contact-name,
    #floating-contact-email {
      color: var(--text-light);
      font-size: 0.9rem;
      margin-bottom: 0.3rem;
    }

    #floating-event-title.empty,
    #floating-event-date.empty,
    #floating-event-location.empty,
    #floating-contact-name.empty,
    #floating-contact-email.empty {
      color: rgba(255, 255, 255, 0.5);
      font-style: italic;
    }

    #floating-event-title.value,
    #floating-event-date.value,
    #floating-event-location.value,
    #floating-contact-name.value,
    #floating-contact-email.value {
      color: var(--primary-gold);
      font-weight: 600;
      font-style: normal;
    }

    #floating-services-list .empty {
      color: rgba(255, 255, 255, 0.5);
      font-style: italic;
    }

    #floating-services-list .service-item {
      color: var(--text-light);
    }

    #floating-services-list .service-item .service-name {
      color: var(--text-light);
    }

    #floating-services-list .service-item .service-price {
      color: var(--primary-gold);
    }

    /* Correction bordure dynamique dans le panneau flottant */
    #floating-services-list > div[style*="border-top"] {
      border-top-color: rgba(201, 169, 97, 0.2) !important;
    }

    #floating-package-info {
      color: var(--text-light);
      margin-bottom: 1rem;
    }

    #floating-subtotal,
    #floating-tax,
    #floating-total {
      color: var(--primary-gold);
      font-weight: 600;
    }

    #floating-progress-text {
      color: rgba(255, 255, 255, 0.6) !important;
    }

    .progress-mini {
      background: rgba(201, 169, 97, 0.2);
    }

    .progress-mini-bar {
      background: var(--gradient-gold);
    }

    .services-list {
      margin-top: 0.5rem;
    }

    .service-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(201, 169, 97, 0.2);
      font-size: 0.9rem;
    }

    .service-item:last-child {
      border-bottom: none;
    }

    .service-name {
      flex: 1;
      color: var(--text-light);
    }

    .service-price {
      color: var(--primary-gold);
      font-weight: 600;
      margin-left: 0.5rem;
    }

    .total-section {
      background: rgba(201, 169, 97, 0.1);
      margin: 0 -1.5rem -1.5rem;
      padding: 1.5rem;
      border-top: 2px solid var(--primary-gold);
    }

    .total-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
      color: var(--text-light);
    }

    .total-line > span:first-child {
      color: var(--text-light);
    }

    .total-line.final {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-light);
      border-top: 2px solid var(--primary-gold);
      padding-top: 0.5rem;
      margin-top: 0.5rem;
    }

    .total-line.final > span:first-child {
      color: var(--text-light);
    }

    .total-price {
      color: var(--primary-gold);
      font-weight: 600;
    }

    .package-badge {
      background: var(--gradient-gold);
      color: var(--white);
      padding: 0.3rem 0.8rem;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-top: 0.5rem;
      display: inline-block;
      animation: pulse 2s infinite;
    }

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

    .progress-mini {
      height: 6px;
      background: rgba(212, 175, 55, 0.2);
      border-radius: 3px;
      margin-top: 1rem;
      overflow: hidden;
    }

    .progress-mini-bar {
      height: 100%;
      background: var(--gradient-gold);
      border-radius: 3px;
      transition: width 0.5s ease;
    }

    /* Styles supplémentaires pour garantir la lisibilité du floating panel */
    .floating-summary-body .total-line span {
      color: var(--text-light) !important;
    }

    .floating-summary-body .total-section {
      background: rgba(201, 169, 97, 0.1);
      backdrop-filter: blur(10px);
    }

    .floating-summary-body .total-section .text-muted,
    .floating-summary-body .total-section small {
      color: rgba(255, 255, 255, 0.6) !important;
    }

    .floating-summary-body .summary-section h5 {
      color: var(--text-light) !important;
      font-weight: 600;
    }

    .floating-summary-body .summary-section div:not(.empty):not(.services-list) {
      color: var(--text-light) !important;
    }

    .floating-summary-body .empty {
      color: rgba(255, 255, 255, 0.5) !important;
    }

    /* Form sections with better visual hierarchy */
    .form-section {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .form-section:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .form-section.active {
      border-left: 4px solid var(--gold);
      box-shadow: 0 2px 15px rgba(212, 175, 55, 0.15);
    }
    
    /* Mobile-first responsive design */
    @media (max-width: 768px) {
      .hero-devis {
        min-height: 90vh;
        padding: 2rem 0;
        background-attachment: scroll; /* Fix pour iOS */
      }

      .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 1rem;
      }

      .hero-subtitle {
        font-size: 1.2rem;
      }

      .form-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
      }

      .section-title h3 {
        font-size: 1.3rem;
      }
      
      .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
      }

      .accordion-body {
        padding: 1.5rem;
      }

      .sub-service-card {
        margin-bottom: 1rem;
      }

      /* Panneau flottant responsive */
      .floating-summary {
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-height: 50vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
      }

      .floating-summary.visible {
        transform: translateY(0);
      }

      .floating-summary.collapsed {
        transform: translateY(calc(100% - 80px));
      }

      .floating-summary-header {
        padding: 1rem 1.5rem;
      }

      .floating-summary-body {
        padding: 1rem 1.5rem;
        max-height: calc(50vh - 80px);
      }
      
      #map-container {
        height: 250px !important;
      }

      /* Adapter le contenu principal */
      .container {
        padding-bottom: 100px;
      }
      
      .progress-indicator {
        position: relative;
        top: 0;
        margin-bottom: 20px;
      }
      
      .section-title h3 {
        font-size: 1.2rem;
      }
      
      .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
      }
      
      .form-control, .form-select {
        font-size: 16px; /* Évite le zoom sur iOS */
        padding: 0.6rem 0.75rem;
      }
      
      .btn {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
      }
      
      /* Optimisation des colonnes sur mobile */
      .col-md-4, .col-md-6, .col-md-8 {
        margin-bottom: 1rem;
      }
      
      /* Progress bar plus compact sur mobile */
      #progress-message .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
      }
    }
    
    /* Très petits écrans */
    @media (max-width: 480px) {
      .container {
        padding-left: 15px;
        padding-right: 15px;
      }
      
      .page-header h1 {
        font-size: 2rem;
      }
      
      .form-section {
        padding: 12px;
      }
      
      .card-body {
        padding: 1rem;
      }
    }

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

    .quiz-icon-wrapper {
      position: relative;
      flex-shrink: 0;
    }

    .quiz-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #d4af37, #f4e4a1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      color: white;
      box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
      position: relative;
      overflow: hidden;
    }

    .quiz-icon::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
      transform: rotate(45deg);
      animation: iconShine 4s ease-in-out infinite;
    }

    @keyframes iconShine {
      0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
      50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
      100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    }

    .quiz-sparkles {
      position: absolute;
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      pointer-events: none;
    }

    .sparkle {
      position: absolute;
      font-size: 16px;
      animation: sparkleFloat 3s ease-in-out infinite;
    }

    .sparkle-1 {
      top: 0;
      right: 0;
      animation-delay: 0s;
    }

    .sparkle-2 {
      bottom: 0;
      left: 0;
      animation-delay: 1s;
    }

    .sparkle-3 {
      top: 50%;
      right: -10px;
      animation-delay: 2s;
    }

    @keyframes sparkleFloat {
      0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
      50% { transform: translateY(-10px) scale(1.2); opacity: 1; }
    }

    .quiz-content-section {
      flex-grow: 1;
    }

    .quiz-main-title {
      font-size: 24px;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 8px;
      background: linear-gradient(135deg, #d4af37, #b8941f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .quiz-subtitle {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .quiz-benefits {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .benefit-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-light);
      font-size: 14px;
      font-weight: 500;
    }

    .benefit-item i {
      width: 20px;
      height: 20px;
      background: linear-gradient(135deg, #d4af37, #f4e4a1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 10px;
    }

    /* Override Bootstrap classes pour Dark Theme */
    .text-muted {
      color: rgba(255, 255, 255, 0.6) !important;
    }

    .text-dark {
      color: var(--text-light) !important;
    }

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

    .bg-light {
      background-color: rgba(201, 169, 97, 0.15) !important;
    }

    .badge.bg-light {
      background-color: rgba(201, 169, 97, 0.2) !important;
      color: var(--text-light) !important;
      border: 1px solid rgba(201, 169, 97, 0.3);
    }

    .badge.bg-warning {
      background: var(--gradient-gold) !important;
      color: var(--text-dark) !important;
      font-weight: 600;
    }

    .badge.bg-primary {
      background: var(--gradient-gold) !important;
      color: var(--text-dark) !important;
      font-weight: 600;
    }

    .badge.bg-success {
      background: rgba(40, 167, 69, 0.3) !important;
      color: #4ade80 !important;
      border: 1px solid rgba(40, 167, 69, 0.5);
    }

    .text-primary {
      color: var(--primary-gold) !important;
    }

    .text-success {
      color: #4ade80 !important;
    }

    .fw-bold {
      color: var(--text-light) !important;
    }

    .alert-warning {
      background: rgba(255, 193, 7, 0.15) !important;
      border: 1px solid rgba(255, 193, 7, 0.3) !important;
      color: var(--text-light) !important;
    }

    .alert-warning h6,
    .alert-warning .alert-heading {
      color: #ffc107 !important;
    }

    .alert-info {
      background: rgba(13, 110, 253, 0.15) !important;
      border: 1px solid rgba(13, 110, 253, 0.3) !important;
      color: #5dade2 !important;
    }

    .alert-info h6,
    .alert-info .alert-heading {
      color: #5dade2 !important;
    }

    .alert-info p,
    .alert-info ul,
    .alert-info li,
    .alert-info strong,
    .alert-info small,
    .alert-info div {
      color: var(--text-light) !important;
    }

    .alert-info a {
      color: #5dade2 !important;
      font-weight: 600;
    }

    .alert-success {
      background: rgba(40, 167, 69, 0.2) !important;
      border: 1px solid rgba(40, 167, 69, 0.4) !important;
      color: var(--text-light) !important;
    }

    .alert-success h6,
    .alert-success .alert-heading {
      color: #4ade80 !important;
    }

    .bg-primary {
      background: rgba(201, 169, 97, 0.2) !important;
      color: var(--text-light) !important;
    }

    .border-top {
      border-color: rgba(201, 169, 97, 0.2) !important;
    }

    /* Step messages spécifiques */
    .step-message {
      font-size: 0.95rem !important;
      font-weight: 600 !important;
      padding: 0.75rem 1.25rem !important;
      border-radius: 10px !important;
      box-shadow: var(--shadow-soft);
    }

    .badge.bg-warning.step-message {
      background: var(--gradient-gold) !important;
      color: var(--text-dark) !important;
    }

    .badge.bg-success.step-message {
      background: rgba(40, 167, 69, 0.3) !important;
      color: #4ade80 !important;
      border: 1px solid rgba(40, 167, 69, 0.5);
    }

    .badge.bg-light.step-message {
      background: rgba(201, 169, 97, 0.2) !important;
      color: var(--text-light) !important;
      border: 1px solid rgba(201, 169, 97, 0.3);
    }

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

    .service-description {
      color: rgba(255, 255, 255, 0.7) !important;
    }

    small {
      color: rgba(255, 255, 255, 0.6);
    }

    .small {
      color: rgba(255, 255, 255, 0.6);
    }

    /* Améliorer la lisibilité des inputs */
    input::placeholder,
    textarea::placeholder,
    select option {
      color: rgba(255, 255, 255, 0.4) !important;
    }

    /* Alertes Dark Theme */
    .alert {
      border-radius: 15px;
      border: none;
      padding: 1.5rem;
      backdrop-filter: blur(10px);
    }

    .alert-success {
      background: rgba(40, 167, 69, 0.15);
      border: 1px solid rgba(40, 167, 69, 0.3);
      color: #4ade80;
    }

    .alert-danger {
      background: rgba(220, 53, 69, 0.15);
      border: 1px solid rgba(220, 53, 69, 0.3);
      color: #ff6b6b;
    }

    .alert-info {
      background: rgba(13, 110, 253, 0.15) !important;
      border: 1px solid rgba(13, 110, 253, 0.3) !important;
      color: #5dade2 !important;
    }

    .alert-warning {
      background: rgba(255, 193, 7, 0.15);
      border: 1px solid rgba(255, 193, 7, 0.3);
      color: #ffc107;
    }

    .alert-light {
      background: rgba(201, 169, 97, 0.15);
      border: 1px solid rgba(201, 169, 97, 0.3);
      color: var(--text-light);
    }

    /* Cards Dark Theme */
    .card {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(201, 169, 97, 0.2);
      color: var(--text-light);
    }

    .card-header {
      background: rgba(201, 169, 97, 0.1) !important;
      border-bottom: 1px solid rgba(201, 169, 97, 0.2);
      color: var(--text-light) !important;
    }

    .card-body {
      background: transparent !important;
      color: var(--text-light);
    }

    .card-title {
      color: var(--text-light);
    }

    /* Btn-close pour dark theme */
    .btn-close {
      filter: invert(1) grayscale(100%) brightness(200%);
    }

    /* Section RGPD Dark Luxury */
    .rgpd-info-box {
      background: rgba(13, 110, 253, 0.15) !important;
      border: 1px solid rgba(13, 110, 253, 0.3) !important;
      border-left: 4px solid #5dade2 !important;
      backdrop-filter: blur(10px);
      margin-bottom: 1.5rem;
    }

    .rgpd-checkbox-box {
      background: linear-gradient(145deg, rgba(28, 28, 30, 0.6), rgba(20, 20, 22, 0.8));
      backdrop-filter: blur(10px);
      padding: 1rem;
      border-radius: 10px;
      border: 1px solid rgba(201, 169, 97, 0.3);
      transition: var(--transition-smooth);
    }

    .rgpd-checkbox-box:hover {
      border-color: rgba(201, 169, 97, 0.5);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 169, 97, 0.2);
    }

    .rgpd-checkbox-box .form-check-input {
      background-color: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(201, 169, 97, 0.5);
      cursor: pointer;
    }

    .rgpd-checkbox-box .form-check-input:checked {
      background-color: var(--primary-gold);
      border-color: var(--primary-gold);
      box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
    }

    .rgpd-checkbox-box .form-check-input:focus {
      box-shadow: 0 0 0 0.25rem rgba(201, 169, 97, 0.25);
      border-color: var(--primary-gold);
    }

    .rgpd-checkbox-box label {
      cursor: pointer;
    }

    .rgpd-link {
      color: #5dade2;
      text-decoration: none;
      transition: var(--transition-smooth);
    }

    .rgpd-link:hover {
      color: #7bc4f0;
      text-decoration: underline;
    }

    /* Section Récapitulatif - Styles pour le contenu dynamique */
    #request-summary .card {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(201, 169, 97, 0.2);
      box-shadow: var(--shadow-strong);
    }

    #request-summary .card-header {
      background: rgba(201, 169, 97, 0.1) !important;
      border-bottom: 1px solid rgba(201, 169, 97, 0.2);
      color: var(--text-light) !important;
    }

    #request-summary .card-header h5 {
      color: var(--text-light) !important;
    }

    #request-summary .card-body {
      background: transparent;
      color: var(--text-light);
    }

    #request-summary .badge {
      backdrop-filter: blur(10px);
    }

    #request-summary .badge.bg-secondary {
      background: rgba(108, 117, 125, 0.3) !important;
      color: var(--text-light) !important;
      border: 1px solid rgba(108, 117, 125, 0.5);
    }

    #request-summary .badge.bg-primary {
      background: var(--gradient-gold) !important;
      color: var(--text-dark) !important;
    }

    #request-summary .badge.bg-success {
      background: rgba(40, 167, 69, 0.3) !important;
      color: #4ade80 !important;
      border: 1px solid rgba(40, 167, 69, 0.5);
    }

    #request-summary .badge.bg-light {
      background: rgba(201, 169, 97, 0.15) !important;
      color: var(--text-light) !important;
      border: 1px solid rgba(201, 169, 97, 0.3);
    }

    #request-summary .bg-light {
      background: rgba(28, 28, 30, 0.4) !important;
      border: 1px solid rgba(201, 169, 97, 0.2);
    }

    #request-summary .alert {
      backdrop-filter: blur(10px);
      border-radius: 15px;
    }

    #request-summary .alert-success {
      background: rgba(40, 167, 69, 0.2) !important;
      border: 1px solid rgba(40, 167, 69, 0.4) !important;
    }

    #request-summary .alert-warning {
      background: rgba(255, 193, 7, 0.15) !important;
      border: 1px solid rgba(255, 193, 7, 0.3) !important;
      color: #ffc107 !important;
    }

    #request-summary .alert-warning h6 {
      color: #ffc107;
    }

    #request-summary .alert-info {
      background: rgba(13, 110, 253, 0.15) !important;
      border: 1px solid rgba(13, 110, 253, 0.3) !important;
      color: #5dade2 !important;
    }

    #request-summary .alert-info .alert-heading {
      color: #5dade2;
    }

    #request-summary .text-muted {
      color: rgba(255, 255, 255, 0.6) !important;
    }

    #request-summary .text-primary {
      color: var(--primary-gold) !important;
    }

    #request-summary .text-success {
      color: #4ade80 !important;
    }

    #request-summary .text-white {
      color: #ffffff !important;
    }

    #request-summary .text-dark {
      color: var(--text-light) !important;
    }

    #request-summary .border-top {
      border-color: rgba(201, 169, 97, 0.2) !important;
    }

    #request-summary strong {
      color: var(--primary-gold);
    }

    #request-summary .fw-bold {
      color: var(--text-light);
    }

    #request-summary .opacity-75 {
      opacity: 0.75 !important;
    }

    #request-summary .text-decoration-line-through {
      color: rgba(255, 255, 255, 0.5);
    }

    /* Liens dans les alertes du récapitulatif */
    #request-summary .alert a,
    #request-summary .alert-link {
      color: #5dade2 !important;
      text-decoration: none;
      transition: var(--transition-smooth);
    }

    #request-summary .alert a:hover,
    #request-summary .alert-link:hover {
      color: #7bc4f0 !important;
      text-decoration: underline;
    }

    /* Listes dans le récapitulatif */
    #request-summary ul {
      color: var(--text-light);
    }

    #request-summary ul li {
      color: var(--text-light);
      margin-bottom: 0.3rem;
    }

    #request-summary p {
      color: var(--text-light);
    }

    /* Alert heading spécifique */
    #request-summary .alert-info .alert-heading {
      color: #5dade2;
      font-weight: 600;
    }

    /* Améliorer la section de l'estimation du total */
    #request-summary .border-top {
      border-top: 2px solid rgba(201, 169, 97, 0.3) !important;
      padding-top: 1.5rem !important;
      margin-top: 1.5rem !important;
    }

    /* Textes et éléments dans les alertes success */
    #request-summary .alert-success .opacity-75 {
      color: rgba(255, 255, 255, 0.75);
    }

    #request-summary .alert-success small {
      color: rgba(255, 255, 255, 0.8);
    }

    #request-summary .alert-success .text-decoration-line-through {
      color: rgba(255, 255, 255, 0.6);
    }

    /* Améliorer le rendu des lignes de services */
    #request-summary .bg-light.rounded {
      background: rgba(28, 28, 30, 0.5) !important;
      border: 1px solid rgba(201, 169, 97, 0.2);
    }

    #request-summary .bg-light.rounded span:first-child {
      color: var(--text-light);
    }

    /* S'assurer que tous les div ont du texte lisible par défaut */
    #request-summary div {
      color: var(--text-light);
    }

    /* Row et colonnes */
    #request-summary .row {
      color: var(--text-light);
    }

    #request-summary .col-6,
    #request-summary .col-12,
    #request-summary .col-md-6,
    #request-summary .col-md-12 {
      color: var(--text-light);
    }

    /* Section d'estimation spécifique - tous les spans et divs */
    #request-summary .border-top.pt-3 span,
    #request-summary .border-top.pt-3 div {
      color: var(--text-light) !important;
    }

    #request-summary .border-top.pt-3 .text-end {
      color: var(--text-light) !important;
    }

    #request-summary .border-top.pt-3 .text-end > div {
      color: var(--text-light) !important;
    }

    /* S'assurer que les montants dans l'estimation sont en doré */
    #request-summary .border-top.pt-3 .col-6.text-end div:not(.text-success):not(.small) {
      color: var(--primary-gold) !important;
    }

    /* Forcer le style de la ligne Total estimé */
    #request-summary .border-top.pt-3 .fw-bold.text-primary {
      color: var(--primary-gold) !important;
      font-size: 1.25rem !important;
    }

    /* Améliorer les cartes avec bg-light dans les listes de services */
    #request-summary .d-flex.justify-content-between.bg-light {
      background: rgba(28, 28, 30, 0.5) !important;
      border: 1px solid rgba(201, 169, 97, 0.2) !important;
    }

    #request-summary .d-flex.justify-content-between.bg-light span {
      color: var(--text-light) !important;
    }

    /* Card headers avec bg-light */
    #request-summary .card-header.bg-light {
      background: rgba(201, 169, 97, 0.1) !important;
      border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    }

    #request-summary .card-header.bg-light h5 {
      color: var(--text-light) !important;
    }

