/* ================================================================
   LOCALMOVER — contact-form.css
   Minimal Contact Form 7 styling — matches brand tokens
   ================================================================ */

/* ── WRAPPER ──────────────────────────────────────────────────── */
.lm-cf7-wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

/* ── ROWS & COLUMNS ───────────────────────────────────────────── */
.lm-cf7-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lm-cf7-two-col .lm-cf7-field {
  flex: 1;
}

.lm-cf7-row:not(.lm-cf7-two-col) .lm-cf7-field {
  flex: 1;
}

/* ── FIELD SPANS (CF7 wraps inputs in <span>) ─────────────────── */
.lm-cf7-field span {
  display: block;
  width: 100%;
}

/* ── ALL INPUTS, SELECTS, TEXTAREA ───────────────────────────── */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  display: block;
  background: #ffffff;
  border: 1.5px solid var(--color-border, #E2D9C5);
  border-radius: var(--radius-sm, 4px);
  color: var(--color-text, #1A1A2E);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

/* ── PLACEHOLDER ──────────────────────────────────────────────── */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: var(--color-muted, #6B7280);
  opacity: 1;
}

/* ── FOCUS STATES ─────────────────────────────────────────────── */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--color-gold, #C9A84C);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* ── SELECT ARROW ─────────────────────────────────────────────── */
.wpcf7-form 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 d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ── TEXTAREA ─────────────────────────────────────────────────── */
.wpcf7-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── SUBMIT BUTTON ────────────────────────────────────────────── */
.lm-cf7-submit {
  margin-top: 0.5rem;
}

.wpcf7-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-gold, #C9A84C);
  color: var(--color-navy, #0A1F44);
  border: none;
  border-radius: var(--radius-sm, 4px);
  padding: 0.875rem 2rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: var(--color-navy, #0A1F44);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.2);
}

.wpcf7-form input[type="submit"]:active {
  transform: translateY(0);
}

/* ── VALIDATION MESSAGES ──────────────────────────────────────── */
.wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: #c0392b;
}

.wpcf7-form .wpcf7-not-valid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important;
}

/* ── RESPONSE OUTPUT (success / error message) ────────────────── */
.wpcf7-response-output {
  margin-top: 1.25rem !important;
  padding: 0.75rem 1rem !important;
  border-radius: var(--radius-sm, 4px) !important;
  font-size: 0.9rem !important;
  border: none !important;
}

.wpcf7-mail-sent-ok {
  background-color: #f0faf4 !important;
  color: #1a6635 !important;
  border-left: 3px solid #2e9954 !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked,
.wpcf7-aborted {
  background-color: #fdf2f2 !important;
  color: #922b21 !important;
  border-left: 3px solid #c0392b !important;
}

/* ── SPINNER ──────────────────────────────────────────────────── */
.wpcf7-spinner {
  display: none !important;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 600px) {
  .lm-cf7-row,
  .lm-cf7-two-col {
    flex-direction: column;
    gap: 0.75rem;
  }

  .wpcf7-form input[type="submit"] {
    width: 100%;
    justify-content: center;
  }
}



/* ================================================================
   LOCALMOVER — booking-bar.css
   Horizontal booking / quote bar — CF7 styled
   ================================================================ */

/* ── OUTER SHELL ─────────────────────────────────────────────── */
.lm-booking-bar {
  display: grid;
  grid-template-columns: 0.6fr 0.6fr 0.6fr 0.6fr 0.6fr auto;
  gap: 10px;
  align-items: end;
  background: var(--color-navy, #0A1F44);
  border-radius: 12px;
  padding: 0px 24px 24px;
}

/* ── FIELD WRAPPER ───────────────────────────────────────────── */
.lm-bk-field {
  display: flex;
  flex-direction: column;
}

/* ── LABELS ──────────────────────────────────────────────────── */
.lm-bk-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

/* ── CF7 SPAN WRAPPER ────────────────────────────────────────── */
.lm-booking-bar .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ── INPUTS & SELECT ─────────────────────────────────────────── */
.lm-booking-bar input[type="email"],
.lm-booking-bar input[type="text"],
.lm-booking-bar input[type="date"],
.lm-booking-bar select {
  width: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.lm-booking-bar input[type="email"]::placeholder,
.lm-booking-bar input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.lm-booking-bar input[type="email"]:focus
.lm-booking-bar input[type="text"]:focus,
.lm-booking-bar input[type="date"]:focus,
.lm-booking-bar select:focus {
  border-color: var(--color-gold, #C9A84C);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

/* ── SELECT ARROW ────────────────────────────────────────────── */
.lm-booking-bar 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 d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
  color: rgb(0 0 0 / 60%) !important;
}

/* ── DATE PICKER ICON ────────────────────────────────────────── */
.lm-booking-bar input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

/* ── SUBMIT BUTTON WRAPPER ───────────────────────────────────── */
.lm-bk-submit {
  display: flex;
  align-items: flex-end;
}

/* ── SUBMIT BUTTON ───────────────────────────────────────────── */
.lm-booking-bar input[type="submit"] {
  background: var(--color-gold, #C9A84C);
  color: var(--color-navy, #0A1F44);
  border: none;
  border-radius: 6px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.lm-booking-bar input[type="submit"]:hover {
  background: #b8942e;
  transform: translateY(-1px);
}

.lm-booking-bar input[type="submit"]:active {
  transform: translateY(0);
}

/* ── VALIDATION ──────────────────────────────────────────────── */
.lm-booking-bar .wpcf7-not-valid {
  border-color: #e74c3c !important;
}

.lm-booking-bar .wpcf7-not-valid-tip {
  font-size: 11px;
  color: #ff8a80;
  margin-top: 4px;
  display: block;
}

/* ── RESPONSE OUTPUT ─────────────────────────────────────────── */
.lm-booking-bar + .wpcf7-response-output {
  margin-top: 12px !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  border: none !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

/* ── RESPONSIVE — stack on mobile ───────────────────────────── */
@media (max-width: 768px) {
  .lm-booking-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 16px;
  }

  .lm-bk-submit {
    width: 100%;
  }

  .lm-booking-bar input[type="submit"] {
    width: 100%;
    text-align: center;
    padding: 13px;
  }
}