:root {
  --bg: #f5f9fb;
  --paper: #ffffff;
  --ink: #162126;
  --muted: #667780;

  --green: #0f7890;
  --green-dark: #07536a;

  --sage: #dceff4;
  --sand: #eaf4f7;

  --line: rgba(22, 33, 38, 0.10);
  --shadow: 0 24px 60px rgba(7, 83, 106, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-gap { padding: 92px 0; }

.topbar {
  background: var(--green-dark);
  color: #fff;
  font-size: 14px;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar a { font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 238, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--green);
}
.menu-toggle, .menu-button { display: none; }

.hero {
  min-height: 760px;
  padding: 82px 0 96px;
  background:
    radial-gradient(circle at 82% 18%, rgba(220, 239, 244, 0.95), transparent 34%),
    linear-gradient(115deg, #f5f9fb 0%, #eef6f8 48%, #e5f1f4 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
}
.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.045em; }
h1 { font-size: clamp(44px, 7vw, 78px); max-width: 760px; }
h2 { font-size: clamp(34px, 4.4vw, 54px); }
h3 { font-size: 22px; }
p { color: var(--muted); }
.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 20px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--green); color: #fff; box-shadow: 0 14px 28px rgba(40, 95, 83, 0.22); }
.primary:hover { background: var(--green-dark); }
.ghost { background: rgba(255,255,255,.72); border: 1px solid var(--line); color: var(--green-dark); }
.outline { border: 1px solid var(--green); color: var(--green); background: transparent; }
.full { width: 100%; }

.hero-visual { position: relative; }
.portrait-card {
  min-height: 540px;
  border-radius: 46px;
  background: linear-gradient(145deg, var(--sage), #ffffff 72%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
}
.portrait-placeholder, .image-placeholder {
  min-height: 492px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--green-dark);
  font-weight: 900;
  padding: 28px;
  background:
    linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,.35)),
    repeating-linear-gradient(135deg, rgba(40,95,83,.08) 0 12px, rgba(40,95,83,.02) 12px 24px);
  border: 1px dashed rgba(40,95,83,.28);
}
.floating-card {
  position: absolute;
  left: -28px;
  bottom: 44px;
  width: 250px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.floating-card strong { display: block; color: var(--ink); margin-bottom: 6px; }
.floating-card a { color: var(--green); font-weight: 900; }

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.intro-image { background: var(--paper); border-radius: 44px; padding: 18px; box-shadow: var(--shadow); }
.intro-image .image-placeholder { min-height: 470px; background-color: var(--sage); }
.intro-copy p { max-width: 720px; }
.check-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 12px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
}
.check-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 14px;
}

.services {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head { margin-bottom: 38px; }
.section-head.with-button { display: flex; justify-content: space-between; gap: 24px; align-items: end; }
.section-head.centered { text-align: center; max-width: 760px; margin-inline: auto; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  min-height: 300px;
  padding: 30px;
  border-radius: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(25, 32, 30, 0.06);
  display: flex;
  flex-direction: column;
}
.service-card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--sage);
  color: var(--green);
  font-weight: 900;
  margin-bottom: 22px;
}
.service-card p { margin-bottom: 24px; }
.service-card a { margin-top: auto; color: var(--green); font-weight: 900; }

