/* ----------------------------------------
   Piraye Reklam — özel uyarlamalar
   Bexon temasının üzerine çalışır.
---------------------------------------- */

/* Piraye logosu kareye yakın olduğu için header/footer ölçü düzeltmesi */
.site_logo .logo { max-width: 180px; }
.site_logo .logo img { width: 100%; height: auto; display: block; }
.hamburger_logo .mobile_logo { max-width: 160px; display: inline-block; }
.hamburger_logo .mobile_logo img { width: 100%; height: auto; display: block; }
.tj-footer-section.h9-footer .h9-footer-logo a { max-width: 320px; }
.tj-footer-section.h9-footer .h9-footer-logo a img { width: 100%; height: auto; display: block; }

/* Müşteri logo slider kartları:
   Her logoya tutarlı beyaz kart bg veriyoruz (renk/oran/şeffaflık farklarını absorbe etsin) */
.h6-client .client-slider .client-logo,
.tj-client-section-2 .client-logo {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 28px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.h6-client .client-slider .client-logo:hover,
.tj-client-section-2 .client-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.h6-client .client-slider .client-logo img,
.tj-client-section-2 .client-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

/* Logo'lar markaların kendi sitesine link veriyor — tam kart tıklanabilir olsun */
.h6-client .client-slider .client-logo a,
.tj-client-section-2 .client-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

/* Müşteri yorumları — gerçek müşteri datası gelene kadar gizli.
   Aktif etmek için bu kuralı sil. */
#referanslar { display: none !important; }

/* "100+ marka" kartındaki overlapping küçük marka logoları:
   beyaz daire içinde simge gibi göstermek için */
.customers-box .customers ul li {
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.customers-box .customers ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  background: #fff;
  border-radius: 50%;
}

/* ============================================
   Hakkımızda — Stat listesi (progress bar yerine)
============================================ */
.piraye-stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.piraye-stat-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.piraye-stat-list li:last-child { border-bottom: 0; }
.piraye-stat-list .piraye-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #154e54;
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
}
.piraye-stat-list .piraye-stat-value sup {
  font-size: 22px;
  top: -10px;
  margin-left: 2px;
  color: #4cb4b4;
}
.piraye-stat-list .piraye-stat-label {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* ============================================
   Hizmet Detay — Çalışma Sürecimiz: 2x2 sabit grid
============================================ */
.details-content-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}
@media (max-width: 575px) {
  .details-content-box { grid-template-columns: 1fr; }
}
.details-content-box .service-details-item {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 28px 24px;
  min-height: 200px;
  min-width: 200px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.details-content-box .service-details-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-color: rgba(76, 180, 180, 0.4);
}
.details-content-box .service-details-item .number {
  font-size: 28px;
  font-weight: 700;
  color: #4cb4b4;
  line-height: 48px;
  margin-bottom: 12px;
  display: block;
}
.details-content-box .service-details-item .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.details-content-box .service-details-item .desc p {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* ============================================
   İç sayfa Header — anasayfayla aynı transparent davranış
   Banner section'ı negative margin-top ile yukarı çekiyor;
   böylece banner'ın koyu bg'si header'ın arkasından görünüyor.
============================================ */
.tj-page-header {
  margin-top: -15px !important;
  padding-top: 148px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-page-header {
    margin-top: -15px !important;
    padding-top: 105px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
       only screen and (min-width: 576px) and (max-width: 767px),
       (max-width: 575px) {
  .tj-page-header {
    margin-top: -15px !important;
    padding-top: 75px !important;
  }
}

/* ============================================
   Yasal sayfalar (KVKK, Çerez Politikası):
   Başlık/gövde font orantısı + okunaklı satır aralığı
============================================ */
.post-details-wrapper .blog-text h2 {
  font-size: 26px;
  line-height: 1.35;
  margin-top: 36px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.post-details-wrapper .blog-text h2:first-child {
  margin-top: 0;
}
.post-details-wrapper .blog-text h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 600;
}
.post-details-wrapper .blog-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 14px;
}
.post-details-wrapper .blog-text a {
  color: #154e54;
  text-decoration: underline;
}
.post-details-wrapper .blog-text a:hover {
  color: #4cb4b4;
}
.post-details-wrapper .blog-text strong {
  color: #154e54;
  font-weight: 600;
}

/* Liste stilleri: bullet/number yerine marka renklerinde özel işaretleyiciler */
.post-details-wrapper .blog-text ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
}
.post-details-wrapper .blog-text ul li {
  position: relative;
  padding: 2px 0 2px 28px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}
.post-details-wrapper .blog-text ul li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4cb4b4;
  box-shadow: 0 0 0 4px rgba(76, 180, 180, 0.15);
}

