/* Genel alan */
.service-detail-section {
  background-color: #f8f9fa;
}

/* Kart tasarımı */
.service-detail-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Görsel kart */
.service-image-card {
  width: 100%;
  max-height: 350px;
  overflow: hidden;
}
/* ============================================
   TÜM HİZMET RESİMLERİNİ EŞİT BOYUT YAPMA
============================================ */
.service-img {
    width: 100%;
    height: 260px; /* İstersen 200-250 arası değiştirilebilir */
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    display: block;
}

.service-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-image-card img:hover {
  transform: scale(1.05);
}

/* Bilgi kartı */
.service-info-card {
  background: #fff;
  text-align: left;
}

.service-title {
  font-size: 2rem;
  color: #222;
}

.service-short {
  font-size: 1.1rem;
}

.service-description {
  line-height: 1.8;
}

/* Responsive yapı */
@media (min-width: 768px) {
  .service-detail-card {
    flex-direction: row;
  }

  .service-image-card {
    flex: 1;
    max-height: none;
  }

  .service-info-card {
    flex: 1;
  }
}

/* ==========================================================
   CITY LIST – ŞEHİR KARTLARI (Tüm görseller eşit boyut)
========================================================== */
.city-card {
  border-radius: 18px;
  overflow: hidden;                 /* Resim taşmasını engeller */
  background: #ffffff;
}

/* Resim alanı, sabit yükseklik */
.city-card-img-wrapper {
  width: 100%;
  height: 220px;                    /* Hepsi aynı yükseklik */
  overflow: hidden;
}

/* Şehir görselleri */
.city-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;                /* Oranı bozmadan kırpar */
  object-position: center;          /* Ortadan kırpma */
  display: block;
}

/* Metinler; genel soft gri temaya uyum */
.city-card-title {
  font-weight: 800;
  color: #222;
}

.city-card-text {
  color: #555;
  font-size: 0.95rem;
}

/* Hover’da hafif kaldırma – genel tasarıma uyumlu */
.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
  transition: 0.25s ease;
}

/* Mobilde biraz daha kısa resim */
@media (max-width: 576px) {
  .city-card-img-wrapper {
    height: 180px;
  }
}

/* ============================================
   KESİN ÇALIŞAN KIRMIZI BORDER (KarotCity)
============================================ */
.service-card {
    border: 4px solid #b4c2b8 !important; /* Bootstrap kırmızı */
    border-radius: 16px !important;

    /* Border'ın gölgelerin arkasında kaybolmasını engeller */
    background-color: #ffffff !important;
    box-shadow: none !important;

    /* Kartın taşmasını engeller */
    position: relative;
    overflow: hidden;
}

/* Sol taraftaki Hizmet Seçenekleri kutusu için */
.sidebar-card {
    border: 4px solid #dc3545 !important;
    border-radius: 16px !important;
    background: #fff !important;
}
/* ===========================================================
   REFERANSLAR — Soft Gri & Beyaz Modern Tema
============================================================ */
/* Başlık */
.refs-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 12px;

  /* Soft gri gradient */
  background: linear-gradient(90deg, #3a3a3a, #6e6e6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  letter-spacing: 0.5px;
}

/* Alt yazı */
.refs-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 45px;
}

/* 3’lü grid */
.refs-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 20px 0;
}

/* Kart Tasarımı */
.ref-card {
  background: #ffffff;
  padding: 28px 22px;
  border-radius: 18px;

  /* Soft gri çerçeve */
  border: 2px solid #d1d9e6;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease-in-out;
  text-align: center;
}

/* Hover */
.ref-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: #c5cedb;
}

/* Görsel */
.ref-icon img {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.3s ease;
}

/* Hover görsel */
.ref-card:hover .ref-icon img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

/* Başlık */
.ref-card h3 {
  margin-top: 16px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #2b2b2b;
}

/* Açıklama */
.ref-card p {
  font-size: 1rem;
  color: #444;
  margin-top: 10px;
  line-height: 1.55;
  font-weight: 500;
}

/* Mobil */
@media (max-width: 992px) {
  .refs-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .refs-wrapper {
    grid-template-columns: 1fr;
  }
  .ref-icon img {
    width: 150px;
    height: 150px;
  }
}

/* =======================================================
   SSS – Soft Gri Flip Card Theme
======================================================= */
.faq-cards-container {
  margin: 80px auto;
  max-width: 1200px;
  padding: 15px 20px;
}

.faq-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

/* Kart kapsayıcı */
.faq-card {
  perspective: 1200px;
  transition: transform 0.35s ease;
}
.faq-card:hover {
  transform: translateY(-6px);
}

