.cursor {
  display: inline-block;
  margin-left: 4px;
  animation: blink 1s infinite;
  font-weight: bold;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.tab-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;

  background: white;
  color: #374151;

  border: 2px solid hsl(170 70% 40%);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);

  transition: all 0.3s ease;
  text-align: left;
}

.tab-btn:hover {
  background: hsl(170 70% 40%);
  color: white;
}

.active-tab {
  background: hsl(170 70% 40%);
  color: white;
}

.testimonial-slide {
  transition: opacity 0.8s ease-in-out;
}

/* DOTS */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(0, 0, 0, 0.5);
}

.active-dot {
  background: hsl(38, 92%, 50%);
  transform: scale(1.3);
}

.news-section {
  background: #008080;
  padding: 10px 0;
  overflow: hidden;
  border-top: 3px solid #c9a227;
  border-bottom: 3px solid #c9a227;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
}

.ticker {
  display: flex;
  width: max-content;
  animation: scrollLeft 20s linear infinite;
}

.ticker span {
  white-space: nowrap;
  font-size: 1rem;
  color: #ffffff;
  padding-right: 50px;
}

/* Pause on hover */
.ticker:hover {
  animation-play-state: paused;
}

/* MAP GLOW ANIMATION */
.map-glow {
  position: relative;
  animation: pulseGlow 3s infinite ease-in-out;
}

.map-glow {
  position: relative;
  z-index: 0; /* ADD THIS */
}

.map-glow iframe {
  position: relative;
  z-index: 1;
}

.map-glow::before {
  content: "";
  position: absolute;
  inset: -6px;
  background: radial-gradient(circle, rgba(0,255,200,0.25), transparent 70%);
  z-index: -1;
  filter: blur(12px);
  animation: glowMove 4s infinite alternate;
  border-radius: 16px;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.01);
    opacity: 1;
  }
}

@keyframes glowMove {
  0% {
    transform: translateY(0px);
    opacity: 0.4;
  }
  100% {
    transform: translateY(6px);
    opacity: 0.8;
  }
}

/* SOCIAL ICONS */
/* PREMIUM SOCIAL ICON STYLE */
.social-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(6px);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.social-icon-wrap img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}

/* Glow effect */
.social-icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0,255,200,0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

/* HOVER */
.social-icon-wrap:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(0,255,200,0.4);
  box-shadow: 0 10px 25px rgba(0,255,200,0.15);
}

.social-icon-wrap:hover::before {
  opacity: 1;
}

.social-icon-wrap:hover img {
  transform: scale(1.1);
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}