/* Booking.com funnel layer: official brand site, secure OTA reservation path. */
.booking-com-trust {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.booking-trust-panel {
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgba(0, 53, 128, 0.16);
  border-radius: clamp(22px, 4vw, 38px);
  background:
    radial-gradient(circle at 8% 0%, rgba(197, 154, 84, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(255, 252, 246, 0.98), rgba(239, 247, 255, 0.92));
  box-shadow: 0 24px 70px rgba(31, 43, 35, 0.11);
}

.booking-trust-panel::before {
  content: 'Official reservation path';
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(0, 53, 128, 0.08);
  color: #003580;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-trust-panel h2 {
  max-width: 760px;
  margin-bottom: 0.8rem;
  color: var(--color-green);
}

.booking-trust-panel p {
  max-width: 840px;
  color: var(--color-text-light);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.72;
}

.booking-trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.booking-trust-actions .btn-primary,
.hero-actions .btn-primary[data-booking-cta] {
  background: linear-gradient(135deg, #003580, #0071c2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.booking-trust-actions .btn-primary:hover,
.hero-actions .btn-primary[data-booking-cta]:hover {
  background: linear-gradient(135deg, #00224f, #005fa3);
}

.booking-trust-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.78);
}

@media (max-width: 768px) {
  .booking-trust-actions .btn {
    width: 100%;
  }
}
