/* ============================================================
   PsykoLink — Destek Sayfası
   Design System: Psiko Mavi & Mint Paleti
   Fonts: Poppins (headers) + Inter (body)
   ============================================================ */

:root {
  --primary-green:  #10B981;
  --primary-blue:   #3B82F6;
  --accent-purple:  #6C63FF;
  --success-green:  #22C55E;
  --warning-orange: #F59E0B;
  --soft-gray:      #F9FAFB;
  --dark-navy:      #0C0F1A;
  --text-black:     #1F2937;
  --text-muted:     #4B5563;
  --text-light:     #9CA3AF;
  --white:          #FFFFFF;
  --surface:        rgba(255, 255, 255, 0.65);
  --border:         rgba(59, 130, 246, 0.2);
  --radius-lg:      28px;
  --radius-md:      18px;
  --radius-sm:      12px;
  --container:      clamp(16rem, 90vw, 1200px);
}

*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-black);
  background: var(--soft-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Shared utilities ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.gradient-text {
  background: linear-gradient(135deg, #10B981, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
  border: none;
}

.btn.primary {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(59, 130, 246, 0.55);
}

.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(59, 130, 246, 0.55); }

.btn.ghost {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid rgba(59, 130, 246, 0.35);
}

.btn.ghost:hover { background: rgba(59, 130, 246, 0.07); transform: translateY(-2px); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

/* ============================================================
   1. HERO
   ============================================================ */
.destek-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(160deg, #EFF6FF 0%, #F0FDF4 50%, #F9FAFB 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.destek-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.destek-hero .inner {
  position: relative;
  max-width: 800px;
}

.destek-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-black);
  margin-bottom: 1.25rem;
}

.destek-hero .hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 1.25rem;
}

.destek-hero .hero-message {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.destek-hero .hero-message i {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ============================================================
   2 & 3. NE SUNAR / NE SUNMAZ — Two-column grid
   ============================================================ */
.info-grid {
  padding: 4rem 0;
  background: var(--white);
}

.info-grid .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.info-card {
  background: var(--soft-gray);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.info-card.offers {
  border-top: 4px solid var(--primary-green);
}

.info-card.not-offers {
  border-top: 4px solid var(--primary-blue);
}

.info-card h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-black);
}

.info-card .card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.offers .info-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-green);
  flex-shrink: 0;
}

.not-offers .info-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-blue);
  flex-shrink: 0;
}

.not-offers-note {
  margin-top: 1.5rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(59, 130, 246, 0.07);
  font-size: 0.87rem;
  color: var(--text-muted);
  border-left: 3px solid var(--primary-blue);
}

/* ============================================================
   4. PROFESYONEL DESTEK KAYNAKLARI
   ============================================================ */
.support-sources {
  padding: 4.5rem 0;
  background: var(--soft-gray);
}

.support-sources .section-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.support-sources .section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 0.75rem;
}

.support-sources .section-header p {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.source-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.source-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -16px rgba(14, 22, 40, 0.12);
}

.source-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(59, 130, 246, 0.12));
  color: var(--primary-blue);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.source-card h3 {
  font-size: 1rem;
  color: var(--text-black);
}

.source-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
}

.source-card a.source-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  width: fit-content;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.source-card a.source-link:hover {
  background: rgba(59, 130, 246, 0.07);
  transform: translateX(2px);
}

/* ============================================================
   5. ACİL DESTEK
   ============================================================ */
.emergency {
  padding: 4rem 0;
  background: linear-gradient(135deg, #FEF2F2, #FFF7ED);
}

.emergency .inner {
  max-width: 720px;
  text-align: center;
}

.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.emergency h2 {
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  margin-bottom: 1rem;
}

.emergency > .inner > p {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.emergency-numbers {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.emergency-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid rgba(239, 68, 68, 0.15);
  box-shadow: 0 8px 24px -8px rgba(239, 68, 68, 0.1);
  min-width: 160px;
}

.emergency-num-value {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #DC2626;
  line-height: 1;
}

.emergency-num-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

/* ============================================================
   6. DESTEK MESAJI
   ============================================================ */
.support-message {
  padding: 4.5rem 0;
  background: var(--white);
}

.support-message .inner {
  max-width: 720px;
  text-align: center;
}

.message-quote {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.12);
}

.message-quote .quote-icon {
  font-size: 2.5rem;
  color: rgba(59, 130, 246, 0.2);
  font-family: "Poppins", sans-serif;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.message-quote p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.message-quote p:last-child { margin-bottom: 0; }

.message-quote .strong-note {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: 1.5rem;
}

/* ============================================================
   7. İLETİŞİM
   ============================================================ */
.contact-section {
  padding: 4rem 0 5rem;
  background: var(--soft-gray);
  text-align: center;
}

.contact-section .inner {
  max-width: 560px;
}

.contact-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 0.75rem;
}

.contact-section > .inner > p {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-email-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 8px 24px -8px rgba(14, 22, 40, 0.08);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-blue);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-email-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(59, 130, 246, 0.2);
}

.contact-email-chip i {
  font-size: 1.1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .info-grid .inner {
    grid-template-columns: 1fr;
  }

  .sources-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .destek-hero { padding: 3.5rem 0 3rem; }

  .sources-grid {
    grid-template-columns: 1fr;
  }

  .emergency-numbers {
    flex-direction: column;
    align-items: center;
  }

  .emergency-number {
    width: 100%;
    max-width: 260px;
  }

  .message-quote { padding: 1.75rem 1.25rem; }
}
