/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* ===== Hero Section ===== */
.tzcelt-hero-wrap {
  background: #fff;
  padding: 3rem 0;
  overflow: hidden;
}

.tzcelt-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}

/* Sol taraf - Resim */
.tzcelt-hero-media {
  flex: 0 1 45%;
  min-width: 280px;
}

.tzcelt-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(51, 69, 92, 0.15);
}

/* Sağ taraf - İçerik */
.tzcelt-hero-content {
  flex: 1 1 45%;
  min-width: 280px;
}

.tzcelt-hero-title {
  color: #33455c;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.25rem 0;
}

.tzcelt-hero-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.tzcelt-hero-text strong {
  color: #33455c;
}

/* CTA Butonu */
.tzcelt-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #d53122;
  color: #fff !important;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
}

.tzcelt-hero-btn:hover {
  background: #b8291c;
  color: #fff !important;
  transform: translateY(-2px);
}

.tzcelt-hero-btn-icon {
  display: inline-flex;
}

.tzcelt-hero-btn-icon svg {
  flex-shrink: 0;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .tzcelt-hero-inner {
    flex-direction: column;
  }

  .tzcelt-hero-media {
    order: 1;
    flex: 0 0 100%;
  }

  .tzcelt-hero-content {
    order: 2;
    flex: 0 0 100%;
  }
}

/* ===== Ana Sayfa - Hizmetler Bölümü ===== */
.tzcelt-anasayfa-hizmet-wrap {
  background: #f8f9fa;
  padding: 4rem 0;
}

.tzcelt-anasayfa-hizmet-title {
  color: #33455c;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 2.5rem 0;
  padding: 0 1.5rem;
}

.tzcelt-hizmet-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tzcelt-hizmet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tzcelt-hizmet-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(51, 69, 92, 0.08);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.tzcelt-hizmet-card:hover {
  box-shadow: 0 6px 24px rgba(51, 69, 92, 0.15);
  transform: translateY(-4px);
}

.tzcelt-hizmet-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: rgba(213, 49, 34, 0.1);
  color: #d53122;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.tzcelt-hizmet-icon svg {
  width: 28px;
  height: 28px;
}

.tzcelt-hizmet-title {
  color: #33455c;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.75rem 0;
}

.tzcelt-hizmet-desc {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  flex-grow: 1;
}

.tzcelt-hizmet-link {
  display: inline-flex;
  align-items: center;
  color: #d53122;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tzcelt-hizmet-link:hover {
  color: #b8291c;
}

.tzcelt-hizmet-link::after {
  content: "→";
  margin-left: 0.35rem;
}

/* Alt CTA Alanı */
.tzcelt-anasayfa-hizmet-cta {
  max-width: 800px;
  margin: 2.5rem auto 0;
  padding: 2rem 1.5rem;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(51, 69, 92, 0.08);
}

.tzcelt-anasayfa-hizmet-cta-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
}

.tzcelt-anasayfa-hizmet-cta-btn {
  display: inline-block;
  background: #d53122;
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.tzcelt-anasayfa-hizmet-cta-btn:hover {
  background: #b8291c;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Hizmetler - Responsive */
@media (max-width: 900px) {
  .tzcelt-hizmet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tzcelt-hizmet-grid {
    grid-template-columns: 1fr;
  }

  .tzcelt-anasayfa-hizmet-wrap {
    padding: 3rem 0;
  }
}

/* ===== Güven Veren İstatistikler ===== */
/* Arka plan GenerateBlock ile verildiği için CSS'de tanımlanmıyor */
.tzcelt-stats-wrap {
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Modern çizgiler - az, profesyonel, beyaz */
.tzcelt-stats-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.tzcelt-stats-lines::before,
.tzcelt-stats-lines::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.15) 15%, rgba(255,255,255,0.15) 85%, transparent 100%);
}

.tzcelt-stats-lines::before {
  left: 18%;
}

.tzcelt-stats-lines::after {
  right: 18%;
}

