/**
 * Demo terapist sitesi - Terapist360 kendi demo stili.
 * Psikoloji/mental sağlık temasından ilham alındı; renk ailesi benzer, birebir kopya değil.
 * Terapist360 temasından bağımsız; sadece Bootstrap + bu dosya yüklenir.
 */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

/* Kendi paletimiz: sage-yeşil, lavanta, krem (benzer aile, farklı tonlar) */
:root {
  --demo-primary: #5B8A7B;
  --demo-primary-dark: #4A7265;
  --demo-accent: #9B8BAB;
  --demo-bg: #F6F4F0;
  --demo-bg-dark: #3E534A;
  --demo-text: #2D3832;
  --demo-text-muted: #5C6B63;
}

* { box-sizing: border-box; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--demo-text);
  margin: 0;
  padding: 0;
  background: #fff;
}

/* Badge */
.demo-badge {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 9999;
  background: var(--demo-bg-dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.demo-badge:hover { color: var(--demo-accent); }

/* Top bar */
.demo-topbar {
  background: var(--demo-primary-dark);
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  padding: 10px 0;
}
.demo-topbar a { color: inherit; text-decoration: none; }
.demo-topbar a:hover { color: var(--demo-accent); }

/* Nav */
.demo-nav {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 14px 0;
  transition: box-shadow .3s;
}
.demo-nav.scrolled { box-shadow: 0 4px 25px rgba(0,0,0,0.08); }
.demo-nav .navbar-brand { font-size: 1.2rem; font-weight: 700; color: var(--demo-primary) !important; }
.demo-logo { gap: 0; }
.demo-logo-icon { color: var(--demo-primary); line-height: 0; flex-shrink: 0; }
.demo-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--demo-primary-dark);
  letter-spacing: -0.02em;
}
.demo-logo-footer .demo-logo-text { color: #fff; }
.demo-logo-footer:hover .demo-logo-text { color: var(--demo-accent); }
.demo-nav .nav-link {
  font-weight: 500;
  color: var(--demo-text) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
}
.demo-nav .nav-link:hover {
  color: var(--demo-primary) !important;
  background: var(--demo-bg);
}
.demo-nav .btn-cta {
  background: var(--demo-primary);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
}
.demo-nav .btn-cta:hover {
  background: var(--demo-primary-dark);
  color: #fff !important;
}

/* Hero - Psycove: sol beyaz (metin), sağ açık yeşil (görsel + pill etiketler) */
.demo-hero {
  background: #fff;
  color: var(--demo-text);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.demo-hero .container { position: relative; z-index: 1; max-width: 1140px; }
.demo-hero-text-col {
  padding: 80px 48px 80px 0;
  background: #fff;
}
.demo-hero-subtitle {
  font-size: 0.95rem;
  color: var(--demo-text-muted);
}
.demo-hero-heart { color: var(--demo-primary); }
.demo-hero-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--demo-text);
}
.demo-hero-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--demo-text-muted);
  max-width: 480px;
}
.demo-btn-hero-cta {
  display: inline-block;
  background: var(--demo-primary);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .25s, transform .2s;
}
.demo-btn-hero-cta:hover {
  background: var(--demo-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}
.demo-hero-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--demo-primary);
  background: transparent;
  flex-shrink: 0;
}
.demo-hero-contact {
  font-size: 0.9rem;
  color: var(--demo-text-muted);
}
.demo-hero-contact a { color: var(--demo-primary-dark); text-decoration: none; font-weight: 600; }
.demo-hero-contact a:hover { text-decoration: underline; }

/* Sağ blok: açık yeşil arka plan, görsel + pill etiketler */
.demo-hero-right-wrap {
  background: rgba(91, 138, 123, 0.12);
  padding: 60px 0 50px 48px;
  border-radius: 80px 0 0 80px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.demo-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  margin-bottom: 24px;
}
.demo-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px;
}
.demo-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  max-width: 480px;
}
.demo-hero-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--demo-text);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--demo-primary);
}

.demo-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--demo-accent);
  margin-bottom: 12px;
}
.demo-btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--demo-primary-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--demo-primary);
  text-decoration: none;
  transition: border-color .25s, background .25s, color .25s;
}
.demo-btn-outline-dark:hover {
  background: var(--demo-primary);
  color: #fff;
  border-color: var(--demo-primary);
}

/* Buttons */
.demo-btn-primary {
  display: inline-block;
  background: var(--demo-accent);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: background .25s, transform .2s;
}
.demo-btn-primary:hover {
  background: #ab9bb8;
  color: #1a1a1a;
  transform: translateY(-1px);
}
.demo-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none;
  transition: border-color .25s, background .25s;
}
.demo-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Sections */
.demo-section { padding: 90px 0; }
.demo-section.light-bg { background: var(--demo-bg); }
.demo-heading {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--demo-primary-dark);
}
.demo-heading.text-white { color: #fff; }

/* About badge */
.demo-about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--demo-primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.demo-about-badge span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: .9;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.demo-about-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 420px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.demo-about-img-wrap + .demo-about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  margin: 0;
}
.demo-about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Service card image */
.demo-service-img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.demo-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Cards */
.demo-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
}
.demo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.demo-card .demo-icon-color { color: var(--demo-primary); }

