/* ============================================
   ANKARA MEZAR BAKIM — CSS
   ============================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #111111;
  --gold: #C9A84C;
  --white: #ffffff;
  --gray: #F7F7F7;
  --text: #2d2d2d;
  --muted: #888;
  --border: #e8e8e8;
}

html {
  scroll-behavior: smooth;
  background: #ffffff;
  color-scheme: light;
}

/* Sayfa yüklenirken animasyon flash'ını önle */
body.preload * {
  transition: none !important;
  animation: none !important;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: var(--text);
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
/* Skip to content link - Erişilebilirlik */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #111;
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9995;
  background: #fff;
  padding: 8px 20px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  background: #fff;
  border: 1px solid rgba(220, 220, 220, .55);
  border-radius: 60px;
  padding: 0 32px;
  box-shadow: 0 4px 28px rgba(27, 43, 94, .10);
  max-width: fit-content;
  margin: 0 auto;
}

@media(max-width:900px) {
  body {
    padding-top: 68px;
  }

  .header-inner {
    height: 56px;
    border-radius: 30px;
    padding: 0 16px;
  }
}

/* LOGO — ortada */
.logo-center {
  justify-self: center;
  z-index: 1;
  text-align: center;
}

nav.nav-left {
  justify-self: end;
  padding-right: 24px;
}

nav.nav-right {
  justify-self: start;
  padding-left: 24px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-emblem {
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
  overflow: hidden;
}

.logo-emblem svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.logo-text {
  line-height: 1.2;
}

.logo-text strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #C0392B;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-size: 10px;
  color: var(--navy);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
  text-align: center;
}

/* NAV */
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

nav.main-nav>a,
nav.main-nav>.nav-item>a {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  padding: 8px 10px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3px;
  letter-spacing: .3px;
  text-transform: uppercase;
  transition: color .2s;
}

nav.main-nav>a:hover,
nav.main-nav>.nav-item:hover>a {
  color: #888;
}

nav.main-nav>a.active {
  color: var(--navy);
}

.nav-item {
  position: relative;
}

.nav-item>a .arrow {
  font-size: 8px;
  opacity: .55;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(27, 43, 94, .12);
  min-width: 210px;
  padding: 6px 0;
  z-index: 10000;
  /* Boşluk bırakma — padding ile köprü kur */
  padding-top: 10px;
  margin-top: -4px;
}

.nav-item:hover .dropdown {
  display: block;
}

/* dropdown--open class ile de çalışsın */
.dropdown--open {
  display: block !important;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  transition: background .15s, color .15s;
}

.dropdown a:hover {
  background: var(--gray);
  color: var(--navy);
}

/* CTA BUTTON */
.header-cta {
  flex-shrink: 0;
}

.btn-wa-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 11px 14px 11px 18px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: background .2s;
  white-space: nowrap;
}

.btn-wa-header:hover {
  background: #0f1e45;
}

/* Yeşil daire — sağ tarafta */
.btn-wa-header .wa-circle {
  width: 30px;
  height: 30px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-wa-header .wa-circle svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(220, 220, 220, .55);
  border-radius: 20px;
  margin: 8px 20px 0;
  padding: 12px 24px 20px;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(27, 43, 94, .10);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--navy);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  animation: waPulse 2.5s infinite;
  transition: transform .2s;
}

.float-wa:hover {
  transform: scale(1.1);
}

.float-wa svg {
  width: 26px;
  height: 26px;
  fill: #FFFFFF;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 4px 36px rgba(37, 211, 102, .75);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1060px) {

  nav.main-nav>a,
  nav.main-nav>.nav-item>a {
    padding: 8px 7px;
    font-size: 11.5px;
  }

  .btn-wa-header {
    font-size: 11px;
    padding: 10px 12px 10px 14px;
  }
}

@media (max-width: 900px) {
  nav.main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ============================================
   BLOG
   ============================================ */

.blog-main {
  padding-bottom: 80px;
}

/* Breadcrumb */
.breadcrumb-bar {
  background: var(--gray);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--navy);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* Blog Hero */
.blog-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}

.blog-hero .section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-hero .section-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}

.blog-hero-desc {
  font-size: 15px;
  color: var(--muted);
}

/* Blog Grid */
.blog-section {
  padding: 56px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Blog Card */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(27, 43, 94, .10);
}

.blog-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.04);
}

.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .5px;
}

.blog-card-body {
  padding: 22px 24px 24px;
}

.blog-date {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-title a {
  color: inherit;
}

.blog-card-title a:hover {
  color: var(--gold);
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, gap .2s;
}

.blog-read-more:hover {
  color: var(--gold);
  gap: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--white);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
  gap: 40px;
  padding: 28px 0 32px;
}

/* SOL */
.hero-left {
  max-width: 100%;
}

.hero-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 34px;
  font-weight: 900;
  color: #111111;
  line-height: 1.18;
  margin-bottom: 14px;
}

.hero-title .t-dark {
  color: #111827;
}

.hero-title em {
  font-style: normal;
  color: #111111;
}

.hero-desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Trust badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 24px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
}

.hero-trust-item svg {
  width: 15px;
  height: 15px;
  stroke: #4a7c59;
  flex-shrink: 0;
}

