#logo img {                  /* ya da .logo, #logo gibi seçicini kullan */
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); /* çok yumuşak easing */
  transform: scale(1);
  filter: brightness(1);
  will-change: transform, filter; /* performans artışı */
}

#logo:hover img {
  transform: scale(1.08);
  filter: brightness(1.08) drop-shadow(0 0 8px rgba(255,255,255,0.4));
  /* veya markan varsa: drop-shadow(0 0 12px var(--primary, #0d6efd)) */
}

.section-parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('img/safir/map.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}
.section-parallax {
    background: none !important;
    position: relative;
}


.owl-item img {
    transition: transform 0.35s ease;
}

.owl-item:hover img {
    transform: scale(1.05);
}