/* ============================================
   MOBILE HERO BOOKING FORM - mobile-booking.css
   Save: public_html/css/mobile-booking.css
   ============================================ */

/* Default: Desktop par HIDE */
.mobile-hero-booking {
  display: none;
}

/* Mobile par SHOW */
@media (max-width: 768px) {
  .mobile-hero-booking {
    display: block;
  }
}

/* ══════════════════════════════════════════
   SAARI STYLING - media query ke BAHAR
   Chrome DevTools + real mobile dono par
══════════════════════════════════════════ */

.mobile-hero-booking {
  background: #0a0a0a;
  padding: 36px 0 44px;
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

.mhb-container {
  width: 92%;
  max-width: 500px;
  margin: 0 auto;
}

.mhb-header {
  text-align: center;
  margin-bottom: 28px;
}

.mhb-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a84c;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.28);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.mhb-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.mhb-title span {
  color: #c9a84c;
  font-style: italic;
}

.mhb-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mhb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mhb-field label {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
}

.req {
  color: #c9a84c;
}

.mhb-field input,
.mhb-field select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}

.mhb-field input::placeholder {
  color: rgba(255,255,255,0.22);
}

.mhb-field input:focus,
.mhb-field select:focus {
  border-color: #c9a84c;
  background: rgba(201,168,76,0.06);
}

.mhb-field 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 fill='%23c9a84c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.mhb-field select option {
  background: #111;
  color: #fff;
}

.mhb-field input[type="date"] {
  color-scheme: dark;
}

.mhb-field input.input-error,
.mhb-field select.input-error {
  border-color: #ff4d4d !important;
  background: rgba(255,77,77,0.06) !important;
}

.mhb-error {
  font-size: 11px;
  color: #ff6b6b;
  min-height: 14px;
  display: block;
  padding-left: 2px;
  font-weight: 500;
}

.mhb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mhb-trip-types {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}

.mhb-radio {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mhb-radio input[type="radio"] {
  display: none;
}

.mhb-radio span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 4px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.22);
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  user-select: none;
}

.mhb-radio input[type="radio"]:checked + span {
  background: #c9a84c;
  color: #000000;
  border-color: #c9a84c;
  font-weight: 700;
}

.mhb-status {
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}

.mhb-status.success {
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.4);
  color: #2ecc71;
}

.mhb-status.error {
  background: rgba(255,77,77,0.1);
  border: 1px solid rgba(255,77,77,0.3);
  color: #ff6b6b;
}

.mhb-submit {
  width: 100%;
  padding: 16px;
  background: #c9a84c;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 4px;
  font-family: inherit;
}

.mhb-submit:hover {
  background: #d4b55a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.mhb-submit:active {
  transform: scale(0.98);
  opacity: 0.88;
}

.mhb-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.mhb-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin: 4px 0 0;
}

.mhb-note a {
  color: #c9a84c;
  text-decoration: none;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   Google Places Autocomplete Dropdown
══════════════════════════════════════════ */
.pac-container {
  background: #111111 !important;
  border: 1px solid rgba(201,168,76,0.3) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.6) !important;
  font-family: inherit !important;
  margin-top: 5px !important;
  overflow: hidden;
}

.pac-item {
  padding: 10px 14px !important;
  color: rgba(255,255,255,0.72) !important;
  font-size: 14px !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
  cursor: pointer !important;
}

.pac-item:first-child {
  border-top: none !important;
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(201,168,76,0.1) !important;
  color: #fff !important;
}

.pac-item-query {
  color: #c9a84c !important;
  font-size: 14px !important;
  font-weight: 600;
}

.pac-matched {
  color: #c9a84c !important;
  font-weight: 700;
}

.pac-icon {
  display: none !important;
}

.pac-logo::after {
  display: none !important;
}