.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: background .2s;
}

.btn-hero-wa:hover {
  background: #0f1e45;
}

.btn-hero-wa svg {
  width: 14px;
  height: 14px;
  fill: #FFFFFF;
  flex-shrink: 0;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #ccc;
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  transition: border-color .2s;
}

.btn-hero-outline:hover {
  border-color: var(--navy);
}

/* SAĞ — slider */
.hero-right {
  position: relative;
}

.hero-slider-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Slider — yumuşak köşeli dikdörtgen, sağ taraf biraz daha oval */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px 40px 40px 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 4px 12px rgba(27, 43, 94, .07),
    0 12px 32px rgba(27, 43, 94, .11);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ok butonları */
.hero-prev,
.hero-next {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: var(--white);
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  transition: box-shadow .2s, transform .2s;
}

.hero-prev:hover,
.hero-next:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, .13);
  transform: scale(1.1);
}

/* STATS — hero içinde altta ortalanmış */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  font-size: 20px;
  opacity: .65;
}

.stat-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-stats {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: 22px;
  }

  .hero {
    padding: 28px 0 24px;
  }

  .hero-stats {
    gap: 16px;
  }
}


/* ============================================

/* ============================================
   HERO İSTATİSTİK KARTLARI
   ============================================ */
.hero-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.hsc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  cursor: default;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.hsc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #111;
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}

.hsc:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
  transform: translateY(-3px);
}

.hsc:hover::before {
  transform: scaleX(1);
}

.hsc-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.5px;
}

.hsc-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   HİZMETLER
   ============================================ */
.services {
  padding: 64px 0 56px;
  background: var(--white);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}

.see-all-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: .7;
  transition: opacity .2s;
}

.see-all-link:hover {
  opacity: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: visible;
  transition: transform .25s, box-shadow .25s;
}

.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(27, 43, 94, .10);
}

.srv-card-img {
  position: relative;
  height: 200px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: #ffffff;
}

.srv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s;
  display: block;
}

.srv-card:hover .srv-card-img img {
  transform: scale(1.07);
}

.srv-card-icon {
  display: none;
}

.srv-card-icon svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.srv-card-body {
  padding: 14px 14px 16px;
}

.srv-card-body h3 {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
}

.srv-card-body p {
  font-size: 11.5px;
  color: #888;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   ÖNCESİ & SONRASI
   ============================================ */
.before-after {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* ============================================
   ÖNCESİ & SONRASI — eski ba-inner (kaldırıldı, yeni ba-cards-grid kullanılıyor)
   ============================================ */
.ba-inner {
  display: none;
}

.ba-compare-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  background: #111;
}

.ba-after-img,
.ba-after-img,
.ba-before-img {
  position: absolute;
  inset: 0;
}

.ba-after-img {
  z-index: 1;
}

.ba-after-img img,
.ba-before-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}

.ba-before-img {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path .05s;
}

.ba-badge {
  position: absolute;
  top: 10px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  color: #fff;
  pointer-events: none;
  z-index: 5;
}

.ba-badge.before {
  left: 10px;
  background: #111;
}

.ba-badge.after {
  right: 10px;
  background: #4a7c59;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  cursor: col-resize;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255, 255, 255, .85);
}

.ba-handle-btn {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #111;
  font-weight: 900;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
  flex-shrink: 0;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #111;
  color: #111;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 700;
  transition: background .2s, color .2s;
}

.btn-outline-navy:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 900px) {
  .ba-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================
   BLOG
   ============================================ */
.blog-main {
  padding-bottom: 80px;
}

.breadcrumb-bar {
  background: var(--gray);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--navy);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #888;
}

.blog-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}

.blog-hero .section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-hero .section-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}

.blog-hero-desc {
  font-size: 15px;
  color: var(--muted);
}

.blog-section {
  padding: 56px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
}

.blog-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.04);
}

.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .5px;
}

.blog-card-body {
  padding: 22px 24px 24px;
}

.blog-date {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-title a {
  color: inherit;
}

.blog-card-title a:hover {
  color: #888;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, gap .2s;
}

.blog-read-more:hover {
  color: #888;
  gap: 10px;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HAKKIMIZDA / KURUMSAL TANITIM
   ============================================ */
/* about-section ana tanım aşağıda (satır ~2285) */

/* Üst kısım */
.about-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}

.about-text .section-title {
  margin-bottom: 20px;
}

.about-desc {
  font-size: 14.5px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-desc strong {
  color: var(--navy);
  font-weight: 700;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  transition: background .2s;
}

.about-cta:hover {
  background: #333;
}

.about-cta svg {
  width: 16px;
  height: 16px;
  fill: #25D366;
  flex-shrink: 0;
}

/* Sağ badge'ler */
.about-badge-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.about-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.about-badge-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}

.about-badge-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* Alt 5 kart */
.about-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.af-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  transition: transform .25s, box-shadow .25s;
}

.af-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.af-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background .2s;
}

.af-icon svg {
  width: 20px;
  height: 20px;
  stroke: #111;
}

.af-card:hover .af-icon {
  background: #111;
}