/* Pseudo yedek - HTML'de tzcelt-stats-lines yoksa */
.tzcelt-stats-wrap::before,
.tzcelt-stats-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.15) 15%, rgba(255,255,255,0.15) 85%, transparent 100%);
}

.tzcelt-stats-wrap::before {
  left: 18%;
}

.tzcelt-stats-wrap::after {
  right: 18%;
}

.tzcelt-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tzcelt-stats-eyebrow {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin: 0 0 0.5rem 0;
}

.tzcelt-stats-title {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0 0 1.5rem 0;
}

.tzcelt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tzcelt-stats-item {
  padding: 1.25rem 0.75rem;
  transition: transform 0.2s ease;
}

.tzcelt-stats-item:hover {
  transform: translateY(-3px);
}

.tzcelt-stats-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.tzcelt-stats-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2;
}

.tzcelt-stats-value {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.2rem 0;
}

.tzcelt-stats-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.875rem;
  margin: 0;
}

/* İstatistikler - Responsive */
@media (max-width: 900px) {
  .tzcelt-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .tzcelt-stats-grid {
    grid-template-columns: 1fr;
  }

  .tzcelt-stats-wrap {
    padding: 2rem 0;
  }
}

/* ===== Ana Sayfa - SEO İçerik Bölümü ===== */
.tzcelt-anasayfa-seo-title {
  color: #33455c;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem 0;
}

.tzcelt-anasayfa-seo-content {
  max-width: 800px;
  margin: 0 auto;
}

.tzcelt-anasayfa-seo-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.25rem 0;
}

.tzcelt-anasayfa-seo-content p:last-child {
  margin-bottom: 0;
}

/* ===== Ana Sayfa - Hizmet Bölgelerimiz ===== */
.tzcelt-anasayfa-bolgeler-title {
  color: #33455c;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 1rem 0;
}

.tzcelt-anasayfa-bolgeler-desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 2rem 0;
}

.tzcelt-anasayfa-bolgeler-desc strong {
  color: #33455c;
}

.tzcelt-anasayfa-bolgeler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tzcelt-anasayfa-bolgeler-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(51, 69, 92, 0.08);
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.tzcelt-anasayfa-bolgeler-card:hover {
  box-shadow: 0 6px 24px rgba(51, 69, 92, 0.15);
  transform: translateY(-4px);
}

.tzcelt-anasayfa-bolgeler-card-img-wrap {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.tzcelt-anasayfa-bolgeler-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tzcelt-anasayfa-bolgeler-card-title {
  color: #33455c;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 1rem 0;
}

.tzcelt-anasayfa-bolgeler-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #d53122;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem 1rem;
}

.tzcelt-anasayfa-bolgeler-card-link:hover {
  color: #b8291c;
}

.tzcelt-anasayfa-bolgeler-card-link-icon {
  display: inline-flex;
}

@media (max-width: 768px) {
  .tzcelt-anasayfa-bolgeler-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Footer ===== */
.tzcelt-footer-wrap {
  color: #fff;
}

.tzcelt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
}

.tzcelt-footer-logo {
  display: block;
  margin-bottom: 1rem;
}

.tzcelt-footer-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.tzcelt-footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.tzcelt-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tzcelt-footer-links li {
  margin: 0 0 0.5rem 0;
}

.tzcelt-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff !important;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: opacity 0.2s ease;
}

.tzcelt-footer-link:hover {
  color: #fff !important;
  opacity: 0.9;
}

.tzcelt-footer-link-icon {
  display: inline-flex;
}

.tzcelt-footer-link-icon svg {
  stroke: currentColor;
}

.tzcelt-footer-address,
.tzcelt-footer-tel,
.tzcelt-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff !important;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.tzcelt-footer-tel,
.tzcelt-footer-wa {
  margin-right: 1rem;
}

.tzcelt-footer-address:hover,
.tzcelt-footer-tel:hover,
.tzcelt-footer-wa:hover {
  color: #fff !important;
  opacity: 0.9;
}

.tzcelt-footer-contact-icon,
.tzcelt-footer-wa-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.tzcelt-footer-contact-icon svg {
  stroke: currentColor;
}

