/* =========================
   CONTACT PAGE — scoped styles only
   No header, nav, footer, or body rules.
   ========================= */

/* ── PAGE WRAPPER ── */
main {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

/* ── CONTACT INFO SECTION ── */
#contact-section {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15,23,42,0.08);
  padding: 2rem 2.25rem;
  margin-bottom: 2rem;
}

#contact-section p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

/* Section heading */
.header_2 {
  font-weight: 200;
  letter-spacing: 2px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2e5f84;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

/* Contact method labels */
.contact-strong {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 0.2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Contact links — phone and email */
.contact-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #2e5f84;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin-bottom: 0.85rem;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.contact-link:hover {
  background: rgba(46,95,132,0.05);
  border-color: #2e5f84;
  color: #c48416;
  text-decoration: none;
}

/* Address block */
#contact-section > h2.contact-strong {
  margin-top: 0.5rem;
  padding: 0 1.1rem 0.2rem;
}

#contact-section > p:last-of-type {
  padding: 0 1.1rem;
  margin-bottom: 0;
  font-size: 0.97rem;
  color: #384047;
}

/* Map links */
.map-link {
  color: #2e5f84;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(46,95,132,.35);
  padding-bottom: 0.05em;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.map-link:hover {
  color: #c48416;
  border-bottom-color: #c48416;
}

/* ── HOURS SECTION ── */
.hours-section {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15,23,42,0.08);
  padding: 2rem 2.25rem;
}

.hours-section .header_2 {
  margin-bottom: 0.5rem;
}

.hours-info {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.hours-row:nth-child(odd) {
  background: #f8fafc;
}

.hours-row:nth-child(even) {
  background: #ffffff;
}

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

.day {
  font-weight: 600;
  color: #1b2d3e;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.time {
  color: #64748b;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  main {
    padding: 2rem 1rem 3rem;
  }

  #contact-section,
  .hours-section {
    padding: 1.5rem 1.25rem;
  }

  .contact-link {
    font-size: 1rem;
  }
}