/* Beşiktaş Psikolog — kurumsal tema: #0D1E8D, #2F3F97, #ED7019, #FFFFFF */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --corp-navy: #0d1e8d;
  --corp-blue: #2f3f97;
  --corp-accent: #ed7019;
  --corp-accent-hover: #d46214;
  --white: #ffffff;
  --surface: #f6f7fc;
  --surface-2: #eef1f9;
  --text: #1a1f3c;
  --muted: #5c6378;
  --border: #e2e6f2;
  --shadow: 0 8px 32px rgba(13, 30, 141, 0.08);
  --shadow-lg: 0 16px 48px rgba(13, 30, 141, 0.1);
  --radius: 14px;
  --radius-lg: 20px;
  --wa: #25d366;
  /* legacy aliases for existing class names */
  --blue-900: var(--corp-navy);
  --blue-700: var(--corp-blue);
  --cta: var(--corp-accent);
  --cta-hover: var(--corp-accent-hover);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* ——— Header ——— */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(13, 30, 141, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--corp-navy);
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-text {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.brand-text small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--corp-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--corp-navy);
  letter-spacing: -0.02em;
}

.logo a {
  color: inherit;
  text-decoration: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--corp-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-call {
  color: var(--white);
  background: var(--corp-navy);
  box-shadow: 0 4px 16px rgba(13, 30, 141, 0.28);
}

.btn-call:hover {
  background: var(--corp-blue);
}

.btn-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--corp-accent);
  box-shadow: 0 6px 20px rgba(237, 112, 25, 0.35);
}

.btn-cta:hover {
  background: var(--corp-accent-hover);
  box-shadow: 0 8px 24px rgba(237, 112, 25, 0.42);
}

.btn-outline {
  color: var(--corp-navy);
  border: 1px solid var(--corp-blue);
  background: var(--white);
}

.btn-outline:hover {
  background: var(--surface);
}

.btn-wa {
  color: #fff;
  background: var(--wa);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  filter: brightness(1.05);
}

/* ——— Hero ——— */
.hero {
  padding: 72px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-photo-main {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.hero-photo-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-thumb {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.18;
  color: var(--corp-navy);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 54ch;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 52ch;
}

.hero-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
}

.hero-trust-list li::before {
  content: "✔";
  color: var(--corp-blue);
  font-weight: 700;
  flex-shrink: 0;
}

.trust-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
}

.trust-micro span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--corp-navy);
  background: var(--surface);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px;
}

.hero-card h2 {
  font-size: 1.12rem;
  margin: 0 0 10px;
  color: var(--corp-navy);
}

.section {
  padding: 72px 0;
}

.section--surface {
  background: var(--surface);
}

.section--white {
  background: var(--white);
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--corp-navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title--sm {
  font-size: 1.2rem;
}

.section-text {
  margin: 0;
  color: var(--muted);
  max-width: 68ch;
  font-weight: 500;
}

.section-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.section-cta--left {
  justify-content: flex-start;
}

.about-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 32px;
  align-items: start;
}

.photo-card,
.bio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.photo-card {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-card {
  padding: 28px;
}

.bio-card p {
  margin-top: 0;
  color: var(--text);
}

.bio-card a {
  color: var(--corp-blue);
  font-weight: 700;
}

.authority-list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.authority-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--corp-navy);
}

.authority-list li::before {
  content: "✔";
  color: var(--corp-blue);
}

.cta-band {
  margin: 8px auto 0;
  background: linear-gradient(135deg, var(--corp-navy) 0%, var(--corp-blue) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-band h3 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700;
}

.cta-band p {
  margin: 0 0 18px;
  opacity: 0.95;
  max-width: 56ch;
  margin-inline: auto;
  font-weight: 500;
}

.cta-band .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-band .btn-cta {
  background: var(--corp-accent);
}

.cta-band .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-strip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-strip h3 {
  margin: 0 0 10px;
  color: var(--corp-navy);
  font-size: 1.22rem;
}

.cta-strip p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.98rem;
}

