/* =========================================
   PREMIUM BOOKING WIDGET
========================================= */
.premium-booking-widget {
  background: #fff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 120px;
  border-top: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-header {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f3f4f6;
}

.discount-badge {
  position: absolute;
  top: -15px;
  right: -10px;
  background: var(--color-highlight);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  transform: rotate(5deg);
  box-shadow: 0 4px 10px rgba(241, 142, 12, 0.4);
}

.booking-price {
  text-align: left;
}

.price-from {
  display: block;
  font-size: 0.9rem;
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 5px;
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-old {
  font-size: 1.2rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.price-tax {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 5px;
}

.form-group-icon {
  margin-bottom: 15px;
}

.form-group-icon label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.age-label {
  font-weight: 400;
  color: #9ca3af;
  font-size: 0.8rem;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon svg {
  position: absolute;
  left: 15px;
  color: #6b7280;
  pointer-events: none;
}

/* Tooltip Premium */
.hotel-tooltip {
  position: absolute;
  top: 50%;
  left: 105%;
  transform: translateY(-50%) translateX(10px);
  background: white;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  font-size: 0.85rem;
  color: #4b5563;
  width: max-content;
  max-width: 250px;
  line-height: 1.4;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  border: 1px solid #f3f4f6;
}

.hotel-tooltip::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent white transparent transparent;
  filter: drop-shadow(-2px 0px 1px rgba(0,0,0,0.05));
}

.input-with-icon:hover .hotel-tooltip.has-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .hotel-tooltip {
    top: auto;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
  }
  .hotel-tooltip::before {
    top: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-color: white transparent transparent transparent;
    filter: drop-shadow(0px 2px 1px rgba(0,0,0,0.05));
  }
  .input-with-icon:hover .hotel-tooltip.has-content {
    transform: translateX(-50%) translateY(0);
  }
}

.input-with-icon input,
.input-with-icon select {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #1f2937;
  transition: all 0.3s;
  background-color: #f9fafb;
  appearance: none;
  -webkit-appearance: none;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(91, 121, 124, 0.1);
}

.guests-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.btn-book-now {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #4a6b70 100%);
  color: #fff;
  border: none;
  padding: 18px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin-top: 10px;
  box-shadow: 0 10px 20px rgba(91, 121, 124, 0.2);
}

.btn-book-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(91, 121, 124, 0.3);
  background: linear-gradient(135deg, #4a6b70 0%, var(--color-primary) 100%);
}

.no-charge-text {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 12px;
  margin-bottom: 25px;
}

.booking-guarantees {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #e5e7eb;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #4b5563;
}

.premium-booking-widget .booking-help {
  margin-top: 20px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
}

.premium-booking-widget .booking-help p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.whatsapp-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25D366;
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none !important;
}

.whatsapp-link:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  color: #fff;
}

@media (max-width: 992px) {
  .premium-booking-widget {
    position: static;
    margin-top: 40px;
  }
}