/* Testimonial */
.demo-testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border-left: 4px solid var(--demo-accent);
  height: 100%;
}

/* Terapi ofisi galerisi */
.demo-office-gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform .3s, box-shadow .3s;
}
.demo-office-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.demo-office-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* CTA strip */
.demo-cta-strip {
  background: var(--demo-primary-dark);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.demo-cta-strip .demo-btn-primary { background: var(--demo-accent); color: #1a1a1a; }

/* Footer */
.demo-footer {
  background: var(--demo-bg-dark);
  color: rgba(255,255,255,0.88);
  padding: 56px 0 28px;
}
.demo-footer h5, .demo-footer h6 { color: #fff; font-weight: 700; margin-bottom: 1rem; }
.demo-footer h6 { font-size: 0.95rem; }
.demo-footer a { color: rgba(255,255,255,0.88); text-decoration: none; }
.demo-footer a:hover { color: var(--demo-accent); }
.demo-footer ul.list-unstyled { margin: 0; padding: 0; list-style: none; }
.demo-footer ul.list-unstyled li { margin-bottom: 0.4rem; }
.demo-footer-newsletter {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.demo-newsletter-form { max-width: 100%; }
.demo-newsletter-input {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 0 24px;
}
.demo-newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.demo-newsletter-input:focus {
  border-color: var(--demo-accent);
  background: rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(168,155,181,0.2);
}

/* Stats strip */
.demo-stats {
  background: var(--demo-primary);
  color: #fff;
  padding: 50px 0;
}
.demo-stats-item { text-align: center; }
.demo-stats-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
  color: #fff;
}
.demo-stats-item .label { font-size: 0.95rem; opacity: .9; }

/* Team */
.demo-team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.demo-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.demo-team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.demo-team-card .card-body { padding: 24px; }
.demo-team-card .name { font-weight: 700; color: var(--demo-primary-dark); font-size: 1.1rem; }
.demo-team-card .role { font-size: 0.85rem; color: var(--demo-accent); margin-bottom: 0.5rem; }
.demo-team-card .bio { font-size: 0.9rem; color: var(--demo-text-muted); }

/* Pricing */
.demo-pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: all .3s;
  height: 100%;
  position: relative;
}
.demo-pricing-card.featured {
  border-color: var(--demo-primary);
  box-shadow: 0 15px 50px rgba(107,144,128,0.2);
}
.demo-pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--demo-primary-dark);
}
.demo-pricing-card .period { font-size: 0.9rem; color: var(--demo-text-muted); }
.demo-pricing-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.demo-pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; gap: 0.5rem;
}
.demo-pricing-card ul li:last-child { border-bottom: none; }
.demo-pricing-card .demo-btn-primary { width: 100%; text-align: center; justify-content: center; }
.demo-pricing-card .badge-featured {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--demo-accent);
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
}

/* FAQ */
.demo-faq .accordion-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.demo-faq .accordion-button {
  font-weight: 600;
  color: var(--demo-primary-dark);
  background: #fff;
  box-shadow: none;
  padding: 20px 24px;
}
.demo-faq .accordion-button:not(.collapsed) {
  background: var(--demo-bg);
  color: var(--demo-primary-dark);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.demo-faq .accordion-button::after { filter: none; }
.demo-faq .accordion-body { padding: 20px 24px; color: var(--demo-text-muted); }

/* Blog */
.demo-blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
}
.demo-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  color: inherit;
}
.demo-blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.demo-blog-card .card-body { padding: 24px; }
.demo-blog-card .date { font-size: 0.8rem; color: var(--demo-accent); margin-bottom: 8px; }
.demo-blog-card .title { font-weight: 700; color: var(--demo-primary-dark); margin-bottom: 8px; }
.demo-blog-card .excerpt { font-size: 0.9rem; color: var(--demo-text-muted); }

/* Contact form */
.demo-form .form-control, .demo-form .form-select {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 14px 18px;
}
.demo-form .form-control:focus {
  border-color: var(--demo-primary);
  box-shadow: 0 0 0 3px rgba(107,144,128,0.15);
}
.demo-form label { font-weight: 600; color: var(--demo-text); }

/* Utility */
.demo-text-muted { color: var(--demo-text-muted); }
.demo-list-check li { margin-bottom: 0.5rem; }
.demo-list-check .bi-check2-circle { color: var(--demo-primary); }

/* Hero responsive - Psycove */
@media (max-width: 991.98px) {
  .demo-hero-text-col {
    padding: 50px 24px 40px;
    text-align: center;
  }
  .demo-hero-desc { max-width: none; margin-left: auto; margin-right: auto; }
  .demo-hero .d-flex.flex-wrap { justify-content: center; }
  .demo-hero-right-wrap {
    padding: 40px 24px 40px;
    border-radius: 40px 0 0 40px;
    min-height: auto;
  }
  .demo-hero-img-wrap { max-width: 360px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 575.98px) {
  .demo-logo-text { font-size: 0.95rem; }
  .demo-logo-icon svg { width: 32px; height: 32px; }
}
