/* ================= HEADER HİZMETLER DESKTOP DROP BAŞLANGIÇ ================= */

.services-drop-panel{
  min-width: 340px;
  padding: 16px;
}

.services-drop-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.services-drop-grid a{
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  transition: .3s;
}

.services-drop-grid a:hover{
  background: rgba(255,255,255,0.12);
}

.services-drop-footer{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.all-services-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  background: #ffffff;
  color: #111827 !important;
  font-weight: 600;
  text-decoration: none;
}

.all-services-btn:hover{
  opacity: .92;
}

.mobile-all-services-btn{
  display: block;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  font-weight: 600;
}

/* ================= HEADER HİZMETLER DESKTOP DROP BİTİŞ ================= */

.services-drop-footer{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.services-drop-footer .all-services-btn{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 64px !important;
  padding: 16px 24px !important;
  border-radius: 16px !important;
  border: 0 !important;
  text-decoration: none !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: .3px !important;
  text-align: center !important;
  white-space: nowrap !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.22) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;

  background: linear-gradient(135deg, #7c4dff 0%, #ff3d7f 50%, #ff8a00 100%) !important;
}

.services-drop-footer .all-services-btn:hover{
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.28) !important;
  background: linear-gradient(135deg, #6a3df0 0%, #ff2f6d 50%, #ff7a00 100%) !important;
}

.services-drop-footer .all-services-btn::before,
.services-drop-footer .all-services-btn::after{
  display: none !important;
  content: none !important;
}

/* ================= MOBILE MENU YENİ TASARIM BAŞLANGIÇ ================= */

@media (max-width: 991px){

  .menu-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--header-text);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
  }

  .nav{
    display: none;
  }

  .mobile-menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 92%;
    max-width: 395px;
    height: 100vh;
    background: #f4f4f4;
    z-index: 99999;
    transform: translateX(-100%);
    transition: transform .35s ease;
    overflow-y: auto;
    box-shadow: 10px 0 35px rgba(0,0,0,.18);
  }

  .mobile-menu.active{
    transform: translateX(0);
  }

  .overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 99990;
  }

  .overlay.active{
    opacity: 1;
    visibility: visible;
  }

  .mobile-header{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 6px 14px 4px;
    background: #f4f4f4;
  }

  .mobile-logo{
    max-width: 150px;
    margin: 0;
  }

  .mobile-logo img{
    display: block;
    max-width: 100%;
    height: auto;
  }

  .close-btn{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-top: 2px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: #000;
    cursor: pointer;
  }

  .mobile-body{
    padding: 4px 0 0;
  }

  .mobile-item{
    display: block;
    width: 100%;
    background: #f4f4f4;
    border-top: 1px solid #d8a06c;
  }

  .mobile-item:last-child{
    border-bottom: 1px solid #d8a06c;
  }

  .mobile-link{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 74px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .mobile-link > a{
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 74px;
    margin: 0;
    padding: 0 72px 0 0;
    color: #000;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    box-sizing: border-box;
  }

  .mobile-link > a:hover{
    color: #000;
    text-decoration: none;
  }

  .toggle-btn{
    position: absolute;
    top: 50%;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
    background: #1f2a44;
    color: #fff;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    z-index: 3;
    transition: transform .25s ease, background .25s ease;
  }

  .toggle-btn.active{
    transform: translateY(-50%) rotate(90deg);
  }

  .submenu{
    display: none;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    box-sizing: border-box;
  }

  .submenu.open{
    display: block;
  }

  .submenu a{
    display: block;
    width: 100%;
    margin: 0;
    padding: 18px 20px;
    background: #f4f4f4;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    border-top: 1px solid rgba(216,160,108,.35);
    box-sizing: border-box;
  }

  .submenu a:hover{
    color: #000;
    background: #efefef;
    text-decoration: none;
  }

  .submenu a:first-child{
    border-top: 1px solid rgba(216,160,108,.35);
  }

  .submenu a:last-child{
    border-bottom: 0;
  }

  .mobile-all-services-btn{
    display: block;
    margin-top: 10px;
    padding: 14px 16px;
    border: 1px solid #d8a06c;
    border-radius: 0;
    background: transparent;
    color: #000 !important;
    text-align: left;
    font-size: 15px;
    font-weight: 700 !important;
    text-decoration: none;
  }

  .mobile-contact{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-bottom: 1px solid #d8a06c;
  }

  .mobile-contact i,
  .mobile-contact svg{
    flex: 0 0 auto;
    font-size: 26px;
    color: #c79058;
  }

  .mobile-contact a{
    color: #111;
    font-size: 16px;
    text-decoration: none;
    word-break: break-word;
  }

  .mobile-social{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 46px 24px 24px;
  }

  .mobile-social a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid #d8a06c;
    border-radius: 50%;
    color: #7c7c7c;
    font-size: 24px;
    text-decoration: none;
    transition: .25s ease;
  }

  .mobile-social a:hover{
    transform: translateY(-2px);
    color: #000;
    border-color: #c79058;
  }
}

