.brightless-hero-area {
  background: transparent;
  backdrop-filter: brightness(0.5);
}
.inner-hero-brightless {
  background-position: center;
  background-repeat: no-repeat;
}

.aciklama-yazisi h1,
h2,
h3 {
  line-height: 55px !important;
}

/* === SEO Breadcrumb Styles === */
.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
  align-items: center;
}

.breadcrumb-nav li {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
}

.breadcrumb-nav li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav li a:hover {
  color: var(--ztc-bg-bg-5, #FF6610);
}

.breadcrumb-nav li i {
  margin: 0 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav li:last-child span {
  color: var(--ztc-bg-bg-5, #FF6610);
  font-weight: 600;
}

@media (max-width: 768px) {
  .breadcrumb-nav {
    font-size: 14px;
  }
  
  .breadcrumb-nav li i {
    margin: 0 5px;
  }
}

body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  background: var(--ztc-bg-bg-3);

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-logo a,
.aciklama-yazisi a {
  font-weight: 700;
  color: var(--ztc-bg-bg-5);
}
/* === Progress Bar === */
#progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 9990;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

#progress-bar-container.hide-elements {
  opacity: 0;
  pointer-events: none;
}

#progress-bar {
  height: 100%;
  width: 0%;
  min-width: 0;
  max-width: 100%;
  background: linear-gradient(270deg, var(--ztc-bg-bg-5), var(--ztc-bg-bg-6));
  animation: wave 3s infinite linear;
  background-size: 200% auto;
  border-radius: 0 20px 20px 0;
  transition: width 0.05s ease-out;
  display: block;
  box-sizing: border-box;
  will-change: width;
}

@keyframes wave {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@media (max-width: 768px) {
  #progress-bar-container {
    height: 3px;
  }
}

/* === Hamburger & Dropdown === */
#tocBarMagic {
  position: fixed;
  top: 115px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}

/* Hamburger Button */
#tocTriggerXyz {
  background-color: var(--ztc-bg-bg-6);
  color: white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
#tocTriggerXyz.active {
  background-color: var(--ztc-bg-bg-5);
}

/* Dropdown */
#tocDropdownWrap {
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: all;
  background: var(--ztc-bg-bg-1);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  width: 280px;
  padding: 0 20px;
}
#tocDropdownWrap.open {
  max-height: 500px;
  opacity: 1;
  padding: 20px;
}

/* Ä°Ã§indekiler BaÅŸlÄ±k + Liste */
#tocDropdownWrap h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: var(--ztc-weight-semibold);
  color: var(--ztc-text-text-2);
}
#tocDropdownWrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
}
#tocDropdownWrap ul li {
  margin-bottom: 10px;
}
#tocDropdownWrap ul li a {
  text-decoration: none;
  color: var(--ztc-text-text-3);
  font-size: 14px;
  transition: 0.3s ease;
}
#tocDropdownWrap ul li a:hover,
#tocDropdownWrap ul li a.active {
  color: var(--ztc-text-text-5);
  font-weight: var(--ztc-weight-semibold);
}

/* Hide animasyonu */
.hide-elements {
  animation: mergeFadeOut 0.8s ease forwards;
}
@keyframes mergeFadeOut {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.3) translateY(-30px); }
}

/* === Responsive === */
@media (max-width: 991px) {
  #tocBarMagic {
      top: 80px;
      right: 15px;
  }
  
  #tocTriggerXyz {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  #tocDropdownWrap {
      width: calc(100vw - 40px);
      position: fixed;
      top: 140px;
      right: 20px;
      left: 20px;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  #tocDropdownWrap.open {
      max-height: 60vh;
      opacity: 1;
      overflow-y: auto;
  }
  
  #tocDropdownWrap ul {
    max-height: 50vh;
    overflow-y: auto;
  }
}

@media (max-width: 576px) {
  #tocBarMagic {
    top: 70px;
    right: 10px;
  }
  
  #tocTriggerXyz {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  #tocDropdownWrap {
    top: 125px;
    right: 10px;
    left: 10px;
    width: calc(100vw - 20px);
  }
}

/* === Sabit Ä°letiÅŸim ButonlarÄ± === */
.fixed-contact-buttons {
  position: fixed;
  bottom: 7rem;
  right: 30px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.contact-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 28px;
  box-shadow: 0 12px 20px rgba(0,0,0,0.18);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(3px);
  animation: floaty 4.2s ease-in-out infinite;
  will-change: transform;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.contact-btn::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 14px);
  white-space: nowrap;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.contact-btn:hover::before,
.contact-btn:focus-visible::before {
  width: 120%;
  height: 120%;
}

.contact-btn:hover::after,
.contact-btn:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.contact-btn:hover,
.contact-btn:focus-visible {
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 16px 35px rgba(0,0,0,0.25);
  color: #fff !important;
}

@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0);
  }
}

.contact-btn i {
  position: relative;
  z-index: 1;
}

.contact-btn:focus {
  outline: none;
}

/* WhatsApp Butonu */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #1ebe57 0%, #128C7E 100%);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

/* Telefon Butonu */
.phone-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  animation: pulse-blue 2.5s infinite 0.3s;
}

.phone-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

@keyframes pulse-blue {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 99, 235, 0.6);
  }
}

/* Instagram Butonu */
.instagram-btn {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 100%);
  animation: pulse-pink 2.5s infinite 0.6s;
}

.instagram-btn:hover {
  background: linear-gradient(135deg, #ff8f3f 0%, #f1488b 45%, #a135b3 100%);
  box-shadow: 0 8px 30px rgba(209, 64, 116, 0.45);
}

@keyframes pulse-pink {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(209, 64, 116, 0.35);
  }
  50% {
    box-shadow: 0 4px 32px rgba(209, 64, 116, 0.65);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .fixed-contact-buttons {
    bottom: 7rem;
    right: 20px;
    gap: 12px;
  }
  
  .contact-btn {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .contact-btn::after {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .fixed-contact-buttons {
    bottom: 7rem;
    right: 15px;
    gap: 10px;
  }
  
  .contact-btn {
    width: 54px;
    height: 54px;
    font-size: 22px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
  }
  
  .contact-btn:hover {
    transform: scale(1.1) translateY(-3px);
  }

  .contact-btn::after {
    display: none;
  }
}