.af-card:hover .af-icon svg {
  stroke: #fff;
}

.af-card h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.af-card p {
  font-size: 12.5px;
  color: #777;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-badge-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   HAKKIMIZDA BÖLÜMÜ
   ============================================ */
/* about-section ikinci tanım kaldırıldı */

/* Koyu üst bant */
.about-hero {
  background: #111;
  padding: 72px 0;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.about-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 16px;
}

.about-title {
  font-size: 36px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-lead {
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-lead strong {
  color: #fff;
  font-weight: 700;
}

.about-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* WA butonu — gri/siyah */
.about-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2a2a2a;
  border: 1px solid #444;
  color: #fff;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s, border-color .2s;
}

.about-wa-btn:hover {
  background: #333;
  border-color: #666;
}

.about-wa-btn svg {
  width: 16px;
  height: 16px;
  fill: #aaa;
  flex-shrink: 0;
}

/* Sağ stat grid */
.about-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex-shrink: 0;
}

.ahs-item {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  min-width: 130px;
  transition: background .2s;
}

.ahs-item:hover {
  background: rgba(255, 255, 255, .1);
}

.ahs-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.ahs-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  margin-top: 6px;
  font-weight: 500;
}

/* Alt özellik kartları */
.about-features-wrap {
  background: var(--gray);
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.af-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  transition: transform .25s, box-shadow .25s;
}

.af-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.af-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background .2s;
}

.af-icon svg {
  width: 20px;
  height: 20px;
  stroke: #111;
  transition: stroke .2s;
}

.af-card:hover .af-icon {
  background: #111;
}

.af-card:hover .af-icon svg {
  stroke: #fff;
}

.af-card h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.af-card p {
  font-size: 12.5px;
  color: #777;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-title {
    font-size: 26px;
  }
}

/* ============================================
   PAKETLER + YORUMLAR YAN YANA
   ============================================ */
.packages-section {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* Ana grid: paketler sol (3fr), yorumlar sağ (1.2fr) */
.pkg-reviews-layout {
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.pkg-left .section-title {
  margin-bottom: 28px;
}

.pkg-right .section-title {
  margin-bottom: 20px;
}

/* Paket kartları — 3 eşit sütun */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}

.pkg-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .09);
  transform: translateY(-4px);
}

.pkg-featured {
  border: 2px solid #111;
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.pkg-top {
  margin-bottom: 20px;
}

.pkg-name {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #111;
  margin-bottom: 4px;
}

.pkg-sub {
  display: block;
  font-size: 11px;
  color: #888;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.pkg-features li {
  font-size: 12.5px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pkg-features li svg {
  width: 14px;
  height: 14px;
  stroke: #111;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.pkg-btn {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: 8px;
  border: 1.5px solid #111;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s, color .2s;
  margin-top: auto;
}

.pkg-btn:hover {
  background: #111;
  color: #fff;
}

.pkg-btn-dark {
  background: #111;
  color: #fff;
}

.pkg-btn-dark:hover {
  background: #333;
}

/* Yorum slider — sağ kolon */
.reviews-slider-wrap {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}

.review-slide {
  display: none;
}

.review-slide.active {
  display: block;
}

.review-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 13px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.reviewer span {
  font-size: 11px;
  color: var(--muted);
}

.reviews-dots {
  display: flex;
  gap: 7px;
  margin-top: 16px;
}

.reviews-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.reviews-dots span.active {
  background: #111;
  transform: scale(1.3);
}

@media (max-width: 1100px) {
  .pkg-reviews-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ============================================
   ÖNCESİ & SONRASI — 3 KART GRID
   ============================================ */
.before-after {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.ba-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ba-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27, 43, 94, .10);
}

.ba-compare-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  background: #111;
}

.ba-after-img,


/* ============================================
   FOOTER
   ============================================ */

















































/* ============================================
   SSS — KART TASARIMI
   ============================================ */
.faq-section {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
}

.faq-top {
  text-align: center;
  margin-bottom: 48px;
}

.faq-top .section-label {
  display: block;
  margin-bottom: 8px;
}

.faq-top .section-title {
  font-size: 28px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq-card {
  background: #F7F7F7;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow .25s, transform .25s;
}

.faq-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  transform: translateY(-3px);
}

.faq-card h3 {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   HAKKIMIZDA ÖZET — ANA SAYFA
   ============================================ */
.about-section {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
}

.about-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-left .section-title {
  margin-bottom: 20px;
}

.about-desc {
  font-size: 14.5px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 14px;
}

.about-desc strong {
  color: #111;
  font-weight: 700;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ast-item {
  background: #F7F7F7;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

.ast-item:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  transform: translateY(-3px);
}

.ast-num {
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: #111;
  line-height: 1;
  letter-spacing: -1.5px;
}

.ast-label {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 560px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================/* ADDITIONS */
.float-btns {
  pointer-events: none !important;
}

.float-btn-wrap,
.float-btn,
.float-wa-menu {
  pointer-events: all !important;
}

header,
header * {
  pointer-events: all !important;
}

.dropdown {
  z-index: 10000 !important;
}

.nav-item:hover .dropdown {
  display: block !important;
}

@media(max-width:900px) {
  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 58px !important;
    padding: 0 14px !important;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid #e5e7eb !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    background: #fff !important;
  }

  .nav-left {
    display: none !important;
  }

  .nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
  }

  .nav-right>a,
  .nav-right>.nav-item {
    display: none !important;
  }

  .nav-right .btn-login {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    background: #f3f4f6 !important;
    color: #111 !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 20px !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    font-family: inherit !important;
  }

  .nav-right .hamburger {
    display: flex !important;
    position: static !important;
    transform: none !important;
    background: #111 !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 6px 12px !important;
    gap: 4px !important;
    align-items: center !important;
    cursor: pointer !important;
  }

  .nav-right .hamburger span {
    background: #fff !important;
    width: 14px !important;
    height: 2px !important;
    display: block !important;
  }

  .nav-right .hamburger small {
    display: inline !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
  }

  .ba-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .ba-cards-grid .ba-card {
    display: block !important;
  }
}

header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9995 !important;
  background: #fff !important;
  padding: 8px 20px !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06) !important;
}

