.elementor-30532 .elementor-element.elementor-element-a54b15f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-9803065 */.wa-topbar {
  height: 60px; /* tam istediğin gibi */
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 60px;
  padding: 0 20px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.15s ease;
  /* arka plan YOK -> şeffaf */
  background: rgba(255, 255, 255, 0.06);
}

/* hover'da hafif geri bildirim */
.wa-topbar__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.wa-topbar__link:active {
  transform: scale(0.96);
}

/* İkon - 24px, pulse animasyonlu */
.wa-topbar__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  animation: wa-pulse 1.8s ease-in-out infinite;
}

.wa-topbar__icon svg {
  width: 100%;
  height: 100%;
  fill: #25D366; /* WhatsApp yeşili */
}

/* Yazı */
.wa-topbar__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.wa-topbar__link:hover .wa-topbar__text {
  color: #ffffff;
}

/* Pulse animasyonu - daha yumuşak */
@keyframes wa-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

/* 📱 Responsive - küçük ekranlarda */
@media (max-width: 576px) {
  .wa-topbar {
    height: 60px; /* sabit kalır */
  }
  
  .wa-topbar__link {
    padding: 0 14px;
    gap: 8px;
  }
  
  .wa-topbar__icon {
    width: 20px;
    height: 20px;
  }
  
  .wa-topbar__text {
    font-size: 12px;
    white-space: normal; /* sığmazsa alt satıra geçer */
    text-align: center;
  }
}

/* Orta ekranlar için */
@media (max-width: 768px) {
  .wa-topbar__text {
    font-size: 13px;
  }
}/* End custom CSS */