/* ── RESPONSIVE ── */

/* Contact page specific styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (max-width: 768px) {
.contact-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-card {
  background: #fff;
  border: 1px solid #e8f0ef;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  background: #f0f7f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.contact-card-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #1a3a3a;
}
.contact-card-body p {
  margin: 0;
  font-size: 14px;
  color: #5a7070;
  line-height: 1.6;
}
.contact-card-body a {
  color: #3a7a6e;
  text-decoration: none;
  font-weight: 500;
}
.contact-card-body a:hover { text-decoration: underline; }
.address-lines {
  font-style: normal;
  font-size: 14px;
  color: #5a7070;
  line-height: 1.8;
}
.contact-form-block {
  background: #fff;
  border: 1px solid #e8f0ef;
  border-radius: 16px;
  padding: 36px;
}
.contact-form-block h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #1a3a3a;
}
.contact-form-block p.subtext {
  margin: 0 0 28px;
  color: #5a7070;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d0e0de;
  border-radius: 8px;
  font-size: 14px;
  color: #1a3a3a;
  background: #fafcfc;
  box-sizing: border-box;
  transition: border-color .2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3a7a6e;
  background: #fff;
}

.btn-submit {
  width: 100%;
  padding: 13px;
  background: #2e7062;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.btn-submit:hover { background: #245a52; }
.contact-page-hero {
  background: linear-gradient(135deg, #f0f7f6 0%, #e8f3f1 100%);
  padding: 64px 24px 40px;
  text-align: center;
}
.contact-page-hero h1 {
  font-size: 36px;
  font-weight: 800;
  color: #1a3a3a;
  margin: 0 0 12px;
}
.contact-page-hero p {
  font-size: 17px;
  color: #5a7070;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.map-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid #e8f0ef;
}
@media(max-width:600px){
section[style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr!important}
}
.map-embed{border-radius:12px;overflow:hidden}

/* ── Scroll-triggered animations ── */

/* ── Newsletter modal ── */
