/* ===========================================================
   CONTACT PAGE — page-specific styles (contact.php)
   Load AFTER style.css (uses its CSS variables: --surface,
   --surface-2, --gold, --line, --bone, --bone-dim, --font-body,
   --font-mono)
   =========================================================== */

/* "Contact Fame Pulse Media Today!" banner — icon above
   centered headline + paragraph. */
.promo-banner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 40px;
  margin-bottom: 30px;
}
.promo-banner--icon { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.promo-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.18), rgba(201,162,75,0.02));
  border: 1px solid rgba(201,162,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 22px; flex-shrink: 0;
}
.promo-copy h2 { color: var(--gold); font-size: clamp(20px, 2.6vw, 26px); margin-bottom: 10px; }
.promo-copy p { color: var(--bone-dim); line-height: 1.6; font-size: 14px; margin: 0 auto; }
@media (max-width: 780px) {
  .promo-banner { padding: 22px 24px; }
}

/* "Get in touch" heading — centered, full width (no max-width cap) */
.section-head--wide { max-width: none; text-align: center; margin-left: auto; margin-right: auto; }
.section-head--wide p { margin-left: auto; margin-right: auto; }
.contact-hero { margin-top: -40px; }

/* Ambient background for the lower half of the page */
.contact-hero { position: relative; overflow: hidden; }
.contact-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 0% 100%, rgba(122,31,43,0.10), transparent 60%);
  pointer-events: none;
}
.contact-hero .container { position: relative; z-index: 1; }

/* Two-column layout: phone/email/office card + message form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* Phone / Email / Office card */
.contact-card {
  position: relative;
  top: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 28px;
}
.contact-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-card--plain { background: transparent; border: none; padding: 0; }
.contact-detail { display: flex; gap: 16px; padding: 22px 0; margin-bottom: 0; border-bottom: 1px solid var(--line); }
.contact-detail.contact-detail--last { border-bottom: none; }
.contact-detail .ic {
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.18), rgba(201,162,75,0.02));
  border: 1px solid rgba(201,162,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0; font-size: 17px;
  transition: transform .2s ease, border-color .2s ease;
}
.contact-detail:hover .ic { transform: scale(1.06); border-color: var(--gold); }
.contact-detail label { display: block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bone-dim); margin-bottom: 4px; }
.contact-detail > div:last-child { font-size: 15.5px; font-weight: 500; line-height: 1.5; }

/* "Send a Message" card — single rule (previously split across two
   rules in the shared stylesheet, which is what caused the card to
   drift out of alignment earlier; kept merged here on purpose). */
.enquiry-card {
  position: relative;
  top: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}
.enquiry-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.enquiry-card h3 { font-size: 19px; margin-bottom: 6px; }
.enquiry-card p.hint { color: var(--bone-dim); font-size: 13.5px; margin-bottom: 20px; }
.enquiry-card-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.enquiry-card-top h3 { margin: 0; }
.response-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--bone-dim);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
}
.response-badge .status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4bc96e;
  box-shadow: 0 0 0 3px rgba(75,201,110,0.18);
  display: inline-block;
}