
/* =========================================================
   V68.10 — Ground Booking Portal visual layer only
   All existing form IDs, field names, scripts and backend remain untouched.
   ========================================================= */

.ground-portal-page {
  background: #f3f3f1;
  padding-top: 0 !important;
}

.ground-portal-intro {
  padding: 72px 0 46px;
  background:
    linear-gradient(135deg, rgba(0,0,0,.92), rgba(0,0,0,.65)),
    url("/assets/ground-premises-aerial.png") center 45% / cover no-repeat;
  color: #fff;
}

.ground-portal-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 60px;
}

.ground-portal-kicker {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.58);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ground-portal-intro h1 {
  margin: 0;
  color: #fff;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(58px, 7vw, 96px);
  line-height: .84;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.ground-portal-intro p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.65;
}

.ground-portal-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.14);
}

.ground-portal-steps span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  background: rgba(0,0,0,.28);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ground-portal-steps b {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  font-size: 10px;
}

.ground-portal-page > .wrap,
.ground-portal-page .formbox,
.ground-portal-page .ground-premises-card {
  position: relative;
}

.ground-portal-page .formbox {
  max-width: 1080px;
  margin: 54px auto 88px !important;
  padding: 34px !important;
  border: 1px solid #d7d7d4 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.06) !important;
}

.ground-portal-page .formbox::before {
  content: "CHECK AVAILABILITY & BOOK";
  display: block;
  margin-bottom: 22px;
  color: #8e743c;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ground-portal-page .formbox label {
  margin-top: 17px !important;
  color: #272727 !important;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ground-portal-page .formbox input,
.ground-portal-page .formbox select,
.ground-portal-page .formbox textarea {
  min-height: 50px !important;
  border: 1px solid #cdcdca !important;
  border-radius: 0 !important;
  background: #f8f8f6 !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.ground-portal-page .formbox input:focus,
.ground-portal-page .formbox select:focus,
.ground-portal-page .formbox textarea:focus {
  border-color: #111 !important;
  background: #fff !important;
  box-shadow: 0 0 0 2px rgba(0,0,0,.04);
  outline: none !important;
}

/* Existing calendar, visually upgraded only */
.ground-portal-page .booking-calendar {
  margin-top: 10px !important;
  padding: 22px !important;
  border: 1px solid #d6d6d2 !important;
  border-radius: 0 !important;
  background: #f7f7f4 !important;
}

.ground-portal-page .calendar-head {
  margin-bottom: 16px !important;
}

.ground-portal-page .calendar-head strong {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 20px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.ground-portal-page .calendar-nav {
  width: 40px !important;
  height: 40px !important;
  border: 1px solid #cfcfcb !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #111 !important;
  transition: background .2s ease, color .2s ease;
}

.ground-portal-page .calendar-nav:hover {
  background: #111 !important;
  color: #fff !important;
}

.ground-portal-page .calendar-weekdays {
  color: #777 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ground-portal-page .calendar-day {
  border-radius: 0 !important;
  font-weight: 700 !important;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.ground-portal-page .calendar-day.is-available:hover {
  transform: translateY(-2px);
}

.ground-portal-page .calendar-day.selected {
  background: #111 !important;
  color: #fff !important;
  box-shadow: inset 0 0 0 2px #b79a5b !important;
}

.ground-portal-page .selected-date-text {
  margin-top: 14px !important;
  padding: 13px 15px !important;
  background: #111 !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-size: 13px !important;
}

.ground-portal-page .calendar-legend {
  margin-top: 15px !important;
  padding-top: 14px !important;
  border-top: 1px solid #ddd !important;
  color: #666 !important;
  font-size: 10px !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Existing totals become a proper booking summary */
.ground-portal-page .total-box {
  margin-top: 22px !important;
  border: 1px solid #d7d7d4 !important;
  border-radius: 0 !important;
  overflow: hidden;
  background: #fff;
}

.ground-portal-page .total-box > div {
  padding: 14px 16px !important;
  border-bottom: 1px solid #e5e5e1 !important;
}

.ground-portal-page .total-box > div:last-child {
  border-bottom: 0 !important;
}

.ground-portal-page .total-box .grand {
  background: #111 !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

.ground-portal-page .notice {
  margin-top: 22px !important;
  padding: 18px 20px !important;
  border: 0 !important;
  border-left: 4px solid #b79a5b !important;
  border-radius: 0 !important;
  background: #111 !important;
  color: #fff !important;
}

.ground-portal-page .button {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 0 !important;
  background: #0a0a0a !important;
  color: #fff !important;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.ground-portal-page .button:hover {
  background: #242424 !important;
  transform: translateY(-1px);
}

/* If the premises card exists, make it feel like part of the same portal */
.ground-portal-page .ground-premises-card {
  max-width: 1080px;
  margin: 54px auto 0 !important;
  border: 1px solid #d7d7d4 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

.ground-portal-page .ground-premises-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

@media (max-width: 800px) {
  .ground-portal-intro {
    padding: 58px 0 38px;
  }

  .ground-portal-intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ground-portal-steps {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .ground-portal-steps span {
    min-height: 72px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 10px;
    text-align: center;
    font-size: 10px;
  }

  .ground-portal-page .formbox {
    margin: 34px 14px 64px !important;
    padding: 22px 16px !important;
  }

  .ground-portal-page .booking-calendar {
    padding: 14px 10px !important;
  }
}

@media (max-width: 500px) {
  .ground-portal-intro h1 {
    font-size: 52px;
  }

  .ground-portal-steps {
    grid-template-columns: 1fr;
  }

  .ground-portal-steps span {
    min-height: 48px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
}