.tzcelt-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tzcelt-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tzcelt-footer-copy {
  color: #fff;
  font-size: 0.875rem;
}

.tzcelt-footer-credit-link {
  color: #fff !important;
  font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.tzcelt-footer-credit-link:hover {
  color: #fff !important;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .tzcelt-footer-grid {
    grid-template-columns: 1fr;
  }

  .tzcelt-footer-contact {
    display: block;
  }

  .tzcelt-footer-contact .tzcelt-footer-tel,
  .tzcelt-footer-contact .tzcelt-footer-wa {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

/* ===== Sayfa İçeriği (SEO Yazılar, Hizmet Sayfaları) ===== */
.tzcelt-seo-yazi-wrap {
  margin: 0 auto;
}

.tzcelt-seo-yazi-wrap p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.25rem 0;
}

.tzcelt-seo-yazi-wrap h2 {
  color: #33455c;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
}

.tzcelt-seo-yazi-wrap h2:first-child {
  margin-top: 0;
}

.tzcelt-seo-yazi-wrap h3 {
  color: #33455c;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
}

.tzcelt-seo-yazi-wrap ul {
  margin: 0 0 1.25rem 0;
  padding-left: 1.5rem;
}

.tzcelt-seo-yazi-wrap li {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.tzcelt-seo-yazi-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5rem 0;
}

.tzcelt-seo-yazi-wrap th,
.tzcelt-seo-yazi-wrap td {
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  text-align: left;
}

.tzcelt-seo-yazi-wrap th {
  background: #33455c;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
}

.tzcelt-seo-yazi-wrap td {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.tzcelt-seo-yazi-wrap tbody tr:nth-child(even) {
  background: #f8f9fa;
}

/* CTA Kutusu */
.tzcelt-seo-cta {
  margin: 2rem 0;
}

.tzcelt-seo-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(51, 69, 92, 0.05);
  border: 1px solid rgba(51, 69, 92, 0.12);
  border-radius: 6px;
}

.tzcelt-seo-cta-text {
  flex: 1;
  min-width: 250px;
}

.tzcelt-seo-cta-title {
  color: #33455c;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.tzcelt-seo-cta-desc {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.tzcelt-seo-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tzcelt-seo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.tzcelt-seo-btn-whatsapp {
  background: #25d366;
  color: #fff !important;
}

.tzcelt-seo-btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff !important;
  transform: translateY(-2px);
}

.tzcelt-seo-btn-call {
  display: none;
  background: #d53122;
  color: #fff !important;
}

.tzcelt-seo-btn-call:hover {
  background: #b8291c;
  color: #fff !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .tzcelt-seo-btn-call {
    display: inline-flex;
  }
}

.tzcelt-seo-btn-icon {
  display: inline-flex;
}

/* SSS / FAQ */
.tzcelt-seo-faq {
  margin: 0 0 1.5rem 0;
}

.tzcelt-seo-faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.tzcelt-seo-faq-question {
  color: #33455c;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  padding: 1rem 1.25rem;
  background: #f8f9fa;
}

.tzcelt-seo-faq-answer {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  padding: 1rem 1.25rem;
}

/* Tablo responsive - mobilde yatay scroll */
@media (max-width: 600px) {
  .tzcelt-seo-yazi-wrap {
    overflow-x: auto;
  }

  .tzcelt-seo-yazi-wrap table {
    min-width: 480px;
  }
}

/* ===== Hizmet Bölgeleri Sayfası ===== */
.tzcelt-bolge-main-title {
  color: #33455c;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 1rem 0;
}

.tzcelt-bolge-intro {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tzcelt-bolge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tzcelt-bolge-section {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(51, 69, 92, 0.08);
}

.tzcelt-bolge-section-title {
  color: #33455c;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  padding: 1.25rem 1.25rem 0;
}

.tzcelt-bolge-section-desc {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  padding: 0 1.25rem;
}

.tzcelt-bolge-list {
  list-style: none;
  margin: 0;
  padding: 0 1.25rem 1.25rem;
}

.tzcelt-bolge-list li {
  margin: 0 0 0.5rem 0;
}

.tzcelt-bolge-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #33455c;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(51, 69, 92, 0.06);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.tzcelt-bolge-list li:last-child .tzcelt-bolge-link {
  border-bottom: none;
}

