/* Info icon styling */
.info-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--bqe-mariner-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.info-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
  background: #0868ac;
}

.info-icon::before {
  content: "i";
  color: white;
  font-size: 24px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  font-style: italic;
}

/* Popup overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  display: flex;
  opacity: 1;
}

/* Popup content container */
.popup-content-container {
  background: var(--grey-25);
  padding: 25px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-overlay.active .popup-content-container {
  transform: scale(1);
}

/* Popup content */
.popup-content {
  padding: 0px 10px;
  overflow-y: auto;
  max-height: calc(80vh - 60px);
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  transition: scrollbar-color 0.3s ease;
}

.popup-content:hover {
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

/* Webkit scrollbar styling */
.popup-content::-webkit-scrollbar {
  width: 8px;
}

.popup-content::-webkit-scrollbar-track {
  background: transparent;
}

.popup-content::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.popup-content:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
}

.popup-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--grey-400);
  transition: color 0.2s ease;
  background: none;
  border: none;
  padding: 5px;
}

.close-btn:hover {
  color: var(--grey-600);
}

/* Popup text styling */
.popup-content-container h2 {
  margin: 8px 10px 8px;
  color: #0868ac;
  border-bottom: 2px solid #e6f2ff;
  padding-bottom: 8px;
}

/* Popup text styling */
.popup-content h2 {
  margin-top: 0;
  color: #0868ac;
  border-bottom: 2px solid #e6f2ff;
  padding-bottom: 10px;
}

.popup-content h3 {
  color: #0868ac;
  margin-top: 25px;
}

.popup-content p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

.popup-content li {
  margin-bottom: 4px;
}

.popup-content ul {
  list-style-type: disc;
  padding-left: 24px;

  line-height: 1.25;
  margin-bottom: 12px;
  color: #555;
}

.popup-content a {
  color: #555;
  font-weight: 350;
}

.highlight {
  background: linear-gradient(120deg, #a8e6cf 0%, #dcedc1 100%);
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 4px solid #2b8cbe;
}

button.schedule-demo {
  font-size: 1rem;
  font-weight: 600;

  background: var(--bqe-marigold);
  border: none;
  border-radius: 20px;
  padding: 0.65rem 2rem;
  box-shadow: 0 4px 10px rgba(255, 165, 0, 0.1);

  transition: background 0.3s ease, box-shadow 0.3s ease;
}

button.schedule-demo:hover {
  background: var(--bqe-marigold-light);
}

.schedule-demo a {
  color: var(--bqe-navy-blue);
  text-decoration: none;
}
