/* ═══════════════════════════════════════════════════════════
   Can Psikoloji — Kurumsal Tema  |  main.css
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy:   #0f1e2e;
  --teal:   #2a6b6b;
  --teal2:  #3d8c8c;
  --sand:   #f5f0e8;
  --cream:  #faf8f4;
  --white:  #ffffff;
  --text:   #1a2733;
  --muted:  #6b7c88;
  --border: #e0d9ce;
  --gold:   #c9a84c;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', sans-serif;
  --r:      6px;
  --shadow: 0 4px 24px rgba(15,30,46,.08);
}

/* ── Reset ─────────────────────────────────────────────────── */
.cpt-hero,
.cpt-trust,
.cpt-hizmetler,
.cpt-stats,
.cpt-ekibimiz,
.cpt-neden-biz,
.cpt-referanslar,
.cpt-cta {
  box-sizing: border-box;
  font-family: var(--sans);
}

/* ── Ortak ─────────────────────────────────────────────────── */
.cpt-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}
.cpt-label::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
  display: block;
  flex-shrink: 0;
}
.cpt-label--light  { color: var(--teal2); }
.cpt-label--center { justify-content: center; }
.cpt-label--center::before { display: none; }

.cpt-heading {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -.01em;
  margin: 0 0 20px;
}
.cpt-heading em      { font-style: italic; color: var(--teal); }
.cpt-heading--white  { color: #fff; }
.cpt-heading--white em { color: var(--teal2); }
.cpt-heading--center { text-align: center; }

.cpt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.cpt-btn:hover { transform: translateY(-1px); }
.cpt-btn--teal { background: var(--teal); color: #fff; }
.cpt-btn--teal:hover { background: var(--teal2); color: #fff; }
.cpt-btn--outline {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.25);
}
.cpt-btn--outline:hover {
  border-color: var(--teal2);
  color: #fff;
  background: rgba(42,107,107,.15);
}

/* ═══ HERO ═══════════════════════════════════════════════════ */
.cpt-hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 88vh;
  background: var(--navy);
}

.cpt-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}

.cpt-hero__left .cpt-label { color: var(--gold); }
.cpt-hero__left .cpt-label::before { background: var(--gold); }

.cpt-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 24px;
}
.cpt-hero__title em { font-style: italic; color: var(--teal2); display: block; }

.cpt-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 0 36px;
  font-weight: 300;
}

.cpt-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--r);
  text-decoration: none;
  align-self: flex-start;
  transition: background .2s, transform .15s;
}
.cpt-hero__btn:hover { background: var(--teal2); transform: translateY(-1px); }

.cpt-hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.cpt-hero__stat { display: flex; flex-direction: column; gap: 4px; }
.cpt-hero__stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
.cpt-hero__stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cpt-hero__right {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 500px;
}
.cpt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(15,30,46,.3) 40%, rgba(15,30,46,.1) 100%);
}
.cpt-hero__award {
  position: absolute;
  bottom: 36px;
  right: 28px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
  z-index: 2;
}
.cpt-hero__award-icon { font-size: 22px; flex-shrink: 0; }
.cpt-hero__award strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.cpt-hero__award span { font-size: 11.5px; color: rgba(255,255,255,.55); }

/* ═══ GÜVEN ŞERİDİ ═══════════════════════════════════════════ */
.cpt-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.cpt-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.cpt-trust__icon {
  font-size: 15px;
  color: var(--teal);
  flex-shrink: 0;
}
.cpt-trust__divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══ HİZMETLER ══════════════════════════════════════════════ */
.cpt-hizmetler {
  background: var(--navy);
  padding: 80px 0;
}
.cpt-hizmetler__header {
  text-align: center;
  margin-bottom: 52px;
}
.cpt-hizmetler__alt {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  max-width: 560px;
  margin: 16px auto 0;
  font-weight: 300;
  line-height: 1.7;
}
.cpt-hizmetler__grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  overflow: hidden;
}
.cpt-hizmet-kart {
  background: rgba(255,255,255,.03);
  padding: 32px 24px;
  text-decoration: none;
  display: block;
  position: relative;
  transition: background .25s;
}
.cpt-hizmet-kart:hover { background: rgba(42,107,107,.2); }
.cpt-hizmet-kart__num {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  color: rgba(255,255,255,.2);
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.cpt-hizmet-kart__icon {
  width: 44px; height: 44px;
  background: rgba(42,107,107,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cpt-hizmet-kart__icon i { font-size: 18px; color: var(--teal2); }
.cpt-hizmet-kart__title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.cpt-hizmet-kart__desc {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  margin: 0;
}
.cpt-hizmet-kart__arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: 14px;
  opacity: 0;
  transition: opacity .2s;
}
.cpt-hizmet-kart:hover .cpt-hizmet-kart__arrow { opacity: 1; }
.cpt-hizmetler__footer { text-align: center; margin-top: 44px; }

/* ═══ İSTATİSTİKLER ══════════════════════════════════════════ */
.cpt-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--teal);
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.cpt-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 20px;
  border-right: 1px solid rgba(255,255,255,.15);
  text-align: center;
}
.cpt-stat:last-child { border-right: none; }
.cpt-stat__num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}
.cpt-stat__lbl {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 8px;
}

