/* GLOBAL */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: #f5f7fa;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-top: 90px;
  color: #111;
}

#hizmetler,
#bolgeler,
#nasil,
#iletisim {
  scroll-margin-top: 140px;
}

img {
  max-width: 100%;
  height: auto;
}

/* NAVBAR */
.nav001 {
  background: #ffffff;
  padding: 16px 0;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, background 0.2s ease;
  z-index: 1000;
}

.nav001.nav-shadow {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.nav002-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav002-brand img {
  height: 48px;
  width: auto;
  display: block;
}

.nav002-top {
  font-size: 26px;
  font-weight: 900;
  color: #111;
  letter-spacing: 0.5px;
}

.nav002-bottom {
  font-size: 14px;
  font-weight: 600;
  color: #d7262e;
  letter-spacing: 2px;
  margin-left: 1px;
}

.nav-link {
  font-size: 16px;
  color: #333 !important;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #d7262e !important;
}

.nav-callbtn {
  background: #d7262e;
  padding: 10px 20px;
  border-radius: 12px;
  color: #fff !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(215, 38, 46, 0.45);
  transition: 0.25s ease;
  text-decoration: none !important;
}

.nav-callbtn:hover {
  background: #b91f27;
  transform: translateY(-1px);
}

/* HERO */
.section001 {
  margin-top: 35px;
}

.hero-carousel {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.08);
}

.section001-shell {
  background: #fff;
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  min-height: 360px;
}

.section001-left {
  flex: 1;
}


.section001-right {
  flex: 1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.section001-right img {
  width: 100%;
  height: auto;
  /* resmin oranını korur */
  display: block;
  /* boşluk sorunlarını önler */
}

/* ============================================
   HERO – MOBİLDE PADDING-TOP KAPATMA
==============================================*/
@media (max-width: 768px) {

  .section001-right {
    padding-top: 0 !important;
    /* 56% oranı devre dışı */
    height: auto !important;
    /* yükseklik resme göre ayarlanır */
    display: block;
  }

  .section001-right img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    /* kırpma yok */
    display: block;
  }
}


.section001-imglabel {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
}

.section001-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffe7e7;
  color: #d7262e;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section001-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section001-sub {
  font-size: 17px;
  color: #555;
  max-width: 540px;
}

.section001-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

/* Buttons */
.btn-red,
.btn-green,
.btn-ghost {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.25s ease;
}

.btn-red {
  background: #d7262e;
  color: #fff;
}

.btn-red:hover {
  background: #b91f27;
  transform: translateY(-1px);
}

.btn-green {
  background: #1e8c43;
  color: #fff;
}

.btn-green:hover {
  background: #166c34;
  transform: translateY(-1px);
}

.btn-ghost {
  background: #f2f3f7;
  color: #111;
}

.btn-ghost:hover {
  background: #e1e3eb;
}

