/* ============================================================
   ACTION BUTTONS WRAPPER (.site-header__actions)
   (Flex container for header CTA buttons)
============================================================ */
/* ACTION BUTTONS WRAPPER (.site-header__actions) (Flex container for header CTA buttons) */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ============================================================
   CTA BUTTON (.header-cta)
   (Base style for all header call-to-action buttons)
============================================================ */
/* CTA BUTTON (.header-cta) (Base style for all header call-to-action buttons) */
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
  color: #e0e8f0;
  background: rgba(10, 16, 30, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.9);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

/* CTA button hover effect */
.header-cta:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 1);
  background: rgba(160, 0, 20, 0.85);
  transform: translateY(-3px);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.25),
    0 12px 30px rgba(0, 0, 0, 0.4);
}

/* CTA button active press effect */
.header-cta:active {
  transform: translateY(-1px);
}

/* ============================================================
   PRIMARY CTA BUTTON (.header-cta--primary)
   (Highlighted main CTA button in the header)
============================================================ */
/* PRIMARY CTA BUTTON (.header-cta--primary) (Highlighted main CTA button in the header) */
.header-cta--primary {
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, rgb(200, 0, 30) 0%, rgb(0, 0, 0) 100%);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px rgba(200, 0, 30, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition:
    color 200ms ease,
    transform 250ms cubic-bezier(0.34, 1.56, 0.64, 1),
    text-shadow 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

/* Shine sweep layer */
.header-cta--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 400ms ease;
  pointer-events: none;
}

/* Sweep through on hover, sweep back on mouse-off */
.header-cta--primary:hover::before {
  transform: translateX(100%);
}

/* Primary CTA hover effect */
.header-cta--primary:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 1px 2px rgba(0, 0, 0, 0.3);
  transform: translateX(-3px);
  background: linear-gradient(135deg, rgb(0, 110, 141) 0%, rgb(0, 0, 0) 100%);
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.25),
    0 0 50px rgba(0, 212, 255, 0.2),
    0 16px 40px rgba(0, 0, 0, 0.55);
}