/* ============================================================
   Occupational Therapy Service Page — additions layered on top of
   aba-service-page.css (shared service-page component library).
   Wrapper carries BOTH .cst-aba-page (base styles + tokens) and
   .cst-ot-page (these OT-only extras).
   ============================================================ */

/* Hero — inline phone link + 4 trust rectangles under the CTAs (centered, over the video) */
.cst-ot-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 18px;
}
.cst-ot-page .hero .phone-inline {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cst-ot-page .hero .phone-inline:hover { color: var(--gold); }

.cst-ot-page .hero-trust-rects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.cst-ot-page .trust-rect {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 12px;
  padding: 11px 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.25;
}
.cst-ot-page .trust-rect .ck { color: var(--gold); font-weight: 800; }
@media (max-width: 700px) {
  .cst-ot-page .trust-rect { font-size: 13.5px; padding: 10px 13px; }
}

/* Restore standard top padding so the eyebrow/heading aren't jammed against the section above */
.cst-ot-page #what-is-ot { padding-top: var(--section-pad); }

/* Larger sign icons, no pale background/padding (illustrations carry their own artwork) */
.cst-ot-page .sym-card .icon-wrap {
  width: 90px;
  height: 90px;
  background: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--blue);
}

/* Sticky mobile bar (mobile breakpoint only) — Call + Book a Tour */
.cst-ot-page .ot-sticky-bar { display: none; }
@media (max-width: 900px) {
  .cst-ot-page .ot-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: var(--white);
    border-top: 1px solid var(--card-border);
    box-shadow: 0 -6px 16px rgba(22, 58, 76, 0.1);
  }
  .cst-ot-page .ot-sticky-bar a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    border-radius: var(--radius-btn);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    line-height: 1.15;
  }
  .cst-ot-page .ot-sticky-bar .sticky-call { background: var(--navy); color: #fff; }
  .cst-ot-page .ot-sticky-bar .sticky-call:hover { background: var(--navy-deep); color: #fff; }
  .cst-ot-page .ot-sticky-bar .sticky-book { background: var(--gold); color: var(--navy); }
  .cst-ot-page .ot-sticky-bar .sticky-book:hover { filter: brightness(0.95); }
  .cst-ot-page .ot-sticky-bar svg { width: 16px; height: 16px; flex-shrink: 0; }
  /* keep the fixed bar from covering the footer bottom on mobile */
  body:has(.cst-ot-page) { padding-bottom: 76px; }
}
.gform_wrapper select.gfield_select,
select.gfield_select.large {
  line-height: 1.4;
  height: auto;
  min-height: 38px;
}