/* ============================================================
   SIDE MENU — FLYOUT CONTENT ELEMENTS
   Shared content styles: section titles, note text, level cards.
   Also covers the Services Menu header close arrow and the backdrop.
============================================================ */

/* ---------- SECTION TITLE ---------- */
.flyout__section-title {
  margin: 28px 0 12px 0;
  font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(0, 200, 255);
  border-bottom: 2px solid rgb(0, 200, 255);
  padding-bottom: 8px;
  padding-left: 10px;
  border-left: 3px solid rgb(0, 110, 141);
  text-shadow: 0 0 14px rgba(0, 110, 141, 0.55);
}

/* ---------- DISCLAIMER / NOTE TEXT ---------- */
.flyout__note {
  margin: 0 0 16px 0;
  font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.886);
}

/* ---------- PRICING LEVEL CARDS ---------- */
.flyout__level {
  margin: 0 0 12px 0;
  padding: 14px 16px;
  border-left: 4px solid rgb(200, 0, 30);
  background: rgba(255, 0, 38, 0.08);
  border-radius: 0 6px 6px 0;
  box-shadow: inset 0 0 20px rgba(200, 0, 30, 0.04), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.flyout__level-title {
  margin: 0 0 6px 0;
  font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
}

.flyout__level-text {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- SERVICES MENU HEADER CLOSE ARROW ---------- */
.side-menu__header-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  user-select: none;
}

.side-menu__close-arrow {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
  pointer-events: auto;
}

.side-menu__close-arrow:hover {
  color: rgb(200, 0, 30);
  transform: translateX(-4px);
}

/* ---------- BACKDROP ---------- */
/* Plain rgba overlay — no backdrop-filter (avoids stacking context bugs).
   z-index 100000: above page content, below flyout (100001) and side menu (2147483647). */
.side-menu-flyout-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
  z-index: 100000;
}

.side-menu-flyout-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