body {
  padding-top: 92px !important;
}

@media(max-width:900px) {
  body {
    padding-top: 68px !important;
  }

  header {
    padding: 4px 14px !important;
  }
}

.ai-chat {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  right: auto !important;
  z-index: 9990 !important;
  font-family: inherit
}

.ai-chat__panel {
  position: fixed !important;
  bottom: 120px !important;
  left: 24px !important;
  width: 350px !important;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
  opacity: 0;
  transform: translateY(20px) scale(.95);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
  z-index: 10002 !important
}

.ai-chat__panel--open {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: all !important
}

.ai-chat__head {
  background: linear-gradient(135deg, #1a6b2e, #2e7d32);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0
}

.ai-chat__head-left {
  display: flex;
  align-items: center;
  gap: 10px
}

.ai-chat__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ai-chat__head-name {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700
}

.ai-chat__head-status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .8);
  font-size: 11px;
  margin-top: 2px
}

.ai-chat__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #a7f3d0;
  border-radius: 50%
}

.ai-chat__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.ai-chat__close svg {
  width: 18px;
  height: 18px;
  stroke: #fff
}

.ai-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
  background: #f9fafb
}

.ai-chat__msg {
  display: flex;
  max-width: 88%
}

.ai-chat__msg--bot {
  align-self: flex-start
}

.ai-chat__msg--user {
  align-self: flex-end;
  flex-direction: row-reverse
}

.ai-chat__bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.6;
  word-break: break-word
}

.ai-chat__msg--bot .ai-chat__bubble {
  background: #fff;
  color: #111;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .07)
}

.ai-chat__msg--user .ai-chat__bubble {
  background: linear-gradient(135deg, #1a6b2e, #2e7d32);
  color: #fff;
  border-bottom-right-radius: 4px
}

.ai-chat__typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 14px
}

.ai-chat__typing span {
  width: 7px;
  height: 7px;
  background: #9ca3af;
  border-radius: 50%;
  animation: aiBounce 1.2s infinite
}

.ai-chat__typing span:nth-child(2) {
  animation-delay: .2s
}

.ai-chat__typing span:nth-child(3) {
  animation-delay: .4s
}

@keyframes aiBounce {

  0%,
  60%,
  100% {
    transform: translateY(0)
  }

  30% {
    transform: translateY(-7px)
  }
}

.ai-chat__footer {
  border-top: 1px solid #f0f0f0;
  padding: 10px 12px 8px;
  background: #fff;
  flex-shrink: 0
}

.ai-chat__input-wrap {
  display: flex;
  align-items: center;
  gap: 8px
}

.ai-chat__input {
  flex: 1;
  border: 1.5px solid #e5e7eb;
  border-radius: 24px;
  padding: 9px 16px;
  font-size: 13.5px;
  outline: none;
  font-family: inherit;
  background: #f9fafb;
  transition: border-color .2s
}

.ai-chat__input:focus {
  border-color: #2e7d32;
  background: #fff
}

.ai-chat__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6b2e, #2e7d32);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ai-chat__send svg {
  width: 16px;
  height: 16px;
  stroke: #fff
}

.ai-chat__powered {
  text-align: center;
  font-size: 10.5px;
  color: #9ca3af;
  margin-top: 6px
}

.ai-chat__action-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.ai-chat__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.ai-chat__action-btn svg {
  width: 15px !important;
  height: 15px !important;
  flex-shrink: 0;
}

.ai-chat__action-btn--call {
  background: #1a6b2e;
  color: #fff;
}

.ai-chat__action-btn--call svg {
  stroke: #fff;
  fill: none;
}

.ai-chat__action-btn--contact {
  background: #25d366;
  color: #fff;
}

.ai-chat__action-btn--contact svg {
  fill: #fff;
  stroke: none;
}

@media(max-width:900px) {
  .ai-chat {
    bottom: 16px !important;
    left: 12px !important
  }

  .ai-chat__panel {
    bottom: 100px !important;
    left: 12px !important;
    width: 300px !important;
    z-index: 10002 !important;
    max-height: 320px !important
  }
}

.float-btns {
  position: fixed;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none
}

