/* Header Başlangıç. */

a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0px;
}

button,
.btn:focus {
  outline: none;
  box-shadow: none;
}

.font1 {
  font-family: "Montserrat", sans-serif;
}

a.emsoft-giris {
  font-weight: 700;
  color: #d90000;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #00102217;
  display: flex;
  align-items: center;
}

a.emsoft-giris img {
  height: 16px;
  margin-right: 10px;
}

a.emsoft-giris:hover span {
  text-decoration: underline;
}

body {
  background: #fafafa;
  font-size: 14px;
  line-height: 1.4;
  font-weight: normal;
  font-style: normal;
}

.sita-hiza {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.renkbg {
  background: #d90000;
  color: #fff;
}

.renkbg:hover {
  background: #d90000;
  color: #fff;
}

.renkbg2 {
  background: #001022;
  color: #fff;
}

.renkbg2:hover {
  background: #001022;
  color: #fff;
}

.renktext,
a.renktext {
  color: #d90000;
}

a.renktext:hover {
  color: #d90000;
}

.renkborder {
  border: solid 1px #d90000;
}

.renkborder:hover {
  border-color: #000;
  color: #000 !important;
}

.btn-uyelik:hover,
.btn-uyelik:focus,
.btn-uyelik:active {
  color: #fff !important;
  background: #000;
  border-color: #000 !important;
}

.btn-uyelik {
  font-size: 14px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-weight: 600;
  border-radius: 3px;
}

.btn-uyelik .icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn-uyelik i {
  margin-right: 6px;
  margin-left: 6px;
}

.btn {
  border-radius: 3px;
  font-size: 14px;
}

.bg-gri {
  background: #fafafa;
}

.list-group-item {
  border-radius: 3px !important;
}

.btn-genel {
  position: relative;
  display: inline-flex;
  padding: 0px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: #e61e28;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  border: solid 1px #e61e28;
  line-height: 1;
  border-radius: 3px;
  height: 33px;
  align-items: center;
}

.btn-genel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  z-index: -1;
}

.btn-genel:hover {
  color: #e61e28;
}

.btn-genel:hover::before {
  width: 100%;
}

.btn-genel .Sitelink1,
.btn-genel .Sitelink2 {
  position: relative;
  display: inline-flex;
  transition: all 0.4s ease;
  align-items: center;
  justify-content: center;
}

.btn-genel .Sitelink2 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
}

.btn-genel:hover .Sitelink1 {
  transform: translateY(-150%);
  opacity: 0;
}

