/* ------------------------------ */
/* GENEL GÖRÜNÜM */
/* ------------------------------ */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f7f7f7; /* Açık gri bir arka plan */
  color: #333; /* Koyu gri ana metin rengi */
}

.page-title {
  text-align: center;
  color: #276587;
  margin: 30px 0 20px;
  font-size: 2.2em;
}

.container {
  padding: 6px;
}

#header-placeholder {
  min-height: 140px; /* Header height approximate */
}

#nav-placeholder {
  min-height: 80px; /* Nav height approximate */
}

/* ------------------------------ */
/* Header ve Logo Düzenlemeleri */
/* ------------------------------ */
header {
    background-color: #3FA7D6; /* Açık Mavi */
    color: #fff; /* Tüm metinler için beyaz */
    padding: 20px;
    text-align: center;
    border-bottom: 5px solid #276587; /* Koyu mavi vurgu */
    cursor: pointer;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.logo {
    height: 100px;
    width: auto;
    margin-right: 20px;
    flex-shrink: 0; /* Mobilde sıkışmasını engeller */
    object-fit: contain; /* Orantıyı korur */
}

@media (max-width: 600px) {
    .logo {
        height: 60px; /* Küçük ekranlarda logoyu küçült */
        margin-right: 15px;
    }
}

.header-text {
    flex-grow: 1;
    text-align: left;
}

.header-text h1,
.header-text .site-title {
    font-size: 2.0em;
    margin: 0;
    color: #fff; /* Başlık rengi beyaz */
    font-weight: bold;
}

.header-text p {
    margin: 5px 0 0;
    font-size: 1em;
    font-weight: 300;
    color: #fff; /* Alt metin beyaz */
}

/* Dil seçici butonu stili */
.language-selector {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.lang-link {
    text-decoration: none;
    color: #fff; /* Dil linkleri beyaz */
    font-weight: bold;
    padding: 5px 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-link:hover {
    background-color: #276587; /* Koyu mavi */
    color: white;
}

.lang-link.active {
    background-color: #276587; /* Koyu mavi */
    color: white;
    cursor: default;
}

.phone-number {
    margin-left: 20px;
}

.phone-number a {
    background-color: #276587; /* Koyu mavi */
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.phone-number a:hover {
    background-color: #1a4f6d; /* Daha koyu mavi */
}

/* Küçük ekranlar için medya sorgusu */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        height: 50px;
        margin-bottom: 10px;
    }

    .header-text {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .language-selector {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .phone-number {
        margin-left: 0;
    }
}

/* ------------------------------ */
/* NAVIGATION (MENU) */
/* ------------------------------ */
nav {
  background-color: #3FA7D6; /* Açık Mavi */
  text-align: center;
  padding: 30px 0;
}

nav a,
.menu a {
  font-size: 16px;
  font-weight: bold;
  color: white; /* Navigasyon linkleri beyaz */
  text-decoration: none;
  padding: 8px 12px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

nav a:hover,
.menu a:hover {
    background-color: #276587; /* Koyu mavi */
    border-radius: 5px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: white; /* Menü simgesi beyaz */
  cursor: pointer;
  padding: 10px;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.menu li {
  margin: 0 3px;
  position: relative;
}

.menu::-webkit-scrollbar {
  display: none;
}

/* ------------------------------ */
/* DROPDOWN MENU */
/* ------------------------------ */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #3FA7D6; /* Açık Mavi */
  padding: 0;
  margin: 0;
  list-style: none;
  border-radius: 0 0 5px 5px;
  z-index: 1000;
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.sub-menu li a {
  display: block;
  padding: 10px 15px;
  color: white; /* Alt menü linkleri beyaz */
  text-align: left;
}

.sub-menu li a:hover {
  background-color: #276587; /* Koyu mavi */
}

.dropdown:hover .sub-menu {
  display: block;
}
/* ------------------------------ */
/* HİZMETLER (SERVICE BOX) */
/* ------------------------------ */
.services h2 {
  text-align: center;
  color: #276587; /* Başlık rengi koyu mavi oldu. */
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  align-items: stretch;

}

.service-box {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.service-box h3 {
    color: #276587; /* Hizmet başlıkları koyu mavi oldu. */
}
.service-box p {
    color: #555; /* Açıklamalar için gri tonu uygun, okunurluğu artırır. */
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.service-box img {
  /* width: 64px; /* Ikonlar için olan bu satırı kaldırın */
  /* height: 64px; /* Ikonlar için olan bu satırı kaldırın */
  width: 100%; /* Kartın tam genişliğini kullansın */
  height: auto; /* Yüksekliği otomatik ayarlasın */
  max-height: 150px; /* Belki maksimum yükseklik belirleyebilirsiniz */
  object-fit: cover;
  border-radius: 8px 8px 0 0; /* Sadece üst köşeleri yuvarlayın */
}

/* ------------------------------ */
/* İLETİŞİM */
/* ------------------------------ */

.contact {
  background-color: white;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact h2,
.contact p,
.contact strong,
.contact h3 {
  color: #276587; /* Tüm iletişim metinleri koyu mavi oldu. */
}

.map-container {
  width: 100%;
  height: 300px;
  margin-top: 15px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ------------------------------ */
/* FOOTER */
/* ------------------------------ */
footer {
  background-color: #3FA7D6; /* Açık Mavi */
  color: white; /* Footer metinleri beyaz */
  text-align: center;
  padding: 15px;
  
}
.lang-switcher-inline a {
    color: #fff; /* Link rengi */
    text-decoration: none; /* Alt çizgiyi kaldırır */
    margin: 0 5px;
    white-space: nowrap; /* Linklerin kırılmasını engeller */
}

.copyright-links a:hover,
.lang-switcher-inline a:hover {
    text-decoration: underline;
}

/* Linkler arasındaki dikey ayırıcı */
.separator {
    color: #aaa;
    margin: 0 5px;
}
/* ========================================= */
/* Footer (Alt Bilgi) Styling */
/* ========================================= */

.main-footer {
    /* Ana sayfa başlık ve navigasyon ile uyumlu Arka Plan */
    background-color: #3FA7D6;; /* Koyu Mavi Vurgu rengi */
    color: #ecf0f1; /* Açık Renk Metin */
    padding: 40px 20px 0;
    font-size: 0.95em;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; 
    padding-bottom: 20px;
}

.footer-column {
    width: calc(25% - 20px); 
    margin-bottom: 20px;
    min-width: 200px;
}
.footer-column contact-info p {
  color:#fff
}

.main-footer h4 {
    /* Başlık Rengi: Açık Mavi */
    color: #fff; 
    font-size: 1.1em;
    margin-bottom: 15px;
    /* Alt çizgi, koyu arka plan üzerinde daha yumuşak bir ayırıcı */
    border-bottom: 2px solid rgba(255, 255, 255, 0.15); 
    padding-bottom: 5px;
}

.main-footer p {
    margin-bottom: 10px;
    line-height: 1.5;
    color:#fff;
}

/* Linkler */
.main-footer ul {
    list-style: none;
    padding: 0;
}

.main-footer ul li {
    margin-bottom: 8px;
}

.main-footer a {
    color: #ecf0f1; /* Linkler beyaz */
    text-decoration: none;
    transition: color 0.3s;
}

.main-footer a:hover {
    /* Hover rengi: Açık Mavi */
    color: #1579a8; 
}

/* Sosyal Medya */
.social-links img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    transition: opacity 0.3s;
}

.social-links a:hover img {
    opacity: 0.7;
}

/* Dil Seçici (Footer) */
.lang-switcher-footer a {
    /* Link rengi: Açık Mavi */
    color: #fff;
    margin-right: 5px;
}

/* Telif Hakkı Çubuğu */
.copyright {
    /* Koyu arka plan üzerinde ince beyaz ayırıcı */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    text-align: center;
    font-size: 0.85em;
}

.copyright a {
    margin: 0 5px;
    color: #ecf0f1;
}

/* Mobil Uyumlu Düzenleme */
@media (max-width: 992px) {
    .footer-container {
        justify-content: space-around;
    }
    .footer-column {
        width: calc(50% - 20px); /* 2 sütun */
    }
}

@media (max-width: 576px) {
    .footer-column {
        width: 100%; /* Tam genişlik, 1 sütun */
        text-align: center;
    }
    .main-footer h4 {
        border-bottom: none;
        padding-bottom: 0;
    }
    .social-links {
        text-align: center;
        margin-top: 10px;
    }
}
/* ------------------------------ */
/* BLOG SAYFALARI (GÜNCELLENMİŞ) */
/* ------------------------------ */

/* Ana Kapsayıcı (ID veya Class olarak kullanın) */
/* Statik HTML dosyanızda <div id="blog-content" class="blog-post"> yapısını kullanmanızı öneririm */
.blog-post { 
  max-width: 800px;
  margin: 30px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Tüm Başlıklar için Ortak Stil */
.blog-post h1,
.blog-post h2,
.blog-post h3 {
    color: #333; /* Koyu Gri */
    margin-top: 30px; /* Üstten belirgin boşluk */
    margin-bottom: 15px;
    line-height: 1.3;
}

/* H1: Sayfa Başlığı (Ortalanmış) */
.blog-post h1 {
    font-size: 32px;
    text-align: center;
}

/* H2: Ana Bölüm Başlığı */
.blog-post h2 {
    font-size: 28px;
    /* İsteğe bağlı: Başlığın altına hafif bir çizgi ekleyebiliriz */
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* H3: Alt Başlıklar */
.blog-post h3 {
    font-size: 22px;
    color: #555; /* H2'den biraz daha açık gri */
}

/* Paragraf ve Diğer Metinler */
.blog-post p {
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Tarih Metni (2025-11-08) */
.blog-post em {
    display: block; /* Yeni bir satırda görünmesini sağlar */
    text-align: center;
    color: #999;
    font-style: normal;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

/* Resimler (GÜNCELLENMİŞ: Küçültülmüş ve Ortalanmış) */
.blog-post img {
  /* Resmin maksimum genişliğini 800px'in %75'i ile sınırla */
  max-width: 75%; 
  /* Mobil uyumluluk için hala gerekli */
  height: auto;
  border-radius: 10px;
  /* margin: 20px auto; satırı ortalama işlemini yapar */
  margin: 20px auto; 
  /* Ortalamanın çalışması için block özelliği şarttır */
  display: block; 
}

/* Mobil cihazlar için küçük bir düzenleme */
@media (max-width: 768px) {
    .blog-post img {
        /* Mobil cihazlarda ekranın daha büyük bir kısmını kullanabiliriz */
        max-width: 95%; 
    }
}

/* Listeler (UL) */
.blog-post ul {
    margin: 20px 0 20px 20px; /* Kenar boşluğu ekle */
    padding-left: 20px;
    list-style: disc; /* Noktalı liste */
}

/* Liste Öğeleri (LI) */
.blog-post ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Mobil Uyum (768px altı için) */
@media (max-width: 768px) {
    .blog-post {
        padding: 15px; /* Mobil cihazlarda daha az padding */
        margin: 15px 10px;
    }
    .blog-post h1 {
        font-size: 26px;
    }
    .blog-post h2 {
        font-size: 22px;
    }
}

/* Butonun Kapsayıcısı */
.blog-actions {
    text-align: center; /* Butonu ortala */
    margin-top: 40px; /* İçerikle arasına boşluk koy */
    padding-top: 20px;
    border-top: 1px solid #eee; /* Hafif bir ayırıcı çizgi ekle */
}
/* GERİ DÖN BUTONU */
.back-button {
  display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 10px 20px;
  background-color: #3FA7D6; /* Açık Mavi */
  color: white; /* Buton metni beyaz */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: #276587; /* Koyu mavi */
}

/* ------------------------------ */
/* RESPONSIVE TASARIM */
/* ------------------------------ */

/* Tablet */
@media (max-width: 1024px) {
  .service-box {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* Mobil NAV & Hizmet Kutuları */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .sub-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #3FA7D6; /* Açık Mavi */
  }

  .dropdown.active .sub-menu {
    display: flex;
  }

  .services-container {
    justify-content: center;
  }

  .service-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Küçük Mobil */
@media (max-width: 600px) {
  .service-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


/* ========================================= */
/* Blog Önizleme (Blog Preview) Styling */
/* ========================================= */
.blog-preview {
    padding: 40px 20px;
    background-color: #fff; /* Beyaz Arka Plan */
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.blog-preview h2 {
    color: #276587; /* Koyu Mavi */
}

.blog-preview .subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.blog-container {
    display: flex;
    justify-content: center;
    gap: 25px; /* Kartlar arası boşluk */
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.blog-card {
    /* Yorum kartlarıyla aynı 3'lü düzeni kullanıyoruz */
    flex: 1 1 calc(33.333% - 25px); 
    min-width: 250px; 
    
    background: #f7f7f7; /* Hafif gri kart arka planı */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Resim köşe yuvarlaması için */
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 180px; /* Sabit yükseklik */
    object-fit: cover; /* Resmi sığdır */
    display: block;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    font-size: 1.1em;
    color: #276587; /* Koyu Mavi */
    margin-top: 0;
    margin-bottom: 8px;
    min-height: 40px; /* Başlıkların tek satırda kalması için */
}

.card-content p {
    color: #555;
    font-size: 0.9em;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Sadece 3 satır göster */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.all-blogs-link {
    margin-top: 20px;
}

.all-blogs-link a {
    display: inline-block;
    background-color: #3FA7D6; /* Açık Mavi */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.all-blogs-link a:hover {
    background-color: #276587; /* Koyu Mavi */
}


/* Mobil Uyumlu Düzenleme */
@media (max-width: 992px) {
    .blog-card {
        flex: 1 1 calc(50% - 20px); /* Tabletlerde 2'li düzen */
    }
}

@media (max-width: 576px) {
    .blog-card {
        flex: 1 1 100%; /* Telefonlarda tam genişlik */
    }
    .blog-card img {
        height: 200px;
    }
}

/* WhatsApp Konteynerı - Her zaman görünür ve sabit */
.whatsapp-container {
    position: fixed;
    bottom: 80px; /* Telegram'ın bir tık üstünde olması için */
    right: 20px;
    z-index: 999;
    transition: all 0.3s ease;
}

/* WhatsApp Butonu - Mobil için varsayılan stil (sadece ikon) */
.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

/* WhatsApp İkonu */
.whatsapp-button img {
    height: 32px;
    width: auto;
}

/* WhatsApp Yazısı - Mobil görünümde gizli */
.whatsapp-text {
    display: none;
}

/* --- Masaüstü ve Tablet Görüntüsü (769px ve üstü) --- */
@media (min-width: 769px) {
    .whatsapp-button {
        width: auto;
        height: auto;
        border-radius: 50px;
        padding: 10px 15px;
        gap: 10px;
    }

    .whatsapp-text {
        display: block;
        font-size: 16px;
        font-weight: bold;
        white-space: nowrap;
    }
}
/* Telegram Konteynerı - Her zaman görünür ve sabit */
.telegram-container {
    position: fixed;
    bottom: 20px; /* WhatsApp butonunun hemen altında olması için */
    right: 20px; /* Bu değer, butonu sağ kenara yaslar */
    z-index: 999;
    transition: all 0.3s ease;
}

/* Telegram Butonu - Mobil için varsayılan stil (sadece ikon) */
.telegram-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0088cc; /* Telegram'ın ana rengi */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.telegram-button:hover {
    background-color: #006699;
    transform: scale(1.05);
}

/* Telegram İkonu */
.telegram-button img {
    height: 32px;
    width: auto;
}

/* Telegram Yazısı - Mobil görünümde gizli */
.telegram-text {
    display: none;
}

/* --- Masaüstü ve Tablet Görüntüsü (769px ve üstü) --- */
@media (min-width: 769px) {
    .telegram-container {
        right: 20px; /* Masaüstünde butonlar için daha fazla boşluk bırakın */
    }

    .telegram-button {
        width: auto;
        height: auto;
        border-radius: 50px;
        padding: 10px 15px;
        gap: 10px;
    }

    .telegram-text {
        display: block;
        font-size: 16px;
        font-weight: bold;
        white-space: nowrap;
    }
}

/* ========== BLOG SAYFASI STİLİ (blog) ========== */

.blog-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8fafc;
  margin: 0;
  color: #334155;
}

.blog-page #blog-list {
  max-width: 1100px;
  margin: 40px auto;
  background: transparent;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-page .post {
  display: flex;
  align-items: stretch;
  gap: 30px;
  background: white;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.blog-page .post:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-page .post img {
  width: 350px;
  height: 240px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.blog-page .post-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.blog-page .post h2 {
  color: #1e293b;
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
}

.blog-page .post p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.blog-page .post a {
  color: #3FA7D6;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
  margin-top: auto;
}

.blog-page .post a:hover {
  color: #276587;
  text-decoration: none;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .blog-page .post {
    flex-direction: column;
  }
  
  .blog-page .post img {
    width: 100%;
    height: 200px;
  }
  
  .blog-page .post-content {
    padding: 20px;
  }
  
  .blog-page .post h2 {
    font-size: 1.3rem;
  }
}

/* ========== TEKİL BLOG SAYFASI STİLİ (blog-post) ========== */

.blog-post-page {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
}

.blog-post-page .post-container {
  max-width: 900px;
  margin: 20px auto;
  background: white;
  padding: 20px;
  border-radius: 12px;
}

.blog-post-page .blog-image {
  display: block;
  width: 60%;
  margin: 0 auto;
  border-radius: 10px;
}

.blog-post-page .post-container h1 {
  color: #002b36;
  margin-top: 10px;
  text-align: center;
}




 .reviews {
    background-color: #3FA7D6;
    padding: 40px 20px;
    text-align: center;
  }
  .reviews h2 {
    font-size: 1.8rem;
    color: #fff;
  }
  .reviews p {
    font-size: 1rem;
    color: #fff;
  }
  .ti-widget {
    margin-top: 20px;
    margin-bottom: 40px;
  }


  /* Bu CSS sadece görsel estetik içindir, SEO amaçlı değildir. */
.noscript-links {
    /* Varsayılan olarak gizli tutulur, sadece JS çalışmazsa görünür olur */
    /* Tarayıcı bu etiketi görmezden gelecektir. */
    display: none; 
    visibility: hidden;
}
/* Ancak, tarayıcının <noscript> etiketini yorumlama şekli nedeniyle */
/* bu CSS kuralı genellikle JS çalışmayan ortamda etkin olmaz, bu da istediğimiz şeydir. */

/* ================================================= */
/* 1. YORUMLAR BÖLÜMÜ GENEL STİLİ */
/* ================================================= */
.reviews-section {
    padding: 40px 20px;
    background-color: #f8f8f8; /* Hafif bir arka plan rengi */
    text-align: center;
}

.reviews-section h2 {
    font-size: 28px;
    color: #276587;
    margin-bottom: 30px;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    /* 3 sütunlu düzen: Masaüstü */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ================================================= */
/* 2. TEKİL YORUM KART STİLİ */
/* ================================================= */
.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px); /* Hafif yukarı kaydırma efekti */
}

/* Yorum Metni */
.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    min-height: 90px; /* Yorum kartlarının yüksekliğini eşitlemeye yardımcı olur */
}

/* ================================================= */
/* 3. BAŞLIK VE YILDIZLAR */
/* ================================================= */
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #007bff; /* Mavi arka plan rengi */
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0; /* Küçülmesini engelle */
}

.reviewer-info h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.review-meta {
    font-size: 12px;
    color: #999;
}

/* Yıldızlar - Sarı renk ve düzen */
.stars {
    color: gold;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.date-text {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    display: block;
}

/* ================================================= */
/* 4. MOBİL UYUMLULUK */
/* ================================================= */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr; /* Mobil görünümde tek sütun */
    }
    .reviews-section {
        padding: 30px 15px;
    }
}

/* ------------------------------ */
/* FAQ SECTION STYLING */
/* ------------------------------ */
.faq-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.faq-section h2 {
    color: #276587;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-item h3 {
    color: #276587;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* ------------------------------ */
/* SERVICE DISTRICTS (ORPHAN PAGES FIX) */
/* ------------------------------ */
.service-districts {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: left;
}

.service-districts h3 {
    color: #276587;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
    border-bottom: 2px solid #3FA7D6;
    display: inline-block;
    padding-bottom: 5px;
}

.service-districts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-districts ul li {
    flex: 1 1 calc(33.333% - 15px);
    min-width: 200px;
}

.service-districts ul li a {
    color: #555;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.service-districts ul li a:hover {
    background-color: #3FA7D6;
    color: white;
    border-color: #3FA7D6;
}

@media (max-width: 768px) {
    .service-districts ul li {
        flex: 1 1 100%;
    }
}