.float-btn-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  pointer-events: all;
  opacity: 0;
  transform: translateY(30px);
  animation: floatIntro .5s ease forwards
}

.float-btn-wrap--left {
  flex-direction: row;
  animation-delay: .3s
}

.float-btn-wrap--right {
  flex-direction: row;
  animation-delay: .6s
}

.float-btn-label {
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  pointer-events: none;
  opacity: 0;
  animation: floatLabelIn .4s ease forwards
}

.float-btn-wrap--left .float-btn-label {
  animation-delay: .8s
}

.float-btn-wrap--right .float-btn-label {
  animation-delay: 1.1s;
  order: -1
}

@keyframes floatIntro {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes floatLabelIn {
  to {
    opacity: 1
  }
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: transform .2s;
  text-decoration: none
}

.float-btn:hover {
  transform: scale(1.08)
}

.float-btn--wa {
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45)
}

.float-btn--wa svg {
  width: 28px;
  height: 28px;
  fill: #fff
}

.float-btn--ai {
  background: linear-gradient(135deg, #111, #333);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .45);
  animation: aiPulse 2s ease-in-out infinite
}

.float-btn--ai svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none
}

.float-btn--ai.ai-chat__btn--active {
  background: linear-gradient(135deg, #111, #333)
}

.float-btn-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #fff;
  display: none
}

.ai-sparkle {
  position: absolute;
  font-size: 11px;
  color: #fff;
  pointer-events: none;
  animation: sparkleOrbit 1.5s linear infinite, sparklePulse 0.3s ease-in-out infinite alternate;
  z-index: 2
}

.ai-sparkle-1 {
  animation-delay: 0s;
  font-size: 10px
}

.ai-sparkle-2 {
  animation-delay: -.5s;
  font-size: 8px
}

.ai-sparkle-3 {
  animation-delay: -1s;
  font-size: 9px
}

@keyframes sparkleOrbit {
  0% {
    transform: rotate(0deg) translateX(18px) rotate(0deg);
    opacity: 1
  }
  50% {
    opacity: 0.6
  }
  100% {
    transform: rotate(360deg) translateX(18px) rotate(-360deg);
    opacity: 1
  }
}

@keyframes sparklePulse {
  0% {
    transform: scale(1);
    opacity: 1
  }
  100% {
    transform: scale(1.5);
    opacity: 0.5
  }
}

.wa-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .65);
  pointer-events: none;
  animation: waBubbleRise 1.8s ease-in-out infinite
}

.wa-bubble-1 {
  width: 9px;
  height: 9px;
  bottom: 7px;
  right: 7px
}

.wa-bubble-2 {
  width: 6px;
  height: 6px;
  bottom: 12px;
  right: 16px;
  animation-delay: .6s
}

@keyframes waBubbleRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: .85
  }

  60% {
    transform: translateY(-20px) scale(.6);
    opacity: .4
  }

  100% {
    transform: translateY(-32px) scale(.3);
    opacity: 0
  }
}

@keyframes aiPulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.25)
  }
}

@media(max-width:900px) {
  .float-btns {
    padding: 0 12px;
    bottom: 16px
  }

  .float-btn-label {
    display: flex !important;
    opacity: 1 !important;
    transform: none !important;
    font-size: 11px !important;
    padding: 5px 10px !important;
    font-weight: 700 !important
  }

  .float-btn-wrap--right .float-btn-label {
    order: -1 !important
  }

  .float-btn {
    width: 48px !important;
    height: 48px !important
  }

  .float-btn--wa svg {
    width: 22px !important;
    height: 22px !important
  }

  .float-btn--ai svg {
    width: 20px !important;
    height: 20px !important
  }
}

.float-wa-menu {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(.97);
  pointer-events: none;
  transition: opacity .25s, transform .25s
}

.float-wa-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all
}

.fwm-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative
}

.fwm-online {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #a7f3d0;
  border-radius: 50%;
  border: 2px solid #25d366
}

.fwm-head-info {
  flex: 1;
  min-width: 0
}

.fwm-name {
  color: #fff;
  font-weight: 700;
  font-size: 14px
}

.fwm-status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .8);
  font-size: 11px;
  margin-top: 2px
}

.fwm-dot {
  width: 6px;
  height: 6px;
  background: #a7f3d0;
  border-radius: 50%;
  display: inline-block
}

.fwm-close {
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.fwm-greeting {
  padding: 14px 16px 0
}

.fwm-bubble {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 13px;
  color: #166534;
  line-height: 1.5
}

.fwm-topics {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.fwm-topic {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #111;
  transition: background .15s
}

.fwm-topic:hover {
  background: #f0fdf4;
  border-color: #bbf7d0
}

.fwm-topic-icon {
  font-size: 20px;
  flex-shrink: 0
}

.fwm-topic-title {
  font-weight: 600;
  font-size: 13px;
  color: #111
}

.fwm-topic-sub {
  font-size: 11px;
  color: #6b7280;
  margin-top: 1px
}

.fwm-arrow {
  width: 16px;
  height: 16px;
  stroke: #9ca3af;
  margin-left: auto;
  flex-shrink: 0
}

.fwm-footer {
  display: flex;
  gap: 8px;
  padding: 10px 12px 14px;
  border-top: 1px solid #f0f0f0
}

.fwm-btn-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25d366;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none
}

.fwm-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f0fdf4;
  color: #166534;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid #bbf7d0
}

