/* page header  */
/* .page-header {

  background-image: url(../allfiximages/NewCharacter/teamban.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: repeat;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.805);
    padding: 150px 0 80px 0;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--golden);
} */
/* ==== AllFix Yellow & Black Modern Booking Section ==== */
.booking-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 50px 20px;
    }

    .booking-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1100px;
      background: #111;
      border-radius: 20px;
      box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
      overflow: hidden;
      padding:20px;
    }

    .booking-illustration {
      flex: 1 1 40%;
      display: flex;
      justify-content: center;
      background: #222;
      padding: 20px;
    }

    .booking-illustration img {
      max-width: 100%;
      border-radius: 15px;
    }

    .booking-form-container {
      flex: 1 1 60%;
      padding: 30px;
    }

    h2.section-title {
      color: #ffcc00;
      font-size: 28px;
      margin-bottom: 10px;
    }

    p.section-subtitle {
      color: #fff;
      margin-bottom: 25px;
    }

    .form-group {
      margin-bottom: 15px;
    }

    label {
      color: #312d20;
      font-weight: 500;
      font-size: 18px;
      display: block;
      margin-bottom: 8px;
    }

    input,
    textarea,
    select {
      width: 100%;
      padding: 15px;
      border-radius: 8px;
      border: none;
      background: #222;
      color: #fff;
      font-size: 17px;
    }

    .btn-primary {
      background: #ffcc00;
      color: #000;
      font-weight: 600;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      cursor: pointer;
      width: 100%;
      transition: 0.3s;
    }

    .btn-primary:hover {
      background: #ffdb4d;
      transform: scale(1.02);
    }

    .btn-location {
      background: #ffcc00;
      border: none;
      color: #000;
      padding: 8px 15px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      margin-bottom: 8px;
    }
    

/* ==========================================
   Booking Page
   ========================================== */

.booking-section {
    background: var(--gray);
}

.booking-wrapper {
    display: grid;
      grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 50px;
    align-items: center;
}
.booking-wrapper img{
  max-width: 480px;
  margin: auto;
}
.booking-form-container {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-form-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--golden);
}

.btn-submit {
    width: 100%;
    cursor: pointer;
    border: none;
    font-size: 18px;
}

.booking-info {
  padding:20px;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 80px;
    color: var(--golden);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 16px;
    color: var(--dark-gray);
}
.form-group input[type="file"] {
  border: 1px solid #d4a017;
  border-radius: 8px;
  padding: 8px;
  background-color: #fff8e1;
  color: #333;
  width: 100%;
  cursor: pointer;
}

.form-group small.note {
  display: block;
  font-size: 0.85rem;
  color: #777;
  margin-top: 5px;
}

/* ==========================================
   Legal Pages
   ========================================== */

.legal-content {
    background: var(--white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

.legal-wrapper h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--black);
}

.legal-wrapper p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-wrapper ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-wrapper ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
    font-weight: 500;
}




@media (max-width: 991px) {
  .booking-wrapper {
    grid-template-columns: 1fr; /* full width form, image below */
    
  }
  .booking-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .booking-form-container {
    width: 100%;
  }

  .booking-illustration img {
    width: 75%;
    margin-bottom: 30px;
  }

  .dual-input {
    flex-direction: column;
  }
   .booking-wrapper div:nth-of-type(2)  {
    display: none;
  }
}
@media only screen and (max-width:738px){
 
  .booking-wrapper{
    margin-top: 0px;
  }
  .booking-info{
    flex-direction: column;
  }
}