.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  padding: 16px 48px 16px 16px;
  font-size: 16px;
  color: #ffffff;
  background-color: #2b2b2b;
  border: none;
  border-radius: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Freccetta */
.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #aaa;
  pointer-events: none;
}


/* Whatsapp 1 */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #111;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}


/* Whatsapp 2 */
.wa-pill{
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #25D366;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 9999;
}
.wa-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}


/* Whatsapp 3 */
.wa-bubble {
  position: fixed;
  bottom: 24px;
  left: 24px;        /* ⬅️ QUI */
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.6);
  animation: wa-pulse 1.8s infinite;
  transition: transform 0.2s ease;
}

.wa-bubble:hover {
  transform: scale(1.08);
}

/* Animazione pulse */
@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}




/*PULSAMENTO DELLA MAPPA*/

/* Wrapper mappa: il DIV che contiene l’immagine + i pin */
#objects .section-content > .objects{
  position: relative;
  overflow: visible;   /* così i cerchi radar non vengono tagliati */
}

/* L’immagine mappa */
#objects .section-content > .objects > img{
  display: block;      /* evita spazi strani sotto l’immagine */
  width: 100%;
  height: auto;
}

/* Pin */
#objects .object-label{
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: absolute;
  z-index: 5;
  overflow: visible;   /* IMPORTANTISSIMO per i cerchi */
  background-color: #e5bf93;
  box-shadow: 0 0 70px 8px rgba(197,164,126,0.75);
  cursor: pointer;
  animation: pulseDot 1.6s ease-in-out infinite;
}

/* Cerchi radar (2 onde) */
#objects .object-label::before,
#objects .object-label::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.25);
  opacity: 0;
  pointer-events: none;

  border: 2px solid #c5a47e;
  box-shadow: 0 0 30px rgba(197,164,126,0.45);
  animation: radarRipple 1.8s ease-out infinite;
}

#objects .object-label::after{
  animation-delay: 0.9s;
}

/* Pulsazione del dot */
@keyframes pulseDot{
  0%, 100% { transform: scale(1); box-shadow: 0 0 70px 8px rgba(197,164,126,0.65); }
  50%      { transform: scale(1.08); box-shadow: 0 0 85px 12px rgba(197,164,126,0.85); }
}

/* Onde radar */
@keyframes radarRipple{
  0%   { transform: translate(-50%, -50%) scale(0.25); opacity: 0; }
  15%  { opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(3.4); opacity: 0; }
}



/* Ombra Slide */

.slide-title {
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.9),
    0 6px 18px rgba(0, 0, 0, 0.6);
    letter-spacing: 1.5px;
}

/* Icone Dorate Social */

.social-list a,
.social-list a::before {
  color: #d2b48c !important;
}