@media(max-width:900px) {
  .float-wa-menu {
    width: 260px !important;
    right: 0 !important;
    max-height: 70vh;
    overflow-y: auto;
    bottom: 62px
  }
}

.mob-overlay {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, .5) !important;
  z-index: 10002 !important;
  pointer-events: none !important
}

.mob-overlay--open {
  display: block !important;
  pointer-events: all !important
}

.mob-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 78vw !important;
  max-width: 300px !important;
  background: #fff !important;
  z-index: 10003 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
  transform: translateX(100%) !important;
  transition: transform .28s ease !important;
  box-shadow: -6px 0 24px rgba(0, 0, 0, .18) !important
}

.mob-drawer--open {
  transform: translateX(0) !important
}

.mob-drawer,
.mob-drawer * {
  color: #111 !important
}

.mob-drawer-head {
  background: #fff !important;
  border-bottom: 1px solid #e5e7eb !important;
  padding: 16px 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-shrink: 0 !important
}

.mob-drawer-logo strong {
  color: #111 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  display: block !important
}

.mob-drawer-logo small {
  color: #6b7280 !important;
  font-size: 10px !important;
  letter-spacing: 2px !important;
  display: block !important
}

.mob-drawer-close {
  background: #f3f4f6 !important;
  border: none !important;
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important
}

.mob-drawer-auth {
  padding: 12px 16px !important;
  border-bottom: 1px solid #f0f0f0 !important;
  flex-shrink: 0 !important
}

.mob-auth-btn {
  background: #111 !important;
  color: #fff !important;
  width: 100% !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 10px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  font-family: inherit !important
}

.mob-drawer-section {
  padding: 8px 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important
}

.mob-link {
  display: block !important;
  padding: 10px 12px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #111 !important;
  text-decoration: none !important;
  background: transparent !important;
  pointer-events: all !important;
  position: relative;
  z-index: 10004 !important
}

.mob-link:hover {
  background: #f3f4f6 !important
}

.mob-link--active {
  color: #1a6b2e !important;
  font-weight: 700 !important;
  background: #f0fdf4 !important
}

.mob-services {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4px !important
}

.mob-services .mob-link {
  font-size: 12.5px !important;
  padding: 9px 10px !important;
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  text-align: center !important
}

.mob-drawer-label {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: #9ca3af !important;
  text-transform: uppercase !important;
  letter-spacing: .8px !important;
  padding: 10px 16px 4px !important
}

.mob-drawer-divider {
  height: 1px !important;
  background: #f0f0f0 !important;
  margin: 4px 16px !important
}

.mob-drawer-contact {
  padding: 12px 16px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-top: auto !important
}

.mob-contact-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  padding: 11px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important
}

.mob-contact-btn--call {
  background: #111 !important;
  color: #fff !important
}

.mob-contact-btn--contact {
  background: #1b2b5e !important;
  color: #fff !important
}

nav.breadcrumb {
  display: block !important;
  background: #fafafa !important;
  border-top: 2px solid #111 !important;
  border-bottom: 1px solid #e5e7eb !important;
  padding: 9px 0 !important;
  margin-top: 0 !important;
  position: relative;
  z-index: 10
}

.breadcrumb__list {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #6b7280
}

.breadcrumb__item {
  display: flex !important;
  align-items: center;
  gap: 2px;
  color: #6b7280
}

.breadcrumb__item--active {
  color: #111 !important;
  font-weight: 600
}

.breadcrumb__link {
  color: #2e7d32 !important;
  text-decoration: none;
  font-weight: 500
}

.breadcrumb__link:hover {
  color: #1a6b2e !important;
  text-decoration: underline
}

.breadcrumb__sep {
  width: 14px;
  height: 14px;
  stroke: #d1d5db;
  flex-shrink: 0
}


@media(max-width:1200px) {}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #111;
  color: #fff !important;
  border: none;
  border-radius: 22px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, transform .15s;
  white-space: nowrap
}

.btn-login:hover {
  background: #333;
  transform: translateY(-1px)
}

.btn-login svg {
  width: 15px;
  height: 15px;
  stroke: #fff
}

.btn-login span {
  color: #fff
}

@media(max-width:900px) {


  /* Hizmetlerimiz — tam genişlik, row 2 */

  /* Kurumsal — sol, row 3 */

  /* Faydalı Linkler — sağ, row 3 */


  /* İletişim — tam genişlik, row 4 */






}

.float-wa-menu {
  overflow: visible !important;
}

.float-wa-menu-head {
  background: #25d366 !important;
  padding: 14px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  border-radius: 16px 16px 0 0 !important;
}

.fwm-name {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}

.fwm-status {
  color: rgba(255, 255, 255, .8) !important;
  font-size: 11px !important;
}

.fwm-bubble {
  background: #f0fdf4 !important;
  border: 1px solid #bbf7d0 !important;
  border-radius: 0 12px 12px 12px !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  color: #166534 !important;
  line-height: 1.5 !important;
  margin: 14px 16px 0 !important;
}

.fwm-topic {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  text-decoration: none !important;
  color: #111 !important;
}

.fwm-topic-title {
  font-weight: 600 !important;
  font-size: 13px !important;
  color: #111 !important;
}

.fwm-topic-sub {
  font-size: 11px !important;
  color: #6b7280 !important;
}

.fwm-btn-wa {
  background: #25d366 !important;
  color: #fff !important;
}

.fwm-btn-call {
  background: #f0fdf4 !important;
  color: #166534 !important;
  border: 1.5px solid #bbf7d0 !important;
}

.ba-compare-slider {
  position: relative !important;
  overflow: hidden !important;
  background: #000 !important;
}

.ba-after-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1 !important;
}

.ba-before-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 2 !important;
  clip-path: inset(0 50% 0 0);
  transition: clip-path .05s;
}

.ba-after-img img,
.ba-before-img img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  pointer-events: none !important;
}

/* BA SLIDER FINAL FIX */
.ba-compare-slider {
  position: relative !important;
  overflow: hidden !important;
  background: #000 !important;
  width: 100% !important;
}

.ba-after-img,
.ba-before-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.ba-after-img {
  z-index: 1 !important;
}

.ba-before-img {
  z-index: 2 !important;
  clip-path: inset(0 50% 0 0);
  transition: clip-path .05s;
}

.ba-after-img img,
.ba-before-img img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  pointer-events: none !important;
}

.ba-compare-slider {
  position: relative !important;
  overflow: hidden !important;
  background: #000 !important;
  width: 100% !important;
}

.ba-after-img,
.ba-before-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.ba-after-img {
  z-index: 1 !important;
}

.ba-before-img {
  z-index: 2 !important;
  clip-path: inset(0 50% 0 0);
  transition: clip-path .05s;
}

.ba-after-img img,
.ba-before-img img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  pointer-events: none !important;
}

a.srv-card {
  text-decoration: none;
  color: inherit;
  display: block;
  pointer-events: all !important;
  position: relative;
  z-index: 2;
}

a.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(27, 43, 94, .10);
}

body {
  overflow-x: hidden !important;
}

.float-btns {
  overflow: visible !important;
}

.float-btn-wrap--right {
  position: relative !important;
}

html {
  overflow-x: hidden !important;
}

.ba-compare-slider {
  z-index: 5;
  position: relative !important;
  touch-action: none !important;
}

.ba-cards-grid {
  position: relative;
  z-index: 5;
}

/* FLOAT BTNS - SADECE BUTON ALANI TIKLANABILIR */
.float-btns {
  pointer-events: none !important;
  z-index: 9990 !important;
}

.float-btn-wrap {
  pointer-events: all !important;
  width: auto !important;
}

.float-btn-wrap--left {
  margin-left: 0 !important;
}

.float-btn-wrap--right {
  margin-right: 0 !important;
}

/* Sayfa icerigi float butonlarin altinda kalmasin */
.float-btns * {
  pointer-events: none !important;
}

.float-btn-wrap,
.float-btn-wrap *,
.float-btn,
.float-wa-menu,
.float-wa-menu *,
.ai-chat,
.ai-chat * {
  pointer-events: all !important;
}

.float-btns,
.float-btns * {
  pointer-events: none !important;
}

.float-btn-wrap,
.float-btn,
.float-wa-menu,
.float-wa-menu *,
.ai-chat,
.ai-chat * {
  pointer-events: all !important;
}

.float-btns {
  left: auto !important;
  right: auto !important;
  width: auto !important;
  display: flex !important;
  position: fixed !important;
  bottom: 28px !important;
  gap: 0 !important;
}

.float-btn-wrap--left {
  position: fixed !important;
  left: 24px !important;
  bottom: 28px !important;
}

.float-btn-wrap--right {
  position: fixed !important;
  right: 24px !important;
  bottom: 28px !important;
}

@media(max-width:900px) {
  .float-btn-wrap--left {
    left: 12px !important;
    bottom: 16px !important;
  }

  .float-btn-wrap--right {
    right: 12px !important;
    bottom: 16px !important;
  }
}

@media(max-width:900px) {
  .float-btn-wrap--left {
    left: 12px !important;
    bottom: 16px !important;
  }

  .float-btn-wrap--right {
    right: 12px !important;
    bottom: 16px !important;
  }
}

.float-btn-wrap--right {
  z-index: 10001 !important;
}

.float-btn-wrap--left {
  z-index: 10001 !important;
}

.ba-compare-slider {
  z-index: 1 !important;
  position: relative !important;
  touch-action: none !important;
}

/* Çok küçük ekranlarda (≤420px) slider'lar alt alta */
@media(max-width:420px) {
  .ba-cards-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ============================================================
   FOOTER — TEK KAYNAK, TÜM ÇAKIŞMALAR TEMİZLENDİ
   ============================================================ */

footer {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  color: #2d2d2d;
  padding: 56px 0 0;
  position: relative;
  z-index: 9990 !important;
}

footer a,
footer button {
  pointer-events: all !important;
  position: relative;
  z-index: 10005 !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 32px;
}

/* Logo */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-logo img {
  height: 72px;
  width: auto;
}

.footer-logo-text {
  text-align: center;
}

.footer-logo-text strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #111;
  letter-spacing: 3px;
}

