.language-dropdown {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.language-button {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.language-button img {
  width: 24px;
  height: 16px;
  margin-right: 8px;
  border-radius: 2px;
}

.language-button span {
  font-weight: 600;
  color: #333;
  margin-right: 5px;
  font-size: 14px;
}

.language-button svg {
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
  /* yukarı ok */
  transition: transform 0.3s;
}

.language-options {
  position: absolute;
  bottom: 110%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  min-width: 120px;
  padding: 4px 0;
}

.language-options div {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.language-options div:hover {
  background: #f1f1f1;
}

.language-options img {
  width: 24px;
  height: 16px;
  margin-right: 8px;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .mobile-map {
    display: none !important;
  }
  .desktop-map {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .desktop-map {
    display: none !important;
  }
  .mobile-map {
    display: block !important;
  }
}

.btn-darks {
  opacity: 0.4 !important;
  background: transparent !important;
}

@media (max-width: 768px) {
  .responsive-heading {
    font-size: 1.5rem;
    opacity: 0.7;
  }
}

@media (min-width: 768px) {
  .responsive-heading {
    font-size: 4.5rem;
    opacity: 0.7;
  }
}

.btn-xs {
  opacity: 0.6 !important;
}
.btn-xs:hover {
  opacity: 1 !important;
}

@media (max-width: 767px) {
  .attr-nav.extra-color {
    display: none;
  }
}

.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    animation: slideInRight 0.8s ease-out, glowPulse 2.5s infinite;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-widget:hover {
    background-color: #1ebea5;
    transform: scale(1.05);
}

.whatsapp-icon svg {
    display: block;
    width: 26px;
    height: 26px;
    fill: white;
}

@media (max-width: 768px) {
    .row .info {
        order: 2;
    }

    .row .thumb {
        order: 1;
    }
}