/* ===============================
   FONT (Opsiyonel)
================================ */
/*
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
*/

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #111;
  background-color: #fff;
}

/* ===============================
   LOGO
================================ */
.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #ff0000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #f8f9fa;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.logo a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* ===============================
   İÇERİK ALANI
================================ */
.icerik-yeri {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}

.icerik-yeri h2 {
  margin: 48px 0 20px;
}

.icerik-yeri p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.icerik-yeri hr {
  border: none;
  border-top: 6px solid #ff9800;
  margin: 32px 0;
}

/* ===============================
   TABLOLAR
================================ */
.icerik-yeri table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.icerik-yeri td {
  border: 1px solid #000;
  padding: 12px;
}

.icerik-yeri table a {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.icerik-yeri table a:hover {
  color: #ff6600;
}

/* ===============================
   BREADCRUMB
================================ */
.breadcrumb {
  background: none;
  padding: 12px 0;
  margin-bottom: 24px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #666;
}

.breadcrumb-item a {
  color: #004480;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item[aria-current="page"] {
  color: #000;
  font-weight: 700;
}

/* ===============================
   LINKLER
================================ */
#linkler-listesi {
  display: none;
}

#linkler a {
  display: inline-block;
  margin: 0 20px 15px 0;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

#linkler a:hover {
  text-decoration: underline;
}

/* ===============================
   RESİMLER
================================ */
.img-responsive {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* ===============================
   NAV (Scope’lu)
================================ */
.icerik-yeri nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.icerik-yeri nav li {
  display: inline-block;
  margin-right: 24px;
}

.icerik-yeri nav a {
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.icerik-yeri nav a:hover {
  text-decoration: underline;
}

/* ===============================
   SABİT WHATSAPP BUTONU (EN ALTA YAN YANA)
================================ */
.fixed-side-menu {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 50vw;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px; /* Sabit yükseklik */
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0; /* Köşeleri kaldır */
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform .2s ease, box-shadow .2s ease;
  width: 100%; /* Tam genişlik */
  height: 100%; /* Tam yükseklik */
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.whatsapp-button:focus-visible {
  outline: 3px solid rgba(37,211,102,.5);
  outline-offset: 3px;
}

/* ===============================
   SABİT "TIKLA ARA" (EN ALTA YAN YANA)
================================ */
.fixed-call-btn {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 50vw;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px; /* Sabit yükseklik */
}

.fixed-call-btn__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff9800, #ff6600); /* Turuncu gradient */
  color: #fff;
  padding: 12px 16px;
  border-radius: 0; /* Köşeleri kaldır */
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform .2s ease, box-shadow .2s ease;
  width: 100%; /* Tam genişlik */
  height: 100%; /* Tam yükseklik */
  justify-content: center;
}

.fixed-call-btn__inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* ===============================
   MOBİL UYUMLULUK
================================ */
@media (max-width: 768px) {
  .fixed-call-btn,
  .fixed-side-menu {
    width: 50vw; /* Mobil için de yarı yarıya */
    height: 50px; /* Mobil için daha küçük yükseklik */
  }

  .fixed-call-btn__inner,
  .whatsapp-button {
    font-size: 12px;
    padding: 8px 12px;
  }

  .icerik-yeri nav li {
    display: block;
    margin: 12px 0;
  }
}

/* ===============================
   ERİŞİLEBİLİRLİK
================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
