
    .open-modal-btn {
      background: #e5b300;
      color: #000;
      border: none;
      padding: 14px 28px;
      font-size: 16px;
      font-weight: 700;
      border-radius: 50px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(229, 179, 0, 0.25);
      transition: all 0.2s ease;
    }

    .open-modal-btn:hover {
      background: #d4a300;
      transform: translateY(-1px);
    }
#cbf-message{
color: #fff;
}

    /* Modal Backdrop */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(4px);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 9999;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    /* Modal Container */
    .modal-container {
      background: #18181f;
      border: 1px solid #2e2e3a;
      border-radius: 16px;
      width: 100%;
      max-width: 480px;
      padding: 40px 24px;
      position: relative;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
      transform: translateY(15px);
      transition: transform 0.3s ease;
      max-height: 92vh;
      overflow-y: auto;
    }

    .modal-overlay.active .modal-container {
      transform: translateY(0);
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      color: #888;
      font-size: 26px;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
      padding: 5px 8px;
    }

    .close-btn:hover {
      color: #fff;
      
    }

    /* Progress Indicator */
    .progress-bar {
      display: flex;
      justify-content: space-between;
      margin-bottom: 24px;
      margin-top: 10px;
      position: relative;
    }

    .progress-bar::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 2px;
      background: #2a2a35;
      z-index: 1;
      transform: translateY(-50%);
    }

    .progress-line {
      position: absolute;
      top: 50%;
      left: 0;
      height: 2px;
      background: #e5b300;
      z-index: 1;
      transform: translateY(-50%);
      transition: width 0.3s ease;
      width: 0%;
    }

    .step-circle {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #22222a;
      border: 2px solid #333342;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 600;
      color: #888;
      z-index: 2;
      transition: all 0.3s;
    }

    .step-circle.active {
      border-color: #e5b300;
      color: #e5b300;
      background: #18181f;
      box-shadow: 0 0 10px rgba(229, 179, 0, 0.2);
    }

    .step-circle.completed {
      background: #e5b300;
      border-color: #e5b300;
      color: #000;
    }

    /* Steps Content */
    .step-content {
      display: none;
      animation: fadeIn 0.2s ease-in-out;
    }

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

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

    .step-content h3 {
      font-size: 22px;
      margin-bottom: 6px;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: -0.02em;
    }

    .step-content p.step-subtitle {
      color: #9999a6;
      font-size: 14px;
      margin-bottom: 20px;
    }

    /* Summary Card on Step 3 */
    .summary-card {
      background: #22222b;
      border: 1px solid #31313f;
      border-radius: 14px;
      padding: 16px 20px;
      margin-bottom: 22px;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      font-size: 13.5px;
      border-bottom: 1px dashed #333342;
    }

    .summary-row:last-child {
      border-bottom: none;
      padding-bottom: 2px;
    }

    .summary-row:first-child {
      padding-top: 2px;
    }

    .summary-label {
      color: #9999a6;
      font-weight: 400;
    }

    .summary-val {
      font-weight: 600;
      color: #ffffff;
      text-align: right;
    }

    /* Option Cards */
    .option-card {
      background: #22222a;
      border: 2px solid #333342;
      border-radius: 10px;
      padding: 14px 18px;
      margin-bottom: 12px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.2s ease;
    }

    .option-card:hover {
      border-color: rgba(229, 179, 0, 0.5);
      background: #282833;
    }

    .option-card.selected {
      border-color: #e5b300;
      background: #282833;
    }

    .option-title {
      font-weight: 600;
      font-size: 15px;
color: #fff;
    }

    .option-subtitle {
      font-size: 12px;
      color: #9999a6;
      margin-top: 2px;
    }

    .option-price {
      font-weight: 700;
      color: #e5b300;
      font-size: 15px;
    }

    /* Form Fields */
    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 13px;
      color: #cccccc;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .form-group input, .form-group select {
      width: 100%;
      padding: 10px 16px;
      background: #22222a;
      border: 1px solid #333342;
      border-radius: 10px;
      color: #fff;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-group select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5b300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-size: 16px;
      padding-right: 38px;
    }

    .form-group select option {
      background: #18181f;
      color: #fff;
      padding: 10px;
    }

    .form-group input:focus, .form-group select:focus {
      border-color: #e5b300;
      box-shadow: 0 0 0 2px rgba(229, 179, 0, 0.15);
    }

    .form-group input.error {
      border-color: #ef4444;
      box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
    }

    /* Time Slots Grid */
    .time-slots {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 6px;
      padding: 4px;
      border-radius: 8px;
      border: 1px solid transparent;
      transition: border-color 0.2s;
    }

    .time-slots.error {
      border-color: #ef4444;
      background: rgba(239, 68, 68, 0.05);
    }

    .time-slot-btn {
      background: #22222a;
      border: 1px solid #333342;
      color: #fff;
      padding: 11px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      text-align: center;
      font-weight: 500;
      transition: all 0.2s;
    }

    .time-slot-btn:hover {
      border-color: #e5b300;
      background: #282833;
    }

    .time-slot-btn.selected {
      border-color: #e5b300;
      background: #e5b300;
      color: #000;
      font-weight: 700;
    }

    .error-msg {
      color: #ef4444;
      font-size: 12px;
      margin-top: 6px;
      display: none;
      font-weight: 500;
    }

    /* Action Buttons */
    .btn-group {
      display: flex;
      justify-content: space-between;
      margin-top: 24px;
      gap: 14px;
    }

    .btn {
      flex: 1;
      padding: 14px 20px;
      border-radius: 50px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      font-size: 15px;
      transition: all 0.2s ease;
      text-align: center;
    }

    .btn-secondary {
      background: transparent;
      border: 1px solid #444455;
      color: #ffffff;
    }

    .btn-secondary:hover {
      background: #282833;
      border-color: #666677;
    }

    .btn-primary {
      background: #e5b300;
      color: #000;
    }

    .btn-primary:hover {
      background: #d4a300;
      transform: translateY(-1px);
    }

    .disclaimer-text {
      text-align: center;
      font-size: 12px;
      color: #777785;
      margin-top: 14px;
    }

    /* Confirmation Screen */
    .success-screen {
      text-align: center;
      padding: 16px 0;
    }

    .success-icon {
      width: 64px;
      height: 64px;
      background: #22c55e;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      margin: 0 auto 18px;
      box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }
