.hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
  transform: translateY(-5px);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .hero-image-wrapper {
    margin-top: 2rem;
  }
}

/* Mevcut buton stilleri korundu */
.contact-buttons .btn {
  transition: transform 0.3s ease;
}

.contact-buttons .btn:hover {
  transform: scale(1.05);
}

.phone-badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
}

@media (max-width: 576px) {
  .contact-buttons .btn {
    width: 100%;
  }
}
