/* ============================================================
   DALLAS WEB PRO — CONTACT.CSS
   Standalone Contact page only. Loads AFTER style.css.
   ============================================================ */

/* Response Time expectation note */
.contact-response-note {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-response-note::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--clr-orange);
  border-radius: 50%;
}

/* ---- MARKET INTENT INDICATOR ---- */
.intent-indicator[hidden] {
  display: none !important;
}

.intent-indicator {
  background-color: rgba(232, 98, 10, 0.07);
  border: 1px solid rgba(232, 98, 10, 0.45);
  border-left: 4px solid var(--clr-orange);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--clr-white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.intent-indicator-text span {
  color: var(--clr-orange);
}

.intent-indicator-clear {
  background: transparent;
  border: none;
  color: var(--clr-mid-gray);
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
  padding: 0;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 400;
}

.intent-indicator-clear:hover {
  color: var(--clr-white);
}

/* ---- CONTACT BAND: details + photo left, form right ---- */
.contact-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-band-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: stretch;
  }
}

.contact-band-left {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

/* Canonical NAP record — two-column detail grid */
.nap-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding-block: 2rem;
}

.nap-span {
  grid-column: 1 / -1;
}

@media (max-width: 560px) {
  .nap-details {
    grid-template-columns: 1fr;
  }
}

/* Service-area skyline — transparent image, no frame */
.contact-photo img {
  width: 100%;
  height: auto;
}

@media (min-width: 900px) {
  .contact-photo {
    margin-top: auto;
    /* The image canvas has an empty transparent band at its base (12.2% of height
       = 6.86% of width at 16:9). Pull it past the box edge so the visible skyline
       sits level with the bottom of the form. */
    margin-bottom: -6.86%;
  }
}

/* ---- WHAT HAPPENS NEXT ---- */
.next-phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 900px) {
  .next-phases {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.phase-card {
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phase-title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1.1;
}

.phase-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--clr-light-gray);
  line-height: 1.65;
}

.phase-desc a {
  color: var(--clr-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

