/* --- Updated Floating CTA Styles --- */
.floating-cta {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  max-width: 64px;
  max-height: 64px;
  border-radius: 50%;
  background: var(--hr-primary, #091235);
  color: var(--hr-on-primary, #fff);
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  box-shadow: 0 4px 24px rgba(34,64,142,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 1.12rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, color 0.3s;
  cursor: pointer;
  overflow: visible;
}
.floating-cta:hover {
  background: var(--hr-primary-hover, #14204a);
  color: var(--hr-on-primary, #fff);
  box-shadow: 0 8px 32px rgba(34,64,142,0.18);
}
.floating-cta-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 0;
}
.floating-cta-form {
  margin-top: 10px;
  background: var(--hr-bg, #fff);
  color: var(--hr-primary, #091235);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(34,64,142,0.14);
  padding: 20px;
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  min-width: 260px;
}
.floating-cta-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--hr-primary, #091235);
}
.floating-cta-form input,
.floating-cta-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #091235;
}
.floating-cta-form button {
  background: #091235;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
}
.floating-cta-form button:hover {
  background: #14204a;
  color: #fff;
}
@media (max-width: 600px) {
  .floating-cta {
    bottom: 16px;
    right: 8px;
    height: 48px;
    font-size: 1rem;
    padding: 0 16px 0 12px;
    border-radius: 32px;
  }
  .floating-cta-icon {
    width: 22px;
    height: 22px;
    margin-right: 6px;
  }
}