@media (min-width: 992px){
  .menu-btn,
  .mobile-menu,
  .overlay{
    display: none !important;
  }
}

/* ================= MOBILE MENU YENİ TASARIM BİTİŞ ================= */

.mobile-menu{
  background: var(--header-bg);
}

.mobile-header{
  background: var(--header-bg);
}

.mobile-body{
  background: var(--header-bg);
}

.mobile-item{
  background: var(--header-bg);
  border-top: 1px solid rgba(255,255,255,.18);
}

.mobile-item:last-child{
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.mobile-link > a{
  color: var(--header-text);
}

.mobile-link > a:hover{
  color: var(--header-text);
}

.close-btn{
  color: var(--header-text);
}

.submenu{
  background: var(--header-bg);
}

.submenu a{
  background: var(--header-bg);
  color: var(--header-text);
  border-top: 1px solid rgba(255,255,255,.12);
}

.submenu a:hover{
  color: var(--header-text);
  background: rgba(255,255,255,.06);
}

.mobile-all-services-btn{
  color: var(--header-text) !important;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
}

.mobile-contact{
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.mobile-contact a{
  color: var(--header-text);
}

.mobile-social a{
  color: var(--header-text);
  border: 1px solid rgba(255,255,255,.25);
}

.mobile-social a:hover{
  color: var(--header-text);
  border-color: rgba(255,255,255,.45);
}

/* ================= MOBILE TOP SPACE FIX BAŞLANGIÇ ================= */

@media (max-width: 991px){

  .mobile-menu{
    top: 0 !important;
    padding-top: 0 !important;
  }

  .mobile-header{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    min-height: auto !important;
    align-items: flex-start !important;
  }

  .mobile-logo{
    margin: 0 !important;
    padding: 0 !important;
    max-width: 150px !important;
  }

  .mobile-logo img{
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .close-btn{
    margin-top: 0 !important;
    padding-top: 0 !important;
    align-items: flex-start !important;
    height: 32px !important;
  }

  .mobile-body{
    padding-top: 0 !important;
  }

}

/* ================= MOBILE TOP SPACE FIX BİTİŞ ================= */

/* ===== GENEL ===== */
.contact-area{
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a, #020617);
  font-family: Segoe UI, Arial, sans-serif;
}

.container{
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* GRID */
.contact-row{
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* EŞİT KOLON */
.contact-left,
.contact-right{
  flex: 1;
  display: flex;
}

/* ===== FORM ===== */
.contact-form{
  width: 100%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-form h3{
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

/* INPUT */
.form-control{
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  resize: none;
  box-sizing: border-box;
}

.form-control::placeholder{
  color: #aaa;
}

.form-control:focus{
  border-color: #facc15;
  box-shadow: 0 0 10px rgba(250,204,21,.4);
  outline: none;
}

/* BUTTON */
.cmn-btn{
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  transition: .3s;
  cursor: pointer;
}

.cmn-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(34,197,94,.4);
}

/* ===== SAĞ KART ===== */
.contact-place{
  width: 100%;
  background: linear-gradient(135deg, #020617, #0b1c26);
  border-radius: 22px;
  padding: 35px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 15px 40px rgba(0,0,0,.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ITEM */
.contact-item{
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-item:last-child{
  margin-bottom: 0;
}

/* ICON */
.contact-icon{
  min-width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #000;
}

/* TEXT */
.contact-text h4{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #facc15;
}

.contact-text p,
.contact-text a,
.contact-text div{
  font-size: 15px;
  color: #e5e7eb;
  text-decoration: none;
  display: block;
  line-height: 1.6;
}

/* ===== MAP ===== */
.map-wrapper{
  margin-top: 60px;
}

.map-title{
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.map-box{
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  background: #fff;
}

.map-box iframe{
  width: 100%;
  height: 400px;
  border: 0;
}

/* ===== MOBİL ===== */
@media (max-width: 768px){

  .contact-area{
    padding: 50px 0;
  }

  .contact-row{
    flex-direction: column;
  }

  .contact-form,
  .contact-place{
    padding: 25px;
  }

  .map-box iframe{
    height: 250px;
  }

}

.footer-area{
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 30px;
}

.footer-area a{
  color: var(--footer-text);
  text-decoration: none;
  transition: .3s;
}

.footer-area a:hover{
  color: var(--footer-title);
}

.footer-area .container{
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-row{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-col{
  flex: 1;
  min-width: 220px;
}

.footer-logo img{
  max-width: 180px;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.footer-title{
  color: var(--footer-title);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.footer-title::after{
  content: "+";
}

.footer-box.active .footer-title::after{
  content: "-";
}

.footer-content{
  transition: .3s;
}

.footer-content a{
  display: block;
  margin-bottom: 8px;
}

.footer-contact .contact-item{
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-contact .icon{
  color: var(--footer-title);
}

.footer-social{
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a{
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--footer-title);
}

.footer-social a:hover{
  background: var(--footer-title);
  color: #000;
}

.footer-bottom{
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--footer-title);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-right{
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

@media (max-width: 768px){
  .footer-row{
    flex-direction: column;
  }

  .footer-content{
    max-height: 0;
    overflow: hidden;
  }

  .footer-box.active .footer-content{
    max-height: 800px;
    padding-top: 10px;
  }

  .footer-bottom{
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-right{
    justify-content: center;
  }
}

@media (min-width: 769px){
  .footer-title::after{
    display: none;
  }

  .footer-content{
    max-height: none !important;
    overflow: visible !important;
    padding-top: 0 !important;
  }
}

/* ================= INDEX HİZMET KARTLARI FULL WIDTH FIX ================= */

@media (min-width: 992px){

  /* hizmet alanının dış kapsayıcısını genişlet */
  .services-area,
  .service-area,
  .hizmetler-area,
  .home-services,
  .services-section{
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* container yüzünden oluşan sağ-sol boşluğu kaldır */
  .services-area .container,
  .service-area .container,
  .hizmetler-area .container,
  .home-services .container,
  .services-section .container{
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* row ve grid alanlarını tamamen aç */
  .services-grid,
  .services-row,
  .service-list,
  .hizmetler-grid,
  .hizmetler-row{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* bootstrap kolon iç boşluklarını azalt */
  .services-area .row,
  .service-area .row,
  .hizmetler-area .row,
  .home-services .row,
  .services-section .row{
    margin-left: -10px !important;
    margin-right: -10px !important;
  }

  .services-area [class*="col-"],
  .service-area [class*="col-"],
  .hizmetler-area [class*="col-"],
  .home-services [class*="col-"],
  .services-section [class*="col-"]{
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* kartlar alanı tam doldursun */
  .service-card,
  .services-card,
  .hizmet-card,
  .hizmetler-card{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 1400px){
  .services-area .container,
  .service-area .container,
  .hizmetler-area .container,
  .home-services .container,
  .services-section .container{
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* ================= INDEX HİZMET KARTLARI FULL WIDTH FIX ================= */


/* ========================= */
/* 📱 MOBİL FULLSCREEN */
/* ========================= */

@media (max-width: 768px){

  #istatistikSlider{
    flex-wrap: nowrap;
    overflow: hidden;
    scroll-behavior: smooth;
  }

  .istatistik-item{
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* SCROLLBAR YOK */
#istatistikSlider::-webkit-scrollbar{
  display: none;
}

#istatistikSlider{
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ========================= REFERANSLAR ALANI BAŞLANGIÇ ========================= */

.logo-area{
  background: var(--referans-bg);
  padding: 100px 0;
}

.logo-area .section-title,
.logo-area .referansText{
  color: var(--referans-text) !important;
}

.logo-area .section-title{
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.logo-area .referans-desc{
  text-align: center;
  font-size: 1rem;
  margin-bottom: 40px;
}

.logo-slider{
  width: 100%;
}

.logo-item{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  min-height: 120px;
}

.logo-item img{
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* hover istersen kalsın */
.logo-item:hover{
  transform: translateY(-3px);
  transition: .3s;
}

/* ========================= REFERANSLAR ALANI BİTİŞ ========================= */

/* ================= REFERANS BAŞLIK AÇIKLAMA ORTALA ================= */

.logo-area .section-title,
.logo-area .referansText,
.logo-area .referans-desc{
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.logo-area .referans-desc{
  max-width: 900px;
}

/* ================= REFERANS BAŞLIK AÇIKLAMA ORTALA ================= */

/* ========================= REFERANSLAR ALANI BAŞLANGIÇ ========================= */

.logo-area{
  background: var(--referans-bg);
  padding: 100px 0;
}

.logo-area .section-title,
.logo-area .referansText,
.logo-area .referans-desc{
  color: var(--referans-text) !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.logo-area .section-title{
  margin-bottom: 10px;
  font-weight: 700;
}

.logo-area .referans-desc{
  max-width: 900px;
  font-size: 1rem;
  margin-bottom: 40px;
}

.logo-slider{
  width: 100%;
}

.logo-item{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  min-height: 120px;
}

.logo-item img{
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-item:hover{
  transform: translateY(-3px);
  transition: .3s;
}

/* ========================= REFERANSLAR ALANI BİTİŞ ========================= */
/* ========================= HABER ALANI BAŞLANGIÇ ========================= */

.news-area{
  padding: 80px 0;
}

.news-area-no-gap{
  margin: 0;
}

.news-top{
  text-align: center;
  margin-bottom: 40px;
}

.news-mini-title{
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: #e9eef7;
  color: #0f172a;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
}

.news-top h2{
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.15;
  color: #0f172a;
}

.news-top p{
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
}

.news-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card{
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.news-image{
  position: relative;
  display: block;
  overflow: hidden;
}

.news-image img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.news-card:hover .news-image img{
  transform: scale(1.05);
}

.news-badge-card{
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.news-content{
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date-text{
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 14px;
}

.news-title{
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.35;
}

.news-title a{
  color: #0f172a;
  text-decoration: none;
  transition: .25s ease;
}

.news-title a:hover{
  color: #2563eb;
}

.news-desc{
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
}

.news-footer{
  margin-top: auto;
  padding-top: 22px;
}

.news-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: .25s ease;
}

.news-link:hover{
  background: #1d4ed8;
  color: #fff;
}

.news-button-wrap{
  text-align: center;
  margin-top: 38px;
}

.more-news-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: .25s ease;
}

.more-news-btn:hover{
  background: #1e293b;
  color: #fff;
}

/* ========================= MOBİL ========================= */

@media (max-width: 1199px){
  .news-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px){
  .news-area{
    padding: 55px 0;
  }

  .news-top{
    margin-bottom: 28px;
  }

  .news-top h2{
    font-size: 32px;
  }

  .news-top p{
    font-size: 16px;
  }

  .news-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-image img{
    height: 220px;
  }

  .news-content{
    padding: 20px 20px 22px;
  }

  .news-title{
    font-size: 20px;
  }

  .news-desc{
    font-size: 16px;
    line-height: 1.7;
  }

  .news-button-wrap{
    margin-top: 28px;
  }
}

/* ========================= HABER ALANI BİTİŞ ========================= */

/* ===== MAP FLOATING STYLE ===== */
.map-wrapper{
  margin-top: 60px;
  position: relative;
}

.map-floating-card{
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 25px 60px rgba(0,0,0,.35),
    0 10px 25px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.map-floating-card::before{
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(250,204,21,.18) 0%, rgba(250,204,21,0) 70%);
  pointer-events: none;
}

.map-floating-card::after{
  content: "";
  position: absolute;
  left: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(34,197,94,.16) 0%, rgba(34,197,94,0) 70%);
  pointer-events: none;
}

.map-topbar{
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 20px;
}

.map-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(250,204,21,.12);
  border: 1px solid rgba(250,204,21,.25);
  color: #facc15;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.map-title{
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
}

.map-desc{
  max-width: 760px;
  margin: 0 auto;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
}

.map-box{
  position: relative;
  z-index: 2;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 20px 40px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.35);
}

.map-box iframe{
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: saturate(1.02) contrast(1.01);
}

/* ===== MOBİL ===== */
@media (max-width: 768px){

  .map-wrapper{
    margin-top: 40px;
  }

  .map-floating-card{
    padding: 16px;
    border-radius: 22px;
  }

  .map-title{
    font-size: 1.35rem;
  }

  .map-desc{
    font-size: 14px;
  }

  .map-box{
    border-radius: 18px;
  }

  .map-box iframe{
    height: 280px;
  }
}

/* ================= GOOGLE YORUMLARI TAM GENİŞLİK DESKTOP DÜZELTME ================= */
.google-review-area{
    width:100%;
    padding:100px 0 70px;
    overflow:hidden;
}

.google-review-area .container{
    max-width:1600px !important;
    width:100% !important;
    margin:0 auto;
    padding-left:30px;
    padding-right:30px;
}

.google-review-head{
    text-align:center;
    margin-bottom:40px;
}

.google-review-mini-title{
    display:inline-block;
    padding:10px 18px;
    border-radius:30px;
    background:#f3f6fb;
    color:#0f766e;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.google-review-title{
    font-size:52px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.google-review-desc{
    max-width:980px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:#475569;
}

.google-review-slider{
    display:flex;
    align-items:stretch;
    gap:24px;
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    padding:10px 0 20px;
    margin:0;
    scrollbar-width:none;
}

.google-review-slider::-webkit-scrollbar{
    display:none;
}

.google-review-card{
    flex:0 0 calc(33.3333% - 16px);
    max-width:calc(33.3333% - 16px);
    min-height:295px;
    border-radius:28px;
    padding:28px;
    box-sizing:border-box;
    color:#fff;
    box-shadow:0 18px 50px rgba(2, 6, 23, 0.12);
}

.google-review-card:nth-child(1n){
    background:linear-gradient(135deg,#15803d,#16a34a);
}
.google-review-card:nth-child(2n){
    background:linear-gradient(135deg,#7c3aed,#8b5cf6);
}
.google-review-card:nth-child(3n){
    background:linear-gradient(135deg,#ea580c,#f97316);
}
.google-review-card:nth-child(4n){
    background:linear-gradient(135deg,#db2777,#ec4899);
}
.google-review-card:nth-child(5n){
    background:linear-gradient(135deg,#0891b2,#06b6d4);
}
.google-review-card:nth-child(6n){
    background:linear-gradient(135deg,#2563eb,#3b82f6);
}

.google-review-top{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:22px;
}

.google-avatar{
    width:64px;
    height:64px;
    min-width:64px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:32px;
    font-weight:800;
    box-shadow:0 8px 20px rgba(0,0,0,0.18);
}

.google-review-meta{
    flex:1;
}

.google-user-name{
    font-size:20px;
    font-weight:800;
    line-height:1.3;
    margin-bottom:8px;
    color:#fff;
}

.google-source{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:12px;
    font-size:14px;
    font-weight:600;
    color:#fff;
}

.google-source img{
    width:22px;
    height:22px;
    object-fit:contain;
}

.google-word{
    display:inline-flex;
    font-weight:800;
    letter-spacing:.2px;
}

.g-blue{color:#4285F4;}
.g-red{color:#EA4335;}
.g-yellow{color:#FBBC05;}
.g-green{color:#34A853;}

.google-source-text{
    color:#fff;
    opacity:.95;
}

.google-rating{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
}

.google-stars{
    color:#facc15;
    font-size:20px;
    letter-spacing:2px;
}

.google-score{
    font-size:16px;
    font-weight:800;
    color:#fff;
}

.google-time{
    font-size:14px;
    color:rgba(255,255,255,.92);
}

.google-review-text{
    font-size:18px;
    line-height:1.75;
    color:#fff;
    word-break:break-word;
}

.google-review-button-wrap{
    text-align:center;
    margin-top:22px;
}

.review-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:290px;
    min-height:64px;
    padding:16px 34px;
    border-radius:999px;
    background:linear-gradient(90deg,#3b82f6,#6366f1);
    color:#fff;
    font-size:18px;
    font-weight:800;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(59,130,246,.28);
    transition:.3s ease;
}

.review-btn:hover{
    transform:translateY(-2px);
    color:#fff;
}

@media (max-width:1199px){
    .google-review-card{
        flex:0 0 calc(50% - 12px);
        max-width:calc(50% - 12px);
    }

    .google-review-title{
        font-size:42px;
    }
}

@media (max-width:767px){
    .google-review-area{
        padding:70px 0 50px;
    }

    .google-review-area .container{
        padding-left:15px;
        padding-right:15px;
    }

    .google-review-title{
        font-size:32px;
    }

    .google-review-desc{
        font-size:16px;
        line-height:1.7;
    }

    .google-review-slider{
        gap:16px;
    }

    .google-review-card{
        flex:0 0 100%;
        max-width:100%;
        min-height:auto;
        padding:22px;
        border-radius:22px;
    }

    .google-avatar{
        width:56px;
        height:56px;
        min-width:56px;
        font-size:28px;
    }

    .google-user-name{
        font-size:18px;
    }

    .google-review-text{
        font-size:16px;
    }

    .review-btn{
        min-width:240px;
        min-height:56px;
        font-size:16px;
    }
}

/* INDEX BLOG ALANI FULL WIDTH */
.blog-area,
.blog-section,
.news-area,
.blog-wrap,
.blog-page-area,
.blog-page-section{
    width:100% !important;
    padding-left:0 !important;
    padding-right:0 !important;
}

.blog-area .container,
.blog-section .container,
.news-area .container,
.blog-wrap .container,
.blog-page-area .container,
.blog-page-section .container,
.blog-area .container-fluid,
.blog-section .container-fluid,
.news-area .container-fluid,
.blog-wrap .container-fluid,
.blog-page-area .container-fluid,
.blog-page-section .container-fluid{
    max-width:1700px !important;
    width:100% !important;
    padding-left:20px !important;
    padding-right:20px !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

.blog-area .row,
.blog-section .row,
.news-area .row,
.blog-wrap .row,
.blog-page-area .row,
.blog-page-section .row{
    display:flex !important;
    flex-wrap:wrap !important;
    margin-left:-12px !important;
    margin-right:-12px !important;
}

.blog-area .row > div,
.blog-section .row > div,
.news-area .row > div,
.blog-wrap .row > div,
.blog-page-area .row > div,
.blog-page-section .row > div{
    padding-left:12px !important;
    padding-right:12px !important;
}

@media (min-width:1200px){
    .blog-area .row > div,
    .blog-section .row > div,
    .news-area .row > div,
    .blog-wrap .row > div,
    .blog-page-area .row > div,
    .blog-page-section .row > div{
        width:33.333333% !important;
        max-width:33.333333% !important;
        flex:0 0 33.333333% !important;
    }
}

@media (max-width:991px){
    .blog-area .row > div,
    .blog-section .row > div,
    .news-area .row > div,
    .blog-wrap .row > div,
    .blog-page-area .row > div,
    .blog-page-section .row > div{
        width:50% !important;
        max-width:50% !important;
        flex:0 0 50% !important;
    }
}

@media (max-width:767px){
    .blog-area .container,
    .blog-section .container,
    .news-area .container,
    .blog-wrap .container,
    .blog-page-area .container,
    .blog-page-section .container{
        padding-left:15px !important;
        padding-right:15px !important;
    }

    .blog-area .row > div,
    .blog-section .row > div,
    .news-area .row > div,
    .blog-wrap .row > div,
    .blog-page-area .row > div,
    .blog-page-section .row > div{
        width:100% !important;
        max-width:100% !important;
        flex:0 0 100% !important;
    }
}

.services-top{
    text-align:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

.services-top .services-mini-title,
.services-top h2,
.services-top p{
    text-align:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

.services-top p{
    max-width:700px;
}

.service-content{
    padding-top:15px !important;
}

.service-date-text{
    margin-bottom:8px !important;
    line-height:1 !important;
}

.service-title{
    margin-top:0 !important;
    margin-bottom:12px !important;
    line-height:1.25 !important;
}

.service-title a{
    display:block;
    margin-top:0 !important;
}

.service-desc{
    margin-top:0 !important;
}

/* ========================= İSTATİSTİK KARTLARI BİREBİR DÜZEN ========================= */
.feature-area{
    width:100%;
    padding:80px 0 60px;
    overflow:hidden;
    background:transparent;
}

.feature-area .container{
    max-width:1920px;
    width:100%;
    margin:0 auto;
    padding:0 26px;
    box-sizing:border-box;
}

.istatistik-slider{
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:30px;
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    padding:0;
    margin:0;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
}

.istatistik-slider::-webkit-scrollbar{
    display:none;
}

.istatistik-item{
    flex:0 0 calc(33.3333% - 20px) !important;
    max-width:calc(33.3333% - 20px) !important;
    min-width:calc(33.3333% - 20px) !important;
    box-sizing:border-box;
}

.stats-card{
    width:100%;
    min-height:460px;
    background:#021238;
    border:2px solid #d79a17;
    border-radius:42px;
    box-sizing:border-box;
    padding:42px 34px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:none;
    overflow:hidden;
}

.stats-image-wrap{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 0 26px 0;
    overflow:hidden;
}

.stats-image{
    width:auto;
    max-width:120px;
    height:42px;
    object-fit:contain;
    object-position:center;
    display:block;
}

.stats-content{
    width:100%;
    max-width:100%;
    padding:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.stats-content h3{
    margin:0 0 26px 0;
    color:#f3a512;
    font-size:36px;
    line-height:1.18;
    font-weight:800;
    letter-spacing:-0.3px;
    text-align:center;
    word-break:normal;
    overflow-wrap:break-word;
}

.stats-content p{
    margin:0;
    color:#ffffff;
    font-size:20px;
    line-height:1.9;
    font-weight:500;
    text-align:center;
    max-width:92%;
    word-break:normal;
    overflow-wrap:break-word;
}

/* tablet */
@media (max-width:1199px){
    .feature-area .container{
        padding:0 18px;
    }

    .istatistik-slider{
        gap:20px;
    }

    .istatistik-item{
        flex:0 0 calc(50% - 10px) !important;
        max-width:calc(50% - 10px) !important;
        min-width:calc(50% - 10px) !important;
    }

    .stats-card{
        min-height:400px;
        border-radius:34px;
        padding:34px 24px;
    }

    .stats-content h3{
        font-size:30px;
        margin-bottom:20px;
    }

    .stats-content p{
        font-size:18px;
        max-width:96%;
    }
}

/* mobil */
@media (max-width:767px){
    .feature-area{
        padding:55px 0 40px;
    }

    .feature-area .container{
        width:100%;
        max-width:100%;
        padding:0;
        margin:0;
    }

    .istatistik-slider{
        gap:0;
        padding:0;
        margin:0;
        scroll-snap-type:x mandatory;
    }

    .istatistik-item{
        flex:0 0 100vw !important;
        max-width:100vw !important;
        min-width:100vw !important;
        width:100vw !important;
        padding:0 14px !important;
        scroll-snap-align:start;
    }

    .stats-card{
        min-height:300px;
        border-radius:30px;
        padding:28px 20px;
    }

    .stats-image-wrap{
        margin-bottom:18px;
    }

    .stats-image{
        max-width:95px;
        height:34px;
    }

    .stats-content h3{
        font-size:25px;
        line-height:1.22;
        margin-bottom:16px;
    }

    .stats-content p{
        max-width:100%;
        font-size:16px;
        line-height:1.8;
    }
}

/* ========================= İSTATİSTİK KARTLARI TAM AYNI YAPI ========================= */
.feature-area{
    width:100%;
    padding:58px 0 42px;
    overflow:hidden;
    background:transparent;
}

.feature-area .container{
    max-width:1600px;
    width:100%;
    margin:0 auto;
    padding:0 22px;
    box-sizing:border-box;
}

.istatistik-slider{
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:stretch;
    gap:22px;
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    padding:0;
    margin:0;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
}

.istatistik-slider::-webkit-scrollbar{
    display:none;
}

.istatistik-item{
    flex:0 0 calc(33.3333% - 15px) !important;
    max-width:calc(33.3333% - 15px) !important;
    min-width:calc(33.3333% - 15px) !important;
    box-sizing:border-box;
}

.stats-card{
    width:100%;
    min-height:265px;
    background:#000000;
    border:1px solid var(--card_title_color, #d89b19);
    border-radius:34px;
    box-sizing:border-box;
    padding:28px 28px 30px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    box-shadow:
        0 0 0 1px rgba(216,155,25,.10),
        0 0 14px rgba(216,155,25,.14),
        0 0 30px rgba(216,155,25,.08);
}

.stats-image-wrap{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 0 6px 0;
    padding:0;
    line-height:0;
    overflow:hidden;
}

/* logo boyutunu kolay büyütmek için */
:root{
    --istatistik-logo-height: 80px;
    --istatistik-logo-max-width: 140px;
}

.stats-image{
    width:auto;
    height:var(--istatistik-logo-height) !important;
    max-width:var(--istatistik-logo-max-width) !important;
    object-fit:contain;
    object-position:center;
    display:block;
}

.stats-content{
    width:100%;
    padding:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.stats-content h3{
    margin:0 0 12px 0;
    color:var(--card_title_color, #d89b19);
    font-size:28px;
    line-height:1.35;
    font-weight:800;
    text-align:center;
    word-break:normal;
    overflow-wrap:break-word;
}

.stats-content p{
    margin:0;
    color:var(--card_text_color, #ffffff);
    font-size:17px;
    line-height:1.95;
    font-weight:500;
    text-align:center;
    max-width:92%;
    word-break:normal;
    overflow-wrap:break-word;
}

/* tablet */
@media (max-width:991px){
    .feature-area .container{
        padding:0 16px;
    }

    .istatistik-slider{
        gap:16px;
    }

    .istatistik-item{
        flex:0 0 calc(50% - 8px) !important;
        max-width:calc(50% - 8px) !important;
        min-width:calc(50% - 8px) !important;
    }

    .stats-card{
        min-height:245px;
        border-radius:28px;
        padding:24px 20px 26px;
    }

    .stats-image{
        height:24px;
        max-width:62px;
    }

    .stats-content h3{
        font-size:24px;
        margin-bottom:10px;
    }

    .stats-content p{
        font-size:16px;
        max-width:100%;
    }
}

/* mobil */
@media (max-width:767px){
    .feature-area{
        padding:45px 0 30px;
    }

    .feature-area .container{
        width:100%;
        max-width:100%;
        padding:0;
        margin:0;
    }

    .istatistik-slider{
        gap:0;
        scroll-snap-type:x mandatory;
    }

    .istatistik-item{
        flex:0 0 100vw !important;
        max-width:100vw !important;
        min-width:100vw !important;
        width:100vw !important;
        padding:0 12px !important;
        scroll-snap-align:start;
    }

    .stats-card{
        min-height:220px;
        border-radius:28px;
        padding:22px 18px 24px;
    }

    .stats-image-wrap{
        margin-bottom:4px;
    }

    .stats-image{
        height:22px;
        max-width:56px;
    }

    .stats-content h3{
        font-size:22px;
        line-height:1.35;
        margin-bottom:10px;
    }

    .stats-content p{
        font-size:15px;
        line-height:1.85;
        max-width:100%;
    }
}

.desktop-page-banner{
  background-color:#000 !important;
}

.desktop-page-banner .container,
.desktop-page-banner .banner-inner,
.desktop-page-banner ul,
.desktop-page-banner ul li{
  background:transparent !important;
}

.desktop-page-banner::before{
  background:rgba(0,0,0,.65) !important;
}

.header{
  position: relative !important;
}

@media (max-width: 991px){
  .header{
    margin-bottom: 14px !important;
  }

  .desktop-page-banner{
    margin-top: 14px !important;
  }

  .about-section,
  .about-area,
  .about-showcase,
  .about-visual,
  .about-visual img{
    margin-top: 0 !important;
  }
}

/* =========================
   HAKKIMIZDA TEK BANNER
========================= */

.about-banner-section{
  padding: 70px 0;
}

.about-banner-wrap{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
  border-radius: 34px;
  overflow: hidden;
  padding: 55px;
  box-shadow: 0 18px 45px rgba(10, 79, 175, 0.10);
  position: relative;
}

.about-banner-wrap::before{
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 260px;
  height: 260px;
  background: rgba(10, 79, 175, 0.06);
  border-radius: 50%;
}

.about-banner-wrap::after{
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: rgba(255, 210, 0, 0.10);
  border-radius: 50%;
}

.about-banner-content{
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.about-badge{
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-banner-title{
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 22px;
}

.about-banner-desc{
  font-size: 20px;
  line-height: 1.9;
  margin: 0;
  max-width: 92%;
}

.about-banner-actions{
  margin-top: 34px;
}

.about-banner-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  transition: all 0.30s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.about-banner-btn:hover{
  transform: translateY(-2px);
}

.about-banner-image{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner-image img{
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 24px;
}

/* Tablet */
@media (max-width: 991px){
  .about-banner-wrap{
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 28px;
  }

  .about-banner-title{
    font-size: 42px;
  }

  .about-banner-desc{
    font-size: 17px;
    line-height: 1.8;
    max-width: 100%;
  }

  .about-banner-image{
    order: -1;
  }

  .about-banner-image img{
    max-width: 100%;
  }
}

/* Mobil */
@media (max-width: 576px){
  .about-banner-section{
    padding: 45px 0;
  }

  .about-banner-wrap{
    padding: 22px;
    border-radius: 24px;
    gap: 20px;
  }

  .about-badge{
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .about-banner-title{
    font-size: 30px;
    margin-bottom: 14px;
  }

  .about-banner-desc{
    font-size: 15px;
    line-height: 1.75;
  }

  .about-banner-btn{
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }

  .about-banner-image img{
    border-radius: 18px;
  }
}

/* =========================
   DESKTOP SLIDER NET GÖRSEL
   Mobil yapı korunur
========================= */

.desktop-slider{
  position: relative;
  width: 100%;
  height: calc(100vh - 86px);
  min-height: 680px;
  overflow: hidden;
  background: #8fc5ef;
}

.desktop-track{
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .7s ease;
}

.desktop-slide{
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #8fc5ef;
}

/* Arkadaki blur alan */
.desktop-blur-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.desktop-blur-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(30px);
  transform: scale(1.12);
  opacity: .90;
}

/* Blur üstüne hafif renk geçişi */
.desktop-blur-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(120,180,225,.18) 0%, rgba(120,180,225,.08) 50%, rgba(120,180,225,.18) 100%);
}

/* Net ana görsel */
.desktop-main-image{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.desktop-main-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: none !important;
  transform: none !important;
  opacity: 1 !important;
  image-rendering: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Yazı varsa */
.desktop-content{
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 560px;
  color: #fff;
}

.desktop-content h1{
  font-size: 58px;
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0,0,0,.20);
}

.desktop-content p{
  font-size: 20px;
  line-height: 1.8;
  margin: 0 0 28px;
  color: #f8fbff;
  text-shadow: 0 2px 10px rgba(0,0,0,.18);
}

.slider-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  background: #FFD200;
  color: #0B3D91;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  transition: all .3s ease;
}

.slider-btn:hover{
  transform: translateY(-2px);
}

.d-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: rgba(14,41,86,.72);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
}

.d-prev{ left: 20px; }
.d-next{ right: 20px; }

/* MOBİL YAPIYA DOKUNMA */
@media (max-width: 991px){
  .desktop-slider{
    display: none;
  }
}

@media (min-width: 992px){
  .mobile-slider{
    display: none;
  }
}