/* =============================================================================
   TDP'ye Sor — site geneli parçalar:
     1) Header'daki ikinci güçlü CTA ("TDP'ye Sor", ÜYE OL'un solunda)
     2) Mobil çekmecedeki TDP'ye Sor düğmesi
     3) Ana sayfa hero altı tanıtım bandı (AskPromoBand)
   layout.tsx'ten yüklenir (?v= elle bump).
   ============================================================================= */

/* ───── 1) Header CTA ───── */

.tdp-header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tdp-ask-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  border-radius: 5px;
  background: #14141c;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.tdp-ask-btn svg {
  flex-shrink: 0;
}

.tdp-ask-btn:hover,
.tdp-ask-btn:focus-visible {
  background: #c41e3a;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(196, 30, 58, 0.3);
}

/* Header şeffaf/koyu zeminde (ana sayfa hero üstü) beyaz kenar çizgisiyle ayrışsın */
.header-style-01.transparent .tdp-ask-btn,
.tdp-header--transparent .tdp-ask-btn {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 6px 18px rgba(0, 0, 0, 0.28);
}

/* ───── 2) Mobil çekmece ───── */

.tdp-drawer-cta--ask {
  background: #14141c !important;
  color: #fff !important;
  margin-bottom: 10px;
}

.tdp-drawer-cta--ask svg {
  width: 18px;
  height: 18px;
}

/* ───── 3) Ana sayfa bandı ───── */

.tdp-ask-band {
  position: relative;
  padding: clamp(56px, 7vw, 88px) 0;
  background:
    radial-gradient(900px 420px at 90% 0%, rgba(196, 30, 58, 0.35), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(255, 255, 255, 0.05), transparent 60%),
    #14141c;
  color: #fff;
  overflow: hidden;
}

.tdp-ask-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.tdp-ask-band-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff6b81;
}

.tdp-ask-band-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b81;
  box-shadow: 0 0 0 4px rgba(255, 107, 129, 0.2);
}

.tdp-ask-band-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.tdp-ask-band-copy h2 span {
  color: #ff3b5c;
}

.tdp-ask-band-copy p {
  max-width: 540px;
  margin: 0 0 26px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.tdp-ask-band-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.tdp-ask-band-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 10px;
  background: #c41e3a;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(196, 30, 58, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tdp-ask-band-btn:hover,
.tdp-ask-band-btn:focus-visible {
  background: #e0213f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(196, 30, 58, 0.45);
}

.tdp-ask-band-link {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tdp-ask-band-link:hover {
  color: #fff;
}

/* Mini sohbet kartı */

.tdp-ask-band-mock {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  border-radius: 20px;
  background: #fff;
  color: #1a1a2e;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: rotate(1deg);
  transition: transform 0.3s ease;
}

.tdp-ask-band-mock:hover {
  transform: rotate(0deg) translateY(-4px);
  color: #1a1a2e;
}

.tdp-ask-band-mock-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #e6e8ee;
}

.tdp-ask-band-mock-head img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.tdp-ask-band-mock-head strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.tdp-ask-band-mock-head span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
}

.tdp-ask-band-mock-head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.tdp-ask-band-mock-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: #f6f7fa;
}

.tdp-ask-band-bubble {
  max-width: 88%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
}

.tdp-ask-band-bubble--user {
  align-self: flex-end;
  background: #c41e3a;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.tdp-ask-band-bubble--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid #e6e8ee;
  border-bottom-left-radius: 4px;
}

.tdp-ask-band-mock-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  font-size: 14px;
  color: #9aa0ab;
  border-top: 1px solid #e6e8ee;
}

.tdp-ask-band-mock-input b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #c41e3a;
  color: #fff;
}

/* ───── Responsive ───── */

@media (max-width: 1199px) {
  .tdp-ask-btn {
    padding: 13px 16px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .tdp-ask-band-grid {
    grid-template-columns: 1fr;
  }

  .tdp-ask-band-mock {
    margin: 6px 0 0;
    max-width: 520px;
    transform: none;
  }
}

@media (max-width: 575px) {
  .tdp-ask-band-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tdp-ask-btn,
  .tdp-ask-band-btn,
  .tdp-ask-band-mock {
    transition: none;
  }
}