.section001-features {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.section001-features i {
  color: #1e8c43;
  margin-right: 4px;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 52px;
}

.carousel-control-icon {
  background: rgba(255, 255, 255, 0.9);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* SECTIONS GENERIC */
.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #555;
}

/* HİZMETLER */
.section-services {
  padding: 50px 0;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d7262e;
  margin-bottom: 6px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.service-card p {
  font-size: 15px;
  color: #555;
}

/* BÖLGELER */
.section-regions {
  padding: 50px 0;
}

.regions-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
}

.regions-column {
  flex: 1;
  min-width: 220px;
}

.regions-column h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.regions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.regions-list li {
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f3f5fa;
  color: #333;
}

.regions-note {
  margin-top: 16px;
  font-size: 15px;
  color: #444;
}

/* NASIL ÇALIŞIR */
.section-steps {
  padding: 60px 0;
}

.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #d7262e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}

/* İLETİŞİM */
.section-contact {
  padding: 60px 0 50px 0;
}

.contact-shell {
  background: #fff;
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}

.contact-list {
  list-style: none;
  margin: 16px 0 0 0;
  padding: 0;
}

.contact-list li {
  font-size: 15px;
  color: #444;
  margin-bottom: 6px;
}

.contact-list i {
  color: #1e8c43;
  margin-right: 4px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Büyük CTA butonlar */
.btn-red-lg,
.btn-green-lg {
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: 0.25s ease;
}

.btn-red-lg {
  background: #d7262e;
  color: #fff;
}

.btn-red-lg:hover {
  background: #b91f27;
  transform: translateY(-1px);
}

.btn-green-lg {
  background: #1e8c43;
  color: #fff;
}

.btn-green-lg:hover {
  background: #166c34;
  transform: translateY(-1px);
}

/* FOOTER */
.site-footer {
  padding: 18px 0 24px 0;
  font-size: 13px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  body {
    padding-top: 80px;
  }

  .section001-shell {
    flex-direction: column;
    padding: 28px 22px;
  }

  .section001-title {
    font-size: 32px;
  }

  .section001-right {
    width: 100%;
    height: 260px;
  }

  .contact-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .section001-sub {
    font-size: 15px;
  }

  .btn-red,
  .btn-green,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}





/* ============================
   CONTACT002 – Premium CTA Section
============================ */

.contact002 {
  padding: 80px 0;
  background: linear-gradient(180deg, #f4f6f9 0%, #eef1f5 100%);
}

.contact002-shell {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.contact002-left {
  flex: 1;
  min-width: 320px;
}

.contact002-title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.contact002-text {
  font-size: 17px;
  color: #555;
  margin-bottom: 22px;
  max-width: 520px;
}

.contact002-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact002-features li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact002-features i {
  color: #1e8c43;
  font-size: 18px;
}

/* RIGHT SIDE CARD */
.contact002-card {
  flex: 0 0 360px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact002-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact002-card-desc {
  color: #555;
  font-size: 15px;
  margin-bottom: 20px;
}

/* Buttons */
.contact002-callbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #d7262e;
  color: #fff;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 18px;
  text-decoration: none;
  transition: .25s ease;
  margin-bottom: 14px;
}

.contact002-callbtn:hover {
  background: #b91f27;
  transform: translateY(-2px);
}

.contact002-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #1e8c43;
  color: #fff;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 17px;
  text-decoration: none;
  transition: .25s ease;
  margin-bottom: 18px;
}

.contact002-whatsapp:hover {
  background: #176d35;
  transform: translateY(-2px);
}

.contact002-info {
  font-size: 14px;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f3f6;
  padding: 6px 12px;
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact002-shell {
    flex-direction: column;
  }

  .contact002-card {
    width: 100%;
    flex: unset;
  }

  .contact002-title {
    font-size: 26px;
  }
}

/* ============================
   STEPS002 – Modern How It Works Section
============================ */

.section-steps002 {
  padding: 50px 0;
  background: #f6f8fb;
}

/* Header */
.steps002-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.steps002-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
}

.steps002-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Cards */
.steps002-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
  /* TÜM KARTLAR EŞİT YÜKSEKLİK */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.steps002-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

/* Number */
.steps002-number {
  width: 38px;
  height: 38px;
  background: #d7262e;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

/* Title */
.steps002-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  color: #111;
  line-height: 1.3;
}

.steps002-card p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .steps002-header h2 {
    font-size: 26px;
  }

  .steps002-title {
    font-size: 18px;
  }
}

/* CONTACT003 SECTION */
.contact003 {
  padding: 50px 0;
  background: #f5f7fa;
}

.contact003-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact003-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact003-header p {
  font-size: 16px;
  color: #555;
}

/* FLEX WRAPPER */
.contact003-shell {
  display: flex;
  gap: 40px;
  align-items: stretch;
  /* TÜM KARTLAR EŞİT YÜKSEKLİK */
  flex-wrap: wrap;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  flex: 1;
  min-width: 320px;

  display: flex;
  /* KARTLARIN İÇİNDEKİ İÇERİKLER */
  flex-direction: column;
  /* ÜST VE ALT BLOKLARI AYIRIR */
  justify-content: space-between;
}

/* TITLES */
.contact003-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

/* TEXT */
.contact003-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* FEATURES */
.contact003-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact003-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.contact003-features i {
  color: #1e8c43;
  font-size: 18px;
}

/* RIGHT SIDE SUBTEXT */
.contact003-subtext {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* BUTTONS */
.contact003-callbtn {
  background: #d7262e;
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

.contact003-callbtn:hover {
  background: #b71f27;
}

.contact003-whatsapp {
  background: #1e8c43;
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  display: block;
  margin-bottom: 18px;
}

.contact003-whatsapp:hover {
  background: #176d36;
}

/* INFO BADGE */
.contact003-info {
  background: #eef0f3;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact003-header h2 {
    font-size: 26px;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-top {
  flex-grow: 1;
}

.card-bottom {
  margin-top: 20px;
}

.section-regions {
  padding: 50px 0;
  background: #f4f6fa;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.region-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.region-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-tags span {
  display: inline-block;
  background: #f1f3f7;
  padding: 6px 12px;
  border-radius: 50px;
  margin: 4px;
  font-size: 14px;
}

.regions-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
  color: #555;
}

/* ========================
   FOOTER001 – Modern Footer
======================== */

.footer001 {
  background: #f4f5f7;
  padding: 25px 0;
  margin-top: 20px;
  border-top: 1px solid #e2e4e8;
}

.footer001-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #444;
}

.footer001-right a {
  color: #d7262e;
  font-weight: 700;
  text-decoration: none;
}

.footer001-right a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .footer001-shell {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.bolgeler4001 {
  padding: 80px 0;
  background: #f5f7fa;
}

.bolgeler4001-header {
  text-align: center;
  margin-bottom: 50px;
}

.bolgeler4001-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.bolgeler4001-header p {
  width: 70%;
  margin: auto;
  color: #555;
  font-size: 16px;
}

.bolgeler4001-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.bolgeler4001-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  flex: 1;
  min-width: 320px;
}

.bolgeler4001-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bolgeler4001-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bolgeler4001-tags a {
  background: #eef1f4;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  transition: 0.2s;
}

.bolgeler4001-tags a:hover {
  background: #1e8c43;
  color: #fff;
}

.bolgeler4001-footer {
  margin-top: 40px;
  text-align: center;
  color: #444;
  font-size: 15px;
}

/* ===========================================
   GALLERY2001 — FINAL VERSION WITH ARROWS
=========================================== */

.gallery2001-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery2001-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: gallerySlide 40s linear infinite;
}

@keyframes gallerySlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.gallery2001-item {
  flex: 0 0 400px;
  height: 250px;
  max-width: 400px;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Lightbox */
#gallery2001-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#gallery2001-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  /* resim her zaman tamamen görünür */
  border-radius: 14px;
  background: #000000;
}



#gallery2001-close {
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 38px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {

  .gallery2001-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 12px;
    -webkit-overflow-scrolling: touch;
  }

  .gallery2001-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: none;
    /* KRİTİK */
  }

  .gallery2001-item {
    flex: 0 0 85%;
    height: 220px;
    scroll-snap-align: start;
  }

  .gallery2001-wrapper {
    scroll-snap-type: x mandatory;
  }
}


