/* Styles principaux de la page réservation */

:root {
      --dark1: #07090f;
      --dark2: #0b1120;
      --dark3: #0d1526;
      --gold: #c9a96e;
      --border: #1e2d47;
      --text: #e8f0ff;
      --muted: #8f9fb9;
      --success: #2faa60;
      --error: #ff4757;
    }
    
    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    /* Hero Section */
    .res-hero {
      background: linear-gradient(135deg, #07090f 0%, #0d1526 100%);
      padding: 3rem 0 2rem;
      border-bottom: 1px solid var(--border);
      text-align: center;
    }
    
    .res-hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: 2.5rem;
      color: #fff;
      margin: 0 0 0.8rem;
    }
    
    .res-hero p {
      color: var(--muted);
      font-size: 1.1rem;
    }
    
    /* Progress Steps */
    .progress-wrapper {
      margin: 2rem 0;
      padding: 0 1rem;
    }
    
    .progress-steps {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }
    
    .progress-line {
      position: absolute;
      top: 22px;
      left: 60px;
      right: 60px;
      height: 2px;
      background: var(--border);
      z-index: 0;
    }
    
    .progress-line-fill {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      background: var(--gold);
      transition: width 0.4s ease;
      width: 0%;
    }
    
    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      position: relative;
      z-index: 1;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .step-circle {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: var(--dark3);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--muted);
      transition: all 0.3s ease;
    }
    
    .step.active .step-circle {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--dark1);
      box-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
    }
    
    .step.completed .step-circle {
      background: var(--success);
      border-color: var(--success);
      color: white;
    }
    
    .step-label {
      font-size: 0.85rem;
      color: var(--muted);
      font-weight: 600;
      text-align: center;
      transition: color 0.3s ease;
    }
    
    .step.active .step-label {
      color: var(--gold);
    }
    
    .step.completed .step-label {
      color: var(--success);
    }
    
    /* ✅ Style pour les étapes non accessibles */
    .step.disabled {
      cursor: not-allowed !important;
      opacity: 0.5;
    }
    
    .step.disabled .step-circle {
      background: var(--dark3) !important;
      border-color: var(--border) !important;
      color: var(--muted) !important;
    }
    
    .step.disabled .step-label {
      color: var(--muted) !important;
    }
    
    /* Main Content */
    .main-content {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 2rem;
      margin: 2rem 0;
      align-items: start;
    }
    
    @media (max-width: 960px) {
      .main-content {
        grid-template-columns: 1fr;
      }
      
      .price-summary {
        order: -1;
        position: static;
        margin-bottom: 2rem;
      }
    }
    
    /* Form Panel */
    .form-panel {
      background: var(--dark3);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
    }
    
    .panel-title {
      font-family: 'DM Serif Display', serif;
      font-size: 1.8rem;
      color: #fff;
      margin: 0 0 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }
    
    .step-content {
      display: none;
    }
    
    .step-content.active {
      display: block;
      animation: fadeIn 0.4s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* Form Fields */
    .field-group {
      margin-bottom: 1.5rem;
    }
    
    .field-label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .field-input,
    .field-select,
    .field-textarea {
      background: #080c16;
      border: 1px solid #1e2d47;
      border-radius: 10px;
      color: var(--text);
      padding: 0.75rem 1rem;
      width: 100%;
      font-family: inherit;
      font-size: 1rem;
      transition: all 0.2s ease;
    }
    
    .field-input:focus,
    .field-select:focus,
    .field-textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
      outline: none;
    }
    
    .field-textarea {
      min-height: 100px;
      resize: vertical;
    }
    
    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    
    @media (max-width: 600px) {
      .field-row {
        grid-template-columns: 1fr;
      }
    }
    
    /* GPS Button */
    .gps-btn {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--gold);
      border: none;
      border-radius: 6px;
      padding: 0.5rem;
      cursor: pointer;
      color: var(--dark1);
      font-size: 1.2rem;
      transition: all 0.2s ease;
    }
    
    .gps-btn:hover {
      background: #d4b77f;
      transform: translateY(-50%) scale(1.1);
    }
    
    .field-with-btn {
      position: relative;
    }
    
    /* Type Tabs */
    .type-tabs {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    
    .type-tab {
      flex: 1;
      padding: 0.75rem;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      text-align: center;
    }
    
    .type-tab:hover {
      border-color: var(--gold);
      color: var(--gold);
    }
    
    .type-tab.active {
      background: var(--gold);
      color: var(--dark1);
      border-color: var(--gold);
    }
    
    /* Suggestions */
    .suggest-wrap {
      position: relative;
    }
    
    .suggest-drop {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 1000;
      background: #0b1120;
      border: 1px solid #243048;
      border-radius: 10px;
      margin-top: 5px;
      max-height: 220px;
      overflow-y: auto;
      display: none;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }
    
    .suggest-drop.visible {
      display: block;
    }
    
    .suggest-opt {
      padding: 0.75rem 1rem;
      cursor: pointer;
      font-size: 0.9rem;
      color: #cfe0ff;
      border-bottom: 1px solid #162036;
      transition: all 0.2s ease;
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
    }
    
    .suggest-icon {
      font-size: 1.25rem;
      flex-shrink: 0;
      margin-top: 0.15rem;
    }
    
    .suggest-content {
      flex: 1;
      min-width: 0;
    }
    
    .suggest-main {
      font-weight: 500;
      color: #fff;
      margin-bottom: 0.25rem;
    }
    
    .suggest-sub {
      font-size: 0.85rem;
      color: #8fa4c6;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    
    .suggest-loader {
      padding: 1rem;
      text-align: center;
      color: #8fa4c6;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
    }
    
    .spinner {
      width: 16px;
      height: 16px;
      border: 2px solid #162036;
      border-top-color: var(--gold);
      border-radius: 50%;
      animation: spin 0.6s linear infinite;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    .suggest-error {
      padding: 1rem;
      text-align: center;
      color: #ff6b6b;
      font-size: 0.9rem;
    }
    
    .suggest-opt:last-child {
      border-bottom: none;
    }
    
    .suggest-opt:hover {
      background: #111c31;
      color: var(--gold);
    }
    
    .suggest-opt:hover .suggest-main {
      color: var(--gold);
    }
    
    /* Corrections mobiles pour l'autocomplete et le récapitulatif */
    @media (max-width: 768px) {
      .suggest-drop {
        position: fixed;
        left: 1rem;
        right: 1rem;
        top: auto;
        max-height: 300px;
        z-index: 10000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
      }
      
      .suggest-opt {
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
      }
      
      .price-summary {
        position: static !important;
        margin-bottom: 2rem;
      }
      
      /* S'assure que les champs de formulaire sont au-dessus du clavier */
      .field-input:focus {
        position: relative;
        z-index: 1;
      }
    }
    
    /* Corrections mobiles pour l'autocomplete */
    @media (max-width: 768px) {
      .suggest-drop {
        position: fixed;
        left: 1rem;
        right: 1rem;
        top: auto;
        max-height: 300px;
        z-index: 10000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
      }
      
      .suggest-opt {
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
      }
      
      .price-summary {
        position: static !important;
        margin-bottom: 2rem;
      }
    }
    
    /* ── Trajets fréquents — chips scrollables ── */
    /* ── Trajets fréquents — cartes de trajet premium ── */
    /* ── Destinations courantes — toggle + chips premium ── */
    .destinations-section { margin-bottom: 1.5rem; }

    /* ── Bouton "Destinations courantes" — design premium ── */
    .dest-toggle {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: linear-gradient(105deg,
        rgba(201,169,110,0.09) 0%,
        rgba(255,255,255,0.025) 60%,
        rgba(201,169,110,0.04) 100%);
      border: 1px solid rgba(201,169,110,0.32);
      border-radius: 10px;
      padding: 0.85rem 1.1rem 0.85rem 1rem;
      cursor: pointer;
      color: var(--text);
      font-family: inherit;
      transition: all 0.25s ease;
      position: relative;
      overflow: hidden;
    }
    /* Barre accent gauche */
    .dest-toggle::before {
      content: '';
      position: absolute;
      left: 0; top: 15%; bottom: 15%;
      width: 3px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      border-radius: 0 2px 2px 0;
      opacity: 0.7;
      transition: top 0.25s, bottom 0.25s, opacity 0.25s;
    }
    .dest-toggle:hover::before,
    .dest-toggle[aria-expanded="true"]::before {
      top: 8%; bottom: 8%; opacity: 1;
    }
    .dest-toggle:hover {
      border-color: rgba(201,169,110,0.6);
      background: linear-gradient(105deg,
        rgba(201,169,110,0.13) 0%,
        rgba(255,255,255,0.04) 60%,
        rgba(201,169,110,0.07) 100%);
      box-shadow: 0 4px 22px rgba(201,169,110,0.12),
                  inset 0 1px 0 rgba(255,255,255,0.05);
    }
    .dest-toggle[aria-expanded="true"] {
      border-color: rgba(201,169,110,0.65);
      border-radius: 10px 10px 0 0;
      background: linear-gradient(105deg,
        rgba(201,169,110,0.12) 0%,
        rgba(255,255,255,0.035) 60%,
        rgba(201,169,110,0.06) 100%);
      box-shadow: 0 2px 12px rgba(201,169,110,0.1);
    }
    /* Icône SVG route */
    .dest-toggle-icon {
      flex-shrink: 0;
      color: var(--gold);
      opacity: 0.85;
      width: 16px;
      height: 16px;
    }
    /* Libellé */
    .dest-toggle-label {
      flex: 1;
      text-align: left;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.88);
    }
    /* Badge compteur */
    .dest-toggle-count {
      font-size: 0.62rem;
      color: var(--gold);
      background: rgba(201,169,110,0.1);
      border: 1px solid rgba(201,169,110,0.3);
      border-radius: 20px;
      padding: 0.18rem 0.65rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      flex-shrink: 0;
    }
    /* Séparateur fin doré */
    .dest-toggle-sep {
      width: 1px;
      height: 16px;
      background: rgba(201,169,110,0.22);
      flex-shrink: 0;
    }
    /* Chevron */
    .dest-toggle-chevron {
      width: 16px;
      height: 16px;
      color: var(--gold);
      opacity: 0.75;
      transition: transform 0.3s ease, opacity 0.2s;
      flex-shrink: 0;
    }
    .dest-toggle[aria-expanded="true"] .dest-toggle-chevron {
      transform: rotate(180deg);
      opacity: 1;
    }

    /* ── Panel collapsible ── */
    .destinations-panel {
      background: #080c18;
      border: 1px solid rgba(201,169,110,0.28);
      border-top: 1px solid rgba(201,169,110,0.12);
      border-radius: 0 0 12px 12px;
      padding: 1rem 1rem 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }
    .destinations-panel[hidden] { display: none; }

    /* ── Catégorie : label + trait ── */
    .chips-category { display: flex; flex-direction: column; gap: 0.45rem; }
    .chips-cat-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .chips-cat-emoji { font-size: 0.7rem; opacity: 0.45; flex-shrink: 0; }
    .chips-cat-label {
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.22);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .chips-cat-rule {
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.06);
    }

    /* Scroll row */
    .chips-row {
      display: flex;
      gap: 0.45rem;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding-bottom: 4px;
      padding-right: 28px;
      -webkit-mask-image: linear-gradient(to right, black 82%, transparent 100%);
      mask-image: linear-gradient(to right, black 82%, transparent 100%);
    }
    .chips-row::-webkit-scrollbar { display: none; }

    /* ── Chip — carte de trajet ── */
    .chip {
      flex-shrink: 0;
      display: flex;
      align-items: stretch;
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 8px;
      cursor: pointer;
      transition: border-color 0.18s, transform 0.16s, box-shadow 0.18s;
      font-family: inherit;
      outline: none;
      overflow: hidden;
      padding: 0;
    }
    .chip:hover {
      border-color: rgba(201,169,110,0.5);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }
    .chip:active { transform: translateY(0); }

    /* Partie gauche : textes */
    .chip-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0.6rem 0.6rem 0.6rem 0.85rem;
      text-align: left;
      min-width: 0;
    }
    /* Tag origine (visible seulement si départ ≠ Lille) */
    .chip-origin-tag {
      font-size: 0.54rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(201,169,110,0.55);
      white-space: nowrap;
      line-height: 1.2;
    }
    /* Destination — star du chip */
    .chip-dest {
      font-size: 0.95rem;
      font-weight: 800;
      color: rgba(255,255,255,0.92);
      white-space: nowrap;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-top: 1px;
    }
    /* Sous-texte optionnel (ville départ si "Lille") */
    .chip-from {
      font-size: 0.57rem;
      color: rgba(255,255,255,0.2);
      white-space: nowrap;
      line-height: 1.2;
      margin-top: 2px;
    }

    /* Partie droite : durée ou prix */
    .chip-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 0.65rem;
      font-size: 0.68rem;
      white-space: nowrap;
      color: rgba(255,255,255,0.28);
      font-weight: 600;
      border-left: 1px solid rgba(255,255,255,0.07);
      min-width: 44px;
    }

    /* ── Chip forfait — badge prix or ── */
    .chip-forfait {
      border-color: rgba(201,169,110,0.22);
      background: rgba(12,10,6,0.6);
    }
    .chip-forfait .chip-dest { color: #fff; }
    .chip-forfait .chip-meta {
      background: rgba(201,169,110,0.12);
      color: #C9A96E;
      font-weight: 800;
      font-size: 0.75rem;
      border-left-color: rgba(201,169,110,0.18);
      letter-spacing: -0.01em;
    }
    .chip-forfait:hover {
      border-color: rgba(201,169,110,0.6);
      box-shadow: 0 4px 22px rgba(201,169,110,0.15), 0 6px 20px rgba(0,0,0,0.4);
    }
    
    /* Services supplémentaires */
    .service-option {
      background: #080c16;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    .service-option:hover {
      border-color: var(--gold);
      background: rgba(201, 169, 110, 0.05);
    }
    
    .service-option.selected {
      background: rgba(201, 169, 110, 0.1);
      border-color: var(--gold);
    }
    
    .service-info {
      flex: 1;
    }
    
    .service-name {
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.2rem;
    }
    
    .service-desc {
      font-size: 0.85rem;
      color: var(--muted);
    }
    
    .service-price {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gold);
      margin-left: 1rem;
    }
    
    .quantity-control {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-left: 1rem;
    }
    
    .qty-btn {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      border: 1px solid var(--border);
      background: var(--dark3);
      color: var(--text);
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .qty-btn:hover {
      border-color: var(--gold);
      background: var(--gold);
      color: var(--dark1);
    }
    
    .qty-display {
      font-weight: 700;
      min-width: 30px;
      text-align: center;
    }
    
    /* Payment Options */
    .payment-options {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    
    .payment-option {
      background: #080c16;
      border: 2px solid var(--border);
      border-radius: 12px;
      padding: 1.2rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    .payment-option:hover {
      border-color: var(--gold);
      background: rgba(201, 169, 110, 0.05);
    }
    
    .payment-option.selected {
      background: rgba(201, 169, 110, 0.1);
      border-color: var(--gold);
      box-shadow: 0 0 20px rgba(201, 169, 110, 0.2);
    }
    
    .payment-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    
    .payment-label {
      font-weight: 600;
      color: var(--text);
      font-size: 0.9rem;
    }
    
    .payment-sublabel {
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: 0.3rem;
    }
    
    /* Summary */
    .summary-row {
      display: flex;
      justify-content: space-between;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border);
    }
    
    .summary-label {
      color: var(--muted);
      font-size: 0.9rem;
    }
    
    .summary-value {
      color: var(--text);
      font-weight: 600;
    }
    
    /* Price Summary Card */
    .price-summary {
      background: linear-gradient(135deg, #0d1a30, #111e38);
      border: 1px solid #1e3254;
      border-radius: 16px;
      padding: 2rem;
      position: sticky;
      top: 20px;
    }
    
    .summary-title {
      font-family: 'DM Serif Display', serif;
      font-size: 1.5rem;
      color: #fff;
      margin: 0 0 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #1e3254;
    }
    
    .price-line {
      display: flex;
      justify-content: space-between;
      padding: 0.6rem 0;
      font-size: 0.9rem;
      color: var(--muted);
      border-bottom: 1px solid #152030;
    }
    
    .price-line:last-of-type {
      border-bottom: none;
    }
    
    .price-line span:last-child {
      color: #cfe0ff;
      font-weight: 600;
    }
    
    .price-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 2px solid var(--gold);
    }
    
    .price-total .label {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 700;
    }
    
    .price-total .amount {
      font-family: 'DM Serif Display', serif;
      font-size: 2.5rem;
      color: var(--gold);
    }
    
    .price-note {
      font-size: 0.8rem;
      color: var(--muted);
      margin: 1rem 0;
      line-height: 1.6;
      padding: 1rem;
      background: rgba(201, 169, 110, 0.05);
      border-radius: 8px;
      border-left: 3px solid var(--gold);
    }
    
    /* Buttons */
    .btn {
      padding: 1rem 2rem;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
      font-family: inherit;
    }
    
    .btn-primary {
      background: var(--gold);
      color: var(--dark1);
      width: 100%;
    }
    
    .btn-primary:hover:not(:disabled) {
      background: #d4b77f;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
    }
    
    .btn-primary:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    
    .btn-secondary {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }
    
    .btn-secondary:hover {
      border-color: var(--gold);
      color: var(--gold);
    }
    
    .button-row {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }
    
    .button-row .btn {
      flex: 1;
    }
    
    /* Checkbox */
    .checkbox-row {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      margin: 1rem 0;
    }
    
    .checkbox-row input[type="checkbox"] {
      width: 20px;
      height: 20px;
      margin-top: 0.2rem;
      cursor: pointer;
      accent-color: var(--gold);
    }
    
    .checkbox-row label {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.5;
      cursor: pointer;
    }
    
    .checkbox-row a {
      color: var(--gold);
      text-decoration: underline;
    }
    
    /* Map */
    #map-section {
      margin-top: 1.5rem;
      display: none;
    }
    
    #map {
      width: 100%;
      height: 300px;
      border-radius: 12px;
      border: 1px solid var(--border);
    }
    
    .map-info {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
      flex-wrap: wrap;
    }
    
    .map-badge {
      background: #080c16;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
      color: #cfe0ff;
    }
    
    .map-badge strong {
      color: var(--gold);
    }
    
    /* Utilities */
    .text-center {
      text-align: center;
    }
    
    .mt-2 {
      margin-top: 2rem;
    }
    
    .hidden {
      display: none !important;
    }
    
    /* Phone input */
    .phone-input-wrapper {
      display: flex;
      gap: 0.5rem;
    }
    
    .phone-prefix {
      background: #080c16;
      border: 1px solid #1e2d47;
      border-radius: 10px;
      padding: 0.75rem 1rem;
      color: var(--text);
      width: 100px;
      text-align: center;
    }
    
    .phone-number {
      flex: 1;
    }
    
    /* Loading Spinner */
    .loading-spinner {
      display: none;
      text-align: center;
      padding: 2rem;
    }
    
    .spinner {
      border: 3px solid rgba(201, 169, 110, 0.1);
      border-radius: 50%;
      border-top: 3px solid var(--gold);
      width: 40px;
      height: 40px;
      animation: spin 1s linear infinite;
      margin: 0 auto 1rem;
    }
    
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    /* Success Message */
    .success-message {
      background: rgba(47, 170, 96, 0.1);
      border: 1px solid var(--success);
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
      display: none;
    }
    
    .success-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    
    /* Theme Toggle */
    .theme-toggle {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--gold);
      border: none;
      cursor: pointer;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: all 0.2s ease;
      z-index: 1000;
    }
    
    .theme-toggle:hover {
      transform: scale(1.1);
    }
    
    /* Light Theme */
    body.light-theme {
      --dark1: #f8f9fa;
      --dark2: #ffffff;
      --dark3: #ffffff;
      --border: #e1e8ed;
      --text: #1a1a1a;
      --muted: #9fadca;
    }
