/* 
	RedZ Custom
*/

#contact-box {
  position: fixed;
  bottom: 98px;
  left: 32px;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  pointer-events: auto;
  display: none;
  z-index: 1;
}

#contact-box:hover .icons {
  background: rgba(128, 128, 128, 0.75);
}

#contact-box .icons {
  background: rgba(128, 128, 128, 0.55);
  margin: 0;
}

.hidden {display: none!important;}
.margin.full {margin: 1em;}
.margin.top {margin-top: 1em;}
.margin.right {margin-right: 1em;}
.margin.left {margin-left: 1em;}
.margin.bottom {margin-bottom: 1em;}
.spacer.full {padding: 1em;}
.spacer.top {padding-top: 1em;}
.spacer.right {padding-right: 1em;}
.spacer.left {padding-left: 1em;}
.spacer.bottom {padding-bottom: 1em;}
.big-button {font-size: 2em;}
.glass-button.emerald {
  background-color: rgba(0, 128, 91, 0.05);
}
.glass-button.saphire {
  background-color: rgba(30, 58, 138, 0.05);
}
.glass-button.ruby {
  background-color: rgba(155, 17, 30, 0.05);
}
.glass-button.emerald:hover {
  background-color: rgba(0, 128, 91, 0.35);
  color: rgba(251, 251, 251, 0.95);
}
.glass-button.saphire:hover {
  background-color: rgba(30, 58, 138, 0.35);
  color: rgba(251, 251, 251, 0.95);
}
.glass-button.ruby:hover {
  background-color: rgba(155, 17, 30, 0.35);
  color: rgba(251, 251, 251, 0.95);
}
.glass-button {
  background-color: rgba(251, 251, 251, 0.05);
  color: rgba(251, 251, 251, 0.75);
  border-radius: 8px;
  border-width: 0;
  cursor: pointer;
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  text-align: center;
  transition: all 200ms;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

/* Professional Information Styling */
.professional-info {
  margin-top: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.professional-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.professional-credential {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.professional-specialty {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.4;
}

.professional-bio {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid rgba(0, 128, 91, 0.6);
}

.professional-bio h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.professional-bio p {
  line-height: 1.6;
}

.professionals-spotlight strong {
  color: rgba(255, 255, 255, 0.85);
}

.professionals-spotlight {
  margin: 1.5rem 0;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.professionals-spotlight h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.professionals-spotlight p {
  color: #ffffff;
  line-height: 1.5;
}

.professionals-spotlight small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}