/* ===========================
   GALLERY2001 – MOBILE FIX
=========================== */



/* ===========================
   MEGA MENU 4001
   =========================== */
.mega4001-trigger {
  position: relative;
}

/* Ana kutu */
.mega4001-wrapper {
  position: absolute;
  top: 57px;
  left: -68px;
  transform: translateX(-50%);
  width: 1300px;
  background: #fff;
  padding: 25px;
  border-radius: 0px 0px 12px 12px;
  display: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

/* Açıkken */
.mega4001-trigger.mega-open .mega4001-wrapper {
  display: block;
}

.mega4001-inner {
  display: flex;
  gap: 25px;
}

/* Sol taraf */
.mega4001-left {
  width: 260px;
  border-right: 1px solid #eee;
  padding-right: 15px;
  list-style: none;
}

.mega4001-left li {
  padding: 10px 0;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
}

.mega4001-left li:hover,
.mega4001-left li.active {
  color: #d7262e;
}

/* Sağ taraf paneller */
.mega4001-right {
  flex: 1;
}

.mega4001-panel {
  display: none;
}

.mega4001-panel.active {
  display: block;
}

.mega4001-panel h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.mega4001-panel ul {
  list-style: none;
  padding: 0;
  columns: 2;
}

.mega4001-panel ul li {
  padding: 5px 0;
}

/* ===============================
   MEGA SCROLL SYSTEM (bağımsız)
   =============================== */

/* Mega menü sabit yükseklik */
.megaScroll-wrapper {
  height: 300px !important;
  overflow: hidden;
}

/* İç yapı %100 yükseklik */
.megaScroll-inner {
  height: 100%;
  display: flex;
  gap: 25px;
}

/* Sol taraf scroll */
.megaScroll-leftbox {
  width: 260px;
  flex-shrink: 0;
  height: 100%;
  overflow-y: auto;
  /* sadece dikey scroll */
  overflow-x: hidden;
  /* yatay scroll kapalı */
  padding-right: 10px;
  border-right: 1px solid #eee;
}

/* Soldaki ul */
.megaScroll-left {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Sağ taraf */
.megaScroll-right {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
}

.megaNeighborhood-panel {
  height: 100%;
  overflow-y: auto;
  padding-right: 10px;
}

/* Scrollbar */
.megaScroll-leftbox::-webkit-scrollbar {
  width: 6px;
}

.megaScroll-leftbox::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 6px;
}

.megaScroll-leftbox::-webkit-scrollbar-thumb:hover {
  background: #bcbcbc;
}

/* Dinamik semt listesi için eski görünümü geri getir */
.megaNeighborhood-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  /* 2 kolon görünüm */
}