/* İç alan */
.faq-card-inner {
  position: relative;
  width: 100%;
  height: 170px;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}
.faq-card:hover .faq-card-inner {
  transform: rotateY(180deg);
}

/* Kart yüzleri */
.faq-card-front,
.faq-card-back {
  position: absolute;
  width: 100%;
  height: 170px;
  border-radius: 20px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);

  border: 2px solid #d1d9e6;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Hover glow */
.faq-card:hover .faq-card-front {
  box-shadow:
    0 0 14px rgba(200, 200, 200, 0.7),
    0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Ön yüz başlık */
.faq-card-front h3 {
  font-size: 1.18rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.3px;

  background: linear-gradient(90deg, #3a3a3a, #7a7a7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Arka yüz */
.faq-card-back {
  transform: rotateY(180deg);

  background: linear-gradient(135deg, #4a4a4a, #6d6d6d);
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.6;

  border: 2px solid #cfd6e2;
}

/* Mobil */
@media (max-width: 768px) {
  .faq-card-inner,
  .faq-card-front,
  .faq-card-back {
    height: 150px;
  }
}

/* ==========================================================
   Hakkımızda Başlık – Soft Gri Gradient
========================================================== */
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #3a3a3a, #7b7b7b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 900;
  letter-spacing: 0.4px;
}

/* Özellik Başlıkları */
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;

  background: linear-gradient(90deg, #3a3a3a, #7d7d7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 800;
  letter-spacing: 0.3px;
}
/* =========================================================
   NEDEN PROFKAROT – Soft Grey Design
========================================================== */
.features-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 35px;

  background: linear-gradient(90deg, #3a3a3a, #6f6f6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.feature-card {
  background: #fff;
  padding: 32px 25px;
  text-align: center;
  border-radius: 20px;

  border: 2px solid #d1d9e6;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);

  transition: 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.feature-card img {
  width: 85px;
  height: 85px;
  margin-bottom: 15px;
  transition: 0.3s ease;
}
.feature-card:hover img {
  transform: scale(1.12);
  filter: brightness(1.05);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #3a3a3a, #6f6f6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.feature-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}
/* ==========================================================
   RESPONSIVE
========================================================== */
/* Tablet: 3 → 2 kolon */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .features-title {
    font-size: 2rem;
  }

  .feature-card {
    padding: 28px 22px;
  }
}

/* Mobil: 2 → 1 kolon + padding azaltma */
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-card img {
    width: 70px;
    height: 70px;
  }

  .feature-card h3 {
    font-size: 1.15rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }

  .features-title {
    font-size: 1.8rem;
  }
}
/* ==========================================================
   İstatistik Alanı — Soft Gri (Kısaltılmış Boy)
========================================================== */

.stats {
  background: linear-gradient(135deg, #3f3f3f, #6c6c6c);
  padding: 35px 20px;          /* %50 daha kompakt */
  margin: 60px auto;
  border-radius: 22px;
  color: #fff;

  border: 3px solid #d1d9e6;

  box-shadow:
    0 0 18px rgba(200, 200, 200, 0.35),
    0 22px 50px rgba(0, 0, 0, 0.25);

  max-width: 1100px;
}

/* ======================= GRID ======================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  text-align: center;
  align-items: center;
}

/* ======================= SAYILAR ====================== */
.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 900;

  background: linear-gradient(90deg, #e0e0e0, #bfbfbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 10px rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.stat-item h3::after {
  content: " +";
  font-size: 1.9rem;
  font-weight: 800;
  color: #e0e0e0;
}

/* Açıklama */
.stat-item p {
  font-size: 1rem;
  font-weight: 500;
  color: #f2f2f2;
}
/* ==========================================================
   RESPONSIVE TASARIM
========================================================== */
/* Tablet görünüm (daha dengeli) */
@media (max-width: 992px) {

  .stats {
    padding: 32px 18px;
    margin-left:10px;
    margin-right:10px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item h3 {
    font-size: 2.2rem;
  }
}

/* Küçük tablet — phablet */
@media (max-width: 768px) {
  .stats-grid {
    gap: 18px;
    margin-left:10px;
    margin-right:10px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 0.95rem;
  }
}

/* Mobil görünüm (tek kolon — en okunabilir hâli) */
@media (max-width: 576px) {

  .stats {
    padding: 28px 14px;
    margin: 45px auto;
    border-radius: 18px;
    margin-left:10px;
    margin-right:10px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .stat-item h3 {
    font-size: 1.8rem;
  }

  .stat-item h3::after {
    font-size: 1.5rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }
}
/* =======================================================
   EKİBİMİZ – Soft Grey + White Premium Modern
======================================================= */

.team-section {
  margin: 80px auto;
  padding: 50px 20px;
  max-width: 1200px;
  text-align: center;
}

.team-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #222; /* gri-siyah */
  margin-bottom: 10px;
}

.team-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 45px;
}

/* GRID YAPISI BOZULMADI */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* Kart */
.team-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 20px;

  border: 1px solid rgba(180, 180, 180, 0.35); /* soft grey border */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);

  transition: 0.25s ease;
  text-align: center;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

/* Fotoğraf alanı */
.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;

  border: 2px solid rgba(150,150,150,0.35);
  background: #f7f7f7;

  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* İsim */
.team-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 5px;
}

/* Rol */
.team-card .role {
  font-size: 1rem;
  color: #555;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Deneyim */
.team-card .exp {
  font-size: 0.95rem;
  color: #888;
  font-weight: 700;
}
/* =======================================================
   SERTİFİKALAR – Soft Grey Modern Tasarım
======================================================= */

.cert-section {
  margin: 80px auto;
  padding: 60px 20px;
  max-width: 1200px;
  text-align: center;

  background: #ffffff;
  border-radius: 22px;

  border: 1px solid rgba(180, 180, 180, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.cert-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 10px;
}

.cert-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 45px;
}

/* GRID */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.cert-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 18px;

  border: 1px solid rgba(180, 180, 180, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);

  transition: 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.cert-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
}

.cert-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #222;
  line-height: 1.35;
}
/* =======================================================
   RESPONSIVE TASARIM
======================================================= */

/* Tablet (2 kolon daha dengeli görünür) */
@media (max-width: 992px) {
  .cert-title {
    font-size: 2rem;
    margin-left:10px;
    margin-right:10px;
  }

  .cert-subtitle {
    font-size: 1rem;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .cert-card {
    padding: 22px 18px;
  }
}

/* Mobil (1 kolon – kartlar tam genişlik) */
@media (max-width: 576px) {
  .cert-section {
    padding: 40px 16px;
    margin-left:10px;
    margin-right:10px;
  }

  .cert-title {
    font-size: 1.8rem;
  }

  .cert-subtitle {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cert-card {
    padding: 20px;
  }

  .cert-card img {
    width: 75px;
    height: 75px;
  }

  .cert-card h3 {
    font-size: 0.95rem;
  }
}
/* =======================================================
   PREMIUM TÜRKİYE HARİTA MODÜLÜ (Geliştirilmiş)
======================================================= */

.service-map-section {
  background: #ffffff;
  padding: 70px 40px;
  border-radius: 20px;
  max-width: 1200px;
  margin: 80px auto;

  box-shadow: 0 25px 55px rgba(0,0,0,0.08);
  border: 1px solid #e6e9f0;
}

.map-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #df786d;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

.map-subtitle {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 40px;
}

/* ============================
   HARİTA KUTUSU
============================ */
.map-wrapper {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;

  border: 2px solid #d8dfea;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);

  transition: all 0.3s ease;
}

.map-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  border-color: #b7c4d9;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.leaflet-control-attribution {
    display: none !important;
}

/* =======================================================
   RESPONSIVE TASARIM
======================================================= */

/* Tablet */
@media (max-width: 992px) {

  .service-map-section {
    padding: 55px 28px;
    margin: 70px auto;
    margin-left:10px;
    margin-right:10px;
  }

  .map-title {
    font-size: 2.05rem;
  }

  .map-wrapper {
    height: 350px;
  }
}

/* Küçük tablet — phablet */
@media (max-width: 768px) {

  .service-map-section {
    padding: 40px 22px;
    border-radius: 18px;
    margin-left:10px;
    margin-right:10px;
  }

  .map-title {
    font-size: 1.85rem;
  }

  .map-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .map-wrapper {
    height: 300px;
  }
}

/* Mobil */
@media (max-width: 576px) {

  .service-map-section {
    padding: 32px 16px;
    margin: 55px auto;
    margin-left:10px;
    margin-right:10px;
  }

  .map-title {
    font-size: 1.65rem;
  }

  .map-subtitle {
    font-size: 0.95rem;
  }

  .map-wrapper {
    height: 260px;
    border-radius: 16px;
  }
}

/* =======================================================
   MARKER CLUSTER TASARIMI (Soft Blue)
======================================================= */

.marker-cluster-small {
    background-color: rgba(0,153,255,0.60);
}
.marker-cluster-medium {
    background-color: rgba(0,153,255,0.70);
}
.marker-cluster-large {
    background-color: rgba(0,153,255,0.85);
}

.marker-cluster div {
    background-color: #0099ff;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