.tzcelt-bolge-link:hover {
  color: #d53122;
  padding-left: 0.5rem;
}

.tzcelt-bolge-link::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d53122' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/18px no-repeat;
}

.tzcelt-bolge-link-label {
  display: inline-flex;
  align-items: center;
  flex: 1;
}

.tzcelt-bolge-link-icon {
  display: none;
}

.tzcelt-bolge-all-wrap {
  text-align: center;
  margin: 2rem 0;
}

.tzcelt-bolge-all-link {
  display: inline-block;
  color: #d53122;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tzcelt-bolge-all-link:hover {
  color: #b8291c;
}

.tzcelt-bolge-call-wrap {
  margin-top: 2rem;
}

.tzcelt-bolge-call-inner {
  padding: 1.5rem;
  background: rgba(51, 69, 92, 0.05);
  border: 1px solid rgba(51, 69, 92, 0.12);
  border-radius: 8px;
  text-align: center;
}

.tzcelt-bolge-call-title {
  color: #33455c;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.tzcelt-bolge-call-slogan {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.tzcelt-bolge-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d53122;
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.tzcelt-bolge-call-btn:hover {
  background: #b8291c;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Hizmet Bölgeleri - Responsive */
@media (max-width: 768px) {
  .tzcelt-bolge-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tzcelt-bolge-section-title {
    padding: 1rem 1rem 0;
  }

  .tzcelt-bolge-section-desc {
    padding: 0 1rem;
  }

  .tzcelt-bolge-list {
    padding: 0 1rem 1rem;
  }

  .tzcelt-bolge-link {
    padding: 0.6rem 0;
  }
}

@media (max-width: 480px) {
  .tzcelt-bolge-main-title {
    font-size: 1.5rem;
  }

  .tzcelt-bolge-intro {
    font-size: 0.9375rem;
  }

  .tzcelt-bolge-call-btn {
    display: block;
    width: 100%;
  }
}

/* ===== İletişim Sayfası ===== */
.tzcelt-iletisim-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: start;
}

.tzcelt-iletisim-contact {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(51, 69, 92, 0.08);
  border: 1px solid rgba(51, 69, 92, 0.08);
}

.tzcelt-iletisim-title {
  color: #33455c;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
}

.tzcelt-iletisim-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tzcelt-iletisim-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  gap: 0.2rem 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(51, 69, 92, 0.06);
}

.tzcelt-iletisim-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.tzcelt-iletisim-item::before {
  content: "";
  width: 40px;
  height: 40px;
  background: rgba(213, 49, 34, 0.1);
  border-radius: 8px;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  grid-row: 1 / -1;
  grid-column: 1;
  align-self: start;
}

.tzcelt-iletisim-item:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d53122' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z'/%3E%3Cpath d='M9 22V12h6v10'/%3E%3C/svg%3E");
}

.tzcelt-iletisim-item:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d53122' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
}

.tzcelt-iletisim-item:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d53122' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}

.tzcelt-iletisim-item:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d53122' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.tzcelt-iletisim-item:nth-child(5)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d53122' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1112.63 8 4 4 0 0116 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
}

.tzcelt-iletisim-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #33455c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.tzcelt-iletisim-value {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.tzcelt-iletisim-link {
  color: #d53122 !important;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.tzcelt-iletisim-link:hover {
  opacity: 0.85;
}

.tzcelt-iletisim-form-row {
  margin-bottom: 1rem;
}

.tzcelt-iletisim-form-row:last-child {
  margin-bottom: 0;
}

.tzcelt-iletisim-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #33455c;
  margin-bottom: 0.35rem;
}

.tzcelt-iletisim-form-input,
.tzcelt-iletisim-form-textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  color: #33455c;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.tzcelt-iletisim-form-input::placeholder,
.tzcelt-iletisim-form-textarea::placeholder {
  color: #999;
}

