/* Stepper */
.stepper {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .step {
    flex: 1 1 120px;
    padding: .6rem .75rem;
    border-radius: .5rem;
    text-align: center;
    background: #f1f3f5;
    color: #495057;
    font-weight: 600;
  }
  .step.active { background: #b19739; color: #fff; }
  .step.completed { background: #198754; color: #fff; }
  
  /* Helpers */
  .photo-preview {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: .25rem;
  }
  canvas {
    border: 1px solid #ddd;
    border-radius: .25rem;
    width: 100%;
    height: 150px;
  }
  .required:after {
    content: " *";
    color: #d00;
  }
  .review-table td {
    vertical-align: top;
    padding: .25rem .5rem;
  }
/* Step Progressbar */
.progressbar {
    display: flex;
    justify-content: space-between;
    padding-left: 0;
    margin: 0;
    list-style-type: none;
    position: relative;
  }
  
  .progressbar li {
    flex: 1;
    text-align: center;
    position: relative;
  }
  
  .progressbar li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid #b19739;
    background-color: #fff;
    color: #b19739;
    font-weight: 700;
    font-size: 1rem;
    z-index: 1;
    position: relative;
}
  .progressbar li p {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    font-family: 'TT Hoves Pro Trial Medium', sans-serif;
    font-size: 17px;
  }
  
  /* Connecting line */
  .progressbar li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #b19739;
    top: 20px;
    left: -50%;
    z-index: 0;
}
  .progressbar li:first-child::after {
    content: none;
  }
  
  /* Active step */
  .progressbar li.active span {
    border-color: #b19739;
    background: #b19739;
    color: #fff;
  }
  .progressbar li.active p {
    color: #b19739;
    font-weight: 600;

  }
  
  /* Completed steps */
  .progressbar li.completed span {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
  }
  .progressbar li.completed::after {
    background-color: var(--primary-color);
  }
  .progressbar li.completed p {
    color: var(--primary-color);
    font-weight: 600;
  }
  .booking-form{
        background: white;
        margin-bottom: 0px;
    } 
    .booking-form h5 {
        font-family: var(--head-bold-font);
        background: var(--secondary-color);
        margin-bottom: 0px;
        color: white;
        padding: 12px;
        text-align: center;
    }
    .booking-form .form-content{
        padding: 30px;
    }
    .booking-form .form-content-footer {
        padding: 0px 30px 30px;
    }
    .btn.btn-previous {
        padding: 14px 60px;
        background: #000000;
        border: 1px solid #000000;
        border-radius: 0;
        font-size: 18px;
        font-family: var(--head-light-font);
        color: white;
    }
 .booking-form .form-control {
        height: 50px;
        border-radius: 0;
    }
    .booking-form .thankyou{
      font-family: "Whisper", serif;
      font-size: 90px;
      color: #45543d;
      font-weight: 600;
      line-height: 60px;
    }
    .booking-form .thankyou span{
      color: #b19740;
      font-family: var(--head-light-font);
      font-size: 20px;
      font-weight: 400;
    }
    .review-table {
      width: 100%;
      border-collapse: collapse;
    }
    .review-table td {
      padding: 8px 12px;
      border: 1px solid #ddd;
      vertical-align: top;
    }
    .review-label {
      font-family: var(--head-bold-font);
      white-space: nowrap;
    }
    .review-row {
      display: flex;
      flex-wrap: wrap;
    }
    .review-cell {
      flex: 1 1 33.3%;
      max-width: 33.3%;
      box-sizing: border-box;
      padding: 14px 20px;
      border: 1px solid #dddddd;
  }
    .review-label {
      display: block;
      font-weight: 600;
      margin-bottom: 4px;
      color: #333;
    }
    .review-value {
      color: #555;
    }
    .form-label{
      font-family: var(--head-bold-font);
    }
     .booking-logo {
      float: right;
      width: 130px;
  }
  .booking-form-outer {
    margin-top: 30px;
    background-color: white;
    padding: 0;
  }
  .booking-form h4 {
    font-family: 'TT Hoves Pro Trial Medium', sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: left;
    color: #45533d;
}
.booking-section {
  background-color: #f7f7f7;
  padding: 20px;
}