.booking-shell {
  width: min(1100px, 92vw);
  position: relative;
  padding: clamp(26px, 6vw, 50px);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 224, 138, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 224, 138, 0.24);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(10px);
}

.booking-shell::before,
.booking-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(35px);
  opacity: 0.8;
  z-index: -1;
}

.booking-shell::before {
  width: 240px;
  height: 240px;
  background: rgba(253, 160, 133, 0.35);
  top: -40px;
  left: -60px;
}

.booking-shell::after {
  width: 280px;
  height: 280px;
  background: rgba(146, 200, 255, 0.28);
  bottom: -60px;
  right: -50px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(18px, 4vw, 30px);
  align-items: center;
}

.booking-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.booking-title {
  font-size: clamp(28px, 3vw, 40px);
  margin: 14px 0 10px 0;
  letter-spacing: 0.03em;
}

.booking-description {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 16px;
}

.booking-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.booking-badge {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.booking-highlight {
  padding: 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 224, 138, 0.12);
  color: var(--muted);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  color: #0f141d;
  font-weight: 700;
  background: linear-gradient(135deg, #f6d365, #fda085);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 36px rgba(253, 160, 133, 0.4);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(253, 160, 133, 0.5);
  filter: brightness(1.05);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.booking-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 12px;
}

.booking-card h4 {
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.booking-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.booking-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-card li strong {
  color: var(--text);
}

@media (max-width: 820px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
}