.stats {
  background: var(--green-dark);
  color: #fff;
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stats-grid div {
  text-align: center;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.stats strong { display: block; font-size: clamp(36px, 5vw, 58px); line-height: 1; letter-spacing: -0.05em; }
.stats span { display: block; margin-top: 12px; color: rgba(255,255,255,.74); font-weight: 800; }

.request-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 50px;
  align-items: center;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
}
.request-card {
  background: #fff;
  border-radius: 32px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
}
.request-card label { display: grid; gap: 7px; font-weight: 900; color: var(--green-dark); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 52px;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
}
.request-card small { color: var(--muted); }

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.faq summary { cursor: pointer; font-weight: 900; color: var(--ink); }
.faq p { margin-bottom: 0; }

.footer {
  background: #101817;
  color: #fff;
  padding: 74px 0 28px;
}
.footer p, .footer small { color: rgba(255,255,255,.68); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .7fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 42px;
}
.footer h3 { font-size: 19px; margin-bottom: 18px; color: #fff; }
.footer a { display: block; color: rgba(255,255,255,.78); margin: 10px 0; }
.footer a:hover { color: #fff; }
.footer .brand { display: inline-flex; color: #fff; }
.footer .brand-mark { background: var(--sage); color: var(--green-dark); }
.social { font-weight: 900; color: #fff !important; }
.footer-button { background: var(--sage); color: var(--green-dark) !important; width: fit-content; margin-top: 18px !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}
/* Mobil genel düzen */
@media (max-width: 920px) {
  .section-gap {
    padding: 70px 0;
  }

  .menu-button {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 0 22px;
  }

  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 62px 0;
  }

  .hero-grid,
  .intro,
  .request-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .portrait-card {
    min-height: 430px;
  }

  .portrait-placeholder {
    min-height: 380px;
  }

  .floating-card {
    left: 18px;
    right: 18px;
    bottom: 22px;
    width: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head.with-button {
    align-items: start;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .topbar-inner {
    flex-direction: column;
    align-items: start;
    padding: 10px 0;
    gap: 4px;
  }

  .service-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .footer {
    padding-top: 54px;
  }
}

/* Üst bar */
.topbar {
  font-size: 15px;
}

.topbar-inner {
  min-height: 42px;
}

/* Header ve logo */
.site-header {
  background: rgba(245, 249, 251, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-name {
  color: #17211d;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
/* Hero ana fotoğrafı çerçeveye tam sığdır */
.hero-visual {
  max-width: 800px;
  width: 100%;
}

.portrait-card {
  min-height: 590px;
  padding: 14px;
  border-radius: 34px;
  overflow: hidden;
}

.portrait-placeholder {
  width: 100%;
  min-height: 560px;
  height: 560px;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  display: block;
}

.portrait-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: none;
}
.floating-card {
  left: 25px;
  bottom: 50px;
  width: 240px;
  padding: 18px 20px;
  border-radius: 20px;
  z-index: 5;
}

.floating-card strong {
  font-size: 16px;
  margin-bottom: 4px;
}

.floating-card a {
  font-size: 15px;
  white-space: nowrap;
}
.intro-image {
  padding: 14px;
  border-radius: 34px;
}

.intro-image .image-placeholder {
  min-height: 540px;
  height: 540px;
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
}

.intro-image .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  display: block;
}
@media (max-width: 900px) {
  .intro-image .image-placeholder {
    height: 430px;
    min-height: 430px;
  }
}

@media (max-width: 520px) {
  .intro-image .image-placeholder {
    height: 320px;
    min-height: 320px;
  }

  .intro-image .image-placeholder img {
    transform: scale(1.03);
  }
}
@media (max-width: 900px) {
  .portrait-card {
    min-height: 460px;
  }

  .portrait-placeholder {
    height: 430px;
    min-height: 430px;
  }
}

@media (max-width: 520px) {
  .portrait-card {
    min-height: 340px;
    padding: 10px;
  }

  .portrait-placeholder {
    height: 320px;
    min-height: 320px;
  }
}
textarea {
  min-height: 110px;
  padding: 14px;
  resize: vertical;
}
.kvkk {
  background: var(--bg);
}

.kvkk-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.kvkk-card h3 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--ink);
}

.kvkk-card p {
  margin: 0 0 14px;
}

.kvkk-card a {
  color: var(--green);
  font-weight: 800;
}

.kvkk-note {
  margin-top: 24px !important;
  padding: 16px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
}

@media (max-width: 620px) {
  .kvkk-card {
    padding: 24px;
    border-radius: 24px;
  }
}

/* Mobil menü düzeltmesi ve performans düzenlemeleri */
@media (max-width: 920px) {
  .site-header {
    z-index: 1000;
  }

  .nav {
    min-height: 76px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-name {
    font-size: 17px;
    white-space: normal;
  }

  .menu-button {
    display: inline-flex;
    cursor: pointer;
    user-select: none;
    background: #fff;
    color: var(--green-dark);
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 0 16px;
  }

  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
  }

  .nav-links .nav-cta {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .nav {
    gap: 10px;
  }

  .brand {
    gap: 10px;
    max-width: calc(100% - 92px);
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 15px;
  }

  .menu-button {
    padding: 8px 13px;
    font-size: 14px;
  }

  .nav-links {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }
}


/* KVKK ayrı sayfa ve mobil randevu butonu düzeltmesi */
.form-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.form-note a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 920px) {
  .nav-links {
    gap: 8px;
    padding-bottom: 14px;
  }

  .nav-links .nav-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: -1;
    min-height: 48px;
    margin-bottom: 4px;
    background: var(--green) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 12px 24px rgba(7, 83, 106, 0.18);
  }
}


/* Hakkımda ayrı sayfa */
.about-page-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(220, 239, 244, 0.95), transparent 34%),
    linear-gradient(115deg, #f5f9fb 0%, #eef6f8 48%, #e5f1f4 100%);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.about-page-photo .image-placeholder {
  height: 560px;
  min-height: 560px;
}

.about-detail {
  padding-top: 72px;
}

.about-card,
.about-info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-info-card h3 {
  margin-bottom: 20px;
}

.about-info-card .check-list {
  margin-top: 0;
}

@media (max-width: 920px) {
  .about-page-grid,
  .about-columns {
    grid-template-columns: 1fr;
  }

  .about-page-grid {
    gap: 38px;
  }
}

@media (max-width: 620px) {
  .about-card,
  .about-info-card {
    padding: 24px;
    border-radius: 24px;
  }

  .about-page-photo .image-placeholder {
    height: 320px;
    min-height: 320px;
  }
}
