/* ------------------------------ */
/* GENEL GÖRÜNÜM */
/* ------------------------------ */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #24343c; /* orta koyu mavi-gri */
  color: #e9fdf9;
}

.container {
  padding: 6px;
}

/* Header ve Logo Düzenlemeleri */
header {
    background: linear-gradient(90deg, #1f2833, #333);
    color: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 5px solid #66fcf1;
    cursor: pointer;
}

.header-content {
    display: flex;
    justify-content: space-between; /* İçerikleri eşit boşluklarla yan yana dizer */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta düşmesini sağlar */
}

.logo {
    height: 60px; /* Logo boyutunu ayarlar */
    margin-right: 20px;
}

.header-text {
    flex-grow: 1; /* Metnin kalan alanı doldurmasını sağlar */
    text-align: left; /* Metni sola hizalar */
}

.header-text h1,
.header-text .site-title {
    font-size: 2.5em;
    margin: 0;
    color: #66fcf1;
    display: block;
}

.header-text p {
    margin: 5px 0 0;
    font-size: 1em;
    font-weight: 300;
    color: #c5c6c7;
}

/* Dil seçici butonu stili */
.language-selector {
    display: flex;
    gap: 8px; /* Dil linkleri arasındaki boşluğu ayarlar */
    margin-right: 20px;
}

.lang-link {
    text-decoration: none;
    color: #c5c6c7;
    font-weight: bold;
    padding: 5px 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-link:hover {
    background-color: #45a29e;
    color: #1f2833;
}

.lang-link.active {
    background-color: #66fcf1;
    color: #1f2833;
    cursor: default;
}

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

.phone-number a {
    background-color: #66fcf1;
    color: #1f2833;
    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: #45a29e;
}

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

    .logo {
        height: 50px; /* Logoyu küçültür */
        margin-bottom: 10px;
    }

    .header-text {
        text-align: center; /* Başlık ve açıklama ortalanır */
        margin-bottom: 15px;
    }
    
    .language-selector {
        margin-right: 0;
        margin-bottom: 20px;
    }

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


/* ------------------------------ */
/* NAVIGATION (MENU) */
/* ------------------------------ */
nav {
  background-color: #20c997;
  text-align: center;
  padding: 30px 0;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Hover efekti */
nav:hover {
  background-color: #2ee6b6; /* canlı aqua */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

nav a,
.menu a {
  font-size: 15px;
  font-weight: bold;
  color: #24343c;
  text-decoration: none;
  padding: 8px 12px;
  display: inline-block;
  transition: color 0.3s, background-color 0.3s;
}

nav a:hover {
  color: #ffffff;
  background-color: #2ee6b6;
  border-radius: 5px;
}

/* Menü toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #24343c;
  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: #24343c;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: 180px;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.sub-menu li a {
  display: block;
  padding: 10px 15px;
  color: #20c997;
  text-align: left;
  text-decoration: none;
}

.sub-menu li a:hover {
  background-color: #2ee6b6;
  color: #24343c;
}

.dropdown:hover .sub-menu {
  display: block;
}

/* ------------------------------ */
/* HİZMETLER (SERVICE BOX) */
/* ------------------------------ */
.services h2 {
  text-align: center;
  color: #20c997;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  align-items: stretch;
  cursor: pointer; /* Fare imlecini tıklanabilir yapar */
}

.service-box {
  display: block; /* <a> etiketini kutu gibi göstermek için */
  text-decoration: none; /* link alt çizgisi kaldırmak için */
  color: inherit; /* metin rengini korumak için */
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  background-color: #24343c;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #2ee6b6;
  transition: transform 0.2s, box-shadow 0.3s;
  color: #e9fdf9;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.service-box h3 {
  color: #2ee6b6;
}

.service-box img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* ------------------------------ */
/* İLETİŞİM */
/* ------------------------------ */
.contact {
  background-color: #24343c;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: #e9fdf9;
  text-align: center;
}

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

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

/* ------------------------------ */
/* FOOTER */
/* ------------------------------ */
footer {
  background-color: #2a3d45;
  color: #20c997;
  text-align: center;
  padding: 15px;
}

/* ------------------------------ */
/* BLOG SAYFALARI */
/* ------------------------------ */
.blog-content,
.blog-post {
  max-width: 800px;
  margin: 30px auto;
  background: #24343c;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #e9fdf9;
}

.blog-content h2,
.blog-post h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #20c997;
}

.blog-content p,
.blog-post p {
  text-align: justify;
  line-height: 1.6;
  color: #e9fdf9;
}

.blog-post img {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

/* PREMIUM CTA UNİTELERİ */
.premium-cta {
    position: relative;
    background: linear-gradient(135deg, rgba(31, 40, 51, 0.95) 0%, rgba(69, 162, 158, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 252, 241, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(102, 252, 241, 0.15);
    border-color: rgba(102, 252, 241, 0.6);
}

.premium-cta h3 {
    color: #66fcf1;
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.premium-cta p {
    color: #c5c6c7;
    font-size: 1.1em;
    margin-bottom: 25px !important;
    text-align: center !important;
}

.premium-cta .cta-phone {
    display: inline-block;
    background: #66fcf1;
    color: #1f2833;
    padding: 15px 40px;
    font-size: 1.8em;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 252, 241, 0.3);
}

.premium-cta .cta-phone:hover {
    background: #45a29e;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 252, 241, 0.5);
}

.premium-cta small {
    display: block;
    margin-top: 15px;
    color: #45a29e;
    font-style: italic;
    font-weight: 500;
}

/* GERİ DÖN BUTONU */
.back-button {
  display: block !important;
  margin: 40px auto !important;
  width: fit-content;
  text-align: center;
  padding: 12px 30px;
  background: rgba(102, 252, 241, 0.1);
  color: #66fcf1;
  border: 1px solid #66fcf1;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: #66fcf1;
  color: #1f2833;
  transform: scale(1.05);
}

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

@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.1);
  }

  .sub-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #24343c;
  }

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

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

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

@media (max-width: 600px) {
  .service-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ------------------------------ */
/* ERİŞİLEBİLİRLİK */
/* ------------------------------ */
a:focus,
button:focus,
.menu a:focus {
  outline: 3px solid #2ee6b6;
  outline-offset: 2px;
}

nav a:hover,
nav a:focus,
.menu a:hover,
.menu a:focus,
.sub-menu li a:hover,
.sub-menu li a:focus {
  background-color: #2ee6b6;
  color: #24343c;
  outline: none;
}

@media (prefers-reduced-data: reduce) {
  img {
    display: none;
  }
}
/* ------------------------------ */
/* HOVER & ANİMASYON EFECTS */
/* ------------------------------ */

/* Menü linkleri yumuşak geçiş */
nav a,
.menu a {
  transition: color 0.4s ease, background-color 0.4s ease;
}

/* Service box hover animasyonu */
.service-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Back button hover animasyonu */
.back-button {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.back-button:hover {
  background-color: #1de9b6;
  color: #24343c;
  transform: translateY(-2px);
}

/* Dropdown menü fade-in animasyonu */
.sub-menu {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
  pointer-events: none;
}

.dropdown:hover .sub-menu,
.dropdown.active .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Menü hover renk geçişi */
.sub-menu li a {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Footer linkleri hover animasyonu (varsa) */
footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #2ee6b6;
}

/* Genel linkler hover animasyonu */
a {
  transition: color 0.3s ease;
}

a:hover {
  color: #1de9b6;
}

/* WhatsApp Konteynerı - Her zaman görünür ve sabit */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    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: 80px; /* Bu değer, WhatsApp butonunun hemen üstünde olmasını sağlar */
    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;
    }
}

/* ------------------------------ */
/* NEDEN BİZ BÖLÜMÜ */
/* ------------------------------ */
.why-us {
    padding: 40px 20px;
    text-align: center;
}

.why-us h2 {
    color: #20c997;
    margin-bottom: 30px;
    font-size: 2em;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    min-width: 220px;
    background-color: #1f2833;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #2ee6b6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(46, 230, 182, 0.2);
}

.feature-box h3 {
    color: #2ee6b6;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.feature-box p {
    color: #c5c6c7;
    line-height: 1.6;
    font-size: 0.95em;
}

/* ------------------------------ */
/* HİZMET BÖLGELERİ */
/* ------------------------------ */
.service-areas {
    padding: 40px 20px;
    background-color: #1f2833;
    text-align: center;
}

.service-areas h2 {
    color: #20c997;
    margin-bottom: 15px;
    font-size: 2em;
}

.service-areas > p {
    color: #c5c6c7;
    margin-bottom: 30px;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-item {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    min-width: 220px;
    background-color: #24343c;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #20c997;
    text-align: left;
    transition: transform 0.3s ease;
}

.area-item:hover {
    transform: translateX(5px);
}

.area-item h3 {
    color: #2ee6b6;
    margin-bottom: 10px;
}

.area-item p {
    color: #c5c6c7;
    font-size: 0.9em;
    line-height: 1.5;
}

/* ------------------------------ */
/* SSS ÖN İZLEME */
/* ------------------------------ */
.faq-preview {
    padding: 40px 20px;
    text-align: center;
}

.faq-preview h2 {
    color: #20c997;
    margin-bottom: 30px;
    font-size: 2em;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    background-color: #1f2833;
    border-radius: 10px;
    padding: 20px 25px;
    text-align: left;
    border-left: 4px solid #20c997;
}

.faq-item h3 {
    color: #2ee6b6;
    margin-bottom: 10px;
    font-size: 1.1em;
}

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

.view-all-link {
    display: inline-block;
    margin-top: 20px;
    color: #20c997;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 25px;
    border: 2px solid #20c997;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background-color: #20c997;
    color: #1f2833;
}

/* ------------------------------ */
/* BLOG ÖN İZLEME */
/* ------------------------------ */
.blog-preview {
    padding: 40px 20px;
    background-color: #1f2833;
    text-align: center;
}

.blog-preview h2 {
    color: #20c997;
    margin-bottom: 15px;
    font-size: 2em;
}

.blog-preview p {
    color: #c5c6c7;
    margin-bottom: 25px;
}

/* ------------------------------ */
/* YENİ FOOTER */
/* ------------------------------ */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    gap: 30px;
}

.footer-section {
    flex: 1 1 200px;
    min-width: 150px;
    text-align: left;
}

.footer-section h4 {
    color: #2ee6b6;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.footer-section a {
    display: block;
    color: #c5c6c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2ee6b6;
}

.footer-bottom {
    border-top: 1px solid #3a4f5a;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.9em;
}

.footer-bottom a {
    color: #20c997;
}

/* ------------------------------ */
/* SSS SAYFASI */
/* ------------------------------ */
.faq-page {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
}

.faq-page h1 {
    color: #20c997;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    color: #2ee6b6;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2ee6b6;
}

.faq-accordion {
    background-color: #1f2833;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #2a3d45;
}

.faq-question h3 {
    color: #e9fdf9;
    font-size: 1.05em;
    margin: 0;
    flex: 1;
}

.faq-icon {
    color: #20c997;
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-accordion.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #24343c;
}

.faq-accordion.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: #c5c6c7;
    line-height: 1.7;
    margin: 0;
}

.faq-answer ul {
    color: #c5c6c7;
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* ------------------------------ */
/* BLOG LİSTESİ SAYFASI */
/* ------------------------------ */
.blog-list-page {
    max-width: 1000px;
    margin: 30px auto;
    padding: 30px;
}

.blog-list-page h1 {
    color: #20c997;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.blog-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
    color: #c5c6c7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.blog-card {
    background-color: #1f2833;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-card h3 {
    color: #2ee6b6;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.blog-card p {
    color: #c5c6c7;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 15px;
}

.blog-card .read-more {
    color: #20c997;
    font-weight: bold;
    font-size: 0.9em;
}

.blog-category-tag {
    display: inline-block;
    background-color: #20c997;
    color: #1f2833;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75em;
    margin-bottom: 10px;
}

/* ------------------------------ */
/* RESPONSIVE - YENİ BÖLÜMLER */
/* ------------------------------ */
@media (max-width: 768px) {
    .feature-box,
    .area-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .area-item {
        text-align: center;
        border-left: none;
        border-top: 4px solid #20c997;
    }
}