/* === OUTER RESPONSIVE CONTAINER === */
.info-circle-responsive {
  width: 100%;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 2rem;
  min-height: 320px; /* Prevent clipping on smaller screens */
}

/* === INFO CIRCLE WRAPPER === */
.info-circle-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}

/* Scale down on smaller screens */
@media (max-width: 768px) {
  .info-circle-wrapper {
    transform: scale(0.75);
  }
}

/* === CENTER SECTION === */
.info-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 12px solid #d9e2de;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.info-content {
  position: relative;
  z-index: 1;
  text-align: center !important;
  width: 100%;
}

/* === TITLE IMAGE & SUBTITLE === */
.title-img {
  height: clamp(60px, 6vw, 80px);
  width: auto;
  display: block;
  margin: 0 auto 0.75rem;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.subtitle {
  font-size: var(--font-size-xl) !important;
  line-height: 1.25;
  color: var(--color-text);
  text-align: center;
  margin-top: 0.75rem;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* === INFO POINTS === */
.info-point-wrapper {
  position: absolute;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
}

.info-point {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d9e2de;
  text-align: center !important;
  line-height: 60px;
  font-weight: bold;
  font-size: 20px;
  color: #d9e2de;
  cursor: pointer;
  z-index: 3;
  opacity: 1;
  will-change: color, border-color;
  transition:
    border-color 0.2s ease-in-out,
    color        0.2s ease-in-out,
    transform    0.2s ease-in-out,
    opacity      0.2s ease-in-out;
}

/* Hover effect → grow + primary colour */
.info-point:hover {
  transform: scale(1.08);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* === POINT POSITIONS === */
.p1 { top: 2%; left: 50%; }
.p2 { top: 32%; left: 95%; }
.p3 { bottom: -3%; left: 78%; }
.p4 { bottom: -3%; left: 22%; }
.p5 { top: 32%; left: 5%; }

/* === ACTIVE POINT COLORS === */
.info-point.active[data-id="1"] { border-color: #a95c4a; color: #a95c4a; }
.info-point.active[data-id="2"] { border-color: #f1788d; color: #f1788d; }
.info-point.active[data-id="3"] { border-color: #b59a63; color: #b59a63; }
.info-point.active[data-id="4"] { border-color: #844a7e; color: #844a7e; }
.info-point.active[data-id="5"] { border-color: #f48150; color: #f48150; }

/* === ACTIVE RING COLORS === */
.info-circle-wrapper[data-active="1"] .info-ring { border-color: #f3e7e2; }
.info-circle-wrapper[data-active="2"] .info-ring { border-color: #fce5e9; }
.info-circle-wrapper[data-active="3"] .info-ring { border-color: #f2ecdf; }
.info-circle-wrapper[data-active="4"] .info-ring { border-color: #f1e8f1; }
.info-circle-wrapper[data-active="5"] .info-ring { border-color: #fce8e1; }
.info-circle-wrapper[data-active="0"] .info-ring { border-color: #d9e2de; }