body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #fcfcfc;
}

header {
  background-color: #fff;
  padding: 0; /* üst-alt boşluk yok */
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto; /* logo ne kadarsa o kadar */
}

.logo {
  padding-left: 0; /* sola sıfırlandı */
  margin-left: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px; /* mevcut logo yüksekliği korunuyor */
  width: auto;
  display: block;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

nav a {
  color: #f57224;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #1d3557;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #f57224;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.form-section {
  padding: 2rem;
  max-width: 350px;
  margin: auto;
}

.form-section h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}


.submit-btn {
  background-color: #f57224;
  color: white;
  border: none;
  padding: 0.6rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #1d3557;
  color: #f57224;
}

footer {
  background-color: #1d3557;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-section {
    padding: 1rem;
  }
}
.tasiyici-section {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

.tasiyici-section h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1d3557;
}

.benefits {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.benefits li {
  background-color: #f9f9f9;
  border-left: 4px solid #f57224;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  border-radius: 6px;
  font-size: 1rem;
}

.join-whatsapp {
  text-align: center;
}

.whatsapp-button {
  display: inline-block;
  background-color: #f57224;
  color: white;
  padding: 0.9rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.whatsapp-button:hover {
  background-color: #1d3557;
  color: #f57224;
}

.qr-image {
  width: 180px;
  height: auto;
  margin-top: 1rem;
  border-radius: 10px;
  border: 2px solid #1d3557;
}
.contact-section {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  text-align: center;
}

.contact-section h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1d3557;
}

.contact-info p {
  font-size: 1rem;
  margin: 0.8rem 0;
  color: #333;
}

.contact-info a {
  color: #f57224;
  text-decoration: none;
}

.contact-info a:hover {
  color: #1d3557;
  text-decoration: underline;
}

.whatsapp-button {
  display: inline-block;
  background-color: #f57224;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1d3557;
  color: #f57224;
}
/* Blog Sayfası Temel Stil */
.blog-post {
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.blog-post h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.blog-post p.excerpt {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.blog-post .read-more {
  background-color: transparent;
  border: none;
  color: #f57224;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}


/* Sayfalama */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination a {
  text-decoration: none;
  padding: 0.6rem 1rem;
  background-color: #f57224;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: #1d3557;
  color: #f57224;
}

.pagination a.active {
  background-color: #1d3557;
  color: #f57224;
}
.blog-form-container {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.blog-form-container h1 {
  text-align: center;
  color: #1d3557;
  margin-bottom: 2rem;
}

.blog-form-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-form-container label {
  font-weight: 600;
  color: #1d3557;
}

.blog-form-container input,
.blog-form-container textarea {
  font-family: 'Poppins', sans-serif;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
}

.blog-form-container button {
  background-color: #f57224;
  color: #fff;
  padding: 0.8rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blog-form-container button:hover {
  background-color: #1d3557;
  color: #f57224;
}
/* Kampanyalar bölümü */
.campaign-container {
  padding: 40px 20px;
  max-width: 300px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
}

.campaign-container h1 {
  font-size: 28px;
  color: #1d3557;
  margin-bottom: 30px;
  text-align: center;
}

.campaign-card {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  transition: transform 0.3s ease;
}

.campaign-card:hover {
  transform: translateY(-5px);
}

.campaign-card img {
  width: 100%;
  height: auto;
  display: block;
}

.campaign-card p {
  padding: 15px 20px;
  color: #333;
  font-size: 16px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  background-color: #1d3557;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f57224;
}

.footer-invest {
  max-width: 400px;
  width: 100%;
  margin-top: 20px;
}

.footer-invest h3 {
  margin-bottom: 15px;
  color: #f57224;
}

.footer-invest form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-invest input,
.footer-invest textarea {
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

.footer-invest textarea {
  resize: vertical;
  height: 80px;
}

.footer-invest button {
  background-color: #f57224;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-invest button:hover {
  background-color: #fff;
  color: #1d3557;
}
select {
  font-family: 'Poppins', Arial, sans-serif;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #141414;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #ff6600;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  color: #141414;
  font-weight: 600;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    z-index: 999;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
.menu-icon svg {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-icon svg:hover {
  transform: scale(1.1);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  position: relative;
}

/* Hamburger menü - mobil için görünür, logo ile aralıklı */
.menu-icon {
  display: none;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #ff6600; /* TURUNCU */
    cursor: pointer;
    user-select: none;
    margin-left: auto; /* logo ile aralık yaratır */
    padding-left: 50px; /* ekstra boşluk */
  }

  nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    z-index: 999;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}.home-blog-slider {
  margin-top: 2px;        /* Form ile blog arasındaki boşluk */
  padding: 8px 12px 24px; /* Üst 8px, yanlar 12px, alt 24px */
  background: #f9f9f9;
  overflow-x: hidden;
}


.slider-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 12px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

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

.blog-card {
    flex: 0 0 150px;
    /* Kart genişliği */
    max-width: 150px;
    height: 180px;
    /* Kart yüksekliği */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
    scroll-snap-align: start;
    transition: transform 0.6s ease;
    overflow: hidden;
    cursor: pointer;
}

.blog-card:hover {
    transform: scale(1.50);
}

.blog-image {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.blog-content {
    padding: 6px 8px;
    text-align: center;
}

.blog-title {
    font-size: 12px;
    font-weight: 600;
    color: #141414;
    margin: 0;
    line-height: 1.3;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 2 satırda kes */
    -webkit-box-orient: vertical;
}

@media (min-width: 768px) {
    .blog-card {
        flex: 0 0 30%;
        max-width: 30%;
        height: auto;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-image {
        height: 140px;
    }
}
/* Görsel buton görünümü */
.select-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 16px;
  user-select: none;
  transition: all 0.2s ease;
}

.select-button:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Görsel ayarı */
.select-button img {
  width: 24px;
  height: 24px;
}

/* Select normal görünsün ama görünmez olsun */
select#neredenSelect {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
//arkaplan masaüstü mp4 video
#background-video {
  position: fixed;         /* sayfanın her yerinde sabit kalır */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* videoyu ekranı tamamen kaplayacak şekilde kırpar */
  z-index: -1;             /* içeriklerin arkasında kalır */
  background-position: center; /* senin kodundaki "center" etkisini sağlar */
}


/* Genel arka plan ayarı (bilgisayar) */
body {
    background-image: url('assets/arkaplanpc.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
//arkaplan video
#background-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* %30 karartma */
}

/* Mobil cihazlar için farklı arka plan */
@media only screen and (max-width: 768px) {
    body {
        background-image: url('assets/arkaplanmobil.jpg');
        background-attachment: scroll;
    }
}
.baslik-gorsel {
  font-size: 36px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  margin: 40px auto 10px;
  padding: 0 20px;
  display: block;
}
@media (max-width: 768px) {
  .baslik-gorsel {
    font-size: 20px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}
.teklif-buton {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.teklif-buton img {
  width: 100%;
  max-width: 140px; /* Butonun boyutu */
  height: auto;
  display: block;
  transition: transform 0.2s ease;
}

.teklif-buton img:hover {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .teklif-buton img {
    max-width: 90%;
  }
}
.form-card {
  background: #fff;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  max-width: 400px;
  margin: 1rem auto;
}

/* Nereden / Nereye kutuları */
.select-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 1rem;
}

.select-box {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 12px;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0.4rem 0.6rem;
  position: relative;
  overflow: hidden;
}

.select-box img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  flex-shrink: 0;
}

.select-box select {
  appearance: none;
  border: none;
  background: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800; /* Kalın yapar */
  width: 100%;
  outline: none;
  padding: 0;
  color: #141414;
  z-index: 1;
  background-c

}

/* Tarih & Yük türü kutuları */
.info-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 1rem;
}

.info-box {
  flex: 1;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-box label {
  font-weight: 600; /* Poppins kalın */
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-box input,
.info-box select {
  padding: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  border-radius: 6px;
  border: 1px solid #000;
  font-weight: 500;
}

/* İkon için */
.info-icon {
  width: 20px;
  height: 20px;
}

.info-box {
  flex: 1;
  background: #f9f9f9;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-box input,
.info-box select {
  width: 100%;
  padding: 0.5rem 0.6rem;
  font-family: inherit;
  border-radius: 6px;
  border: 1px solid #000;
  font-size: 14px;
}

/* Butonlar */
.butonlar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 1.5rem 0 1rem;
  gap: 16px;
}

.teklif-buton {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.teklif-buton img {
  width: 130px;
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.teklif-buton img:hover {
  transform: scale(1.05);
}

.hesapla-btn {
  background: #1d3557;
  color: white;
  font-family: 'Poppins', sans-serif;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}

.hesapla-btn:hover {
  background: #f57224;
  color: #fff;
}

/* Fiyat bilgi metni */
.fiyat-bilgi {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  text-align: center;
  margin-top: 1rem;
  color: #141414;
}
/* Hem select hem input için ortak kutu */
.select-box input[type="date"],
.select-box select {
  appearance: none;
  border: none;
  background: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800;
  width: 100%;
  outline: none;
  padding: 0;
  color: #141414;
  background-color: transparent;
  height: 36px; /* sabit yükseklik ver */
}
.select-box img {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  flex-shrink: 0;
}
.butonlar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 0 8px; /* iki kenardan boşluk */
}

/* Teklif görsel butonu */
.teklif-buton {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.teklif-buton img {
  width: 130px;
  transition: transform 0.3s ease;
}

.teklif-buton img:hover {
  transform: scale(1.05);
}

/* Hesapla butonu */
.hesapla-btn {
  background: #1d3557;
  color: white;
  font-family: 'Poppins', sans-serif;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hesapla-btn:hover {
  background: #f57224;
}
 
 TAŞIYICI BÖLÜM
 .hero-section {
   background: #fff5e5;
   padding: 24px;
   text-align: center;
   border-radius: 10px;
   margin-bottom: 24px;
 }

 form,
 .form-group {
   font-family: 'Poppins', sans-serif;
   max-width: 600px;
   margin: auto;
 }

 label {
   font-weight: 600;
   margin-bottom: 6px;
   display: block;
 }

 select,
 input {
   padding: 12px;
   border: 1px solid #ccc;
   border-radius: 8px;
   width: 100%;
   margin-bottom: 16px;
 }

 .submit-btn {
   background: #ff7f00;
   color: white;
   font-weight: 600;
   padding: 14px;
   border: none;
   border-radius: 8px;
   width: 100%;
   cursor: pointer;
   font-size: 16px;
 }

 .submit-btn:hover {
   background: #e66c00;
 }
 /* Masaüstü ekranlar için görsellerin kırpılmasını önler */
@media (min-width: 768px) {
  .slider-wrapper {
    align-items: center;
  }

  .blog-card {
    flex: 0 0 auto;
    width: 180px;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .blog-image {
    height: auto;
    max-height: 160px;
    object-fit: contain; /* Görselin tamamını gösterir */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background-color: #fff;
  }

  .blog-content {
    padding: 8px;
    height: auto;
  }

  .blog-title {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.tasiyici-sayfa .blog-card {
  flex: 0 0 200px;
  max-width: 200px;
}

.tasiyici-sayfa .blog-image {
  height: 140px;
  object-fit: contain;
}
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 60vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 10001;
}

.arrow {
  position: absolute;
  top: 50%;
  font-size: 48px;
  color: white;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  z-index: 10000;
}
.arrow.left { left: 20px; }
.arrow.right { right: 20px; }
/* Tüm cihazlar için lightbox görünümü */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

/* Görsel */
.lightbox img {
  max-width: 60vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: 0.3s ease;
}

/* Kapatma (X) butonu */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
}

/* Ok butonları */
.arrow {
  position: absolute;
  top: 50%;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  user-select: none;
  z-index: 10000;
}
.arrow.left { left: 20px; }
.arrow.right { right: 20px; }

/* 🔧 Mobilde %50 genişlik ayarı */
@media (max-width: 768px) {
  .lightbox img {
    max-width: 90vw;
    max-height: 50vh; /* %50'si kadar yer kaplasın */
    object-fit: contain;
  }
}
.tasiyici-hero {
  width: 100%;
  height: 35vh; /* ekranın %50 yüksekliği */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
}

.tasiyici-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* kırpma olmadan ekrana oturtur */
  display: block;
}
@media (max-width: 568px) {
  .tasiyici-hero {
    height: 25vh; /* mobilde biraz daha az yer kaplasın */
  }
}
 // yük ilanları bölümü 
 .ilan-listesi {
  max-width: 800px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ilan-card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
}

.modal-content h3 {
  margin-top: 0;
  color: #1d3557;
}

.modal-content input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
}
#introVideoContainer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  flex-direction: column;
  /* video üstte, buton altta */
  justify-content: center;
  /* hem mobil hem desktop ortalama */
  align-items: center;
  padding: 0;
  /* önceki padding-top kalktı */
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#introVideoContainer video {
  width: 90%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

#skipButton {
  position: relative;
  /* artık video altına hizalanacak */
  margin-top: 20px;
  background-color: #ff7a00;
  /* 🟧 turuncu renk */
  border: none;
  color: white;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#skipButton:hover {
  background-color: #ff9c33;
  /* açık turuncu */
  transform: scale(1.05);
}

#introVideoContainer.hidden {
  opacity: 0;
  pointer-events: none;
}
/* animasyonlar */
.page-enter {
  opacity: 0;
  transform: translateX(100%);
}
.page-enter-active {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease;
}
.page-exit {
  opacity: 1;
  transform: translateX(0);
}
.page-exit-active {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.6s ease;
}


//yuk gir bölümü
/* style.css'e eklenmeli */
#yukGirisFormu textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #ccc;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    margin-bottom: 1.5rem;
    font-size: 16px;
    font-weight: 500;
}

#yukGirisFormu textarea:focus {
    border-color: #f57224; /* Turuncu odak rengi */
    outline: none;
}

/* yuk-ilanlari-ozel.css dosyasına ekle */
.success-message {
    background-color: #d4edda; /* Açık yeşil arka plan */
    color: #155724; /* Koyu yeşil metin */
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}
/* Ana renk paleti: Koyu Mavi: #1d3557, Turuncu: #f57224 */

.ilanlar-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Başarı Mesajı */
.success-message {
    background-color: #d4edda; 
    color: #155724; 
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

/* Filtre Kartı Stili (style.css'i tamamlar) */
.filter-card {
    background: #fff;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin: 1rem 0 2rem;
}

.filter-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Mobil Uyum (Filtre Formu) */
@media (max-width: 768px) {
    .filter-form {
        flex-direction: column; 
    }
    .filter-card .select-box {
        width: 100%; 
    }
}


/* İlan Kartı Listesi */
.ilan-listesi {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ilan-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #f57224; /* Turuncu vurgu */
    transition: transform 0.3s ease;
}

.ilan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.ilan-baslik {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1d3557;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.ilan-detaylar {
    font-size: 0.9rem;
    line-height: 1.6;
}

.ilan-detaylar p {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.ilan-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.ilan-fiyat-ve-buton {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.ilan-fiyat {
    font-size: 0.9rem;
    color: #1d3557;
    font-weight: 600;
}

.fiyat-aralik {
    font-size: 1.4rem;
    color: #f57224; /* Turuncu fiyat vurgusu */
    font-weight: 800;
    display: block;
}

.whatsapp-teklif-buton {
    display: inline-block;
    background-color: #f57224;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.whatsapp-teklif-buton:hover {
    background-color: #1d3557;
}

.ilan-not {
    text-align: center;
    color: #666;
    margin: 30px 0;
    font-size: 0.9rem;
}

/* BLOG SLIDER BAŞLIĞI İÇİN LACİVERT STİL (YENİ EKLEME) */
.slider-title {
    color: #1d3557; /* Koyu Lacivert (Navy) renk kodu */
    /* Diğer stilleri korumak istiyorsanız buraya ekleyebilirsiniz (örneğin font-weight) */
}