.contact-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.bubble {
  position: absolute;
  width: 140px;
  height: 140px;
  background: #edece2;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  user-select: none;
}

.bubble i {
  font-size: 36px;
  transition: transform 0.3s ease;
}

.bubble .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bubble:hover {
  background: rgb(210, 160, 170);
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(210, 160, 170, 0.4);
  z-index: 100;
}

.bubble:hover i {
  transform: scale(1.1);
}

.bubble:active {
  transform: scale(1.05);
}

@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -35px) rotate(4deg);
  }
  50% {
    transform: translate(-25px, 40px) rotate(-4deg);
  }
  75% {
    transform: translate(35px, 25px) rotate(3deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-35px, 30px) rotate(-5deg);
  }
  66% {
    transform: translate(30px, -40px) rotate(5deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(40px, 30px) rotate(3deg);
  }
  50% {
    transform: translate(-30px, -35px) rotate(-3deg);
  }
  75% {
    transform: translate(25px, -25px) rotate(4deg);
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(-40px, -30px) rotate(-4deg);
  }
  40% {
    transform: translate(35px, 35px) rotate(5deg);
  }
  60% {
    transform: translate(-25px, 40px) rotate(-3deg);
  }
  80% {
    transform: translate(30px, -35px) rotate(4deg);
  }
}

/* Individual Bubble Positioning and Animation */
.bubble:nth-child(1) {
  top: 15%;
  left: 20%;
  animation: float1 18s infinite ease-in-out;
}

.bubble:nth-child(2) {
  top: 25%;
  left: 60%;
  animation: float2 22s infinite ease-in-out;
  animation-delay: -3s;
}

.bubble:nth-child(3) {
  top: 60%;
  left: 15%;
  animation: float3 20s infinite ease-in-out;
  animation-delay: -6s;
}

.bubble:nth-child(4) {
  top: 50%;
  left: 70%;
  animation: float1 19s infinite ease-in-out;
  animation-delay: -9s;
}

.bubble:nth-child(5) {
  top: 70%;
  left: 45%;
  animation: float4 21s infinite ease-in-out;
  animation-delay: -12s;
}

.bubble:nth-child(6) {
  top: 10%;
  left: 80%;
  animation: float2 23s infinite ease-in-out;
  animation-delay: -15s;
}

.bubble:nth-child(7) {
  top: 65%;
  left: 75%;
  animation: float3 17s infinite ease-in-out;
  animation-delay: -4s;
}


.bubble:nth-child(8) {
  top: 40%;
  left: 35%;
  animation: float4 24s infinite ease-in-out;
  animation-delay: -8s;
}

@media (max-width: 768px) {
  .bubble {
    width: 110px;
    height: 110px;
  }
  
  .bubble i {
    font-size: 28px;
  }
  
  .bubble .label {
    font-size: 11px;
  }
}