/* ── Right: contact form ── */
.contact-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-form-wrap h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
}

/* 3-column grid matching booking form layout */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cf-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.cf-span-2 { grid-column: span 2; }
.cf-span-3 { grid-column: span 3; }

.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid #dde3ec;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: #f8fafc;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(33,150,243,0.1);
  background: #fff;
}

.cf-field select {
  appearance: none;
  -webkit-appearance: none;
  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='%23999' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #f8fafc;
  padding-right: 40px;
  cursor: pointer;
}

.cf-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* Footer row: button + note */
.cf-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.cf-note {
  font-size: 13px;
  color: var(--gray-mid);
}

/* Remove old unused rules */
.contact-form-row { display: none; }