.footer-logo-text small {
  display: block;
  font-size: 9px;
  letter-spacing: 4px;
  color: #888;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Sosyal */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background .2s, border-color .2s, color .2s;
}

.footer-social a svg {
  width: 15px;
  height: 15px;
}

.footer-social a:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

/* Kolonlar */
.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: #555;
  transition: color .2s;
  display: inline-block;
  padding: 2px 0;
  pointer-events: all !important;
  position: relative;
  z-index: 10006 !important;
}

.footer-col ul li a:hover {
  color: #111;
}

/* İletişim listesi */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #555;
}

.footer-contact-list li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #888;
}

.footer-contact-list li a {
  color: #555;
  transition: color .2s;
}

.footer-contact-list li a:hover {
  color: #111;
}

/* Alt bar */
.footer-bottom {
  border-top: 1px solid #f0f0f0;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 12px;
  color: #999;
}

.footer-bottom a {
  color: #555;
  font-weight: 600;
  transition: color .2s;
}

.footer-bottom a:hover {
  color: #111;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links span {
  color: #ccc;
}

.footer-bottom-links a {
  color: #555;
  font-weight: 600;
  font-size: 12px;
}

/* ── MASAÜSTÜ RESPONSIVE ── */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 24px;
  }
}

/* ── MOBİL 1×2×2 LAYOUT ── */
@media (max-width: 900px) {
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 8px !important;
  }

  /* Row 1: Brand — tam genişlik */
  .footer-brand {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    margin-bottom: 0 !important;
  }

  /* Row 2 sol: Hizmetlerimiz */
  .footer-col:nth-child(2) {
    grid-column: 1 !important;
    grid-row: 2 !important;
    padding: 8px 6px 8px 0 !important;
    border-bottom: none !important;
  }

  /* Row 2 sağ: Kurumsal */
  .footer-col:nth-child(3) {
    grid-column: 2 !important;
    grid-row: 2 !important;
    padding: 8px 0 8px 6px !important;
  }

  /* Row 3 sol: Faydalı Linkler */
  .footer-col:nth-child(4) {
    grid-column: 1 !important;
    grid-row: 3 !important;
    padding: 8px 6px 8px 0 !important;
    border-top: 1px solid #f0f0f0 !important;
  }

  /* Row 3 sağ: İletişim */
  .footer-col:nth-child(5) {
    grid-column: 2 !important;
    grid-row: 3 !important;
    padding: 8px 0 8px 6px !important;
    border-top: 1px solid #f0f0f0 !important;
  }

  .footer-col h4 {
    font-size: 10px !important;
    letter-spacing: 1px !important;
    margin-bottom: 6px !important;
  }

  .footer-col ul li a {
    font-size: 11px !important;
    padding: 2px 0 !important;
    display: block !important;
    line-height: 1.4 !important;
    pointer-events: all !important;
    position: relative !important;
    z-index: 10006 !important;
  }

  .footer-contact-list li {
    font-size: 10px !important;
    gap: 4px !important;
  }

  .footer-contact-list li svg {
    width: 12px !important;
    height: 12px !important;
  }

  .footer-contact-list li a {
    pointer-events: all !important;
    position: relative !important;
    z-index: 10006 !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 4px !important;
    margin-top: 12px !important;
    padding: 12px 0 !important;
  }

  .footer-bottom p {
    font-size: 10px !important;
  }

  .footer-bottom-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  .footer-bottom-links a {
    font-size: 10px !important;
    pointer-events: all !important;
    position: relative !important;
    z-index: 10006 !important;
  }

  footer a,
  footer button {
    pointer-events: all !important;
    position: relative !important;
    z-index: 10006 !important;
  }
}

/* ============================================================
   ÖNCESİ & SONRASI — YENİ LAYOUT (info + 2 slider)
   ============================================================ */

.ba-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

/* Sol içerik kolonu */
.ba-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ba-info .section-label {
  margin-bottom: 8px;
}

.ba-info .section-title {
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.ba-info-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ba-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.ba-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #333;
  font-weight: 500;
}

.ba-info-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #c9a84c;
}

.ba-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  background: #111;
  color: #fff;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
  transition: background .2s, transform .2s, box-shadow .2s;
  align-self: flex-start;
}

.ba-info-btn:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

/* Sağ: 2 slider yan yana */
.ba-layout .ba-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Mobil: info kolonu gizle, sadece slider'lar */
@media (max-width: 900px) {
  .ba-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ba-info {
    display: none;
  }

  .ba-layout .ba-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* ── ÜYE GİRİŞ MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}

.modal-overlay.modal--open {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  width: 360px;
  max-width: 90vw;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
  animation: modalIn .25s ease;
}

@keyframes modalIn {
  from {
    transform: scale(.92) translateY(12px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f3f4f6;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
  stroke: #2e7d32;
}

.modal-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.modal-msg {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.modal-msg a {
  color: #111;
  font-weight: 700;
  text-decoration: underline;
}