/* ===========================
   CONTACT PAGE
   =========================== */

.page-hero--contact {
  /* optional: different contact hero background */
  background: url("/storage/app/media/knife-cutting-board-sharpening.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
}

.page-hero--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.50) 50%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 0;
}

.page-hero--contact .container {
  position: relative;
  z-index: 1;
}

/* --- Contact layout grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
  align-items: start;
}

/* left form card */
.contact-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.contact-card .section-subtitle {
  margin-bottom: 18px;
}

/* right info column */
.contact-info {
  display: grid;
  gap: 16px;
}

.info-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

/* info lines */
.info-line {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-line:last-child {
  border-bottom: none;
}

.info-line strong {
  color: #111;
  font-weight: 700;
}

.info-line a {
  color: #111;
  text-decoration: none;
}

.info-line a:hover {
  text-decoration: underline;
}

/* hours block */
.hours {
  display: grid;
  gap: 8px;
}

.hours > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.12);
}

.hours > div:last-child {
  border-bottom: none;
}

.hours span:first-child {
  font-weight: 700;
  color: #111;
}

.hours span:last-child {
  color: #555;
}

/* --- Form styles --- */
.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 6px;
  color: #111;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #fff;
  font-size: 16px;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(214,178,94,0.9);
  box-shadow: 0 0 0 4px rgba(214,178,94,0.18);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field {
  margin-bottom: 14px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
}

.form-note {
  margin-top: 14px;
  color: #666;
  font-size: 14px;
  line-height: 1.45;
}

/* tighten spacing between contact and map */
.section--map {
  padding-top: 10px;   /* instead of 70 */
}


/* --- Map embed --- */
.map-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* --- Mobile responsive --- */
@media (max-width: 950px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .map-embed iframe {
    height: 320px;
  }
}
