/* ============================================================================
   CONTACT SECTION  ("LET'S TALK ABOUT YOUR CHILD")
   ----------------------------------------------------------------------------
   Its own file because this section now appears on EVERY page, but only the
   home + program pages load site.css — the rest carry their own inline CSS.
   One file linked everywhere = one source of truth. Moved verbatim out of
   site.css (was the CONTACT block) so the section is pixel-identical to the
   home page's.

   Depends on the page providing: --black, --orange, --radius, --font-d, --gray
   (every page defines these) plus .container and .eyebrow. It does NOT depend
   on .reveal — on pages without the reveal CSS/JS those classes are inert and
   the section simply shows immediately, which is what we want.
   ============================================================================ */


  /* --------------------------------------------------------------------------------------------------------------------------
     CONTACT
  -------------------------------------------------------------------------------------------------------------------------- */
  .contact {
    background: #f0eee8;
    border-radius: var(--radius, 40px) var(--radius, 40px) 0 0;
    margin-top: -40px;
    padding: 72px 0 80px;
    position: relative;
    z-index: 4;
    overflow: hidden;
  }
  .contact-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }
  .contact-action {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    background: #0e0e0e;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .contact-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  }
  .contact-action-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    flex-shrink: 0;
  }
  .contact-action-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
  .contact-action-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }
  .contact-action-value {
    font-size: 17px; font-weight: 700; color: #fff;
    overflow-wrap: anywhere;
    transition: text-shadow 0.25s;
  }
  .contact-action:hover .contact-action-value { text-shadow: 0 0 14px rgba(255,255,255,0.8); }
  .contact-action-arrow { color: rgba(255,255,255,0.4); font-size: 18px; transition: transform 0.25s, color 0.25s; }
  .contact-action:hover .contact-action-arrow { transform: translateX(4px); color: #fff; }
  .contact-actions-note {
    font-size: 12px;
    color: rgba(8,8,8,0.5);
    text-align: center;
    margin-top: 4px;
  }
  .contact-head { margin-bottom: 48px; }
  .contact .eyebrow::before { background: rgba(8,8,8,0.35); }
  .contact-col-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(8,8,8,0.45);
    margin-bottom: 16px;
  }
  .contact-locations {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .contact-actions-note { text-align: left; margin-top: 12px; }
  .contact-location {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: transparent;
    border: 1.5px solid rgba(8,8,8,0.8);
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .contact-location:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }
  .contact-location .contact-action-icon {
    background: #0e0e0e;
    color: #fff;
  }
  .contact-location .contact-action-label { color: rgba(8,8,8,0.45); }
  .contact-location-venue { font-size: 16px; font-weight: 700; color: var(--black, #080808); }
  .contact-location-cta {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(8,8,8,0.45);
    margin-top: 4px;
    transition: color 0.25s;
  }
  .contact-location:hover .contact-location-cta { color: var(--black, #080808); }
  /* the "Get Directions" arrow slides right on hover, like the Reach Us buttons */
  .contact-location-cta .cta-arrow { display: inline-block; transition: transform 0.25s; }
  .contact-location:hover .cta-arrow { transform: translateX(4px); }
  .contact-ghost {
    position: absolute;
    bottom: -24px; right: -20px;
    pointer-events: none; user-select: none;
  }
  .contact-ghost img {
    width: 360px;
    height: auto;
    filter: brightness(0);
    opacity: 0.04;
  }
  @media (max-width: 768px) {
    .contact-ghost img { width: 220px; }
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .contact-left .eyebrow { margin-bottom: 22px; }
  .contact-heading {
    font-family: var(--font-d, "Bebas Neue", "Arial Narrow", sans-serif);
    font-size: clamp(36px, 4vw, 60px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--black, #080808);
    margin-bottom: 28px;
  }
  .contact-info { display: flex; flex-direction: column; gap: 16px; }
  .contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #333;
  }
  .contact-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--black, #080808);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-icon svg { stroke: var(--orange, #FF6200); }
  .contact-row a { color: #333; transition: color 0.2s; }
  .contact-row a:hover { color: var(--black, #080808); }

  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .form-field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f2f2f0;
    border: 1.5px solid transparent;
    border-radius: 10px;
    font-family: var(--font-b, "Inter", system-ui, sans-serif);
    font-size: 14px;
    color: var(--black, #080808);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--orange, #FF6200);
    background: #fff;
  }
  .form-field textarea { resize: vertical; min-height: 100px; }

  @media (max-width: 800px) {
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .form-row { grid-template-columns: 1fr; }
  }
