/* Gowrisankara — three-day short stay page.
   Loaded after landing.css; only used by short_stay.html. */

/* The homepage journey carries four steps; three days would otherwise sit in
   the first three of four columns and hang to the left. Three also stay
   readable in a row at widths where four would not, so the row holds until
   landing.css stacks it at 767px. */
@media (min-width: 768px) {
  .journey {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey::before {
    display: block;
    left: 16.66%;
    right: 16.66%;
  }
}

/* Two add-on cards read better as a pair than in the three-column therapy grid */
.therapies--pair {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- Enquiry form ---------- */

.enquire {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.enquire label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.enquire .form-control {
  height: auto;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  /* Fixed so date and number inputs match the plain text fields */
  line-height: 24px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

/* Date and number controls carry native widgets that would otherwise sit taller */
.enquire input.form-control {
  height: 50px;
}

.enquire .form-control:focus {
  border-color: var(--color-accent-warm);
  box-shadow: 0 0 0 3px rgba(176, 133, 74, 0.16);
  outline: none;
}

.enquire .form-group {
  margin-bottom: 22px;
}

.enquire .has-error .form-control {
  border-color: #b0563f;
}

.enquire .help-block {
  margin: 8px 0 0;
  font-size: 14px;
  color: #b0563f;
}

.enquire__choices {
  margin: 4px 0 26px;
  padding: 20px 24px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.enquire__choices-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.enquire__choice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 26px 0 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text);
  cursor: pointer;
}

.enquire__choice input {
  margin: 0;
}

.enquire__aside {
  margin: 22px 0 0;
  font-size: 15px;
  color: var(--color-text-muted);
}

#shortStaySuccess .alert {
  border-radius: var(--radius-sm);
}

@media (max-width: 767px) {
  .therapies--pair {
    grid-template-columns: 1fr;
  }

  .enquire__choice {
    display: flex;
    margin: 0 0 12px;
  }

  .enquire__choice:last-child {
    margin-bottom: 0;
  }

  .enquire button[type="submit"] {
    display: block;
    width: 100%;
    text-align: center;
  }
}