.tzcelt-iletisim-form-input:focus,
.tzcelt-iletisim-form-textarea:focus {
  outline: none;
  border-color: #d53122;
}

.tzcelt-iletisim-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.tzcelt-iletisim-form-submit-wrap {
  margin-top: 1.25rem;
}

.tzcelt-iletisim-form-submit {
  display: inline-block;
  background: #d53122;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.tzcelt-iletisim-form-submit:hover {
  background: #b8291c;
  transform: translateY(-2px);
}

.tzcelt-iletisim-map-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.tzcelt-iletisim-map {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .tzcelt-iletisim-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tzcelt-iletisim-contact {
    order: 1;
  }

  .tzcelt-iletisim-form-wrap {
    order: 2;
  }

  .tzcelt-iletisim-map {
    height: 250px;
  }
}

/* ===== Sıkça Sorulan Sorular ===== */
.tzcelt-sss-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.tzcelt-sss-item {
  background: #fff;
  border: 1px solid rgba(51, 69, 92, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(51, 69, 92, 0.04);
  transition: box-shadow 0.2s ease;
}

.tzcelt-sss-item:hover {
  box-shadow: 0 4px 12px rgba(51, 69, 92, 0.08);
}

.tzcelt-sss-question {
  color: #33455c;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  padding: 1rem 1.25rem;
  background: rgba(51, 69, 92, 0.03);
  border-bottom: 1px solid rgba(51, 69, 92, 0.06);
}

.tzcelt-sss-answer {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  padding: 1rem 1.25rem;
}

.tzcelt-sss-cta {
  text-align: center;
  padding: 2rem 0;
  background: rgba(51, 69, 92, 0.04);
  border: 1px solid rgba(51, 69, 92, 0.08);
  border-radius: 10px;
}

.tzcelt-sss-cta-title {
  color: #33455c;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
}

.tzcelt-sss-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.tzcelt-sss-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.tzcelt-sss-btn-whatsapp {
  background: #25d366;
  color: #fff !important;
}

.tzcelt-sss-btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff !important;
  transform: translateY(-2px);
}

.tzcelt-sss-btn-call {
  background: #d53122;
  color: #fff !important;
}

.tzcelt-sss-btn-call:hover {
  background: #b8291c;
  color: #fff !important;
  transform: translateY(-2px);
}

.tzcelt-sss-btn-icon {
  display: inline-flex;
}

@media (max-width: 768px) {
  .tzcelt-sss-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tzcelt-sss-cta-buttons {
    flex-direction: column;
  }

  .tzcelt-sss-btn {
    justify-content: center;
  }
}

/* ===== Hakkımızda Sayfası ===== */
.tzcelt-hakkimizda-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.tzcelt-hakkimizda-hero-title {
  color: #33455c;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.tzcelt-hakkimizda-hero-tagline {
  color: #555;
  font-size: 1.125rem;
  margin: 0;
}

.tzcelt-hakkimizda-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.tzcelt-hakkimizda-about-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(51, 69, 92, 0.1);
}

.tzcelt-hakkimizda-title {
  color: #33455c;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.tzcelt-hakkimizda-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.tzcelt-hakkimizda-text strong {
  color: #33455c;
}

.tzcelt-hakkimizda-text:last-child {
  margin-bottom: 0;
}

.tzcelt-hakkimizda-cta {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2.5rem;
  background: rgba(51, 69, 92, 0.04);
  border: 1px solid rgba(51, 69, 92, 0.1);
  border-radius: 10px;
}

.tzcelt-hakkimizda-cta-title {
  color: #33455c;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.tzcelt-hakkimizda-cta-desc {
  color: #555;
  font-size: 0.9375rem;
  margin: 0 0 1.25rem 0;
}

.tzcelt-hakkimizda-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.tzcelt-hakkimizda-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.tzcelt-hakkimizda-btn-whatsapp {
  background: #25d366;
  color: #fff !important;
}

