/* Base Styles */
html {
  font-size: 16px;
  overflow-x: hidden;
}

body, html {
  font-family: "Lato", "Montserrat", sans-serif;
  height: 100%;
  letter-spacing: 0.05em;
}

h1, h2, h3 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
}

p, label, .ar-floating-label,
.ar-input-set input,
.ar-input-set select,
.ar-input-set textarea {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
}

/* Container */
.inquiry__container {
  width: 100%;
  max-width: 1450px;
  margin: 17em auto 2em auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Allow content height to grow naturally */
  min-height: 100vh;
  box-sizing: border-box;
}

#sidebar-tour-name {
  padding: 0em 0 1em 0;
}

/* Make sure form doesn't overflow on smaller devices */
@media (max-width: 768px) {
  .inquiry__container {
    padding: 1rem;
    margin-top: 6em;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }
}
/* Flex Layout */
.inquiry__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

/* Form Section */
.form-section {
  flex: 2;
  min-width: 300px;
}

/* Sidebar Section */
.sidebar-section {
  flex: 1;
  min-width: 300px;
}

/* Booking Sidebar Styling */
#booking-details-sidebar {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

#booking-details-sidebar img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 4px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

#sidebar-highlights-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

#sidebar-highlights-list li {
  font-size: 0.9em;
  font-weight: 400;
}

/* Input Styles */
.ar-input-set {
  position: relative;
  margin-bottom: 20px;
}

.ar-input-set input,
.ar-input-set select,
.ar-input-set textarea {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #8a8c8f;
  font-size: 0.875rem;
  outline: none;
  transition: border 0.3s;
}

.ar-input-set input:focus,
.ar-input-set select:focus,
.ar-input-set textarea:focus {
  border-color: #e5e7eb;
}

.ar-input-set input::-moz-placeholder, .ar-input-set textarea::-moz-placeholder {
  color: #aaa;
  font-style: italic;
}

.ar-input-set input::placeholder,
.ar-input-set textarea::placeholder {
  color: #aaa;
  font-style: italic;
}

/* Floating Labels */
.ar-floating-label {
  position: absolute;
  left: 12px;
  top: -10px;
  background: white;
  padding: 0 5px;
  color: #555;
  font-family: monospace;
  font-size: clamp(0.7rem, 1vw + 0.3rem, 1rem);
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Submit Button */
.book_btn {
  color: #444;
  background: #ffce00;
  border-radius: 5px;
  padding: 0.5em 1em;
  font-size: 1.1em;
  outline: 0;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.1em;
}

.book_btn:hover {
  background-color: #e69500;
}

/* Responsive: Sidebar on top */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}/*# sourceMappingURL=inquiry.css.map */