.megaNeighborhood-panel ul li {
  padding: 5px 0;
}

.megaNeighborhood-panel ul li a {
  color: #333;
  text-decoration: none;
  transition: 0.2s;
  font-size: 15px;
}

.megaNeighborhood-panel ul li a:hover {
  color: #d7262e;
  text-decoration: underline;
}

/* Başlık görünümü eski mega menü stiline göre */
.megaNeighborhood-panel h4 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}


/* ===============================
   MEGA MENÜ 4001 - MOBİL REVİZYON
   (lg altı ekranlar)
   =============================== */
@media (max-width: 991.98px) {

  /* Mega menü artık overlay değil, nav içinde açılıp kapanan blok */
  .mega4001-wrapper {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 12px 10px 16px;
    border-radius: 0 0 10px 10px;
    box-shadow: none;
    max-height: 70vh;
    overflow-y: auto;
  }

  /* Yükseklik sabitlemesini mobilde kaldır */
  .megaScroll-wrapper {
    height: auto !important;
  }

  .mega4001-inner,
  .megaScroll-inner {
    flex-direction: column;
    gap: 12px;
    height: auto;
    align-items: stretch;
  }

  /* Sol taraf: tam genişlik + dikey, ama scroll yok, normal liste */
  .megaScroll-leftbox {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow-y: visible;
    overflow-x: hidden;
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-right: 0;
    margin-bottom: 8px;
  }

  .megaScroll-left {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    width: 100%;
  }

  .megaScroll-left li {
    width: 48%;
    /* 2 sütun halinde ilçe isimleri */
    padding: 6px 0;
  }

  /* Sağ taraf tam genişlik, kolon sayısını 1'e indir */
  .megaScroll-right {
    width: 100%;
    height: auto;
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .megaNeighborhood-panel {
    overflow: visible;
    padding-right: 0;
  }

  .megaNeighborhood-panel ul {
    columns: 1;
  }

  /* Bölgeler linkinin mobilde saçma mavi focus çerçevesini kaldır */
  .mega4001-toggle:focus {
    outline: none;
    box-shadow: none;
  }
}

/* MOBİL SELECTBOX GÖRÜNÜMÜ */
.megaMobile-select {
  display: none;
  width: 100%;
  margin-bottom: 12px;
}

.megaMobile-select select {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* FLOATING CONTACT BUTTONS */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-contact .floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-contact .floating-btn i {
  font-size: 1.2rem;
}

.floating-contact .floating-btn.whatsapp {
  background: #25d366;
}

.floating-contact .floating-btn.call {
  background: #d7262e;
}

.floating-contact .floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  .floating-contact {
    right: 12px;
    bottom: 12px;
  }

  .floating-contact .floating-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}


/* Mobilde select aktif, sol liste gizli */
@media (max-width: 991.98px) {
  .megaMobile-select {
    display: block;
  }

  .megaScroll-leftbox {
    display: none !important;
  }

  /* Sağ semt listesi tam genişlik olsun */
  .megaScroll-right {
    width: 100%;
  }
}

/* Mobilde grid tam genişlik olsun */
@media (max-width: 768px) {
  .bolgeler4001-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
    margin: 0;
  }

  .bolgeler4001-card {
    width: 100%;
    padding: 18px 20px;
    border-radius: 14px;
  }

  .bolgeler4001-tags a {
    font-size: 15px;
    padding: 8px 14px;
  }

  .bolgeler4001 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Tüm büyük CTA butonlarda underline kaldırma */
.btn-red-lg,
.btn-green-lg,
.btn-red,
.btn-green,
.btn-ghost,
.contact002-callbtn,
.contact002-whatsapp,
.contact003-callbtn,
.contact003-whatsapp,
.nav-callbtn {
  text-decoration: none !important;
}

.btn-red-lg:hover,
.btn-green-lg:hover,
.btn-red:hover,
.btn-green:hover,
.btn-ghost:hover,
.contact002-callbtn:hover,
.contact002-whatsapp:hover,
.contact003-callbtn:hover,
.contact003-whatsapp:hover {
  text-decoration: none !important;
}

/* ========== HERO MOBİL GÖRSEL – TEMİZ ÇÖZÜM ========== */
@media (max-width: 991px) {

  .section001-shell {
    flex-direction: column;
    padding: 28px 22px;
  }

  .section001-title {
    font-size: 32px;
  }

  .section001-right {
    width: 100%;
    max-width: 100%;
    display: block;
    border-radius: 18px;
    margin-top: 18px;

    /* YÜKSEKLİK İÇİN ORANLI ÇÖZÜM */
    position: relative;
    padding-top: 56%;
    /* 16:9 oran – istersen 60–65 yap */
    background-size: cover;
    background-position: center;
  }

  .section001-right::before {
    content: "";
    position: absolute;
    inset: 0;
  }
}


/* ========== BLOG HERO (Küçük başlık alanı) ========== */
.blogHero002 {
  padding: 60px 0 30px;
  text-align: center;
}

.blogHero002 .blog-badge {
  padding: 6px 14px;
  background: #f2f4ff;
  border-radius: 10px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 12px;
}

.blogHero002 h1 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.blogHero002 p {
  font-size: 17px;
  color: #555;
}

/* ========== BLOG GRID ========== */
.blog-grid002 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-top: 30px;
}

/* SOL TARAF — MAKALE */
.blog-main {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.blog-main h2 {
  font-size: 26px;
  margin-bottom: 14px;
  font-weight: 800;
}

.blog-main h3 {
  margin-top: 28px;
  font-size: 20px;
  font-weight: 700;
}

.blog-main p,
.blog-main li {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.blog-main ul {
  margin-left: 20px;
}

/* CTA */
.blog-cta002 {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

/* SAĞ TARAF — BİLGİ KARTI */
.blog-sidecard {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: fit-content;
}

.blog-sidecard h4 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 18px;
}

.blog-sidecard p {
  margin: 4px 0 10px;
  color: #444;
  font-size: 15px;
}

.sidecard-call {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #d7262e;
  color: #fff !important;
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .blog-grid002 {
    grid-template-columns: 1fr;
  }
}