/* Layout: center card and keep everything within viewport (no scroll). */
.gapark-wrap{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}

/* Context variants (optional). Keep minimal; default is centered. */
.gapark-wrap.gapark-context-hero{
  justify-content: flex-end;
}

.gapark-card{
  background: #cf1836;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  width: min(560px, calc(100vw - 24px));
  max-width: 560px;
}

.gapark-header{
  padding: 18px 16px 8px;
  text-align: center;
  flex: 0 0 auto;
}

.gapark-title{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gapark-steps{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gapark-step{
  display: flex;
  align-items: center;
  justify-content: center;
}
.gapark-step-circle{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.95);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  background: transparent;
}
.gapark-step.is-active .gapark-step-circle{
  background: rgba(255,255,255,.08);
}
.gapark-step.is-done .gapark-step-circle{
  background: rgba(255,255,255,.15);
}

.gapark-step-line{
  width: 72px;
  height: 2px;
  background: rgba(255,255,255,.95);
  border-radius: 4px;
}

.gapark-body{
  padding: 8px 16px 14px;
  flex: 1 1 auto;
  overflow: hidden;
}

.gapark-panel-title{ display: none; }
.gapark-mt{ margin-top: 28px; }
.gapark-mt-sm{ margin-top: 10px; }

.gapark-form{ }

.gapark-field{ margin-bottom: 10px; }

.gapark-label{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 6px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 13px;
}
.gapark-icon{ display:none; }

.gapark-input{
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,.92);
  background: #0a0a0a;
  color: #fff;
  border-radius: 2px;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  height: 50px;
  font-weight: 800;
}
.gapark-input:focus{
  border-color: rgba(255,255,255,.92);
  box-shadow: none;
}
.gapark-input::placeholder{
  color: rgba(255,255,255,.85);
  font-weight: 800;
}

.gapark-textarea{
  min-height: 50px;
  resize: vertical;
}

/* Step 1: booking rows as 2-column grid */
.gapark-booking-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-bottom: 8px;
}
.gapark-booking-grid .gapark-field{
  margin-bottom: 0;
}

.gapark-grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}

.gapark-readonly{
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  font-weight: 800;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  border-radius: 0;
  font-size: 18px;
}

.gapark-actions{
  margin-top: 8px;
  display: flex;
  justify-content: flex-start;
}

.gapark-actions-split{
  justify-content: space-between;
  gap: 14px;
}

.gapark-btn{
  border-radius: 4px;
  border: 0;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  min-width: 150px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  box-shadow: none;
}

.gapark-btn-wide{
  width: 100%;
  min-width: 0;
}

.gapark-btn-primary{
  background: #e9e9e9;
  color: #cf1836;
}

.gapark-btn-secondary{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.95);
}

.gapark-step-panel{ display: none; }
.gapark-step-panel.is-active{ display: block; }

.gapark-payment{
  border: 1px solid rgba(255,255,255,.92);
  background: #0a0a0a;
  color: #fff;
  padding: 14px 14px;
  min-height: 55px;
  display: flex;
  align-items: center;
  border-radius: 2px;
}
.gapark-payment-option{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-weight: 800;
  width: 100%;
  font-size: 16px;
}
.gapark-payment input{ accent-color: #fff; }

.gapark-alert{
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(0,0,0,.65);
  border: 1px solid rgba(255,255,255,.95);
  color: #fff;
  font-weight: 700;
}

@media (max-width: 720px){
  .gapark-wrap{ padding: 10px; }
  .gapark-card{ width: min(560px, calc(100vw - 20px)); }
  .gapark-title{ font-size: 26px; }
  .gapark-step-line{ width: 64px; }
  .gapark-label{ font-size: 13px; }
  .gapark-input{ font-size: 14px; height: 48px; padding: 11px 11px; }
  .gapark-readonly{ font-size: 17px; }
  .gapark-actions-split{ flex-direction: row; }
  .gapark-actions-split .gapark-btn{ width: 50%; min-width: 0; }
}

@media (max-width: 420px){
  .gapark-header{ padding: 18px 14px 8px; }
  .gapark-body{ padding: 8px 14px 14px; }
  .gapark-step-line{ width: 62px; }
  /* Only stack on very small screens */
  .gapark-booking-grid{ grid-template-columns: 1fr; }
  .gapark-grid-2{ gap: 10px; }
  .gapark-field{ margin-bottom: 9px; }
  .gapark-readonly{ font-size: 17px; }
}

