/* Location + Map row */
.contact-info-section { padding: 0; }
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.ci-card {
  background: #f04404;
  color: #fff;
  padding: 48px 36px;
}
.ci-card.map-card {
  background: #eee;
  padding: 0;
  overflow: hidden;
}
.ci-card.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: none;
  display: block;
}
.ci-card h2 {
  font-family: 'Amatic SC', handwriting;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.ci-card p { font-size: 14px; line-height: 1.9; }

/* Contact Form */
.contact-form-section {
  padding: 80px 40px;
  background: #fff;
}
.contact-form-inner {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form-section h2 {
  font-family: 'Amatic SC', handwriting;
  font-size: 52px;
  font-weight: 700;
  color: #f04404;
  margin-bottom: 8px;
}
.contact-form-section > .contact-form-inner > p {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
}
.form-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
}
.form-row label {
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
  color: #888;
}
.form-row input,
.form-row textarea {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  padding: 8px 0;
  background: transparent;
  color: #000;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: #bbb; }
textarea.form-textarea {
  resize: vertical;
  min-height: 80px;
}
.form-row-textarea { flex-direction: column; align-items: flex-start; }
.form-row-textarea label { margin-bottom: 8px; }
.form-row-textarea textarea { width: 100%; }
.form-submit { margin-top: 32px; }
.form-submit button {
  background: #f04404;
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit button:hover { background: #000; }
.form-submit button:disabled { opacity: 0.6; cursor: not-allowed; }

.form-error-msg { color: #c00; font-size: 13px; margin-top: 8px; display: none; }
.form-success-msg { display: none; padding: 32px 0; text-align: center; }
.form-success-msg p:first-child { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.form-success-msg p:last-child { font-size: 14px; color: #666; }

@media (max-width: 900px) {
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .ci-card.map-card { grid-column: 1 / -1; min-height: 240px; }
}
@media (max-width: 600px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form-section { padding: 40px 20px; }
  .form-row { flex-direction: column; align-items: flex-start; }
}
