/* Reservation Section */
.reservation-section {
  background: #0A1128;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.reservation-section__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.reservation-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.reservation-section__title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  background: linear-gradient(98.57deg, #0582FF 0%, #5CE4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 32px 0;
}

.reservation-section__divider {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.reservation-section__line {
  width: 600px;
  height: 2px;
}

/* Form Area */
.reservation-section__form {
  background: rgba(15, 23, 41, 0.8);
  border: 1px solid rgba(92, 228, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reservation-section__placeholder {
  color: #94A3B8;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.reservation-section__placeholder p {
  margin: 0;
  padding: 20px;
  border: 2px dashed rgba(92, 228, 255, 0.3);
  border-radius: 12px;
  background: rgba(92, 228, 255, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .reservation-section {
    padding: 60px 0;
  }

  .reservation-section__container {
    padding: 0 16px;
  }

  .reservation-section__title {
    font-size: 36px;
    line-height: 36px;
  }

  .reservation-section__header {
    margin-bottom: 48px;
  }

  .reservation-section__line {
    width: 100%;
    max-width: 400px;
  }

  .reservation-section__form {
    padding: 24px;
    min-height: 300px;
  }

  .reservation-section__placeholder {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .reservation-section {
    padding: 40px 0;
  }

  .reservation-section__title {
    font-size: 28px;
    line-height: 28px;
  }

  .reservation-section__form {
    padding: 20px;
    min-height: 250px;
  }

  .reservation-section__line {
    width: 100%;
    max-width: 300px;
  }
}

/* Form Styling (for embedded forms) */
.reservation-section__form iframe,
.reservation-section__form form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.reservation-section__form iframe {
  border: none;
  border-radius: 8px;
}
