#iletisim.section {
  position: relative;
  padding: 0;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

#iletisim.section iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Butonların kutusu */
.info-buttons {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: var(--bir-blur);
  padding: 10px 10px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  user-select: none;
}

/* Her bir buton */
.info-btn {
  width: 40px;
  transition: width 0.4s ease;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 50px;
  padding: 0 10px;
  background: transparent;
  border: none;
  color: var(--contact-text);
  height: 40px;
}

/* Hover / focus ile genişle */
.info-btn:hover,
.info-btn:focus {
  width: 100px; /* İstediğin genişlik */
  background: var(--hover-blur);
}

/* İkon */
.info-btn i {
  font-size: 14px;
  pointer-events: none;
}

/* Yazı */
.info-btn span {
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.3s ease 0.15s;
  pointer-events: none;
  font: var(--font);
  color: var(--contact-text);
}

/* Hoverda yazı görünür */
.info-btn:hover span,
.info-btn:focus span {
  opacity: 1;
  pointer-events: auto;
}

/* Link stilleri */
.info-btn span a {
  color: var(--contact-text);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  #iletisim.section {
    height: 300px;
  }
  .info-buttons {
    bottom: 5px;
    gap: 6px;
    padding: 4px 8px;
  }
  .info-btn {
    height: 35px;
    width: 35px;
    max-width: 35px;
  }
  .info-btn:hover,
  .info-btn:focus {
    max-width: 220px;
  }
  .info-btn i {
    font-size: 18px;
  }
}
