/* ============================
   Tooltip
============================= */
.tooltip {
  position: absolute;
  top: -40px;
  left: 10px;
  background-color: #222;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   CTA Button
============================= */
.cta-button {
  background: linear-gradient(90deg, #00c6ff, #007acc);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ============================
   Popup Feedback
============================= */
.popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f44336;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 1000;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.popup.hidden {
  display: none;
}

/* ============================
   Modal
============================= */
.modal,
.info-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.modal-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