/* ═══ EKİBİMİZ ═══════════════════════════════════════════════ */
.cpt-ekibimiz {
  background: var(--cream);
  padding: 80px 0;
}
.cpt-ekibimiz__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 44px;
}
.cpt-ekibimiz__grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  gap: 22px;
}
.cpt-ekip-kart {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.cpt-ekip-kart:hover {
  box-shadow: 0 16px 48px rgba(15,30,46,.12);
  transform: translateY(-4px);
}
.cpt-ekip-kart__img-wrap { display: block; }
.cpt-ekip-kart__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.cpt-ekip-kart__body { padding: 18px 20px 22px; }
.cpt-ekip-kart__unvan {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.cpt-ekip-kart__isim {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.2;
}
.cpt-ekip-kart__isim a { text-decoration: none; color: inherit; }
.cpt-ekip-kart__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: gap .2s;
}
.cpt-ekip-kart__link:hover { gap: 9px; }
.cpt-ekibimiz__empty {
  color: var(--muted);
  font-style: italic;
  padding: 40px 0;
  text-align: center;
}
.cpt-ekibimiz__empty a { color: var(--teal); }

/* ═══ NEDEN BİZ ══════════════════════════════════════════════ */
.cpt-neden-biz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--sand);
}
.cpt-neden-biz__sol {
  padding: 80px 48px 80px 80px;
  position: relative;
}
.cpt-neden-biz__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r);
  display: block;
}
.cpt-neden-biz__odul {
  position: absolute;
  bottom: 100px;
  right: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 220px;
  box-shadow: var(--shadow);
}
.cpt-neden-biz__odul-ikon { font-size: 22px; flex-shrink: 0; }
.cpt-neden-biz__odul strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.cpt-neden-biz__odul span { font-size: 11.5px; color: var(--muted); }

.cpt-neden-biz__sag {
  padding: 80px 80px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cpt-neden-biz__desc {
  font-size: 15.5px;
  color: #3d4f5c;
  line-height: 1.8;
  font-weight: 300;
  margin: 0 0 28px;
}
.cpt-neden-biz__ozellikler {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.cpt-ozellik {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  align-items: flex-start;
  transition: box-shadow .2s;
}
.cpt-ozellik:hover { box-shadow: var(--shadow); }
.cpt-ozellik__ikon {
  width: 40px; height: 40px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cpt-ozellik__ikon i { font-size: 16px; color: var(--teal); }
.cpt-ozellik__baslik {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
}
.cpt-ozellik__aciklama {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ═══ REFERANSLAR ════════════════════════════════════════════ */
.cpt-referanslar {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cpt-referanslar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 44px;
}
.cpt-ref-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 56px;
  filter: grayscale(1) opacity(.45);
  transition: filter .25s;
  text-decoration: none;
}
.cpt-ref-logo:hover { filter: grayscale(0) opacity(1); }
.cpt-ref-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ═══ CTA BANNER ════════════════════════════════════════════ */
.cpt-cta {
  background: var(--navy);
  padding: 96px 40px;
  text-align: center;
  position: relative;
}
.cpt-cta__rozet {
  display: inline-block;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.cpt-cta__baslik {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 18px;
  letter-spacing: -.01em;
}
.cpt-cta__baslik em { font-style: italic; color: var(--teal2); }
.cpt-cta__aciklama {
  font-size: 15.5px;
  color: rgba(255,255,255,.5);
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.7;
}
.cpt-cta__butonlar {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cpt-cta__btn1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background .2s;
}
.cpt-cta__btn1:hover { background: var(--teal2); }
.cpt-cta__btn2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
  font-size: 14.5px;
  font-weight: 500;
  padding: 15px 36px;
  border-radius: var(--r);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.cpt-cta__btn2:hover { border-color: var(--teal2); color: #fff; }
.cpt-cta__iletisim {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.cpt-cta__iletisim a {
  color: rgba(255,255,255,.6);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cpt-cta__iletisim a:hover { color: #fff; }

/* ═══ RESPONSIVE ═════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cpt-hero { grid-template-columns: 1fr; }
  .cpt-hero__right { display: none; }
  .cpt-hero__left { padding: 72px 48px; }
  .cpt-hizmetler__grid { --cols: 2 !important; }
  .cpt-stats { grid-template-columns: 1fr 1fr; }
  .cpt-ekibimiz__grid { --cols: 2 !important; }
  .cpt-neden-biz { grid-template-columns: 1fr; }
  .cpt-neden-biz__sol { padding: 60px 48px 0; }
  .cpt-neden-biz__sag { padding: 40px 48px 60px; }
  .cpt-neden-biz__odul { position: static; margin-top: 16px; max-width: 100%; }
}

@media (max-width: 640px) {
  .cpt-hero__left { padding: 56px 24px; }
  .cpt-hizmetler__grid { --cols: 1 !important; }
  .cpt-stats { grid-template-columns: 1fr 1fr; }
  .cpt-ekibimiz__grid { --cols: 1 !important; }
  .cpt-trust { justify-content: flex-start; }
  .cpt-trust__divider { display: none; }
  .cpt-neden-biz__sol,
  .cpt-neden-biz__sag { padding: 40px 24px; }
  .cpt-cta { padding: 72px 24px; }
}

/* ═══ ELEMENTOR EDITOR İYİLEŞTİRME ══════════════════════════ */
.elementor-editor-active .cpt-hero__right { min-height: 400px; }
.elementor-editor-active .cpt-ekibimiz__empty { display: block; }
