/* WhatsApp ve Telefon İkonları için Stil */
.floating-contact-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-contact-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.floating-contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-contact-button.whatsapp {
  background: #25d366;
  color: white;
}

.floating-contact-button.phone {
  background: #007bff;
  color: white;
}

.floating-contact-button i {
  font-size: 28px;
}

.tooltip {
  position: absolute;
  left: 70px;
  background: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.floating-contact-button:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .floating-contact-buttons {
    bottom: 15px;
    left: 15px;
  }

  .floating-contact-button {
    width: 55px;
    height: 55px;
  }

  .floating-contact-button i {
    font-size: 24px;
  }
}
.enhanced-breadcrumb {
  position: relative;
  background-size: cover;
  background-position: center;
}

.breadcrumb-overlay {
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.page-title-enhanced {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.enhanced-breadcrumb-nav a {
  color: #f5f5f5;
}

.enhanced-corp-row {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
}

.enhanced-corp-media {
  flex: 1;
}

.corp-img-enhanced {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.enhanced-corp-copy {
  flex: 1.5;
}

.enhanced-eyebrow {
  color: #0073aa;
  font-weight: 600;
  margin-bottom: 10px;
}

.enhanced-heading {
  font-size: 32px;
  margin-bottom: 20px;
}

.enhanced-text {
  line-height: 1.7;
  font-size: 17px;
}

@media (max-width: 768px) {
  .enhanced-corp-row {
    flex-direction: column;
  }
}
.navigation-projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  justify-content: center;
}

.filter-item {
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}

.filter-item:hover,
.filter-item.active {
  background-color: #007cba;
  color: white;
}

.product-item {
  transition: all 0.3s ease;
}
