.call-bubble-wrap {
  position: fixed;
  bottom: 120px;
  right: 20px;
  z-index: 9999;
  font-family: sans-serif;
}

.call-bubble {
  display: flex;
  align-items: center;
  background-color: #1da75a;
  color: white;
  border-radius: 100px;
  text-decoration: none;
  padding: 16px 24px 16px 88px; /* ikon daha büyük olduğu için sol padding arttı */
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.call-icon {
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 88px;
  height: 88px;
}

/* Dış halka */
.ring {
  position: absolute;
  width: 88px;
  height: 88px;
  border: 2px solid #f7bc3c;
  border-radius: 50%;
  top: 0;
  left: 0;
  animation: ring-pulse 1.2s infinite ease-in-out;
  opacity: 0.5;
}

/* İç halka */
.ring-fill {
  position: absolute;
  width: 64px;
  height: 64px;
  background-color: rgba(37, 211, 102, 0.6);
  border-radius: 50%;
  top: 12px;
  left: 12px;
  animation: ring-fill 2s infinite ease-in-out;
}

/* Telefon ikonu */
.icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: #25d366;
  border-radius: 50%;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ring-shake 1.5s infinite ease-in-out;
}

.icon img {
  width: 24px;
  height: 24px;
}

/* Yazı kısmı */
.call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.line1 {
  font-size: 18px;
  font-weight: 700;
}

.line2 {
  font-size: 15px;
  font-weight: 400;
}

.four-g-price {
      display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 15px; 
}

.four-g-price img {
      max-width: 100%;
    height: auto;
    width: auto;
}

/* ANİMASYONLAR */
@keyframes ring-pulse {
  0%   { transform: scale(0.7); opacity: 0.2; }
  50%  { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(0.7); opacity: 0.2; }
}

@keyframes ring-fill {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.3); opacity: 0.3; }
}

@keyframes ring-shake {
  0%   { transform: rotate(0); }
  25%  { transform: rotate(-15deg); }
  50%  { transform: rotate(15deg); }
  75%  { transform: rotate(-10deg); }
  100% { transform: rotate(0); }
}



/*2g free*/
.free-two-g {
  display: flex;
  flex-direction: column;
}

.two-g-text {
  padding-top: 0px;
  font-size: 26px;
  font-weight: bold;
  color: black;
}

