/* ===========================
   BOOKING PAGE
   =========================== */
body {
  background: #fff;
  overflow: hidden;
}

.booking-wrapper {
  height: calc(100vh - 65px);
  margin-top: 65px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* LEFT PANEL */
.booking-left {
  flex: 0 0 38%;
  background: linear-gradient(145deg, #1a56ff 0%, #0b30c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.booking-left::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.booking-left::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.booking-info {
  position: relative;
  z-index: 1;
  width: 100%;
}

.booking-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.booking-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.booking-title .blue {
  color: #a8c4ff;
}

.booking-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 300px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.info-value {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

/* RIGHT PANEL */
.booking-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 48px;
  background: #fff;
  overflow-y: auto;
}

.booking-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 32px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 8px 32px rgba(26, 86, 255, 0.12), 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid rgba(26, 86, 255, 0.14);
}

.form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 2px;
}

.form-sub {
  font-size: 12.5px;
  color: #888;
  margin-bottom: 20px;
}

/* FORM ELEMENTS */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}

.optional {
  font-weight: 400;
  color: #aaa;
  font-size: 11px;
}

input,
select,
textarea {
  font-family: var(--font);
  font-size: 13px;
  color: var(--black);
  background: #f8f9ff;
  border: 1.5px solid #e2e6ff;
  border-radius: 10px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 255, 0.1);
  background: #fff;
}

input::placeholder,
textarea::placeholder {
  color: #bbb;
}

textarea {
  resize: none;
  height: 72px;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a56ff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #f8f9ff;
  padding-right: 36px;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 6px;
  box-shadow: 0 4px 20px rgba(26, 86, 255, 0.35);
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 86, 255, 0.4);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  body { overflow: auto; }
  .booking-wrapper {
    flex-direction: column;
    height: auto;
    min-height: calc(100vh - 60px);
    overflow: auto;
  }
  .booking-left {
    flex: unset;
    padding: 32px 24px;
    min-height: auto;
  }
  .booking-title { font-size: 28px; }
  .booking-desc { max-width: 100%; }
  .booking-right { padding: 24px 16px; }
  .booking-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .booking-left { padding: 24px 16px; }
  .booking-card { padding: 20px 16px; }
  .form-title { font-size: 18px; }
}