/*=========================================
  ROCKTEN GLOBAL BOOKING PAGE
==========================================*/

.booking-hero {
  min-height: 675px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image:
    linear-gradient(180deg, rgba(2, 2, 2, 0.2) 33.33%, rgba(2, 2, 2, 0.8) 100%),
    url("../img/Hero1.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}

.booking-hero .hero-badge {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  color: #fff;
  font-size: 15px;
  margin-bottom: 25px;
  backdrop-filter: blur(8px);
}

.booking-hero h1 {
  font-size: 60px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
}

.booking-hero p {
  color: #f2f2f2;
  font-size: 20px;
  max-width: 760px;
  margin: auto;
  line-height: 34px;
}

/*============================*/

.booking-section {
  background: #f8f9fc;
}

/*============================*/

.booking-card {
  background: #fff;

  padding: 50px;

  border-radius: 20px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

  margin-bottom: 40px;
}

.booking-card h2 {
  margin-bottom: 40px;

  font-size: 34px;
}

/*============================*/

.booking-card label {
  display: block;

  font-weight: 600;

  margin-bottom: 12px;

  color: #111;
}

/*============================*/

.booking-card input,
.booking-card select,
.booking-card textarea {
  width: 100%;

  border: 1px solid #ddd;

  border-radius: 12px;

  padding: 15px 18px;

  font-size: 16px;

  transition: 0.35s;

  margin-bottom: 25px;

  background: #fff;
}

/*============================*/

.booking-card textarea {
  resize: none;
}

/*============================*/

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
  outline: none;

  border-color: #003399;

  box-shadow: 0 0 0 4px rgba(0, 51, 153, 0.08);
}

/*============================*/

.contact-options {
  display: flex;

  flex-wrap: wrap;

  gap: 25px;

  margin-top: 10px;
}

/*============================*/

.contact-options label {
  display: flex;

  align-items: center;

  gap: 10px;

  cursor: pointer;

  font-weight: 500;
}

/*============================*/

.contact-options input {
  width: auto;

  margin: 0;
}

/*============================*/

.booking-sidebar {
  background: #003399;

  padding: 45px;

  border-radius: 20px;

  position: sticky;

  top: 120px;

  color: #fff;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.booking-sidebar h3 {
  color: #fff;

  font-size: 32px;

  margin-bottom: 25px;
}

.booking-sidebar h4 {
  color: #fff;

  margin-top: 35px;

  margin-bottom: 20px;
}

.booking-sidebar ul {
  padding: 0;

  margin: 0;

  list-style: none;
}

.booking-sidebar li {
  margin-bottom: 18px;

  font-size: 17px;

  display: flex;

  align-items: center;

  gap: 10px;
}

.booking-sidebar p {
  color: #f8f8f8;

  line-height: 30px;

  margin-bottom: 20px;
}

/*============================*/

.booking-sidebar hr {
  border-color: rgba(255, 255, 255, 0.2);

  margin: 35px 0;
}

/*============================*/

.primary-btn3 {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 18px 45px;

  background: #003399;

  color: #fff;

  border-radius: 60px;

  font-weight: 600;

  transition: 0.35s;

  border: none;

  cursor: pointer;
}

.primary-btn3:hover {
  background: #001d66;

  transform: translateY(-3px);
}

/*============================*/

.secondary-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 35px;

  background: #fff;

  color: #003399;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.35s;

  text-decoration: none;
}

.secondary-btn:hover {
  background: #f4f4f4;

  transform: translateY(-3px);
}

/*============================*/

#productOptions {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 10px;
}

.product-item {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 15px;

  border: 1px solid #ddd;

  border-radius: 12px;

  cursor: pointer;

  transition: 0.35s;

  background: #fff;
}

.product-item:hover {
  border-color: #003399;

  background: #eef4ff;

  transform: translateY(-3px);
}

.product-item input {
  width: auto;

  margin: 0;
}

.product-item span {
  font-size: 16px;

  font-weight: 500;
}
/*=========================================
  FILE UPLOAD AREA
==========================================*/