.services-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 4px 16px rgba(13, 30, 141, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

a.service-card:hover,
a.service-card:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(47, 63, 151, 0.25);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--corp-blue);
  margin-bottom: 12px;
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--corp-navy);
  font-size: 1.07rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-action {
  display: inline-flex;
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--corp-blue);
  text-decoration: none;
}

a.service-card .service-action::after {
  content: " →";
}

/* ——— Photo strip (inner pages) ——— */
.photos-strip-section {
  padding: 48px 0;
}

.photos-strip {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 720px;
}

@media (min-width: 768px) {
  .photos-strip--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }
}

.photos-strip__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
}

.photos-strip__item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.photos-strip__item--square img {
  aspect-ratio: 1;
}

/* ——— Google reviews ——— */
.google-reviews-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.google-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.google-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.google-panel__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-panel__g svg {
  display: block;
}

.google-panel__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--corp-navy);
  letter-spacing: -0.02em;
}

.google-panel__subtitle {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.google-panel__rating {
  text-align: right;
}

.google-panel__score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--corp-navy);
  line-height: 1;
}

.google-panel__stars {
  color: #fbbc04;
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-top: 6px;
}

.google-panel__meta {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 600;
}

.google-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 14px;
  background: var(--surface);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--corp-navy);
  border: 1px solid var(--border);
}

.google-panel__badge svg {
  flex-shrink: 0;
}

.rating-summary {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--corp-navy);
}

.slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 16px;
  overflow-x: auto;
  padding: 12px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--corp-blue) var(--surface);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.review {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: 0 2px 12px rgba(13, 30, 141, 0.06);
  position: relative;
}

.review__top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--corp-navy), var(--corp-blue));
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review__meta {
  flex: 1;
  min-width: 0;
}

.review strong {
  display: block;
  color: var(--corp-navy);
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.review__label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.review__g-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  opacity: 0.85;
}

.stars {
  color: #fbbc04;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.review p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
}

.center {
  text-align: center;
  margin-top: 14px;
}

.footer {
  background: var(--corp-navy);
  color: #e8ebfd;
  padding: 48px 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}

.footer p,
.footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.94rem;
}

.footer a:hover {
  text-decoration: underline;
  color: var(--white);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.announcement {
  background: var(--surface);
  color: var(--corp-navy);
  text-align: center;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}

.services-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.85;
  font-weight: 600;
}

.map-embed {
  width: 100%;
  border: 0;
  border-radius: 12px;
  min-height: 260px;
  margin-top: 12px;
}

.page-hero {
  padding: 52px 0 36px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-hero .lead {
  margin-bottom: 0;
}

.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: 1.32rem;
  color: var(--corp-navy);
  margin: 2rem 0 0.75rem;
  font-weight: 700;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text);
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text);
}

.prose a {
  color: var(--corp-blue);
  font-weight: 700;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(13, 30, 141, 0.05);
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--corp-navy);
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.internal-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.internal-grid a {
  color: var(--corp-blue);
  font-weight: 700;
}

.sticky-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.sticky-whatsapp:hover {
  transform: scale(1.06);
}

.sticky-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.blog-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.blog-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.blog-card h3 a {
  color: var(--corp-navy);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--corp-blue);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.step-list {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 18px;
  min-height: 36px;
}

.step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--corp-navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 920px) {
  .hero {
    padding-top: 56px;
  }

  .hero-grid,
  .about-grid,
  .footer-grid,
  .services-grid,
  .photos-strip {
    grid-template-columns: 1fr;
  }

  .hero-photo-row {
    grid-template-columns: 1fr 1fr;
  }

  .menu {
    display: none;
  }

  .google-panel__rating {
    text-align: left;
    width: 100%;
  }

  .sticky-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .sticky-whatsapp,
  a.service-card {
    transition: none;
  }
}