.tzcelt-hakkimizda-btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff !important;
  transform: translateY(-2px);
}

.tzcelt-hakkimizda-btn-call {
  background: #d53122;
  color: #fff !important;
}

.tzcelt-hakkimizda-btn-call:hover {
  background: #b8291c;
  color: #fff !important;
  transform: translateY(-2px);
}

.tzcelt-hakkimizda-btn-icon {
  display: inline-flex;
}

.tzcelt-hakkimizda-vm {
  margin-bottom: 2.5rem;
}

.tzcelt-hakkimizda-vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tzcelt-hakkimizda-vm-card {
  background: #fff;
  border: 1px solid rgba(51, 69, 92, 0.08);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(51, 69, 92, 0.06);
  transition: box-shadow 0.2s ease;
}

.tzcelt-hakkimizda-vm-card:hover {
  box-shadow: 0 4px 20px rgba(51, 69, 92, 0.1);
}

.tzcelt-hakkimizda-vm-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: rgba(213, 49, 34, 0.1);
  color: #d53122;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.tzcelt-hakkimizda-vm-icon svg {
  stroke: #d53122;
}

.tzcelt-hakkimizda-vm-heading {
  color: #33455c;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.tzcelt-hakkimizda-vm-text {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.tzcelt-hakkimizda-services {
  margin-bottom: 0;
}

.tzcelt-hakkimizda-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}

.tzcelt-hakkimizda-service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  font-size: 0.9375rem;
}

.tzcelt-hakkimizda-service-item::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: #d53122;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .tzcelt-hakkimizda-about {
    grid-template-columns: 1fr;
  }

  .tzcelt-hakkimizda-about-media {
    order: 1;
  }

  .tzcelt-hakkimizda-about-content {
    order: 2;
  }

  .tzcelt-hakkimizda-vm-grid {
    grid-template-columns: 1fr;
  }

  .tzcelt-hakkimizda-service-list {
    grid-template-columns: 1fr;
  }

  .tzcelt-hakkimizda-cta-buttons {
    flex-direction: column;
  }

  .tzcelt-hakkimizda-btn {
    justify-content: center;
  }
}

/* ===== Sidebar ===== */
.tzcelt-sidebar-widget {
  background: #fff;
  border: 1px solid rgba(51, 69, 92, 0.08);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(51, 69, 92, 0.04);
}

.tzcelt-sidebar-title {
  color: #33455c;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.tzcelt-sidebar-desc {
  color: #555;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.tzcelt-sidebar-districts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tzcelt-sidebar-districts li {
  margin: 0 0 0.35rem 0;
}

.tzcelt-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #33455c;
  font-size: 0.875rem;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(51, 69, 92, 0.06);
  transition: color 0.2s ease;
}

.tzcelt-sidebar-districts li:last-child .tzcelt-sidebar-link {
  border-bottom: none;
}

.tzcelt-sidebar-link:hover {
  color: #d53122;
}

.tzcelt-sidebar-link-main {
  flex: 1;
  min-width: 0;
}

.tzcelt-sidebar-link-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.tzcelt-sidebar-link-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.tzcelt-sidebar-link-all {
  font-weight: 600;
}

.tzcelt-sidebar-call {
  margin-bottom: 1.5rem;
}

.tzcelt-sidebar-call-inner {
  background: rgba(51, 69, 92, 0.05);
  border: 1px solid rgba(51, 69, 92, 0.1);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}

.tzcelt-sidebar-call-title {
  color: #33455c;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.35rem 0;
}

.tzcelt-sidebar-call-slogan {
  color: #555;
  font-size: 0.8125rem;
  margin: 0 0 1rem 0;
}

.tzcelt-sidebar-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #d53122;
  color: #fff !important;
  padding: 0.65rem 1rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.tzcelt-sidebar-call-btn:hover {
  background: #b8291c;
  color: #fff !important;
  transform: translateY(-2px);
}

.tzcelt-sidebar-call-icon {
  display: inline-flex;
}

.tzcelt-sidebar-call-icon svg {
  width: 18px;
  height: 18px;
}
