/* ==========================================================================
   contact.css — page-specific overrides for contact/index.html
   Loaded AFTER styles.css. Only overrides what the global sheet cannot
   do cleanly without affecting other pages.
   ========================================================================== */

/* ---- Contact hero (compact, light surface) ---- */
.contact-hero { padding-bottom: 40px; }

.contact-lede {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 36px;
}

/* Quick-info bar below hero lede */
.contact-quick-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .contact-quick-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .contact-quick-bar { grid-template-columns: repeat(4, 1fr); }
}

.cqb-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  color: inherit;
  transition: box-shadow 0.18s var(--ease-hover), border-color 0.18s var(--ease-hover),
              transform 0.18s var(--ease-hover);
}
.cqb-item:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-3px);
}

.cqb-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--secondary);
  color: var(--primary-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cqb-icon svg { width: 20px; height: 20px; }

.cqb-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.cqb-val {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ---- Process steps on a LIGHT background ----
   The baseline .process-step h3/p hard-code white — override here so
   the steps render legibly on the --bg section on this page.           */
.contact-process-wrap .process-step h3 { color: var(--text); }
.contact-process-wrap .process-step p  { color: var(--text-secondary); }

/* ---- Standalone quote form ---- */
.contact-form-standalone {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 639px) {
  .contact-form-standalone { padding: 28px 20px; }
}

.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.contact-form-footer .form-note {
  margin: 0;
}

/* ---- CTA band centered (contact "Reach us directly") ---- */
.contact-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 16px 0;
}
.contact-cta-inner .cfg-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 460px;
  margin: 0 auto 32px;
}
.contact-cta-inner .ci {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}
