.logo {
  position: fixed;
  top: 0;
  left: 5%;
}
.bookBtn {
  display: none;
}
.travel-hero.active .logo {
  width: 80px;
}
.logo img {
  transition: width 0.3s ease;
}
/* ==================== */
.premium-modal {
  position: absolute;
  top: 60px; /* Slightly higher */
  right: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.premium-card {
  background: #ffffff;
  width: 440px; /* Slightly wider for the 3-column row */
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.premium-header h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111827;
}

.premium-form {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Tightened gap */
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.premium-form label {
  font-size: 13px; /* Smaller labels for compactness */
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.premium-form input,
.premium-form select {
  height: 40px; /* Reduced height from 46px */
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  font-size: 14px;
}

/* Specific Grid Layouts */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.multi-col {
  grid-template-columns: 1fr 1fr 1.5fr; /* Adult, Child, Tour Type */
}

.form-divider {
  border: 0;
  border-top: 1px solid #f3f4f6;
  margin: 8px 0;
}

.premium-btn {
  margin-top: 10px;
  height: 44px;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  border-radius: 10px;
  font-weight: 600;
  color: white;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.premium-btn:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .premium-modal {
    display: none;
    scroll-margin-top: 200px;
  }
  .bookBtn {
    display: block;
  }
}
@media (max-width: 480px) {
  .premium-card {
    width: 90vw;
  }
  .multi-col {
    grid-template-columns: 1fr 1fr; /* Stack tour type on mobile if needed */
  }
}

#bookingModalForm1 .modal-dialog {
  max-width: 480px;
}

#bookingModalForm1 .modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

#bookingModalForm1 .modal-header {
  padding: 24px 24px 10px;
  border: none;
}

#bookingModalForm1 .modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

#bookingModalForm1 .modal-body {
  padding: 0 24px 28px;
}

/* COMPACT INPUT STYLING */
#bookingModalForm1 label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

#bookingModalForm1 .form-control,
#bookingModalForm1 .form-select {
  height: 42px; /* Reduced from 46px */
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  color: #374151;
}

#bookingModalForm1 .form-control:focus,
#bookingModalForm1 .form-select:focus {
  background: #ffffff;
  border-color: #14b8a6;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

/* ROW SPACING */
#bookingModalForm1 .row.g-2 {
  --bs-gutter-x: 10px;
}

/* BUTTON ENHANCEMENT */
#bookingModalForm1 .btn-primary {
  height: 48px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  border: none;
  margin-top: 10px;
}

#bookingModalForm1 .btn-primary:hover {
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
  transform: translateY(-1px);
}

/* Divider adjustment */
#bookingModalForm1 hr {
  margin: 15px 0;
}