.upload-area {
  position: relative;
  border: 2px dashed #003399;
  border-radius: 18px;
  background: #f8fbff;
  padding: 50px 30px;
  text-align: center;
  transition: 0.35s;
  cursor: pointer;
  overflow: hidden;
}

.upload-area:hover {
  background: #eef5ff;
  border-color: #001f66;
}

.upload-area i {
  font-size: 60px;
  color: #003399;
  margin-bottom: 15px;
}

.upload-area h4 {
  margin-bottom: 10px;
  color: #003399;
}

.upload-area p {
  margin: 0;
  color: #666;
}

.upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/*=========================================
CHECKBOX GRID
==========================================*/

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.checkbox-card {
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 18px;
  transition: 0.35s;
  cursor: pointer;
  background: #fff;
}

.checkbox-card:hover {
  border-color: #003399;
  background: #f3f7ff;
  transform: translateY(-4px);
}

.checkbox-card input {
  margin-right: 10px;
}

/*=========================================
BOOKING SUMMARY
==========================================*/

.booking-summary {
  margin-top: 40px;

  padding: 30px;

  border-radius: 20px;

  background: #fff;

  border: 1px solid #e9e9e9;
}

.booking-summary h3 {
  margin-bottom: 25px;

  color: #003399;
}

.summary-row {
  display: flex;

  justify-content: space-between;

  padding: 12px 0;

  border-bottom: 1px dashed #ddd;
}

.summary-row:last-child {
  border-bottom: none;
}

/*=========================================
SUCCESS MESSAGE
==========================================*/

.success-box {
  display: none;

  padding: 45px;

  border-radius: 20px;

  background: #effdf4;

  border: 2px solid #32b768;

  text-align: center;

  margin-top: 40px;
}

.success-box i {
  font-size: 80px;

  color: #32b768;

  margin-bottom: 20px;
}

.success-box h2 {
  color: #0f7a37;

  margin-bottom: 15px;
}

.success-box p {
  color: #555;

  max-width: 600px;

  margin: auto;
}

/*=========================================
FORM PROGRESS BAR
==========================================*/

.progress-wrapper {
  margin-bottom: 45px;
}

.progress {
  height: 8px;

  border-radius: 20px;

  background: #e7e7e7;

  overflow: hidden;
}

.progress-bar {
  width: 25%;

  height: 100%;

  background: #003399;

  transition: 0.5s;
}

/*=========================================
BUTTON LOADING
==========================================*/

.btn-loading {
  pointer-events: none;

  opacity: 0.8;
}

.btn-loading::after {
  content: "";

  width: 18px;

  height: 18px;

  margin-left: 12px;

  border: 2px solid #fff;

  border-top: 2px solid transparent;

  border-radius: 50%;

  display: inline-block;

  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/*=========================================
INPUT ICONS
==========================================*/

.input-group {
  position: relative;
}

.input-group i {
  position: absolute;

  top: 50%;

  left: 18px;

  transform: translateY(-50%);

  color: #003399;

  font-size: 18px;
}

.input-group input,
.input-group select {
  padding-left: 50px;
}

/*=========================================
ANIMATIONS
==========================================*/

.booking-card,
.booking-sidebar {
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(40px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/*=========================================
RESPONSIVE
==========================================*/

@media (max-width: 991px) {
  .booking-hero {
    padding: 120px 0 90px;
  }

  .booking-hero h1 {
    font-size: 42px;
  }

  .booking-card {
    padding: 35px;
  }

  .booking-sidebar {
    margin-top: 40px;

    position: relative;

    top: 0;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  #productOptions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .booking-card {
    padding: 25px;
  }

  .booking-hero h1 {
    font-size: 34px;
  }

  .booking-hero p {
    font-size: 17px;

    line-height: 30px;
  }

  .primary-btn3 {
    width: 100%;
  }

  .secondary-btn {
    width: 100%;

    justify-content: center;
  }

  .contact-options {
    flex-direction: column;

    gap: 15px;
  }

  .summary-row {
    flex-direction: column;

    gap: 5px;
  }
}

@media (max-width: 576px) {
  .booking-hero {
    padding: 100px 0 70px;
  }

  .booking-sidebar {
    padding: 30px;
  }

  .booking-card h2 {
    font-size: 28px;
  }
}