.btn-genel:hover .Sitelink2 {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.btn-genel.btn-border {
  color: #e61e28;
  background-color: transparent;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  border: solid 1px #e61e28;
}

.btn-genel.btn-border::before {
  background-color: #e61e28;
}

.btn-genel.btn-border:hover {
  color: #fff !important;
}

.btn-genel i {
  margin-right: 5px;
}

.telefon-btn {
  font-weight: 700;
}

/* --- Ana Header Konteyner --- */
.header-menu {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent; /* Başlangıçta şeffaf */
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 10px 0;
}

/* --- Navbar ve Sınırlar --- */
.header-menu .navbar {
  padding: 15px 0;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Çok ince bir hat */
  transition: all 0.4s ease;
}

/* --- Logo Ayarı --- */
.header-menu .navbar-brand {
  height: 50px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.header-menu .navbar-brand img {
  max-height: 100%;
  width: auto;
}

/* --- Navigasyon Linkleri --- */
.header-menu .nav .navbar-nav {
  display: flex;
  align-items: center;
  gap: 10px; /* Eski ::before ayraçları yerine temiz boşluk */
}

.header-menu .nav li {
  list-style: none;
  display: flex;
  align-items: center;
}

/* Eski ayraçları (çizgileri) daha modern ve hafif yapalım */
.header-menu .nav li::before {
  content: "";
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 3px;
}

.header-menu .nav li:first-child:before {
  display: none;
}

.header-menu .nav li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  padding: 10px 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

/* Anasayfa SVG İkonu */
.header-menu .nav li a svg {
  fill: #fff;
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}

/* --- Hover Etkileşimleri --- */
.header-menu .nav li a:hover {
  color: #fff !important; /* Kırmızı yerine lüks Gold/Bronz tonu */
  opacity: 1;
  transform: translateY(-1px);
}

.header-menu .nav li a:hover svg {
  fill: #fff !important;
}

/* --- Telefon Butonu (Premium Touch) --- */
.header-telefon {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.header-telefon:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- Scroll Davranışları (Premium Geçişler) --- */

/* Aşağı Kaydırınca: Gizle */
.header-menu.scrolled-down {
  transform: translateY(-100%);
  opacity: 0;
}

/* Yukarı Kaydırınca: Sabit ve Görünür (Glassmorphism Effect) */
.header-menu.scrolled-up {
  transform: translateY(0);
  background: #d31824 !important; /* Siyah zemin */
  padding: 0px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-menu.scrolled-up .navbar {
  border-bottom: 1px solid transparent; /* Scroll'da alt çizgiyi kaldır */
  padding: 10px 0;
}

/* Active Sayfa Linki */
.header-menu .nav li a.active {
  opacity: 1;
  color: #fff;
}

/* Mobil Menü Butonu */
.mobilmenu-ac {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive Düzenleme */
@media (max-width: 1199px) {
  .header-menu .nav {
    display: none; /* Mobil menü JS ile tetiklenmeli */
  }
}

/* header slider */

/* --- Home Slider Ana Yapı --- */
.home-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #000; /* Resim yüklenene kadar boşluk kalmasın */
}

.scrool-down {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.scrool-down .cizgi {
  width: 2px;
  height: 40px;
  background: #ffffff46;
  position: relative;
  overflow: hidden;
  margin: 10px auto 0px;
}
.scrool-down .cizgi::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  transform-origin: top;
  animation: passingLine 1.5s linear infinite;
}
@keyframes passingLine {
  0% {
    transform: translateY(-100%);
    /* Çizgi yukarıdan başlıyor */
  }
  100% {
    transform: translateY(100%);
    /* Aşağıya iniyor ve kayboluyor */
  }
} /**/

/* --- Görsel ve Karartma Efekti --- */
.home-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.home-slider .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Görüntüdeki gibi soldan sağa doğru kararan profesyonel gradient */
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
}

.home-slider .swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* --- İçerik Konumlandırma --- */
.home-slider .text-bg {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: flex;
  align-items: center; /* Dikeyde ortala */
  text-align: left; /* Sola yasla */
}

.home-slider .slider-content {
  margin-top: 100px;
  max-width: 800px;
}

/* --- Üst Küçük Badge --- */
.home-slider .badge-text {
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease backwards;
}

.home-slider .badge-text span {
  border: 1px solid #fff; /* Premium Sarı */
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* --- Ana Başlık --- */
.home-slider .text2 {
  font-size: 52px; /* İddialı büyüklük */
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.home-slider .text2 span {
  color: #fff;
  background: #df1524;
  border-radius: 25px;
  font-size: 70%;
  padding: 4px 17px;
}

/* --- Açıklama Metni --- */
.home-slider .slider-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin-bottom: 55px;
  font-weight: 500;
  max-width: 600px;
  animation: fadeInUp 1s ease 0.4s backwards;
}

/* --- Buton --- */
.home-slider .btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  color: #012b70;
  padding: 18px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: fadeInUp 1s ease 0.6s backwards;
}

.home-slider .btn-yellow i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.home-slider .btn-yellow:hover {
  background-color: #012b70;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.home-slider .btn-yellow:hover i {
  transform: translateX(5px);
}

/* --- Basit Giriş Animasyonu --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive (Mobil) --- */
@media (max-width: 991px) {
  .home-slider .text2 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .home-slider .text2 {
    font-size: 36px;
  }
  .home-slider .slider-desc {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .home-slider .btn-yellow {
    padding: 15px 30px;
    font-size: 14px;
  }
}

/* header slider son */
.detay-arama-button,
.detay-arama-button:hover {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.page-icerik {
  min-height: 300px;
}

.page-icerik h4 {
  font-weight: 700;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 17px;
}

.page-icerik .page-icerik-box {
  background: #fff;
  border: 1px solid #eaeaea;
  width: 100%;
  padding: 30px;
}

/*vitrinilanlar*/

.vitrinilanlar {
  width: 100%;
  height: auto;
  position: relative;
}

.vitrinilanlar .baslikk {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  font-size: 12px;
  margin-bottom: 30px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 15px;
}

.vitrinilanlar .baslikk a {
  margin-left: auto;
  text-decoration: underline !important;
  font-weight: 700;
  color: #d90000;
}

.vitrinilanlar .vitrin_Liste {
  width: 100%;
  height: auto;
  position: relative;
  color: #000;
  margin-bottom: 25px;
  display: block;
}

.vitrinilanlar .vitrin_Liste .resim {
  width: 100%;
  height: 76px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  padding: 5px;
}

.vitrinilanlar .vitrin_Liste .resim img {
  height: 100%;
}

.vitrinilanlar .vitrin_Liste .baslik {
  width: 100%;
  height: auto;
  display: block;
  font-size: 12px;
  margin-top: 3px;
}

.kategori-menu {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  border-right: 1px solid #d7d7d7;
  padding-right: 15px;
}

.Home_Itemi,
.page-content {
  margin-top: 70px;
}

.Home_Item .kategori-menu {
  margin-top: 0px;
}

.kategori-baslik {
  font-size: 16px !important;
  margin-bottom: 6px;
  font-weight: 700 !important;
}

.cizgi {
  width: 100%;
  height: 1px;
  background: #f1f1f1;
}

.kategori-icon {
  font-size: 18px;
  margin-right: 8px;
  display: flex;
  align-items: center;
}

a.kategori-link {
  font-weight: 500;
  font-style: normal;
  text-decoration: none !important;
  color: #000;
  margin-top: 10px;
}

a.kategori-link .kategori-icon {
  width: 30px;
  height: 30px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  text-decoration: none !important;
}

a.kategori-link .kategori-icon.renk1 {
  background: #d90000;
}

a.kategori-link .kategori-icon.renk2 {
  background: #ffc106;
}

a.kategori-link .kategori-icon.renk3 {
  background: #15a2b8;
}

a.kategori-link .kategori-icon.renk4 {
  background: #02243c;
}

a.kategori-link .baslik {
  margin-top: 0px;
  line-height: 16px;
}

a.kategori-link small {
  margin-top: 0px;
  color: #999;
  font-size: 12px;
  line-height: 10px;
}

.kategori-menu ul {
  padding: 0px;
  margin: 0px;
  display: block;
}

.kategori-menu ul li:first-child {
  margin-top: 0px;
}

.kategori-menu ul li,
.liste-tab .liste1 li {
  font-size: 14px;
  list-style: none;
  width: 100%;
  display: flex;
  margin-top: 3px;
}

.kategori-menu ul li a,
.liste-tab .liste1 li a {
  border-bottom: none;
  border-right: none;
  padding: 11px 16px !important;
  line-height: 1;
  position: relative;
  width: 100%;
  display: flex;
  background: #f6f6f6;
  justify-content: space-between;
  border-radius: 3px;
  color: #231f20;
  font-weight: 500;
  font-size: 14px !important;
}

.kategori-menu ul li a:hover,
.liste-tab .liste1 li a:hover {
  background: #f6f6f6;
  color: #fff;
}

.kategori-menu ul li a:after,
.liste-tab .liste1 li a:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  border-top: 6px solid transparent;
  border-left: 6px solid #e61e28;
  border-bottom: 6px solid transparent;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.kategori-menu ul li a:hover:after,
.liste-tab .liste1 li a:hover:after {
  opacity: 1;
}

.kategori-menu ul li.ajaxAltKategori a {
  font-weight: 400;
}

.kategori-menu ul li a:hover,
.liste-tab .liste1 li a:hover {
  background: #e61e28;
  color: #fff !important;
}

.liste-tab .liste1 li {
  width: auto;
}

.kategori-menu ul li a .icon {
  width: 30px;
}

.kategori-menu ul li a .icon img {
  width: 100%;
}

.kategori-menu ul li a:hover {
  color: #d90000;
}

.kategori-menu ul li span {
  margin-left: 5px;
  color: #999;
}

.arama-banner {
  width: 100%;
  height: auto;
  top: 0px;
  left: 0px;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background: url(../images/slider/arama-banner.jpg);
  display: flex;
  align-items: center;
  padding: 43px 0px 20px;
}

.ilan-search {
  height: auto;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
}

.ilan-search a.detayli-arama-button {
  color: #fff;
  margin-top: 22px;
  font-weight: 700;
  font-size: 17px;
}

.ilan-search h1 {
  margin-top: 0px;
  margin-bottom: 30px;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
}

.ilan-search p {
  margin-top: 20px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.ilan-search .ilan-kategori {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0px;
}

.ilan-search .ilan-kategori a {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.ilan-search .ilan-kategori .kategorisec {
  width: auto;
  height: 50px;
  background: transparent;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  cursor: pointer;
  padding: 0px 16px;
}

.ilan-search .ilan-kategori .kategorisec .icon {
  width: auto;
  height: auto;
  font-size: 14px;
  line-height: 1;
  margin-right: 13px;
}

.ilan-search .ilan-kategori .kategorisec.active,
.ilan-search .ilan-kategori .kategorisec:hover {
  border-color: #d90000;
  background: #d90000;
  color: #fff;
}

.ilan-search .ilan-kategori .kategorisec span {
  font-weight: 600;
  font-style: normal;
  margin-top: 0px;
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 14px;
}

.ilan-search form {
  width: 100%;
  display: inline-block;
}

.ilan-search .form-group {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}

.ilan-search .form-group .form-control {
  border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -ms-border-radius: 3px 3px 3px 3px;
  -o-border-radius: 3px 3px 3px 3px;
}

.ilan-search .form-group .form-control,
.ilan-search .form-group .form-select {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 15px;
  background-color: #fff;
  color: #373636;
  font-weight: 500;
  border: none;
  height: 50px;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  border-radius: 3px;
}

.ilan-search .form-group .form-control:focus,
.ilan-search .form-group .custom-select:focus {
  box-shadow: none;
  border-color: #e0e1e2;
}

.ilan-search .dm-select {
  width: 100%;
}

.ilan-search .dm-select .dm-select-box {
  position: relative;
  width: 100%;
}

.ilan-search .dm-select .dm-select-box .default-option {
  width: auto;
  border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -ms-border-radius: 3px 3px 3px 3px;
  -o-border-radius: 3px 3px 3px 3px;
  border-right: 1px solid #f1f1f1 !important;
  position: relative;
  overflow: hidden;
}

.ilan-search .dm-select .dm-select-box .default-option:after {
  content: "\eab2";
  position: absolute;
  right: 16px;
  top: 0px;
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  background: transparent;
  color: #000;
  z-index: 99;
  font-family: "fontello";
}

.ilan-search .dm-select .dm-select-box .default-option:hover {
  cursor: default;
}

.ilan-search .dm-select .dm-select-box .dm-options {
  display: none;
  width: calc(100% + 0px);
  max-height: 270px;
  overflow: auto;
  position: absolute;
  z-index: 1;
  background-color: #fff;
  left: 0px;
  top: 50px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.ilan-search .dm-select .dm-select-box .dm-options .dm-option {
  padding: 8px 16px;
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.3s;
}

.ilan-search .dm-select .dm-select-box .dm-options .dm-option:hover {
  background-color: #f8f8f8;
  cursor: pointer;
}

.ilan-search .dm-select .dm-select-box .dm-options::-webkit-scrollbar {
  width: 5px;
}

.ilan-search .dm-select .dm-select-box .dm-options::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.ilan-search .dm-select .dm-select-box .dm-options::-webkit-scrollbar-thumb {
  background: #d90000;
}

.ilan-search .ilan-ara {
  width: 190px;
  height: 50px;
  background: #ffc103;
  border: none;
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
}

.ilan-search .ilan-ara i {
  padding-right: 2px;
}

.ilan-search .ilan-ara:focus {
  outline: none;
  box-shadow: none;
}

.page-ilan-search {
  height: auto;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.page-ilan-search h1 {
  margin-top: 0px;
  margin-bottom: 40px;
  color: #fff;
  font-size: 35px;
  font-weight: 500;
}

.page-ilan-search p {
  margin-top: 20px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.page-ilan-search .ilan-kategori {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.page-ilan-search .ilan-kategori a {
  color: #fff;
  font-weight: 700;
}

.page-ilan-search .ilan-kategori .kategorisec {
  width: auto;
  height: 50px;
  background: transparent;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  cursor: pointer;
  padding: 0px 16px;
}

.page-ilan-search .ilan-kategori .kategorisec .icon {
  width: 100%;
  height: auto;
  font-size: 23px;
  line-height: 23px;
  margin-right: 16px;
}

.page-ilan-search .ilan-kategori .kategorisec.active,
.page-ilan-search .ilan-kategori .kategorisec:hover {
  border-color: #d90000;
  background: #d90000;
  color: #fff;
}

.page-ilan-search .ilan-kategori .kategorisec span {
  font-weight: 500;
  font-style: normal;
  margin-top: 0px;
  display: block;
}

.page-ilan-search form {
  width: 100%;
  display: inline-block;
}

.page-ilan-search .form-group {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
}

.page-ilan-search .form-group .form-control {
  border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -ms-border-radius: 3px 3px 3px 3px;
  -o-border-radius: 3px 3px 3px 3px;
}

.page-ilan-search .form-group .form-control,
.page-ilan-search .form-group .form-select {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 14px;
  background-color: #efefef;
  color: #373636;
  font-weight: 500;
  border: none;
  height: 40px;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  border-radius: 3px;
}

.page-ilan-search .form-group .form-control:focus,
.page-ilan-search .form-group .custom-select:focus {
  box-shadow: none;
  border-color: #e0e1e2;
}

.page-ilan-search .dm-select {
  width: 250px;
}

.page-ilan-search .dm-select .dm-select-box {
  position: relative;
  width: 100%;
}

.page-ilan-search .dm-select .dm-select-box .default-option {
  width: auto;
  border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -ms-border-radius: 3px 3px 3px 3px;
  -o-border-radius: 3px 3px 3px 3px;
  border-right: 1px solid #f1f1f1 !important;
  position: relative;
  overflow: hidden;
}

.page-ilan-search .dm-select .dm-select-box .default-option:after {
  content: "\eab2";
  position: absolute;
  right: 16px;
  top: 0px;
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  background: transparent;
  color: #000;
  z-index: 99;
  font-family: "fontello";
}

.page-ilan-search .dm-select .dm-select-box .default-option:hover {
  cursor: default;
}

.page-ilan-search .dm-select .dm-select-box .dm-options {
  display: none;
  width: calc(100% + 0px);
  max-height: 270px;
  overflow: auto;
  position: absolute;
  z-index: 1;
  background-color: #fff;
  left: 0px;
  top: 50px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.page-ilan-search .dm-select .dm-select-box .dm-options .dm-option {
  padding: 8px 16px;
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.3s;
}

.page-ilan-search .dm-select .dm-select-box .dm-options .dm-option:hover {
  background-color: #f8f8f8;
  cursor: pointer;
}

.page-ilan-search .dm-select .dm-select-box .dm-options::-webkit-scrollbar {
  width: 5px;
}

.page-ilan-search
  .dm-select
  .dm-select-box
  .dm-options::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.page-ilan-search
  .dm-select
  .dm-select-box
  .dm-options::-webkit-scrollbar-thumb {
  background: #d90000;
}

.page-ilan-search .ilan-ara {
  width: auto;
  height: 40px;
  background: #001022;
  border: none;
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  padding: 0px 12px;
}

.page-ilan-search .ilan-ara i {
  padding-right: 5px;
}

.page-ilan-search .ilan-ara:focus {
  outline: none;
  box-shadow: none;
}

/* İlan Liste 1*/

.Home_Item {
  padding: 80px 0px;
}
/* Ana Kart Yapısı */
.ilan-liste1 {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #f0f0f0; /* Daha hafif bir çerçeve */
  border-radius: 12px; /* Daha modern, yuvarlak köşeler */
  margin-bottom: 20px;
  margin-right: 10px;
  transition: all 0.3s ease; /* Akıcı geçiş efekti */
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Hafif gölge */
}

/* Kartın Üstüne Gelince (Hover) */
.ilan-liste1:hover {
  transform: translateY(-5px); /* Hafif yukarı kalkma */
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1); /* Gölge derinleşir */
  border-color: #e0e0e0;
}

/* Link Düzenlemesi */
.ilan-liste1 a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Resim Alanı */
.ilan-liste1 .ilan-resim-sayfa {
  width: 100%;
  height: 180px; /* Biraz yükseltildi */
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
  padding: 0; /* Resim tam kaplamalı */
  display: flex;
  align-items: center;
  justify-content: center;
}

.ilan-liste1 .ilan-resim-sayfa img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover; /* Resmi bozmadan alanı doldurur */
  transition: transform 0.5s ease;
}
.ilan-liste1 .ilan-resim-sayfa img.gorsel_yok {
  max-width: 70% !important;
  height: auto !important;
  object-fit: cover; /* Resmi bozmadan alanı doldurur */
  transition: transform 0.5s ease;
  margin-top: 10px;
}
.ilan-liste1:hover .ilan-resim-sayfa img {
  transform: scale(1.08); /* Resim hafifçe büyür */
}

/* İçerik Alanı */
.ilan-liste1 .ilan-aciklama a {
  padding: 15px;
}

/* Başlık Stili */

/* Fiyat Stili */
.ilan-liste1 .ilan-aciklama a .ilan-fiyat {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #d90000;
  margin-bottom: 10px;
}

/* Özellikler (Oda, m2 vb.) */
.ilan-liste1 .ilan-aciklama a .ilan-ozellik {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid #f1f1f1;
  padding-top: 10px;
}

.ilan-liste1 .ilan-aciklama a .ilan-ozellik .liste {
  font-size: 12px;
  color: #7f8c8d;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.ilan-liste1 .ilan-aciklama a .ilan-ozellik .liste i {
  color: #95a5a6;
  margin-right: 5px;
}

/* Adres Kısmı */
.ilan-liste1 .ilan-aciklama a .ilan-ozellik .liste.ilan-adres {
  width: 100%;
  font-size: 12px;
  color: #34495e !important;
  margin-top: 5px;
  font-weight: 600 !important;
  opacity: 0.8;

  white-space: nowrap; /* Tek satır yapar */
  overflow: hidden; /* Taşanı gizler */
  text-overflow: ellipsis; /* ... ekler */
}

/* Alt Bilgi Çubuğu (Fiyat/Karşılaştır/Favori) */
.ilan-liste1 .ilan-bilgi {
  display: flex;
  width: 100%;
  border-top: 1px solid #f1f1f1;
  background: #ffffff;
}

.ilan-liste1 .ilan-bilgi .liste {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.ilan-liste1 .ilan-bilgi .liste1 {
  width: 60%;
  background: #fdfdfd;
  font-size: 13px;
  font-weight: 700;
  color: #34495e;
  border-right: 1px solid #f1f1f1;
}

.ilan-liste1 .ilan-bilgi .liste2 {
  width: 20%;
  border-right: 1px solid #f1f1f1;
  color: #95a5a6;
}

.ilan-liste1 .ilan-bilgi .liste3 {
  width: 20%;
  color: #95a5a6;
}

/* Etkileşim Renkleri */
.ilan-liste1 .ilan-bilgi .liste2:hover,
.ilan-liste1 .ilan-bilgi .liste2.active {
  color: #3498db; /* Karşılaştır için mavi */
  background: #f0f7ff;
}

.ilan-liste1 .ilan-bilgi .liste3:hover,
.ilan-liste1 .ilan-bilgi .liste3.active {
  color: #d90000; /* Favori için kırmızı */
  background: #fff5f5;
}

/* Fontello Favori İkonu */
.ilan-liste1 .ilan-bilgi .liste3 .favori:before {
  font-family: "fontello";
  content: "\e83f";
  font-size: 18px;
}

.ilan-liste1 .ilan-bilgi .liste3.active .favori:before,
.ilan-liste1 .ilan-bilgi .liste3:hover .favori:before {
  content: "\e83e";
}

.ilan-liste1 .ilan-secenek {
  font-size: 13px;
  font-weight: 700;
  color: #fff !important;
  line-height: 1;
  margin-bottom: 0;
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d31824;
  padding: 5px 7px 4px;
  border-radius: 20px;
}

.ilan-liste1 .ilan-aciklama a .ilan-ozellik .liste.ilan-baslik {
  font-size: 15px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.4;
  height: 42px; /* İki satır için sabit yükseklik */
  margin-bottom: 8px;
  text-transform: capitalize; /* Tamamı büyük yerine sadece baş harfler daha şık durur */
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive Düzenleme (Opsiyonel) */
@media (max-width: 768px) {
  .ilan-liste1 {
    margin-right: 0;
  }
}

/* İlan Liste 1 Son */

/* İlan Liste 2*/

.ilan-liste2 {
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid rgba(34, 36, 38, 0.11);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  position: relative;
}

.ilan-liste2:hover {
  border-color: #e61e28;
}

.ilan-liste2 a {
  font-size: 14px;
  color: #263238;
  text-decoration: none;
}

.ilan-liste2 .ilan-bilgi {
  width: 100%;
  display: block;
}

.ilan-liste2 .ilan-bilgi .liste {
  height: auto;
  display: flex;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.ilan-liste2 .ilan-bilgi .liste span {
  padding-left: 10px;
  font-size: 13px;
}

.ilan-liste2 .ilan-bilgi .liste1 {
  width: 100%;
  background: #fafafa;
  font-weight: bold;
  font-size: 14px;
  color: #373737;
  border-right: 1px solid #eeeeee;
}

.ilan-liste2 .ilan-bilgi .liste2 {
  width: auto;
}

.ilan-liste2 .ilan-bilgi .liste3 {
  width: auto;
  border-left: 1px solid #eeeeee;
  padding-left: 15px;
  margin-left: 15px;
}

.ilan-liste2 .ilan-bilgi .liste2:hover,
.ilan-liste2 .ilan-bilgi .liste2.active {
  color: #d90000;
}

.ilan-liste2 .ilan-bilgi .liste3 .favori {
  font-family: "fontello";
}

.ilan-liste2 .ilan-bilgi .liste3 .favori:before {
  content: "\e83f";
}

.ilan-liste2 .ilan-bilgi .liste3.active .favori:before {
  content: "\e83e";
  color: #d90000;
}

.ilan-liste2 .ilan-bilgi .liste3:hover .favori:before {
  color: #d90000;
  content: "\e83e";
}

.ilan-liste2 .ilan-resim-sayfa {
  width: 140px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  border-right: 1px solid #eaeaea;
}

.ilan-liste2 .ilan-resim-sayfa img {
  max-width: 100%;
  max-height: 100%;
}

.ilan-liste2 .ilan-aciklama {
  display: block;
  padding: 0px;
  padding-left: 20px;
  width: calc(100% - 310px);
  padding-right: 20px;
}

.ilan-liste2 .ilan-aciklama .ilan-baslik {
  font-weight: 700;
  font-size: 15px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ilan-liste2 .ilan-aciklama .ilan-tarihi {
  border-left: 1px solid #ccc;
  padding-left: 15px;
}

.ilan-liste2 .ilan-aciklama a .ilan-baslik.gorunum2 {
  display: none;
}

.ilan-liste2 .ilan-aciklama a .ilan-baslik.gorunum1 {
  display: -webkit-box;
}

.ilan-liste2 .ilan-aciklama .ilan-adres {
  display: flex !important;
  font-size: 13px;
  opacity: 1;
  margin-top: 0px;
  overflow: hidden;
  color: #000 !important;
  font-weight: 700;
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #eaeaea;
  padding-left: 22px;
  width: 152px;
  text-align: center;
  flex-direction: column;
}

.ilan-liste2 .ilan-aciklama .ilan-adres i {
  display: none;
}

.ilan-liste2 .ilan-aciklama .ilan-adres li {
  list-style: none;
  display: block;
}

.ilan-liste2 .ilan-aciklama .ilan-ozellik {
  display: block;
  margin-top: 8px;
  color: #64707c;
}

.ilan-liste2 .ilan-aciklama .ilan-ozellik .liste {
  margin-right: 18px;
  font-weight: 600;
}

.ilan-liste2 .ilan-aciklama .ilan-ozellik .liste i::before {
  font-weight: 600;
}

.ilan-liste2 .ilan-aciklama .ilan-fiyat {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  color: #d90000;
  line-height: 1;
}

.ilan-liste2.vitrin-ilan {
  background: rgba(255, 193, 0, 0.1);
}

/* ilan liste2 son*/

/* İlan Liste 3*/

.ilan-liste3 {
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid rgba(34, 36, 38, 0.11);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-bottom: 10px;
}

.ilan-liste3:hover {
  border-color: #e61e28;
}

.ilan-liste3 a {
  font-size: 14px;
  color: #263238;
  text-decoration: none;
  padding: 11px 13px;
  display: block;
}

.ilan-liste3 .ilan-bilgi {
  width: 100%;
  display: block;
}

.ilan-liste3 .ilan-bilgi .liste {
  height: auto;
  display: flex;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.ilan-liste3 .ilan-bilgi .liste span {
  padding-left: 10px;
  font-size: 13px;
}

.ilan-liste3 .ilan-bilgi .liste1 {
  width: 100%;
  background: #fafafa;
  font-weight: bold;
  font-size: 14px;
  color: #373737;
  border-right: 1px solid #eeeeee;
}

.ilan-liste3 .ilan-bilgi .liste2 {
  width: auto;
}

.ilan-liste3 .ilan-bilgi .liste3 {
  width: auto;
  border-left: 1px solid #eeeeee;
  padding-left: 15px;
  margin-left: 15px;
}

.ilan-liste3 .ilan-bilgi .liste2:hover,
.ilan-liste3 .ilan-bilgi .liste2.active {
  color: #d90000;
}

.ilan-liste3 .ilan-bilgi .liste3 .favori {
  font-family: "fontello";
}

.ilan-liste3 .ilan-bilgi .liste3 .favori:before {
  content: "\e83f";
}

.ilan-liste3 .ilan-bilgi .liste3.active .favori:before {
  content: "\e83e";
  color: #d90000;
}

.ilan-liste3 .ilan-bilgi .liste3:hover .favori:before {
  color: #d90000;
  content: "\e83e";
}

.ilan-liste3 .ilan-resim2 {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  margin-right: 0;
}

.ilan-liste3 .ilan-resim2 img {
  max-width: 100%;
  max-height: 100%;
}

.ilan-liste3 .ilan-aciklama {
  display: block;
  padding: 0px;
  width: auto;
}

.ilan-liste3 .ilan-aciklama .ilan-baslik {
  display: block;
  height: auto;
  overflow: hidden;
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
}

.ilan-liste3 .ilan-aciklama .ilan-adres {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  margin-top: 5px;
  height: 20px;
  overflow: hidden;
}

.ilan-liste3 .ilan-aciklama .ilan-ozellik {
  display: block !important;
  margin-top: 0px;
}

.ilan-liste3 .ilan-aciklama .ilan-ozellik .liste:nth-child(1) i {
  display: none;
}

.ilan-liste3 .ilan-aciklama .ilan-ozellik .liste:nth-child(1) {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  margin-top: 5px;
  height: 20px;
  overflow: hidden;
  margin-bottom: 9px;
}

.ilan-liste3 .ilan-aciklama .ilan-ozellik .liste {
  margin-right: 0px;
  margin-bottom: 2px;
  display: flex;
  align-items: baseline;
}

.ilan-liste3 .ilan-aciklama .ilan-ozellik .liste i {
  margin-right: 7px;
}

.ilan-liste3 .ilan-aciklama .ilan-fiyat {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  color: #d90000;
}

.ilan-liste3.vitrin-ilan {
  background: rgba(255, 193, 0, 0.1);
}

/* ilan liste3 son*/

.ilan-footer {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
  border-top: 1px solid #dedede;
  padding-top: 20px;
}

.ilan-footer .bilgi {
  width: 100%;
  height: auto;
}

.ilan-footer .bilgi span {
  font-weight: 600;
}

.ilan-footer .pagination {
  justify-content: center;
  align-items: center;
  margin: 10px auto;
}

.ilan-footer .pagination li {
  margin: 0px 3px;
}

.ilan-footer .pagination li.active a {
  background: #e61e28;
  border-color: #e61e28;
}

.ilan-footer .pagination li a {
  color: #001022;
}

.bilgi-gorsel .bilgi-gorsel-liste {
  width: 100%;
  height: 300px;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.bilgi-gorsel .bilgi-gorsel-liste a {
  color: #fff;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.bilgi-gorsel .bilgi-gorsel-liste a:hover::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: #37363634;
}

.bilgi-gorsel .bilgi-gorsel-liste a .detayy {
  display: none;
  letter-spacing: 2px;
  font-size: 12px;
}

.bilgi-gorsel .bilgi-gorsel-liste a:hover .detayy {
  display: block;
}

.bilgi-gorsel .bilgi-gorsel-liste::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: linear-gradient(transparent, #1a2b4900, #001022);
}

.bilgi-gorsel .bilgi-gorsel-liste .text {
  padding: 16px;
  position: relative;
  z-index: 99;
}

.bilgi-gorsel .bilgi-gorsel-liste .text h2 {
  font-size: 20px;
}

.bilgi-gorsel .bilgi-gorsel-liste .text p {
  font-size: 14px;
  opacity: 80%;
}

.hizli-menu {
  width: 100%;
  height: auto;
}

.hizli-menu .liste {
  margin-left: auto;
  text-align: center;
  background: #fff;
  padding: 25px 20px;
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
}

.hizli-menu .liste a {
  display: block;
  color: #1a2b49;
  text-decoration: none;
}

.hizli-menu .liste a .icon {
  display: inline-block;
  height: auto;
  width: 100%;
}

.hizli-menu .liste a .icon .svgIcon {
  fill: #d90000;
  height: 50px;
  width: 100%;
}

.hizli-menu .liste a .icon .svgIcon path {
  fill: #d90000;
}

.hizli-menu .liste a .text {
  width: 100%;
  height: auto;
  margin-top: 16px;
}

.hizli-menu .liste a .text span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.hizli-menu .liste a .text small {
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 22px;
  opacity: 80%;
}

.hizli-menu .liste a:hover .text span,
.hizli-menu .liste a:hover .text small {
  color: #d90000;
}

.aranan-kelimeler {
  width: 100%;
  height: auto;
}

.aranan-kelimeler .nav-tabs {
  width: 100%;
  height: auto;
  padding: 0px;
  border: none;
}

.aranan-kelimeler .nav-tabs li:first-child {
  margin-left: 0px;
}

.aranan-kelimeler .nav-tabs li:last-child a {
  border-right: 1px solid #c6c8d0;
}

.aranan-kelimeler .nav-tabs li {
  padding: 0px;
  display: inline-block;
  margin-left: -1px;
}

.aranan-kelimeler .nav-tabs li a {
  padding: 10px 16px;
  position: relative;
  border-left: 1px solid #c6c8d0;
  border-top: 3px solid #c6c8d0;
  border-bottom: 0;
  border-right: 0;
  color: #1a2b49;
  display: block;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0px;
}

.aranan-kelimeler .nav-tabs li a.active {
  border-top: 3px solid #d90000;
  color: #d90000;
}

.aranan-kelimeler .tab-content {
  background-color: #fff;
  padding: 0 16px 16px 16px;
  border: 1px solid #ddd;
  margin-top: -1px;
}

.aranan-kelimeler .tab-content ul.liste {
  padding: 0px;
  margin: 0px;
}

.aranan-kelimeler .tab-content ul.liste span {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.aranan-kelimeler .tab-content ul.liste li {
  padding: 0px;
  margin: 3px 1px;
  list-style: none;
  display: inline-block;
}

.aranan-kelimeler .tab-content ul.liste li a {
  color: #333;
  border: solid 1px #ccc;
  padding: 3px 5px;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-size: 14px;
}

.mahalle-ilanlar {
  width: 100%;
  height: auto;
}

.mahalle-ilanlar .liste {
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  overflow: hidden;
}

.mahalle-ilanlar .liste a {
  display: block;
  color: #373636;
  background-color: #fff;
  border: 1px solid rgba(34, 36, 38, 0.11);
  text-decoration: none;
}

.mahalle-ilanlar .liste a .resim {
  width: 100%;
  height: 200px;
  background-size: cover !important;
  background-position: center !important;
}

.mahalle-ilanlar .liste a .text {
  width: 100%;
  height: 100%;
  padding: 14px 14px;
  background: linear-gradient(transparent, #1a2b4900, #001022);
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.mahalle-ilanlar .liste a:hover .text {
  background: rgba(0, 16, 34, 0.7);
}

.mahalle-ilanlar .liste a .text span.baslik {
  font-weight: 500;
  font-size: 17px;
  display: block;
  color: #fff;
  margin-top: 16px;
}

.mahalle-ilanlar .liste a .badge {
  padding: 0px 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: transparent;
  font-weight: 500;
  letter-spacing: 1px;
}

.mahalle-ilanlar .liste a .text .detayy {
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.bolum-baslik {
  width: 100%;
  height: auto;
  text-align: left;
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 99;
}

.bolum-baslik h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a2b49;
  background: #fafafa;
}

.bolum-baslik .cizgi {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #e2e2e2;
  top: 16px;
  z-index: -1;
}

.populerslider.owl-carousel {
  position: relative;
  z-index: 999;
}

.populerslider .owl-dots {
  position: absolute;
  top: -50px;
  right: 23px;
  margin-top: 0px !important;
  /* width: 100%; */
  text-align: right !important;
  background: #fafafa;
  padding: 0px 10px;
}

.populerslider .owl-dots button:focus {
  box-shadow: none;
  outline: none;
}

.populerslider.owl-theme .owl-dots .owl-dot span {
  width: 13px;
  height: 13px;
  margin: 5px 4px;
  background: #fff;
  border: solid 2px #1a2b49;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
}

.populerslider.owl-theme .owl-dots .owl-dot.active span,
.populerslider.owl-theme .owl-dots .owl-dot:hover span {
  background: #1a2b49;
  border-color: #1a2b49;
}

.breadcrumb-bg {
  background: #fff;
  padding: 0px 0px 10px;
  display: block;
  border-bottom: 1px solid #f3f3f3;
}

.breadcrumb-bg .breadcrumb {
  background: transparent;
  padding: 0px;
  margin: 0px;
  font-size: 14px;
}

.breadcrumb-bg .breadcrumb li a {
  color: #000;
  font-size: 14px;
}

.breadcrumb-bg .breadcrumb-item.active {
  color: #d90000;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "\eab8";
  font-family: "fontello";
}

/*İlan Detay Başlangıç*/

.ilandetay {
  color: #001022;
}

.ilandetay .ilan-baslik {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.ilandetay .ilan-baslik h2 {
  font-size: 22px;
  line-height: 22px;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}

.ilandetay .adres {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 8px;
  margin-bottom: 20px;
  font-weight: 700;
}

.ilandetay .fiyat {
  color: #d90000;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.ilandetay .ilan-detay-resim {
  width: 100%;
  height: auto;
  position: relative;
}

.ilan_linkler_ul {
  width: 100%;
  height: auto;
  position: relative;
}

.ilan_linkler_ul a.ilan_linkler_liste {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  background: #fff;
  padding: 15px 20px;
  color: #000;
  align-items: center;
}

.ilan_linkler_ul a.ilan_linkler_liste .icon {
  width: 50px;
}

.ilan_linkler_ul a.ilan_linkler_liste .icon .svgIcon {
  fill: #d90000;
  height: 35px;
  width: 35px;
}

.ilan_linkler_ul a.ilan_linkler_liste .icon .svgIcon path {
  fill: #d90000;
}

.ilan_linkler_ul a.ilan_linkler_liste .text {
  width: calc(100% - 50px);
  padding-left: 15px;
  border-left: 1px solid #eaeaea;
}

.ilan_linkler_ul a.ilan_linkler_liste .text span {
  display: block;
  font-weight: 700;
  font-size: 16px;
}

.ilan_linkler_ul a.ilan_linkler_liste .text small {
  display: block;
  font-weight: 400;
  font-size: 13px;
}

.ilan_linkler_ul a.ilan_linkler_liste .text small b {
  font-weight: 700;
  text-decoration: underline !important;
}

.ilan_linkler_ul a.ilan_linkler_liste:hover {
  background: #d90000;
  color: #fff;
}

.ilan_linkler_ul a.ilan_linkler_liste:hover .icon .svgIcon {
  fill: #fff;
}

.ilan_linkler_ul a.ilan_linkler_liste:hover .icon .svgIcon path {
  fill: #fff;
}

.ilan_linkler_ul a.ilan_linkler_liste:hover .text {
  border-left: 1px solid #ffffff22;
}

.ilandetay .ilan-detay-resim .ilanDetayResim_yok {
  width: 100%;
  position: relative;
  top: 0px;
  left: 0px;
  min-height: 336px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.ilandetay .ilan-detay-resim .ilanDetayResim_yok img {
  width: 50%;
}

.ilandetay .ilan-detay-resim .list-unstyled li img {
  width: 100%;
}

.ilandetay .ilan-detay-bilgi {
  display: block;
}

.ilandetay .ilan-detay-bilgi h2 {
  font-size: 25px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 20px;
  color: #d90000;
}

.ilandetay .ilan-detay-bilgi h3 {
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 16px;
}

.ilandetay .ilan-detay-bilgi .media {
  width: 100%;
  height: auto;
  margin-bottom: 0px;
  background: #fff;
  padding: 6px 10px;
  border-top: 1px solid #eaeaea;
  display: flex;
}

.ilandetay .ilan-detay-bilgi .media:nth-child(2n) {
  background: #fdfdfd;
}

.ilandetay .ilan-detay-bilgi .media .media-left {
  width: 47%;
  height: auto;
}

.ilandetay .ilan-detay-bilgi .media .media-left h4 {
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 13px;
}

.ilandetay .ilan-detay-bilgi .media .media-body {
  padding-left: 10px;
}

.ilandetay .ilan-detay-bilgi .media .media-body h5 {
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 13px;
}
/* ANA KART TASARIMI */
.ilan-detay-firma {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

/* ÜST RESİM ALANI */
.ilan-detay-firma-ic .firma-baslik {
  padding: 35px 20px 20px;
}

.ilan-detay-firma-ic .firma-baslik .icon {
  width: 130px; /* Daha büyük dairesel resim alanı */
  height: 130px;
  margin: 0 auto 15px;
  border-radius: 50%; /* Dairesel profil */
  border: 3px solid #f8f8f8;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ilan-detay-firma-ic .firma-baslik .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Resmi kesmeden doldurur */
}
.ilan-detay-firma-ic .firma-baslik .icon img.logo-geldi {
  width: 80%;
  height:auto;
  object-fit: cover; /* Resmi kesmeden doldurur */
}


.ilan-detay-firma-ic .firma-baslik h2 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.ilan-detay-firma-ic .firma-baslik small {
  color: #d31824; /* Gold unvan */
  font-weight: 500;
  text-transform: uppercase;
  font-size: 11px;
}

/* KÖTÜ DURAN LİNKLERİ BUTONA ÇEVİRME */
.sahis-bilgi {
  padding: 0 25px 25px;
}

/* Tüm İlanlar ve Mesaj Yaz Butonları */
.sahis-bilgi a.link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47%; /* Yan yana durmaları için */
  padding: 10px 5px;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #444 !important;
  text-decoration: none !important;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.sahis-bilgi a.link i {
  margin-right: 6px;
  color: #d31824;
  font-size: 14px;
}

.sahis-bilgi a.link:hover {
  background: #ffffff;
  border-color: #d31824;
  color: #d31824 !important;
  transform: translateY(-2px);
}

/* TELEFON BUTONLARI */
.sahis-bilgi .telefon {
  background: #1a1a1a;
  color: #fff !important;
  padding: 14px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 5px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sahis-bilgi .telefon:hover {
  background: #d31824;
  box-shadow: 0 10px 20px rgba(184, 149, 100, 0.3);
}

/* MAIL ALANI */
.sahis-bilgi .mail a {
  color: #888;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.sahis-bilgi .mail a:hover {
  color: #d31824;
}

/* Responsive */
@media (max-width: 768px) {
  .sahis-bilgi a.link {
    width: 100%;
    margin-left: 0 !important;
  }
}

.ilanDetayResim {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
}

.ilanDetayResim .swiper-button-next,
.ilanDetayResim .swiper-button-prev {
  margin-top: -18px;
  background: #001022;
  position: absolute;
  top: 50%;
  left: 0px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  color: #fff;
  font-size: 15px;
}

.ilanDetayResim .swiper-button-next {
  right: 0px;
  left: auto;
}

.ilanDetayResim .swiper-button-next:after,
.ilanDetayResim .swiper-button-prev:after {
  font-size: 15px;
}

.ilanDetayResim .swiper-button-prev {
  right: auto;
  left: 0px;
}

.ilanDetayResim .swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.ilanDetayResim .swiper-slide {
  overflow: hidden;
}

.ilanDetayResim .swiper-slide a.buyut {
  display: block;
  font-weight: 700;
  padding: 5px;
  position: absolute;
  z-index: 999;
  left: 10px;
  bottom: 10px;
  background: #fff9;
  border-radius: 5px;
  color: #001022;
  box-shadow: 0px 0px 3px #0000001f;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.ilanDetayResim .swiper-slide a.buyut i {
  margin-right: 5px;
}

.ilanDetayResim .swiper-slide a.buyut:hover {
  color: #d90000;
}

.ilanDetayResim .swiper-slide a.videoOynat {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.067);
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  transition: transform 3s;
}

.ilanDetayResim .swiper-slide a.videoOynat:hover {
  color: #395fa7;
  background: rgba(0, 0, 0, 0.144);
}

.ilanDetayResim .swiper-slide a.videoOynat i {
  font-size: 100px;
}

.ilanDetayResim .swiper-slide a.videoOynat span {
  font-weight: 500;
  margin-top: 5px;
  display: block;
}

.ilanDetayResim .swiper-slide .swiper-slide-resim {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 336px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ilanDetayResim .swiper-slide .swiper-slide-resim img {
  height: 100%;
}

.ilanDetayResim .gallery-top2 {
  width: 100%;
  background: #fff;
}

.ilanDetayResim .slider-sektor {
  box-sizing: border-box;
  padding: 0px 0;
  position: relative;
  bottom: 0px;
  width: 100%;
  padding: 10px 65px;
  position: relative;
  margin-bottom: 0px;
  margin-top: 0px;
  background: #fff;
}

.ilanDetayResim .slider-sektor .swiper-button-prev,
.ilanDetayResim .slider-sektor .swiper-button-next {
  background: transparent;
  color: #000;
  position: absolute;
}

.ilanDetayResim .slider-sektor .swiper-button-prev {
  left: 10px;
  border-right: 1px solid #f1f1f1;
}

.ilanDetayResim .slider-sektor .swiper-button-next {
  right: 10px;
  border-left: 1px solid #f1f1f1;
  left: auto;
}

.ilanDetayResim .gallery-thumbs2 {
  box-sizing: border-box;
  padding: 0px 0px 0px 0px;
  position: relative;
  bottom: 0px;
  width: 100%;
}

.ilanDetayResim .gallery-thumbs2 .swiper-slide {
  position: relative;
  height: auto;
  cursor: pointer;
  color: #fff;
  text-align: center;
}

.ilanDetayResim .gallery-thumbs2 .swiper-slide span {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 20px;
}

.ilanDetayResim .gallery-thumbs2 .swiper-slide .textt-slide {
  width: auto;
  height: auto;
  left: 0px;
  z-index: 1;
  opacity: 0.5;
  transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  display: inline-block;
}

.ilanDetayResim .gallery-thumbs2 .swiper-slide .textt-slide .resimm {
  width: 100%;
  height: 65px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ccc;
}

.ilanDetayResim
  .gallery-thumbs2
  .swiper-slide-thumb-active
  .textt-slide
  .resimm {
  border-color: #d90000;
}

.ilanDetayResim .gallery-thumbs2 .swiper-slide .textt-slide .resimm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ilanDetayResim
  .gallery-thumbs2
  .swiper-slide
  .textt-slide
  .hero__slide-nav-progress {
  background-color: #c00;
  height: 5px;
  margin-bottom: 1.5rem;
  transition: width linear;
  width: 0;
  transition-duration: 5500ms;
  display: block;
  opacity: 0;
  position: absolute;
}

.ilanDetayResim
  .gallery-thumbs2
  .swiper-slide-thumb-active
  .hero__slide-nav-progress {
  width: calc(100% + 0px) !important;
  visibility: visible;
  opacity: 1 !important;
}

.ilanDetayResim .gallery-thumbs2 .swiper-slide-thumb-active .textt-slide {
  background: transparent;
  height: auto;
  opacity: 1;
}

.ilanDetayResim .gallery-thumbs2 .swiper-slide-thumb-active {
  opacity: 1;
  background: transparent;
  padding-top: 0px;
  transition: transform 0.2s;
}

.ilanDetayResim .gallery-thumbs2 .swiper-slide:hover .textt-slide {
  opacity: 1;
  transition: transform 0.2s;
}

.ilanDetayResim .gallery-thumbs2 .swiper-slide:hover {
  transition: transform 0.2s;
}

.ilanDetayResim .swiper-slide .text-bg .geciscizgiii {
  background-color: #fff;
  height: 5px;
  transition: width linear;
  width: 0;
  transition-duration: 5500ms;
  display: block;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.ilanDetayResim .swiper-slide-active .geciscizgiii {
  width: calc(100% + 0px) !important;
  visibility: visible;
  opacity: 1 !important;
}

.ilan-ozellikler {
  width: 100%;
  height: auto;
  border: none;
  padding: 0;
}

.ilan-ozellikler .ilan-ozellikler-liste {
  width: 100%;
  height: auto;
  border: none;
  -webkit-box-shadow: 1px 3px 42px 3px rgba(34, 36, 38, 0.15);
  box-shadow: 1px 3px 42px 3px rgba(34, 36, 38, 0.15);
  background: rgba(250, 250, 250);
  padding: 25px;
}

.ilan-ozellikler .ilan-ozellikler-liste h5 {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 15px;
  font-size: 17px;
}

.ilan-ozellikler .nav-tabs {
  width: 100%;
  height: auto;
  border: none;
}

.ilan-ozellikler .nav-tabs li:first-child a {
  border-left: none;
}

.ilan-ozellikler .nav-tabs li {
  width: calc(100% / 2);
  margin-bottom: 0px;
}

.ilan-ozellikler .nav-tabs li a {
  background: transparent;
  color: #001022;
  border: none;
  text-align: center;
  line-height: 40px;
  display: block;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-weight: 700;
  font-size: 15px;
}

.ilan-ozellikler .nav-tabs li a.active {
  background: #fff;
  border-bottom: 1px solid #fff;
  color: #001022;
}

.ilan-ozellikler .tab-content {
  position: relative;
  background: #fff;
  margin: 0;
  padding: 1em 1em;
  border-radius: 0.28571429rem;
  -webkit-border-radius: 0.28571429rem;
  -moz-border-radius: 0.28571429rem;
  -ms-border-radius: 0.28571429rem;
  -o-border-radius: 0.28571429rem;
}

.ilan-ozellikler .maps {
  height: 400px;
}

.ilan-ozellikler .maps iframe {
  width: 100%;
  height: 100%;
}

.ilan-ozellikler .listing_detail {
  padding-top: 3px;
  padding-bottom: 3px;
  color: #c3c3c3;
  font-weight: 300;
}

.ilan-ozellikler .listing_detail i {
  padding-right: 8px;
}

.ilan-ozellikler .listing_detail.active {
  color: #d90000;
  font-weight: 700;
}

.ilan-ozellikler h3 {
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 700;
}

/**/

.ilan-filtre {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.ilan-filtre .gorunum {
  margin-right: 15px;
}

.ilan-filtre .gorunum a {
  margin-right: 5px;
  color: #001022;
  cursor: pointer;
}

.ilan-filtre .gorunum a.active {
  margin-right: 5px;
  color: #d90000;
}

.ilan-filtre h3 {
  font-size: 15px;
  color: #001022;
  font-weight: 400;
  margin-bottom: 0px;
}

.ilan-filtre h3 span {
  color: #001022;
  font-weight: 600;
}

.form-select {
  font-size: 14px;
}

.ilan-filtre .form-control:focus,
.ilan-filtre .custom-select:focus {
  box-shadow: none;
  border-color: #e0e1e2;
}

.ilan-filtre a.arama-kaydet {
  display: block;
  font-weight: 400;
  margin-right: 15px;
  color: #001022;
}

.ilan-filtre a.arama-kaydet i {
  margin-right: 10px;
}

.ilan-filtre a.arama-kaydet:hover {
  color: #d90000;
}

/*.liste-tab */

.liste-tab {
  position: relative;
}

.liste-tab .FiltreAdres {
  display: none;
  position: absolute;
  z-index: 250;
  left: 10px;
  top: 0;
  width: 280px;
  border: 1px solid #c0c0c0;
  border-radius: 2px;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  z-index: 999;
  border-radius: 3px;
}

.liste-tab .FiltreAdres .Filtre-Scrool-Header {
  width: 100%;
  display: flex;
  padding: 12px;
  align-items: center;
}

.liste-tab .FiltreAdres .Filtre-Scrool-Header .form-control {
  border-radius: 3px;
  width: calc(100% - 34px);
}

.liste-tab .FiltreAdres .Filtre-Scrool-Header .Filtre-adres-kapat {
  margin-left: 5px;
  width: 33px;
  height: 33px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 12px;
}

.liste-tab .FiltreAdres .Filtre-Scrool-Header .Filtre-adres-kapat:hover {
  background: #000;
  color: #fff;
}

.liste-tab .FiltreAdres.active {
  display: block;
}

.liste-tab .Filtre-Scrool-body {
  height: auto;
  background: #fff;
  padding: 14px 0px;
  border-top: 1px solid #ebebeb;
}

.liste-tab .Filtre-Scrool {
  height: 330px;
  overflow-y: scroll;
  background: #fff;
  max-width: 97%;
}

.liste-tab .FiltreAdres ul {
  height: auto;
  padding: 0px 6px 0px 0px;
}

.liste-tab .FiltreAdres ul li {
  height: auto;
  list-style: none;
}

.liste-tab .FiltreAdres ul li a {
  height: auto;
  padding: 3px 14px;
  list-style: none;
  display: flex;
  justify-content: start;
  align-items: center;
}

.liste-tab .FiltreAdres ul li .adres_checkbox {
  margin-right: 7px;
}

.liste-tab .FiltreAdres ul li .mahalle-ana-baslik {
  background: #dedede;
  font-weight: 700;
  padding-top: 9px;
  padding-bottom: 9px;
  margin-bottom: 5px;
  margin-top: 0px;
  color: #041425;
  display: flex;
  align-items: center;
  padding-left: 15px;
  width: 100%;
}

.liste-tab .FiltreAdres ul li .mahalle-ana-baslik a:hover {
  background: transparent;
  color: #041425 !important;
}

.liste-tab .FiltreAdres ul li .mahalle-ana-baslik:hover {
  color: #041425;
}

.liste-tab .FiltreAdres ul li ul li {
  padding-left: 15px;
}

.liste-tab .FiltreAdres ul li a:hover {
  background: #d90000;
  color: #fff;
}

.liste-tab .Filtre-Scrool::-webkit-scrollbar-track {
  background-color: #dedede;
  border-radius: 3px;
}

.liste-tab .Filtre-Scrool::-webkit-scrollbar {
  width: 6px;
  background-color: #dedede;
  border-radius: 3px;
}

.liste-tab .Filtre-Scrool::-webkit-scrollbar-thumb {
  background-color: #a2a2a2;
  border-radius: 3px;
}

.liste-tab .liste1 li a {
  font-size: 14px;
  color: #001022;
}

.liste-tab .liste1 li.ms-3 a {
  font-weight: 600;
}

.liste-tab .liste1 li.ms-4 a {
  font-weight: 300;
}

.liste-tab .liste1 li:hover a {
  color: #d90000;
  font-weight: 600;
}

.liste-tab .liste1 li.current a {
  color: #000;
  font-weight: 600;
}

.liste-tab .liste1 li.active a {
  color: #d90000;
  font-weight: 600;
}

.liste-tab .liste1 li {
  list-style-type: none;
}

.liste-tab .liste1 li a {
  font-size: 15px;
  color: #001022;
  font-weight: 600;
  padding: 1px 0px;
  display: block;
}

.liste-tab .liste1 li .ilan-sayisi {
  font-size: 14px;
  color: #a2a2a2;
  font-weight: 400;
  margin-left: 4px;
}

.liste-tab .il-sec {
  margin-top: 5px;
}

.liste-tab .il-sec select {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  font-size: 15px;
  line-height: 30px;
  background-color: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 2px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.liste-tab .ilce-sec {
  margin-top: 5px;
}

.liste-tab .ilce-sec select {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 30px;
  background-color: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 2px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.liste-tab .ilce-sec select.disabled {
  background: #ececec;
}

.liste-tab .mahalle-sec {
  margin-top: 5px;
}

.liste-tab .mahalle-sec select {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  line-height: 30px;
  background-color: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 2px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.liste-tab .mahalle-sec select.disabled {
  background: #ececec;
}

.liste-tab .select-bolumu .input-alani {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.liste-tab .select-bolumu .input-alani span {
  color: #bdbdbd;
}

.liste-tab .select-bolumu .input-alani .min-input input {
  display: inline-block;
  width: 100%;
  border: 1px solid #c0c0c0;
  height: 33px;
  font-size: 14px;
  line-height: 16px;
  padding: 5px;
  border-radius: 2px;
  margin-left: 0;
}

.liste-tab .select-bolumu .input-alani .max-input input {
  display: inline-block;
  width: 100%;
  border: 1px solid #c0c0c0;
  height: 33px;
  font-size: 14px;
  line-height: 16px;
  padding: 5px;
  border-radius: 3px;
  margin-left: 0;
}

.liste-tab .select-bolumu .input-alani .fiyat_input {
  position: relative;
  margin-top: 7px;
}

.liste-tab .select-bolumu .input-alani .fiyat_input label {
  color: #767676;
  font-weight: 400;
  position: absolute;
  pointer-events: none;
  left: 10px;
  top: 9px;
  transition: all 0.2s ease;
  -moz-transition: 0.2s ease all;
  -webkit-transition: all 0.2s ease;
  font-size: 13px;
}

.liste-tab .select-bolumu .input-alani .fiyat_input input:focus ~ label,
.liste-tab
  .select-bolumu
  .input-alani
  .fiyat_input
  input:not(:placeholder-shown)
  ~ label {
  top: -7px;
  font-size: 10px;
  padding: 0px 3px;
  background: #fff;
}

.liste-tab .select-bolumu .input-alani .fiyat_input .currency {
  position: absolute;
  right: 7px;
  font-size: 13px;
  top: 9px;
  color: #767676;
}

.liste-tab .select-bolumu {
  position: relative;
  background: #fff;
  padding: 10px 10px;
  border-bottom: 1px solid #e2e2e2;
  cursor: pointer;
}

.liste-tab .select-bolumu {
  position: relative;
  margin-bottom: 6px;
  border: 1px solid rgba(34, 36, 38, 0.11);
}

.liste-tab .select-bolumu .form-liste-bolumu {
  position: relative;
  background: #fff;
  padding: 0px 13px;
  cursor: pointer;
  margin-bottom: 6px;
  height: 33px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 3px;
  font-weight: 400;
}

.liste-tab .select-bolumu .form-liste-bolumu.pasif {
  background: #f0f0f0;
}

.liste-tab .select-bolumu .form-liste-bolumu h3 {
  font-weight: 400;
}

.liste-tab .select-bolumu .form-liste-bolumu h3 span {
  font-weight: 700;
}

.liste-tab .select-bolumu .form-liste-bolumu .ust-baslik {
  width: 100%;
}

.liste-tab .select-bolumu.ilanarama .ara {
  border-radius: 3px;
  font-size: 14px;
  background: #d90000;
  color: #fff;
  border: none;
  padding: 5px 10px;
  margin-left: 7px;
}

.liste-tab .select-bolumu .ust-baslik {
  display: flex;
  align-items: center;
}

.liste-tab .select-bolumu .ust-baslik i {
  margin-right: 0px;
}

.liste-tab .select-bolumu h3 {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0px;
}

.liste-tab .select-bolumu h3.filtre-baslik {
  display: flex;
  align-items: center;
}

.liste-tab .select-bolumu h3.filtre-baslik .filtre-icon {
  width: 21px;
}

.liste-tab .select-bolumu h3.filtre-baslik b {
  font-weight: 600;
}

.select-bolumu .select2-container--default .select2-selection--multiple {
  min-height: auto;
}

.select-bolumu
  .select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  color: #000;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #f1f1f1;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar {
  width: 6px;
  background-color: #f1f1f1;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #001022;
}

.liste-tab .select-bolumu .checkbox-alani {
  max-height: 0;
  overflow-y: auto;
  padding: 0px 5px;
  transition: max-height 0.3s ease;
}

.liste-tab .select-bolumu .checkbox-alani li {
  font-size: 14px;
  list-style-type: none;
  margin-top: 2px;
  display: flex;
  align-items: center;
}

.liste-tab .select-bolumu .checkbox-alani li:hover {
  color: #d90000;
}

.liste-tab .select-bolumu .checkbox-alani li .form-check {
  display: block;
  min-height: 1.3rem;
}

.liste-tab .select-bolumu .checkbox-alani li .form-check-label {
  font-weight: 600;
}

.liste-tab .select-bolumu .checkbox-alani li .custom-checkbox {
  font-size: 13px;
  line-height: 25px;
}

.liste-tab .select-bolumu .checkbox-alani li a input {
  margin-right: 5px;
}

/* width */

.liste-tab .select-bolumu .checkbox-alani::-webkit-scrollbar {
  width: 8px;
}

/* Track */

.liste-tab .select-bolumu .checkbox-alani::-webkit-scrollbar-track {
  background: #fff;
  border: 1px solid #f1f1f1;
  position: relative;
  top: 0;
  left: 0;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
}

.liste-tab .select-bolumu .checkbox-alani::-webkit-scrollbar-thumb {
  border: 0;
  background: #a2a2a2;
  border-radius: 3px;
  cursor: pointer;
}

.liste-tab .select-bolumu .checkbox-alani::-webkit-scrollbar-thumb:hover {
  background: #555;
  cursor: pointer;
}

.liste-tab .select-bolumu .input-alani {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.liste-tab .select-bolumu .input-alani span {
  color: #bdbdbd;
}

.liste-tab .select-bolumu .input-alani .kelime-input {
  display: inline-block;
  width: 100%;
  border: 1px solid #c0c0c0;
  height: 32px;
  font-size: 12px;
  line-height: 16px;
  padding: 5px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-right: 5px;
}

.dm-select {
  width: auto;
}

.dm-select .dm-select-box {
  position: relative;
  width: 100%;
}

.dm-select .dm-select-box .default-option {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 400;
  background-color: #fff;
  color: #373636;
  border: none;
  height: 40px;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  border: solid 1px #dee2e6;
  width: 100%;
  border-radius: 3px;
}

.dm-select .dm-select-box .default-option:after {
  content: "\eab2";
  position: relative;
  margin-left: auto;
  top: 0px;
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  background: transparent;
  color: #000;
  z-index: 99;
  font-family: "fontello";
}

.dm-select .dm-select-box .default-option:hover {
  cursor: default;
}

.dm-select .dm-select-box .dm-options {
  display: none;
  width: calc(100% + 0px);
  max-height: 270px;
  overflow: auto;
  position: absolute;
  z-index: 1;
  background-color: #fff;
  left: 0px;
  top: auto;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.dm-select .dm-select-box .dm-options .dm-option {
  padding: 4px 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.font_level_1 {
  font-weight: 700 !important;
}

.font_level_2 {
  font-weight: 600 !important;
  padding-left: 30px !important;
}

.font_level_3 {
  font-weight: 300 !important;
  padding-left: 40px !important;
}

.dm-select .dm-select-box .dm-options .dm-option:hover {
  background-color: #e7e7e7;
  cursor: pointer;
}

.dm-select .dm-select-box .dm-options::-webkit-scrollbar {
  width: 5px;
}

.dm-select .dm-select-box .dm-options::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.dm-select .dm-select-box .dm-options::-webkit-scrollbar-thumb {
  background: #d90000;
}

/**/

.custom-checkbox {
  display: flex;
  align-items: center;
}

.custom-control-label {
  padding-left: 10px;
  font-weight: 400;
}

.custom-control-input {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #cbcbcb;
  color: #fff;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #d90000;
  background-color: #d90000;
}

.custom-checkbox .custom-control-label::before:focus {
  box-shadow: none;
  outline: none;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.custom-control-label::before {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background: none;
  border: none;
}

.custom-control-label::before:focus {
  box-sizing: none;
  outline: none;
}

.custom-radio .custom-control-label::before {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

a.listing-bottom-turbo {
  width: 100%;
  height: auto;
  background: #e61e28;
  display: block;
  text-align: center;
  color: #001022;
  margin-bottom: 10px;
  font-size: 13px;
  padding: 5px 0px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

a.listing-bottom-turbo .tdu {
  font-weight: 700;
}

/*İlan Detay Son*/

/* Üyelik Başlangıç*/

.login {
  width: 100%;
  height: auto;
  background: url(../images/slider/arama-banner.jpg);
  padding: 30px 0px;
  background-size: cover !important;
}

.login-resim {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center;
}

.loginbox {
  box-shadow: 0px 0px 1px hsla(0, 0%, 0%, 0.24);
}

.login-ic {
  background: #fff;
  padding: 20px;
}

.header-logo {
  background: #fff;
  padding: 16px 0px;
  border-bottom: 1px solid #eaeaea;
}

.login-logo {
  width: 100%;
  height: auto;
  display: block;
}

.login-logo img {
  height: 32px;
}

.login-baslik {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.login-baslik h4 {
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 5px;
  font-size: 16px;
}

.login-baslik p {
  font-weight: 300;
  margin-top: 0px;
  margin-bottom: 0px;
  opacity: 70%;
  font-size: 14px;
}

.forny-form .form-group {
  margin-bottom: 7px;
  position: relative;
}

.forny-form .form-group label {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 12px;
}

.forny-form .form-group2 {
  background: #fff;
  border: solid 1px #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-top: 15px;
}

.forny-form .basliklabel {
  margin-bottom: 5px;
  display: block;
}

.forny-form .form-group .input-group {
  background: #f5f7fa;
  border: solid 1px #f5f7fa;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  position: relative;
}

.forny-form .form-group .input-group .input-group-prepend {
  background: transparent;
  border: none;
  display: flex;
}

.forny-form .form-group .input-group .input-group-prepend .input-group-text {
  background: transparent;
  border: none;
  padding: 0px 12px 0px 12px;
  font-size: 17px;
  border-right: 1px solid #eaeaea;
}

.forny-form .form-group .input-group .form-control {
  border: none;
  background: transparent;
  font-size: 13px;
  padding: 7px 12px;
}

.forny-form .form-group .input-group .form-control {
  border: none;
  background: transparent;
  font-size: 13px;
  padding: 7px 12px;
}

.forny-form .form-group .input-group .goster {
  position: absolute;
  right: 13px;
  top: 8px;
  cursor: pointer;
  z-index: 22;
}

.forny-form .sifremi-unuttum {
  font-size: 13px;
  font-weight: 500;
  display: block;
  text-align: left;
  color: #001022;
  cursor: pointer;
  text-decoration: underline;
}

.forny-form .sifremi-unuttum-menu {
  padding: 15px;
  margin-top: 23px;
  border: solid 1px #d3d7dd;
  border-radius: 3px;
  display: none;
}

.forny-form .sifremi-unuttum-menu-open {
  display: block;
}

.forny-form .field__label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0;
  display: block;
}

.forny-form .kapaticon {
  color: #001022;
  cursor: pointer;
  font-size: 14px;
}

.forny-form .form-group .btn-primary2 {
  height: 26px;
  width: 26px;
  font-size: 9px;
  box-sizing: border-box;
  text-transform: uppercase;
  color: #fff;
  box-shadow: none;
  background-color: #d90000;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  top: 3px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

.forny-form .form-group .btn-primary2:hover {
  background-color: #001022;
}

.forny-form .form-group .input-group .form-control:focus {
  outline: none;
  box-shadow: none;
}

.forny-form .form-group:focus-within {
  background: #fff;
  border-color: #d90000;
}

.forny-form .btn-gonder {
  background: #d90000;
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.forny-form .btn-gonder:focus {
  outline: none;
  box-shadow: none;
}

.forny-form .kayit-yazi {
  width: 100%;
  height: auto;
  color: #999;
}

.forny-form .kayit-yazi a {
  color: #d90000;
  font-weight: 700;
  cursor: pointer;
}

.forny-form .kayit-yazi a:hover {
  text-decoration: underline;
}

.forny-form .form-check {
  font-size: 14px;
}

.login-bilgi .liste {
  background: #fff;
  padding: 17.4px 15px;
}

.login-bilgi .liste a {
  display: flex;
  color: #1a2b49;
  text-decoration: none;
}

.login-bilgi .liste a .icon {
  display: flex;
  align-items: center;
  height: auto;
  width: 15%;
}

.login-bilgi .liste a .icon .svgIcon {
  fill: #d90000;
  height: 40px;
  width: 100%;
}

.login-bilgi .liste a .icon .svgIcon path {
  fill: #d90000;
}

.login-bilgi .liste a .text {
  width: 85%;
  height: auto;
  margin-top: 0px;
  padding-left: 15px;
}

.login-bilgi .liste a .text span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.login-bilgi .liste a .text small {
  display: block;
  margin-top: 4px;
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 1.4;
  opacity: 70%;
}

.login-bilgi .liste a:hover .text span,
.login-bilgi .liste a:hover .text small {
  color: #d90000;
}

.uyelik-paketleri {
  width: 100%;
  height: auto;
  margin-top: 0px;
  padding: 30px 0px;
}

.uyelik-paketleri h2 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.uyelik-paketleri .uyelik-liste {
  display: block;
}

.uyelik-paketleri .uyelik-liste .baslik.renk1 {
  background: #d90000;
}

.uyelik-paketleri .uyelik-liste .baslik.renk2 {
  background: #001022;
}

.uyelik-paketleri .uyelik-liste .baslik.renk3 {
  background: #15a2b8;
}

.uyelik-paketleri .uyelik-liste .baslik.renk4 {
  background: #ffc106;
}

.uyelik-paketleri .uyelik-liste .baslik {
  color: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.uyelik-paketleri .uyelik-liste .baslik h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 0px;
}

.uyelik-paketleri .uyelik-liste .aciklama {
  padding: 0px;
  margin: 0px;
  background: #fff;
  color: #001022;
}

.uyelik-paketleri .uyelik-liste .aciklama li:first-child {
  border-top: 0px;
}

.uyelik-paketleri .uyelik-liste .aciklama li {
  display: block;
  list-style: none;
  border-top: 1px solid #efefef;
  padding: 10px 10px;
}

.uyelik-paketleri .uyelik-liste .aciklama li span {
  margin-right: 10px;
  font-weight: 700;
}

.uyelik-paketleri .uyelik-liste .aciklama li i {
  margin-right: 10px;
}

.iletisim_baslik {
  font-size: 25px;
  text-align: center;
}

.iletisim_baslik .icon {
  font-size: 75px;
  display: block;
}

.iletisim_baslik span {
  font-size: 18px;
  display: block;
}

.form-check-input:checked {
  background-color: #d90000;
  border-color: #d90000;
}

/*detayli-arama*/

.detayli-arama {
  width: 100%;
  height: auto;
  position: relative;
}

.detayli-arama .form-liste {
  width: 100%;
  height: auto;
  position: relative;
  padding: 20px 0px;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
}

.detayli-arama .form-liste .label-baslik {
  width: 200px;
}

.detayli-arama .form-liste .detayli-sag {
  width: calc(100% - 200px);
}

.detayli-arama .list-group-item-action {
  padding: 4px 7px !important;
}

/* Üyelik Son*/

.referanslar-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.referanslar-card .referanslar-card-resim {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.referanslar-card .referanslar-card-resim img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.referanslar-card .card-title {
  font-size: 1.25rem;
  color: #333;
  font-weight: 500;
}

.referanslar-card .card-text {
  font-size: 1rem;
  color: #666;
}

footer.footer7 {
  width: 100%;
  height: auto;
  color: #fff;
  position: relative;
  overflow: hidden;
}

footer.footer7 .footer-orta {
  width: 100%;
  height: auto;
  position: relative;
}

footer.footer7 .footer-orta .circle-map {
  position: absolute;
  top: 20%;
  right: 18%;
  z-index: -1;
}

footer.footer7 .footer-logo {
  width: 100%;
  margin-bottom: 25px;
}

footer.footer7 .footer-logo img {
  height: 60px;
}

footer.footer7 .footer-liste {
  width: 100%;
  height: auto;
  padding: 20px 0px;
  text-align: center;
}

footer.footer7 .footer-liste h3 {
  width: 100%;
  height: auto;
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 700;
}

footer.footer7 .footer-liste p {
  width: 100%;
  height: auto;
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

footer.footer7 .footer-liste li {
  width: auto;
  height: auto;
  margin-top: 0px;
  margin-bottom: 4px;
  list-style: none;
  align-items: start;
  font-size: 15px;
}

footer.footer7 .footer-liste li a {
  color: #fff;
  padding: 0;
}

footer.footer7 .footer-liste li a:hover {
  color: #e61e28;
}

footer.footer7 .footer-sosyal {
  width: 100%;
  height: auto;
  margin-top: 0px;
}

footer.footer7 .footer-sosyal li {
  display: inline-block !important;
  margin-right: 5px;
}

footer.footer7 .footer-sosyal li a {
  position: relative;
  width: 35px;
  height: 35px;
  color: #021e4b;
  font-size: 14px;
  line-height: 33px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #021e4b;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  background: transparent;
}

footer.footer7 .footer-sosyal li a:hover {
  color: #fff !important;
  border-color: #021e4b;
  background: transparent;
}

footer.footer7 .footer-liste.galeri a img {
  width: 100%;
}

footer.footer7 .footer-liste.iletisim li {
  display: flex;
}

footer.footer7 .footer-liste.iletisim .icon {
  color: #fe8d18;
  font-size: 20px;
}

footer.footer7 .footer-liste.iletisim .text {
  padding-left: 15px;
  font-size: 15px;
}

footer.footer7 .footer-alt {
  width: 100%;
  height: auto;
  background: #fff;
  padding: 14px 0px 14px 0px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  position: relative;
  border-top: 1px solid #f1f1f1;
  color: #000;
}

footer.footer7 .footer-alt .hasem-logo {
  height: 15px;
  display: flex;
  align-items: center;
  margin-left: 15px;
  margin-top: -2px;
}

footer.footer7 .footer-alt .hasem-logo img {
  height: 100%;
}

.lines {
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  z-index: 0;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
}

.lines .line3 {
  right: 29% !important;
  left: auto !important;
}

.lines .line2 {
}

.lines .line {
  left: 20% !important;
}

.lines .line3,
.lines .line2,
.lines .line {
  width: 1px;
  left: 45%;
  background: hsla(0, 0%, 100%, 0.1);
  overflow: hidden;
  position: absolute;
  height: 100%;
}

.lines .line3:after,
.lines .line2:after,
.lines .line:after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(hsla(0, 0%, 100%, 0)),
    color-stop(75%, #fff),
    to(#fff)
  );
  background: -webkit-linear-gradient(
    top,
    hsla(0, 0%, 100%, 0),
    #fff 75%,
    #fff
  );
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, #fff 75%, #fff);
  -webkit-animation: run 7s 0s infinite;
  animation: run 7s 0s infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.lines .line2:after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.lines .line3:after {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

@keyframes run {
  0% {
    top: -50%;
  }

  to {
    top: 110%;
  }
}

.rg-image {
  height: 318px !important;
}

/* Satış Temsilcileri */

table.table-temsil {
  width: 100%;
  border: 1px solid #eff2f7;
  background: #fff;
}

table.table-temsil thead tr th {
  background: #edeff1;
}

table.table-temsil tr,
table.table-temsil td,
table.table-temsil th {
  border: 1px solid #e6ebf4;
  padding: 4px 10px;
}

table.table-temsil td {
  background: transparent;
  white-space: nowrap;
}

table.table-temsil td .ilan-sayisi {
  color: #fff;
  font-weight: 600;
  width: 23px;
  height: 23px;
  background: #001022;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

table.table-temsil td .ilanlistele {
  width: auto;
  border: solid 1px #d90000;
  border-radius: 3px;
  padding: 5px 5px;
  display: inline-flex;
  color: #d90000;
  font-weight: 600;
  font-size: 13px;
  height: 33px;
  align-items: center;
}

table.table-temsil td .ilanlistele:hover {
  color: #fff;
  background: #d90000;
}

table.table-temsil td .numara {
  color: #198754;
  font-weight: 600;
  cursor: pointer;
}

table.table-temsil td .toplam-ilan {
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

table.table-temsil td .baslik {
  cursor: pointer;
  max-width: 297px;
  overflow: hidden;
  text-overflow: ellipsis;
}

table.table-temsil tr {
  background: #fff;
}

table.table-temsil tr:hover {
  background: #f8f9fa;
}

table.table-temsil tr.pasif td {
  background: #e1e1e1;
  opacity: 30%;
}

table.table-temsil tr.pasif td.islem-buton {
  background: #f6f6f6;
  opacity: 1;
}

table.table-temsil tr.pasif td.islem-buton .renkbg {
  background: #999999;
  color: #fff;
}

/*---*/

table.table-borderless tr,
table.table-borderless td,
table.table-borderless th {
  white-space: nowrap;
}

table.table-temsil.kullanici_table tr td .kullanici_table_resim {
  width: 45px;
  height: 45px;
  overflow: hidden;
}

table.table-temsil.kullanici_table tr td .kullanici_table_resim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

table.table-temsil.kullanici_table tr td .adyoyad {
  width: 120px;
}

table.table-temsil.kullanici_table tr td.table_kisanot {
  width: 42px;
}

table.table-temsil.kullanici_table tr td.table_tarih {
  width: 150px;
  white-space: nowrap;
  vertical-align: middle;
}

table.table-temsil.kullanici_table tr td.table_fiyat {
  white-space: nowrap;
  vertical-align: middle;
}

table.table-temsil.kullanici_table tr td.table_baslik {
  white-space: nowrap;
  vertical-align: middle;
}

/*---*/

.card {
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}

.card .card-text {
  width: 100%;
}

.card .card-body-ic {
  padding: 20px;
  background: #f9f9f9;
}

.card-header2 {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
  border-bottom: 1px solid #e5e5e5;
}

.page-content-uyelik .ilanozellik_sec .card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border-bottom: navajowhite;
}

.page-content-uyelik .ilanozellik_sec .card {
  margin-bottom: 15px;
  background: #fff;
  border: none;
}

.header-title {
  color: #434343;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0px;
}

.page-content-uyelik label {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 14px;
  color: #757575;
  transition: 0.4s ease;
}

.page-content-uyelik label:hover {
  color: #434343;
}

.page-content-uyelik .form-group {
  margin-top: 7px;
}

.page-content-uyelik .form-group2 {
  margin-bottom: 7px;
}

.page-content-uyelik .form-group.active {
  padding: 20px;
}

.page-content-uyelik .e-posta-uyarii {
  border-radius: 3px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.page-content-uyelik .e-posta-uyarii.greenn {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.page-content-uyelik .e-posta-uyarii.redd {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.page-content-uyelik .e-posta-uyarii i {
  margin-right: 5px;
}

.page-content-uyelik .e-posta-uyarii i::before {
  font-weight: 600;
}

.page-content-uyelik .card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #edeff1;
  border-bottom: 0 solid #edeff1;
}

.page-content-uyelik .card-header h5 {
  font-size: 16px;
  font-weight: 700;
}

.page-content-uyelik #accordion .card-header:hover {
  background-color: #e3e5e6;
}

.page-content-uyelik .custom-control .custom-control-label {
  margin-bottom: 0px;
}

.page-content-uyelik .form-select,
.page-content-uyelik .form-control {
  font-size: 14px;
  height: 32px;
}

.page-content-uyelik .subekalin {
  font-weight: 700;
}

.ck-editor__editable_inline {
  height: 300px;
}

#imagePreview img {
  max-width: 100px;
  max-height: 100px;
  margin: 5px;
}

.btn-yesil {
  color: #fff;
  background-color: #d90000;
  border-color: #d90000;
}

.btn-siyah {
  color: #fff;
  background-color: #001022;
  border-color: #001022;
}

.btn-siyah:hover {
  color: #001022;
  background-color: transparent;
  border-color: #001022;
}

.btn-primary {
  color: #fff;
  background-color: #d90000;
  border-color: #d90000;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #d90000;
  border-color: #d90000;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: #d90000;
  border-color: #d90000;
  color: #fff;
}

.btn-yesil:hover {
  color: #fff;
  background-color: #1c8048;
  border-color: #1c8048;
}

.btn-primary:hover {
  color: #fff;
  background-color: #1c8048;
  border-color: #1c8048;
}

.card-body.list {
  min-height: auto !important;
}

.select2-container .select2-selection--single {
  height: 33px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #444;
  line-height: 21px !important;
}

.page-ilan-search {
  display: none !important;
}

.kullanici_resim_sec {
  line-height: 24px;
  width: auto;
  height: 163px;
  border: dashed 1px #a9a9a9;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex !important;
  flex-direction: column !important;
  font-size: 18px !important;
  padding: 0px 50px;
  border-radius: 3px;
}

.kullanici_resim_sec .resimsecc:before {
  content: "\e8f6";
  font-family: "Linearicons";
  display: block;
  text-align: center;
  font-size: 40px;
  color: #d90000;
  line-height: 1;
  margin-bottom: 15px;
}

.kullanici_resim_sec .resimsecc.secildi {
  color: #d90000;
}

.kullanici_resim_sec::after {
  content: "Resim Seç";
  user-select: none;
  align-items: center;
  color: #434343;
  font-size: 14px;
  background: #fff;
  height: 38px;
  border: 1px solid #cbcbcb;
  border-radius: 4px;
  padding: 12px;
  transition: all 0.12s linear;
  display: inline-flex;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
}

.kullanici_resim_sec i {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 15px;
}

.custom-file-label::after {
  content: "Resim Seç";
  line-height: 24px;
}

/*dogrulama_gonder*/

.dogrulama_gonder {
  width: 100%;
  height: auto;
  min-height: 300px;
}

.dogrulama_gonder .icon {
  width: 100%;
  height: auto;
  font-size: 50px;
  color: #d90000;
}

.dogrulama_gonder .container {
  border-radius: 2px;
  border: solid 1px #dedede;
  background-color: #fff;
  padding: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 620px !important;
  text-align: center;
}

.dogrulama_gonder h3 {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 15px;
}

.dogrulama_gonder .mail {
  text-decoration: underline;
  color: #d90000;
  font-weight: 700;
}

.text-right {
  text-align: right;
}

.a2a_svg {
  height: 35px !important;
  line-height: 35px !important;
  width: 35px !important;
  /*background: #666 !important;*/
}

.swal2-title {
  font-size: 50px !important;
  font-weight: 700 !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  top: 0;
}

.select2-container--default .select2-selection--single {
  padding: 5px 3px !important;
}

.select2-container--default .select2-selection--single {
  border-radius: 3px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100% !important;
}

.form-select,
.form-control,
.dropdown-menu,
.btn {
  border-radius: 3px;
  font-size: 14px;
}

.form-select,
.form-control {
  height: 33px;
}

.form-control::-ms-input-placeholder {
  color: #999;
}

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

.btn {
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-item {
  font-size: 14px;
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
}

/*kullanici_ilanlar_page*/

.kullanici_ilanlar_page {
  width: 100%;
  height: auto;
}

.kullanici_ilanlar_page .kil_header-title {
  width: 100%;
  height: auto;
  position: relative;
}

.kullanici_ilanlar_page .kil_header-title span {
  font-weight: 700;
}

.kullanici_ilanlar_page .kil_header-title h3 {
  width: 100%;
  height: auto;
  position: relative;
  font-weight: 700;
  font-size: 19px;
}

.kullanici_ilanlar_genel {
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 20px 20px 30px;
}

.kullanici_ilanlar_isim {
  display: flex;
  align-items: center;
  height: 75px;
  width: 100%;
}

.kullanici_ilanlar_isim .kullanici_ilanlar_avatar {
  position: relative;
}

.kullanici_ilanlar_isim .kullanici_ilanlar_avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.kullanici_ilanlar_name {
  color: #434343;
  font-size: 16px;
  font-weight: 700;
  margin-left: 11px;
  letter-spacing: 0.2px;
}

.kullanici_ilanlar_name span {
  display: block;
  text-transform: uppercase;
}

.kullanici_ilanlar_name small {
  display: block;
  font-weight: 300;
}

.kullanici_ilanlar_cizgi {
  height: 1px;
  background: #e5e5e5;
  margin: 20px 0;
  display: block;
  width: 100%;
}

.kullanici_ilanlar_menu {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}

.kullanici_ilanlar_menu li {
  width: 100%;
  height: auto;
  list-style: none;
  margin-top: 6px;
}

.kullanici_ilanlar_menu li a {
  width: 100%;
  height: auto;
  list-style: none;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.kullanici_ilanlar_menu li a:hover span {
  font-weight: 700;
  color: #434343;
}

.kullanici_ilanlar_menu li a.active span {
  font-weight: 700 !important;
  color: #434343;
}

.kullanici_ilanlar_menu li a .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: solid 2px #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bebebe;
  margin-right: 14px;
}

.kullanici_ilanlar_menu li a:hover .icon {
  background: #198754;
  border-color: #198754;
  color: #fff;
}

.kullanici_ilanlar_menu li a.active .icon {
  background: #198754;
  border-color: #198754;
  color: #fff;
}

.kullanici_ilanlar_menu li a span {
  font-size: 15px;
  font-weight: 600;
  color: #767676;
  transition: color 0.35s linear;
  margin-right: 8px;
}

.kullanici_ilanlar_menu li .kullanici_ilanlar_menu_alt {
  width: 100%;
  height: auto;
  margin-top: 6px;
}

.kullanici_ilanlar_menu li .kullanici_ilanlar_menu_alt li {
  width: 100%;
  height: auto;
  margin-top: 0px;
}

.kullanici_ilanlar_menu li .kullanici_ilanlar_menu_alt li a {
  width: 100%;
  height: auto;
}

.kullanici_ilanlar_menu li .kullanici_ilanlar_menu_alt li a span {
  font-size: 15px;
  font-weight: 400;
  color: #767676;
}

.kullanici_ilanlar_menu li .kullanici_ilanlar_menu_alt li a:hover span {
  font-weight: 700;
  color: #434343;
}

.kullanici_ilanlar_menu li .kullanici_ilanlar_menu_alt li a::before {
  width: 2px;
  height: 27px;
  margin: 0 28px 0 15px;
  background-color: #e1e1e1;
  content: "";
  display: block;
}

.kullanici_ilanlar_menu li .kullanici_ilanlar_menu_alt li a:hover::before {
  background-color: #198754;
}

.kullanici_ilanlar_ust {
  width: 100%;
  height: auto;
  margin-top: auto;
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}

.kullanici_ilanlar_ust li {
  width: auto;
  height: auto;
  margin-top: 0px;
  list-style: none;
}

.kullanici_ilanlar_ust li a {
  display: flex;
  width: auto;
  height: auto;
  align-items: center;
  cursor: pointer;
}

.kullanici_ilanlar_ust li a span {
  font-weight: 400;
  color: #767676;
}

.kullanici_ilanlar_ust li a:hover span {
  font-weight: 700;
  color: #d90000;
}

.kullanici_ilanlar_ust li a.active span {
  font-weight: 700;
  color: #d90000;
}

.kullanici_ilanlar_ust li:first-child a::before {
  display: none;
  margin: 0px;
}

.kullanici_ilanlar_ust li a::before {
  width: 1px;
  height: 14px;
  margin: 0 8px 0 8px;
  background-color: #e1e1e1;
  content: "";
  display: block;
}

.kullanici_ilanlar_ust li a:hover::before {
  background-color: #198754;
}

.kullanici_ilanlar_menu_count {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #434343;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  margin-left: 4px;
}

.kullanici_ilanlar_arama {
  width: 100%;
  height: auto;
}

.kullanici_ilanlar_arama li:first-child {
  margin-top: 0px;
}

.kullanici_ilanlar_arama li {
  width: 100%;
  height: auto;
  list-style: none;
  margin-top: 6px;
}

.kullanici_ilanlar_arama li label {
  font-size: 14px;
  font-weight: 600;
  color: #767676;
  transition: color 0.35s linear;
  margin-right: 8px;
  margin-bottom: 3px;
}

/*kullanici_ilanlar_liste*/

.kullanici_ilanlar_liste {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  height: auto;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: #fff;
  margin-bottom: 10px;
}

.kullanici_ilanlar_liste:hover {
  border-color: #d90000;
}

.kullanici_ilanlar_liste .kil_resim {
  position: relative;
  height: 130px;
  width: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  border-right: 1px solid #eaeaea;
}

.kullanici_ilanlar_liste .kil_resim img {
  max-width: 100% !important;
  max-height: 100% !important;
  height: auto;
  width: auto;
}

.kullanici_ilanlar_liste .kil_text {
  position: relative;
  width: calc(100% - 145px);
  padding: 10px 10px 10px 20px;
}

.kullanici_ilanlar_liste .kil_text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #434343;
  margin-bottom: 10px;
  /*white-space: nowrap;*/
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  /* İki satıra kadar göster */
  text-overflow: ellipsis;
  /* ... ekleyerek kes */
}

.kullanici_ilanlar_liste .kil_text .kil_ozellik {
  width: 100%;
  height: auto;
  display: flex;
}

.kullanici_ilanlar_liste .kil_text .kil_ozellik li:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: 0px;
}

.kullanici_ilanlar_liste .kil_text .kil_ozellik li {
  list-style: none;
  font-size: 15px;
  color: #797979;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  display: flex;
  align-items: center;
  border-right: 1px solid #cbcbcb;
  padding-right: 12px;
  margin-right: 12px;
  line-height: 1;
}

.kullanici_ilanlar_liste .kil_text .kil_ozellik li.fiyat {
  font-weight: 700;
  color: #434343;
}

.kullanici_ilanlar_liste .kil_text .kil-adres {
  list-style: none;
  font-size: 15px;
  color: #797979;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-top: 23px;
  flex-wrap: wrap;
}

.kullanici_ilanlar_liste .kil_text .kil-adres li:last-child {
  padding-left: 0px;
  margin-left: 0px;
  border-right: 0px;
}

.kullanici_ilanlar_liste .kil_text .kil-adres li {
  list-style: none;
  border-right: 1px solid #cbcbcb;
  padding-right: 12px;
  margin-right: 12px;
  font-weight: 600;
}

.kullanici_ilanlar_liste .kil_text .kil_danisma {
  font-weight: 600;
  color: #767676;
  margin-top: 2px;
  font-size: 14px;
}

.kullanici_ilanlar_liste .kil_text .kil_danisma i,
.kullanici_ilanlar_liste .kil_text .kil-adres i {
  margin-right: 4px;
  font-weight: 700;
  font-size: 13px;
}

.kullanici_ilanlar_liste .kil_text .kil_buttons {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 6px;
  right: 6px;
}

.kullanici_ilanlar_liste .kil_text .kil_buttons .not {
  user-select: none;
  align-items: center;
  color: #434343;
  font-size: 14px;
  background: #fff;
  height: 38px;
  border: 1px solid #cbcbcb;
  border-radius: 4px;
  padding: 12px;
  transition: all 0.12s linear;
  display: inline-flex;
  font-weight: 500;
  margin-right: 10px;
}

.kullanici_ilanlar_liste .kil_text .kil_buttons .not i {
  margin-right: 6px;
}

.kullanici_ilanlar_liste .kil_text .kil_buttons .btn {
  height: 38px;
  font-weight: 500;
}

.kullanici_ilanlar_liste.pasif .kil_resim img {
  opacity: 40%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.kullanici_ilanlar_liste.pasif .kil_text h3 {
  opacity: 40%;
}

.kullanici_ilanlar_liste.pasif .kil_text .kil_ozellik {
  opacity: 40%;
}

.kullanici_ilanlar_liste.pasif .kil_text .kil_danisma {
  opacity: 40%;
}

.kullanici_ilanlar_liste.pasif .renkbg {
  background: #666;
  color: #fff;
}

/*page-content-uyelik*/

.page-content-uyelik .stepwizard-row:before {
  display: none;
}

.page-content-uyelik .stepwizard-step a {
  display: flex;
  align-items: center;
}

.page-content-uyelik .stepwizard-step a .icon {
  cursor: pointer;
  width: 33px;
  height: 33px;
  background: #dfdfdf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
}

.page-content-uyelik .stepwizard-step a p {
  margin-top: 0px !important;
  padding-left: 15px;
  cursor: pointer;
  font-size: 16px;
  color: #a6a6a6;
  font-weight: 700;
  padding-left: 20px;
  margin-top: 1px;
}

.page-content-uyelik .stepwizard-step a.active p {
  color: #434343;
}

.page-content-uyelik .stepwizard-step a.active .icon {
  color: #fff;
  background: #d90000;
}

.page-content-uyelik .stepwizard-step {
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
}

.page-content-uyelik .stepwizard-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-content-uyelik .stepwizard-step:after {
  width: 80px;
  height: 1px;
  background: #dfdfdf;
  position: relative;
  content: "";
  margin: 3px 10px 0 10px;
}

.page-content-uyelik .stepwizard-step:nth-child(2)::after {
  display: none;
}

.page-content-uyelik .stepwizard-step .btn {
  width: 46px;
  height: 46px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  width: 33px;
  height: 33px;
  background: #dfdfdf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-color: #dfdfdf;
}

.page-content-uyelik .stepwizard-step .btn-default {
  border-color: #dfdfdf;
  color: #fff !important;
  cursor: default;
}

.page-content-uyelik .stepwizard-step .btn-yesil {
  border-color: #f00 !important;
  color: #fff !important;
  background: #f00 !important;
}

.page-content-uyelik .list-group-item {
  align-items: center;
  color: #434343;
  font-size: 14px;
  background: #fff;
  height: 38px;
  border: 1px solid #cbcbcb;
  border-radius: 3px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  transition: all 0.12s linear;
  margin-bottom: 3px;
}

.page-content-uyelik .list-group-item.active {
  background: #d90000;
  color: #fff;
  font-weight: 700;
}

.page-content-uyelik .list-group-item:hover {
  background: #d90000;
  color: #fff;
  font-weight: 700;
}

.page-content-uyelik .secilenler {
  margin-bottom: 10px;
  font-weight: 700;
}

/* İlan REsim */

.ilan-resim {
  position: relative;
  overflow: initial !important;
}

.ilan-resim .ilan-resim-btn {
  opacity: 0;
  position: absolute;
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  width: 100%;
  height: 40px;
  padding: 5px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  left: 0;
  bottom: -20px;
  align-items: center;
  display: flex;
  color: #a2a2a2;
  cursor: pointer;
  justify-content: center;
}

.ilan-resim:hover .ilan-resim-btn {
  opacity: 1;
}

.ilan-resim .ilan-resim-btn:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  transform: rotate(-45deg) translateY(-8px);
  top: 0;
  left: 50%;
  border: 1px solid #d2d2d2;
  border-left: none;
  border-bottom: none;
}

.ilan-resim-btn .btn {
  border-radius: 0.25rem;
  background: transparent;
  color: #7c7c7c !important;
  border: none;
  font-size: 19px;
}

.ilan-resim-btn .btn:hover {
  color: #000 !important;
}

.ilan-resim img {
  width: 120px;
  height: 100px;
  object-fit: cover;
}

/**/
.swal2-header {
  display: -webkit-box;
  display: flex !important;
  flex-direction: initial !important;
  align-items: center !important;
  justify-content: center !important;
}

.swal2-icon {
  margin: 1.25em 1.875em !important;
}

.swal2-title {
  margin: 0 !important;
}

.swal2-styled.swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #d90000 !important;
  color: #fff;
  font-size: 1.0625em;
  border-color: #d90000 !important;
}

/*font_level_1*/

.kilitle {
  overflow: hidden;
}

.kilitle::before {
  content: "";
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #00000091;
  z-index: 991;
}

.kilitle2::before {
  content: "";
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #00000091;
  z-index: 991;
}

/*filtre-ilan-search*/

.filtre-ilan-search {
  height: auto;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.filtre-ilan-search .form-control {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 14px;
  background-color: #fff;
  color: #373636;
  font-weight: 500;
  border: none;
  height: 33px;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  border: solid 1px #e5e5e5;
}

.filtre-ilan-search .ilan-ara {
  width: 70px;
  height: 33px;
  background: #d90000;
  border: none;
  color: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  padding: 0px 0px;
}

.filtre-ilan-search .ilan-ara i {
  margin-right: 5px;
}

.ilanekle-duzenle-textarea {
  min-height: 339px;
}

/*homeSlider*/

.homeSlider {
  width: 100%;
  height: auto;
  position: relative;
  width: calc(100% - 11px);
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  padding: 16px;
  border: 1px solid rgba(34, 36, 38, 0.11);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-top: 20px;
}

.homeSlider img {
  width: 100%;
}

/*HomeFirmaDestek*/

a.HomeFirmaDestek {
  background: #fff;
  border: 1px solid rgba(34, 36, 38, 0.11);
  padding: 24px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 3px;
  text-decoration: none;
  margin-top: 15px;
  display: block;
  color: #000000;
}

a.HomeFirmaDestek .HomeFirmaDestek-resim {
  width: 100%;
  height: 200px;
  background: #000;
  overflow: hidden;
  position: relative;
}

a.HomeFirmaDestek .HomeFirmaDestek-resim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a.HomeFirmaDestek .HomeFirmaDestek-icon {
  width: 100%;
  height: 95px;
  text-align: center;
}

a.HomeFirmaDestek .HomeFirmaDestek-icon img {
  height: 100%;
}

a.HomeFirmaDestek .HomeFirmaDestek-text {
  width: 100%;
  height: auto;
  overflow: hidden;
}

a.HomeFirmaDestek .HomeFirmaDestek-text .text1 {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  margin-top: 8px;
}

a.HomeFirmaDestek .HomeFirmaDestek-text .text2 {
  font-size: 14px;
  margin-top: 2px;
  text-align: center;
  font-weight: 500;
}

a.HomeFirmaDestek .HomeFirmaDestek-text .detaylar {
  font-size: 14px;
  margin-top: 8px;
  color: #000000;
  text-align: center;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
  text-decoration: underline;
}

a.HomeFirmaDestek:hover {
  background: #fff;
}

a.HomeFirmaDestek:hover {
  color: #2321ff;
}

a.HomeFirmaDestek:hover .HomeFirmaDestek-text .detaylar {
  color: #2321ff;
}

/*firmalar-liste*/

.firmalar-liste {
  width: 100%;
  height: auto;
  position: relative;
  background: #fff;
  margin: 6px 0;
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(34, 36, 38, 0.11);
}

.firmalar-liste .firmalar-resim {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px;
}

.firmalar-liste .firmalar-resim img {
  height: 60px;
  margin: 0 auto;
  max-width: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.firmalar-liste .firmalar-baslik {
  display: block;
  width: 100%;
  height: auto;
  font-weight: 700;
  font-size: 12px;
  border-top: 1px solid #ebebeb;
  padding: 13px 10px;
  color: #001022;
}

.firmalar-liste:hover .firmalar-baslik {
  color: #d90000;
}

.firmalar-liste:hover .firmalar-resim img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
  transition: all 0.5s ease;
}

.firmalar-liste:hover {
  border-color: #d90000;
}

/*iletisim-page*/

.iletisim-page {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.iletisim-page .btn {
  display: inline-flex;
}

.iletisim-page .bize-yaz {
  background: #ffc103 !important;
  color: #fff;
  border-color: #ffc103;
}

.iletisim-page .bize-yaz:hover {
  background: transparent !important;
  color: #001022 !important;
  border-color: #001022 !important;
}

.iletisim-page .iletisim-icon {
  height: 70px;
  margin-bottom: 35px;
}

.iletisim-page h2 {
  width: 100%;
  height: auto;
  position: relative;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 25px;
}

.iletisim-page h3 {
  width: 100%;
  height: auto;
  position: relative;
  font-size: 17px;
  font-weight: 400;
}

.iletisim-page b {
  font-weight: 700;
}

.iletisim-page .accordion {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 25px;
}

.iletisim-page .accordion .accordion-button {
  width: 100%;
  height: auto;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 15px;
}

.accordion-button:not(.collapsed) {
  background: #d900001c;
  color: #d90000;
  box-shadow: none;
}

.iletisim-page .accordion .accordion-item {
  border-radius: 3px;
  overflow: hidden;
  border: solid 1px #e5e5e5;
}

.iletisim-page .iletisimliste {
  width: 100%;
  height: auto;
  padding: 0px;
  display: flex;
  justify-content: center;
  font-size: 15px;
}

.iletisim-page .iletisimliste li:first-child {
  margin-left: 0px;
}

.iletisim-page .iletisimliste li {
  width: auto;
  height: auto;
  list-style: none;
  margin-left: 25px;
}

.iletisim-page .iletisimliste li a {
  color: #000;
  font-weight: 500;
  text-decoration: underline;
}

/* YEni Table Listeleme */

table.table-ilan {
  width: 100%;
  height: auto;
}

table.table-ilan tbody {
}

table.table-ilan .table-ilan-tr {
  width: 100%;
}

/* Table İlan Listeleme Başlangıç*/

.table-ilan-liste {
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid rgba(34, 36, 38, 0.11);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-bottom: 10px;
  position: relative;
  display: block;
}

.table-ilan-liste:hover {
  border-color: #e61e28;
}

.table-ilan-liste a {
  font-size: 14px;
  color: #263238;
  text-decoration: none;
}

.table-ilan-liste .ilan-bilgi {
  width: 100%;
  display: block;
}

.table-ilan-liste .ilan-bilgi .liste {
  height: auto;
  display: flex;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.table-ilan-liste .ilan-bilgi .liste span {
  padding-left: 10px;
  font-size: 13px;
}

.table-ilan-liste .ilan-bilgi .liste1 {
  width: 100%;
  background: #fafafa;
  font-weight: bold;
  font-size: 14px;
  color: #373737;
  border-right: 1px solid #eeeeee;
}

.table-ilan-liste .ilan-bilgi .liste2 {
  width: auto;
}

.table-ilan-liste .ilan-bilgi .liste3 {
  width: auto;
  border-left: 1px solid #eeeeee;
  padding-left: 15px;
  margin-left: 15px;
}

.table-ilan-liste .ilan-bilgi .liste2:hover,
.table-ilan-liste .ilan-bilgi .liste2.active {
  color: #d90000;
}

.table-ilan-liste .ilan-bilgi .liste3 .favori {
  font-family: "fontello";
}

.table-ilan-liste .ilan-bilgi .liste3 .favori:before {
  content: "\e83f";
}

.table-ilan-liste .ilan-bilgi .liste3.active .favori:before {
  content: "\e83e";
  color: #d90000;
}

.table-ilan-liste .ilan-bilgi .liste3:hover .favori:before {
  color: #d90000;
  content: "\e83e";
}

.table-ilan-liste .ilan-resim-sayfa {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  border-right: 1px solid #eaeaea;
}

.table-ilan-liste .ilan-resim-sayfa a {
  display: block;
}

.table-ilan-liste .ilan-resim-sayfa img {
  max-width: 100%;
  max-height: 100%;
}

.table-ilan-liste .ilan-resim-td {
  width: 140px;
}

.table-ilan-liste .ilan-aciklama-td {
}

.table-ilan-liste .ilan-adres-td {
  border-left: 1px solid #eaeaea;
  width: 152px;
  text-align: center;
}

.table-ilan-liste .ilan-aciklama {
  display: block;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
}

.table-ilan-liste .ilan-aciklama .ilan-baslik {
  display: -webkit-box !important;
  font-weight: 700;
  font-size: 15px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table-ilan-liste .ilan-aciklama .ilan-tarihi {
  border-left: 1px solid #ccc;
  padding-left: 15px;
}

.table-ilan-liste .ilan-aciklama a .ilan-baslik.gorunum2 {
  display: none;
}

.table-ilan-liste .ilan-aciklama a .ilan-baslik.gorunum1 {
  display: -webkit-box;
}

.table-ilan-liste .ilan-adres {
  font-size: 13px;
  opacity: 1;
  margin-top: 0px;
  overflow: hidden;
  color: #000 !important;
  font-weight: 700;
}

.table-ilan-liste .ilan-adres i {
  display: none;
}

.table-ilan-liste .ilan-adres li {
  list-style: none;
  display: block;
}

.table-ilan-liste .ilan-ozellik {
  display: block;
  margin-top: 8px;
  color: #64707c;
}

.table-ilan-liste .ilan-ozellik .liste {
  margin-right: 18px;
  font-weight: 600;
}

.table-ilan-liste .ilan-ozellik .liste span {
  padding-left: 6px;
}

.table-ilan-liste .ilan-ozellik .liste i::before {
  font-weight: 600;
}

.table-ilan-liste .ilan-fiyat {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  color: #d90000;
  line-height: 1;
}

.table-ilan-liste .gorunum-liste {
  display: none;
}

.table-ilan-liste .gorunum-galeri {
  display: none;
}

.table-ilan-liste.vitrin-ilan {
  background: rgba(255, 193, 0, 0.1);
}

/* Yan Yana Görünümü Başla */

table tr.table-ilan-tr.tablegorunum1 td table tbody {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between;*/
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste-hiza:nth-child(4n) {
  margin-right: 0px;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste-hiza {
  width: 24%;
  margin-right: 10px;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste {
  width: 100%;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste table tr.TableListe1 {
  width: 100%;
  display: block;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste .ilan-resim-td {
  width: 100%;
  border-right: 0px;
  display: block;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste .ilan-aciklama-td {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  display: block;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste .ilan-resim-td {
  width: 100%;
  border-right: 0px;
  display: block;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste .ilan-resim-sayfa {
  border: none;
  height: 150px;
  border-bottom: 1px solid #eaeaea;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste .ilan-ozellik {
  display: block !important;
}

table
  tr.table-ilan-tr.tablegorunum1
  .table-ilan-liste
  .ilan-aciklama
  .ilan-tarihi {
  border-left: 0;
  padding-left: 0;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste .ilan-aciklama {
  display: block;
  padding: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste .ilan-ozellik .liste {
  margin-right: 0;
  margin-bottom: 2px;
}

table
  tr.table-ilan-tr.tablegorunum1
  .table-ilan-liste
  .ilan-aciklama
  .ilan-baslik {
  font-size: 14px;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste .ilan-adres-td {
  width: 100%;
  text-align: left;
  padding: 0px 10px 10px;
  border: none;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste .ilan-adres {
  font-size: 12px;
  opacity: 1;
  margin-top: 0px;
  overflow: hidden;
  color: #000 !important;
  font-weight: 700;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

table tr.table-ilan-tr.tablegorunum1 .table-ilan-liste .ilan-adres li {
  list-style: none;
  display: inline-block;
}

table tr.table-ilan-tr.tablegorunum2 .gorunum-liste {
  display: block;
}

table tr.table-ilan-tr.tablegorunum1 .gorunum-galeri {
  display: block;
  margin-top: 10px;
}

table tr.table-ilan-tr.tablegorunum1 .ilan-adres-td {
  display: none;
}

/* Yan Yana Görünümü Son */

.spinner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.4rem;
}

.loading-text {
  margin-top: 8px;
  font-size: 1.2rem;
  margin-left: 25px;
  margin-bottom: 0px;
  color: #c22d35;
  font-weight: bold;
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* İLETİŞİM SAYFASI */

.iletisim1 {
  width: 100%;
  height: auto;
}

.iletisim1 .list-group-item {
  width: 100%;
  height: auto;
  border: solid 1px #f1f1f1;
  padding: 0px 15px;
}

.iletisim1 .list-group-item h6 {
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  opacity: 70%;
}

.iletisim1 .list-group-item p {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
}

.iletisim1 .rounded-circle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c22d35;
}

.iletisim1 .maps {
  width: 100%;
  height: 500px;
}

.iletisim1 .maps iframe {
  width: 100%;
  height: 100%;
}

a.WhatsApp {
  display: flex;
  font-size: 18px;
  background: #2eb843;
  font-weight: 600;
  width: 51px;
  height: 51px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.1s ease-out 0;
  -moz-transition: all 0.1s ease-out 0;
  -ms-transition: all 0.1s ease-out 0;
  -o-transition: all 0.1s ease-out 0;
  transition: all 0.1s ease-out 0;
  color: #fff;
  align-items: center;
  justify-content: center;
  animation: whatsapp infinite 2s linear;
  z-index: 9999;
}

@keyframes whatsapp {
  0% {
    box-shadow: 0 0 0 0 #2eb843;
  }

  50% {
    box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}

.swiper-pagination.pagination-yenieklenen {
  position: absolute;
  width: auto;
  text-align: right;
}
.swiper-pagination.pagination-yenieklenen2 {
  position: relative;
  width: auto;
  text-align: center;
  justify-content: center;
}

.swiper-pagination.pagination-yenieklenen .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  border: solid 2px #fff;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 50%;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  opacity: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination.pagination-yenieklenen .swiper-pagination-bullet::before {
  content: "";
  left: 0px;
  top: 0px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d31824;
  opacity: 0;
}

.swiper-pagination.pagination-yenieklenen .swiper-pagination-bullet-active {
  background: #fff;
  border: solid 2px #fff;
}

.swiper-pagination.pagination-yenieklenen
  .swiper-pagination-bullet-active::before {
  opacity: 1;
}

/* ilan detay paylaş*/

.social-share-buttons {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 0;
}

.social-share-buttons a {
  text-decoration: none;
  color: white;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-share-buttons .facebook {
  background-color: #3b5998;
}

.social-share-buttons .twitter {
  background-color: #1da1f2;
}

.social-share-buttons .whatsapp {
  background-color: #25d366;
}

.social-share-buttons .linkedin {
  background-color: #0077b5;
}

.social-share-buttons .copy-link {
  background-color: #6c757d;
}

.social-share-buttons a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/**/

/* --- Renk Değişkenleri --- */
:root {
  --navy: #002b71;
  --red: #df1524;
  --text-dark: #021e4b;
  --text-gray: #555;
}

.hakkimida {
  padding: 100px 0;
  background-color: #fff;
}

/* Üst Başlık */
.hakkimida .section-badge span {
  border: 1px solid var(--navy);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}

.main-heading {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  color: var(--text-dark);
}

.main-heading span {
  color: var(--red);
}

.main-heading2 {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
}

.main-heading2 span {
  color: var(--red);
}

.main-text {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  color: var(--text-dark);
}
/* Sol İçerik */

.hakkimida .about-text-content {
  margin-top: 35px;
}
.hakkimida .about-text-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.hakkimida .about-text-content p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.hakkimida .mission-box {
  background: #f8f9fa;
  border-left: 4px solid var(--red);
  padding: 20px 25px;
  margin-top: 25px;
}

.hakkimida .mission-box p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
}

/* Buton Tasarımı */

:root {
  --navy: #002b71;
  --red: #df1524;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  padding: 6px 6px 6px 25px;
  border-radius: 100px;
  text-decoration: none;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  gap: 20px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: none;
  cursor: pointer;
}

.about-btn-wrap {
  margin-top: 30px;
}

/* Kırmızı Daire */
.btn-more .icon-arrow {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

/* SVG İkon Ayarları */
.btn-more .icon-arrow svg {
  width: 20px;
  height: 20px;
  color: #002a70;
  /* Başlangıç Durumu: 45 Derece Yukarı Bakıyor */
  transform: rotate(-45deg);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- HOVER DURUMU --- */

.btn-more:hover {
  transform: translateY(-5px);
  background: #001f52; /* Hafif derin lacivert */
  box-shadow: 0 15px 30px rgba(0, 43, 113, 0.25);
}

/* Hover'da SVG'nin Düzelmesi (Sağa Bakması) */
.btn-more:hover .icon-arrow svg {
  transform: rotate(0deg); /* Düz sağa bakar */
}

/* Hover'da Kırmızı Dairenin Efekti */
.btn-more:hover .icon-arrow {
  transform: scale(1.05);
}

/* İçerideki metin için hafif kayma efekti (opsiyonel) */
.btn-more span {
  transition: transform 0.3s ease;
}

.btn-more:hover span {
  transform: translateX(-2px);
}

/* Sağ Taraf Görsel ve Kartlar */
.hakkimida .about-visual-box {
  position: relative;
  padding-top: 50px;
}

.hakkimida .main-img-wrap img {
  width: 100%;
  border-radius: 24px;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Kartlar */
.hakkimida .stat-cards {
  position: absolute;
  top: 0;
  right: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  width: 380px;
}

.hakkimida .stat-card {
  padding: 25px 21px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
}

.hakkimida .stat-card:hover {
  transform: translateY(-5px);
}

.hakkimida .stat-card .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.hakkimida .stat-card .number {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.hakkimida .stat-card .number small {
  font-size: 18px;
  margin-left: 4px;
}
.hakkimida .stat-card .sub {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 500;
}

/* Kart Renk Grupları */
.stat-card.navy {
  background: var(--navy);
  color: #fff;
}
.stat-card.red {
  background: var(--red);
  color: #fff;
}
.stat-card.white {
  background: #fff;
  color: var(--navy);
  border: 1px solid #eee;
}
.stat-card.light {
  background: #f1f3f7;
  color: var(--navy);
}

/* Responsive */

.kurumsal-kategori-alan {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: #000;
}

/* Şehir Arka Planı - Çok Hafif ve Net */
.kurumsal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat;
  opacity: 20%; /* Görseli çok hafiflettik, kurumsallık için */
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

/* Başlık Grubu */
.ust-bilgi {
  text-align: center;
  margin-bottom: 60px;
}

.ust-bilgi h4 {
  color: #d90000;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 700;
}

.ust-bilgi h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}

.ust-bilgi .ayrac {
  width: 60px;
  height: 3px;
  background: #d90000;
  margin: 20px auto;
}

/* Grid Yapısı */
.kategori-liste-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Kart Tasarımı */
.kurumsal-kart {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Kart Hover Durumu */
.kurumsal-kart:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #d90000;
}

/* Hoverda Üstten Çıkan İnce Kırmızı Çizgi */
.kart-ust-cizgi {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #d90000;
  transition: width 0.3s ease;
}

.kurumsal-kart:hover .kart-ust-cizgi {
  width: 100%;
}

/* İkon Alanı */
.ikon-cerceve {
  width: 70px;
  height: 70px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #4a5568;
  transition: all 0.3s ease;
}

.kurumsal-kart:hover .ikon-cerceve {
  background: #fff5f5;
  color: #d90000;
  transform: rotateY(180deg); /* Modern bir dönüş efekti */
}

.ikon-cerceve svg {
  width: 32px;
  height: 32px;
}

/* Yazılar */
.kurumsal-kart h3 {
  color: #2d3748;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.kurumsal-kart p {
  color: #718096;
  font-size: 14px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .ust-bilgi h2 {
    font-size: 28px;
  }
  .kategori-liste-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ANA BÖLÜM AYARLARI */
.emlak_premium_bento {
  padding: 80px 20px;
  background-color: #f8f9fa;
  /* Hafif gri-beyaz arka plan, ferahlık sağlar */
}

/* KONTEYNER */

/* GRID SİSTEMİ */
.emlak_premium_bento .emlak_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

/* KART TASARIMI */
.emlak_premium_bento .emlak_card {
  position: relative;
  border-radius: 5px;
  /* Daha yumuşak köşeler */
  overflow: hidden;
  background: #e0e0e0;
  /* Resim yüklenene kadar soft gri */
  cursor: pointer;
  height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Çok hafif derinlik */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* BENTO YERLEŞİMİ */
.emlak_premium_bento .card_large {
  grid-column: span 4;
}

.emlak_premium_bento .card_small {
  grid-column: span 2;
}

.emlak_premium_bento .card_equal {
  grid-column: span 2;
  height: 340px;
}

/* GÖRSEL AYARLARI */
.emlak_premium_bento .emlak_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  opacity: 0.95;
  /* Görsel artık daha canlı */
}

/* SOFT OVERLAY (Karartma değil, okunabilirlik katmanı) */
.emlak_premium_bento .emlak_overlay {
  position: absolute;
  inset: 0;
  /* Alttan yukarı hafif bir gölge, siyah değil daha çok füme tonları */
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.8) 0%,
    rgba(15, 23, 42, 0.2) 40%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
  transition: all 0.4s ease;
}

/* METİN ALANI */
.emlak_premium_bento .emlak_text {
  width: 100%;
}

.emlak_premium_bento .emlak_baslik {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
  /* Tamamı büyük yerine daha modern */
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* HOVER İLE GELEN GİZLİ YAZI */
.emlak_premium_bento .emlak_gizli_yazi {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

/* HOVER ETKİLEŞİMLERİ */
.emlak_premium_bento .emlak_card:hover {
  transform: translateY(-5px);
  /* Kartın hafif yükselmesi */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.emlak_premium_bento .emlak_card:hover img {
  transform: scale(1.08);
  opacity: 1;
}

.emlak_premium_bento .emlak_card:hover .emlak_overlay {
  /* Hoverda biraz daha belirginleşen ama boğmayan renk */
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.4) 60%,
    rgba(15, 23, 42, 0.1) 100%
  );
}

.emlak_premium_bento .emlak_card:hover .emlak_gizli_yazi {
  margin-top: 12px;
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE AYARLAR */
@media (max-width: 1024px) {
  .emlak_premium_bento .emlak_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .emlak_premium_bento .card_large,
  .emlak_premium_bento .card_small,
  .emlak_premium_bento .card_equal {
    grid-column: span 2;
    height: 350px;
  }
}

@media (max-width: 650px) {
  .emlak_premium_bento {
    padding: 40px 15px;
  }

  .emlak_premium_bento .emlak_grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .emlak_premium_bento .card_large,
  .emlak_premium_bento .card_small,
  .emlak_premium_bento .card_equal {
    grid-column: span 1;
    height: 300px;
  }

  .emlak_premium_bento .emlak_baslik {
    font-size: 18px;
  }
}

.container {
  max-width: 1220px;
}

/* YORUMLAR BÖLÜMÜ ANA STİLLERİ */
.premium_reviews_section {
  padding: 0px 0px 80px;
  background-color: #fcfcfc;
}

.rev_container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID SİSTEMİ (Bento Tarzı) */
.rev_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* YORUM KARTI TASARIMI */
.rev_card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.rev_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(184, 149, 100, 0.1);
  border-color: #021e4b;
}

/* GOOGLE LOGO VE YILDIZLAR */
.rev_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.rev_stars {
  color: #021e4b; /* Altın Tonu */
  font-size: 16px;
}

.google_icon {
  width: 22px;
  height: 22px;
}

/* YORUM METNİ */
.rev_text {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 25px;
}

/* KULLANICI BİLGİSİ */
.rev_user {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #f5f5f5;
  padding-top: 20px;
}

.rev_avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #021e4b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.rev_name {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 15px;
  margin: 0;
}

.rev_date {
  font-size: 12px;
  color: #999;
}

/* ALT BUTON */
.rev_footer_btn {
  text-align: center;
  margin-top: 50px;
}

.google_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.google_btn:hover {
  background: #021e4b;
  color: #fff;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rev_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .rev_grid {
    grid-template-columns: 1fr;
  }
}

/* ANA BÖLÜM AYARLARI */
.emlak_premium_contact {
  padding: 0;
  background-color: #ffffff; /* Arka plan beyaz */
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 50px;
  border-top: 1px solid #f0f0f0;
}

/* BİLGİ KUTULARI (SOL VE ORTA) */
.contact_box {
  flex: 1;
  min-width: 300px;
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  border-right: 1px solid #f0f0f0; /* Bölmeler arası ince çizgi */
  transition: all 0.4s ease;
}

/* HARİTA KUTUSU (SAĞ) */
.contact_map_box {
  flex: 2.7;
  min-width: 490px;
  min-height: 450px;
  background-color: #f9f9f9;
}

.contact_map_box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* SVG İKON DAİRESİ */
.contact_svg_circle {
  width: 70px;
  height: 70px;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact_svg_circle svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #1a1a1a;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.4s ease;
}

/* HOVER EFEKTİ */
.contact_box:hover {
  background-color: #fafafa;
}

.contact_box:hover .contact_svg_circle {
  background-color: #d31824;
  transform: translateY(-5px);
  border-color: #d31824;
}

.contact_box:hover .contact_svg_circle svg {
  stroke: #ffffff; /* İkon beyaza döner */
}

/* METİN STİLLERİ */
.contact_box h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  letter-spacing: 0;
}

.contact_content {
  font-size: 15px;
  color: #777777;
  line-height: 1.4;
}

.contact_content strong {
  display: block;
  color: #1a1a1a;
  font-size: 17px;
  margin: 10px 0;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .contact_map_box {
    flex: 1 1 100%;
    order: 3;
  }
}

@media (max-width: 768px) {
  .contact_box {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
  .contact_premium_contact {
    min-height: auto;
  }
}

/* PREMIUM PAGE HEADER */
.premium_page_header {
  position: relative;
  padding: 180px 0 80px;
  background: #1a1a1a;
  background-size: cover !important;
  background-position: center !important;
  color: #ffffff;
  text-align: center;
}

.premium_page_header::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 70%;
  background: #1a1a1a;
}

.premium_page_header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* MODERN BREADCRUMB */
.premium_page_header .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: inline-flex;
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.premium_page_header .breadcrumb-item + .breadcrumb-item::before {
  content: "•";
  color: #fff;
  padding: 0 10px;
}

.premium_page_header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.premium_page_header .breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

/* İÇERİK ALANI TASARIMI */
.page_content_wrapper {
  padding: 80px 0;
  background: #ffffff;
}

.premium_text_block {
  line-height: 1.8;
  color: #444;
  font-size: 16px;
}

.premium_text_block h2 {
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.premium_text_block h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #fff;
}

/**/

/* Agent Card V2 Tasarımı */
.agent-card-v2 {
  background: #fff;
  border: 1px solid #eef0f5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-family: "Inter", sans-serif;
  max-width: 400px;
  margin: 0 auto;
}

/* Header: Ofis Bilgisi */
.agent-card-v2-header {
  background: #f8fafc;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #f0f2f5;
  transition: background 0.3s;
}
.agent-card-v2-header:hover {
  background: #f1f5f9;
}

.office-logo-wrap {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.office-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.fallback-logo {
  opacity: 0.4;
  filter: grayscale(1);
}

.office-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #8898aa;
  font-weight: 700;
  display: block;
}
.office-name {
  font-size: 15px;
  color: #1e293b;
  margin: 0;
  font-weight: 700;
}

/* Body Area */
.agent-card-v2-body {
  padding: 25px 20px;
}

.agent-name {
  font-size: 20px;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.agent-title {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
}

/* İletişim Butonları */
.agent-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-call-v2 {
  background: #003087; /* Kurumsal Mavi */
  color: #fff !important;
  text-decoration: none !important;
  padding: 12px 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-call-v2:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 48, 135, 0.3);
}
.btn-call-v2 .btn-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.btn-call-v2 .btn-text small {
  display: block;
  font-size: 10px;
  opacity: 0.8;
  text-transform: uppercase;
}
.btn-call-v2 .btn-text span {
  font-size: 16px;
  font-weight: 700;
}

.btn-whatsapp-v2 {
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  display: block;
  transition: all 0.3s;
}
.btn-whatsapp-v2:hover {
  background: #1eb956;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.secondary-phone-link {
  text-align: center;
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  margin-top: 5px;
}

/* Footer Linkleri */
.agent-footer-links {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
}
.footer-link {
  background: none;
  border: none;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #003087;
}

/* Paylaş Alanı */
.agent-share-v2 {
  background: #f8fafc;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.share-text {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
}
.share-icons {
  display: flex;
  gap: 8px;
}
.share-icons a,
.share-icons button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.sh-fb {
  background: #1877f2;
}
.sh-wa {
  background: #25d366;
}
.sh-in {
  background: #0077b5;
}
.sh-cp {
  background: #64748b;
}
.share-icons a:hover,
.share-icons button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .agent-card-v2 {
    max-width: 100%;
  }
}