/* Sıralı liste: sayma kutucuğu */
.post-details-wrapper .blog-text ol {
  list-style: none;
  counter-reset: piraye-step;
  padding: 0;
  margin: 18px 0 26px;
}
.post-details-wrapper .blog-text ol > li {
  position: relative;
  padding: 4px 0 4px 48px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  counter-increment: piraye-step;
}
.post-details-wrapper .blog-text ol > li::before {
  content: counter(piraye-step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(76, 180, 180, 0.15);
  color: #154e54;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, SFMono-Regular, monospace;
}

/* Tablo stilleri — blog/KVKK sayfalarındaki tablolar için biraz daha temiz */
.post-details-wrapper .blog-text table {
  border-radius: 10px;
  overflow: hidden;
  font-size: 14.5px;
}
.post-details-wrapper .blog-text table th {
  background: rgba(76, 180, 180, 0.12) !important;
  color: #154e54;
  font-weight: 600;
  border-color: rgba(76, 180, 180, 0.2) !important;
}
.post-details-wrapper .blog-text table td {
  border-color: rgba(0, 0, 0, 0.06) !important;
}

/* ============================================
   Çerez Onay Banner (Cookie Consent)
   KVKK uyumu için. Kabul edildikten sonra localStorage ile gizlenir.
============================================ */
#piraye-cookie-bar {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: #0a2e32;
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.6;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
#piraye-cookie-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}
#piraye-cookie-bar .cookie-text {
  flex: 1 1 280px;
  color: rgba(255, 255, 255, 0.92);
}
#piraye-cookie-bar .cookie-text a {
  color: #4cb4b4;
  text-decoration: underline;
}
#piraye-cookie-bar .cookie-text a:hover {
  color: #fff;
}
#piraye-cookie-bar .cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#piraye-cookie-bar button {
  border: 0;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
  font-family: inherit;
}
#piraye-cookie-bar .cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
#piraye-cookie-bar .cookie-decline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
#piraye-cookie-bar .cookie-accept {
  background: #4cb4b4;
  color: #0a2e32;
  font-weight: 600;
}
#piraye-cookie-bar .cookie-accept:hover {
  background: #fff;
}
@media (max-width: 575px) {
  #piraye-cookie-bar {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 16px;
    font-size: 13px;
  }
  #piraye-cookie-bar .cookie-actions {
    width: 100%;
    flex-direction: column-reverse;
  }
  #piraye-cookie-bar button {
    width: 100%;
  }
}

/* ============================================
   Site içi arama sayfası
============================================ */
.piraye-search-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 0 32px;
}
.piraye-search-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease;
}
.piraye-search-form:focus-within {
  border-color: #4cb4b4;
  box-shadow: 0 6px 20px rgba(76, 180, 180, 0.15);
}
.piraye-search-form input[type=search] {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 17px;
  padding: 14px 8px;
  background: transparent;
  font-family: inherit;
}
.piraye-search-form button {
  border: 0;
  background: #0a2e32;
  color: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.piraye-search-form button:hover { background: #154e54; }

#piraye-search-status {
  font-size: 14px;
  color: #666;
  margin: 24px 0 16px;
  padding-left: 4px;
}

.piraye-search-result {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.piraye-search-result:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-color: rgba(76, 180, 180, 0.4);
}
.piraye-search-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.piraye-search-meta .cat {
  background: rgba(76, 180, 180, 0.12);
  color: #154e54;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 600;
}
.piraye-search-meta .url {
  color: #999;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 11px;
}
.piraye-search-result h3 {
  font-size: 19px;
  margin: 0 0 8px;
  line-height: 1.35;
}
.piraye-search-result h3 a {
  color: #1a1a1a;
  text-decoration: none;
}
.piraye-search-result h3 a:hover { color: #4cb4b4; }
.piraye-search-result p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}
.piraye-search-result mark {
  background: rgba(76, 180, 180, 0.3);
  color: inherit;
  padding: 0 2px;
  border-radius: 2px;
}
.piraye-search-empty {
  text-align: center;
  padding: 32px 16px;
  color: #666;
}
.piraye-search-empty a {
  display: inline-block;
  margin: 0 4px;
  padding: 4px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  font-size: 13px;
  color: #154e54;
  text-decoration: none;
  margin-bottom: 4px;
}
.piraye-search-empty a:hover {
  background: rgba(76, 180, 180, 0.1);
  border-color: #4cb4b4;
}

/* ============================================
   İletişim Sayfası — modern form tasarımı
============================================ */
.piraye-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 991px) {
  .piraye-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.piraye-contact-info {
  background: linear-gradient(135deg, #154e54 0%, #0a2e32 100%);
  color: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.piraye-contact-info::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(76,180,180,0.4), transparent 70%);
  border-radius: 50%;
}
.piraye-contact-info > * { position: relative; z-index: 1; }
.piraye-contact-info .contact-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.piraye-contact-info h2 {
  color: #fff;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.piraye-contact-info p.lead {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}
.piraye-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.piraye-contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s ease;
}
.piraye-contact-channel:hover {
  opacity: 0.85;
  color: #fff;
}
.piraye-contact-channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,0.15);
}
.piraye-contact-channel-text .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 4px;
}
.piraye-contact-channel-text .value {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.piraye-contact-hours {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.piraye-contact-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.piraye-contact-form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.piraye-contact-form .form-intro {
  color: #666;
  margin-bottom: 28px;
  font-size: 15px;
}
.piraye-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 18px;
}
@media (max-width: 575px) {
  .piraye-contact-form .form-row { grid-template-columns: 1fr; gap: 20px; }
}
.piraye-contact-form .form-field {
  margin-bottom: 22px;
}
.piraye-contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.piraye-contact-form input[type=text],
.piraye-contact-form input[type=email],
.piraye-contact-form input[type=tel],
.piraye-contact-form select,
.piraye-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fafafa;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.piraye-contact-form input:focus,
.piraye-contact-form select:focus,
.piraye-contact-form textarea:focus {
  outline: none;
  border-color: #4cb4b4;
  background: #fff;
}
.piraye-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.piraye-contact-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 16px 0 24px;
  text-transform: none;
  letter-spacing: normal;
  font-weight: normal;
}
.piraye-contact-form .form-consent input {
  margin-top: 4px;
  flex-shrink: 0;
}
.piraye-contact-form .form-consent a {
  color: #154e54;
  text-decoration: underline;
}
.piraye-contact-form .form-submit {
  width: 100%;
  padding: 16px;
  background: #0a2e32;
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.piraye-contact-form .form-submit:hover {
  background: #154e54;
}
