/* CIMJ — Contact page-specific styles */

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim {
  animation: fadeUp 0.65s ease both;
  animation-delay: var(--anim-delay, 0s);
}

.page-hero-inner { max-width: 680px; }
.contact-main { display: flex; flex-direction: column; }
.contact-intro { padding: 48px 80px 32px; }
.contact-info-title { font-family: var(--display); font-size: 36px; font-weight: 400; color: var(--green-dark); line-height: 1.2; margin-bottom: 8px; }
.contact-info-sub { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.cal-embed-wrap { width: 100%; }
.cal-embed-wrap > div { width: 100%; }
.contact-below { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 56px 80px; background: var(--surface); }
.response-box { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
.response-box-title { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--green-dark); margin-bottom: 12px; }
.response-items { display: flex; flex-direction: column; gap: 10px; }
.response-item { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--text-light); }
.response-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.service-area { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
.service-area-title { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--green-dark); margin-bottom: 16px; }
.cities { display: flex; flex-wrap: wrap; gap: 8px; }
.city-tag { background: rgba(44,110,73,0.1); color: var(--green); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500; }
.city-tag.featured { background: var(--green); color: #fff; }
.features-strip { background: var(--green); padding: 48px 80px; display: grid; grid-template-columns: repeat(3, 1fr); }
.feat { padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.15); }
.feat:first-child { padding-left: 0; }
.feat:last-child { border-right: none; }
.feat-num { font-family: var(--display); font-size: 40px; color: rgba(255,255,255,0.9); line-height: 1; margin-bottom: 6px; }
.feat-label { font-size: 13px; color: #fff; line-height: 1.5; }

/* ── RESPONSIVE — 1024 px ── */
@media (max-width: 1024px) {
  .contact-intro, .contact-below, .features-strip { padding-left: 40px; padding-right: 40px; }
}

/* ── RESPONSIVE — 900 px ── */
@media (max-width: 900px) {
  .contact-below { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── RESPONSIVE — 640 px ── */
@media (max-width: 640px) {
  .contact-intro { padding: 40px 24px 0; }
  .contact-below { padding: 40px 24px; }
  .features-strip { padding: 56px 24px; grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .feat { padding: 0 16px; }
  .feat:nth-child(odd) { padding-left: 0; }
  .feat-num { font-size: 28px; }
}

/* ── PRINT ── */
@media print {
  .features-strip { background: #fff !important; border-top: 2px solid #2C6E49; padding: 40px 32px; }
  .feat-num { color: #1E2D1F !important; }
  .feat-label { color: #555 !important; }
  .feat { border-right-color: #cdd9d2; }
  .city-tag.featured { background: rgba(44,110,73,0.1) !important; color: #2C6E49 !important; }
}
