/* ============================================================
   PeriDent — Çocuk Diş Kliniği  |  style.css v4
   Ref: d1.png — teal/white, tek arc geçiş, sade tasarım
   ============================================================ */

:root {
  --teal:      #2BBFCF;
  --teal-d:    #1DA8B8;
  --teal-deep: #197D8A;
  --teal-lt:   #E3F8FB;
  --teal-bg:   #EBF9FC;
  --red:       #EF4444;
  --red-d:     #DC2626;
  --navy:      #1A3A48;
  --text:      #1F2937;
  --muted:     #6B7280;
  --white:     #ffffff;
  --g50:       #F9FAFB;
  --g100:      #F3F4F6;
  --border:    #E5E7EB;
  --font:      'Plus Jakarta Sans', sans-serif;
  --ease:      all 0.25s ease;
  --sh-sm:     0 1px 6px rgba(0,0,0,.06);
  --sh-md:     0 4px 20px rgba(0,0,0,.09);
  /* backward-compat */
  --teal-dark:  #1DA8B8;
  --teal-light: #E3F8FB;
  --text-muted: #6B7280;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --border:     #E5E7EB;
  --radius:     10px;
  --radius-lg:  14px;
  --radius-full:9999px;
  --r:    10px;
  --r-sm:  6px;
  --r-pill:9999px;
}

/* ─── Reset ─────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { background:linear-gradient(135deg,#C3EBFA 0%,#D4F0F5 100%); min-height:100vh; color:var(--text); font-family:var(--font); overflow-x:hidden; line-height:1.6; }
img  { max-width:100%; height:auto; display:block; }
a    { text-decoration:none; color:inherit; }
button { font-family:var(--font); cursor:pointer; }

/* ─── Utilities ──────────────────────── */
.container { max-width:1200px; margin:0 auto; padding:0 1.5rem; }
.section-label {
  display:block;
  font-size:.7rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted); margin-bottom:.4rem;
}
.section-label.light { color:rgba(255,255,255,.65); }
.section-title {
  font-size:clamp(1.75rem,3.2vw,2.5rem);
  font-weight:900; letter-spacing:-.025em; line-height:1.15; color:var(--text);
}
.section-title.light { color:var(--white); }

/* ─── Scroll-trigger ─────────────────── */
body.ready [data-animate] {
  opacity:0; transform:translateY(20px);
  transition:opacity .55s ease, transform .55s ease;
}
body.ready [data-animate].animated { opacity:1; transform:translateY(0); }

/* ─── Scrollbar ──────────────────────── */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--teal-lt); }
::-webkit-scrollbar-thumb { background:var(--teal); border-radius:3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:var(--white);
  box-shadow:0 1px 0 var(--border);
  transition:box-shadow .25s;
}
.nav.scrolled { box-shadow:0 2px 16px rgba(0,0,0,.09); }
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  max-width:1200px; margin:0 auto; padding:.85rem 1.5rem; gap:1.5rem;
}
.nav-logo {
  display:flex; align-items:center; gap:.55rem;
  font-size:1.2rem; font-weight:900; color:var(--teal-d);
  white-space:nowrap; letter-spacing:-.02em;
}
.nav-logo-icon {
  width:32px; height:32px;
  background:var(--teal);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.nav-logo-icon svg { width:18px; height:18px; }
.nav-links { display:none; list-style:none; gap:1.75rem; align-items:center; }
@media(min-width:768px){ .nav-links { display:flex; } }
.nav-links a { font-size:.875rem; font-weight:600; color:var(--muted); transition:color .2s; }
.nav-links a:hover, .nav-links a.active { color:var(--teal-d); }
.nav-right { display:flex; align-items:center; gap:.9rem; }
.nav-phone { display:none; font-size:.875rem; font-weight:700; color:var(--text); }
@media(min-width:920px){ .nav-phone { display:block; } }
.btn-red {
  background:var(--red); color:var(--white);
  padding:.85rem 2.2rem; border-radius:var(--r-pill);
  font-weight:900; font-size:1rem; letter-spacing:.02em; border:none;
  box-shadow:0 5px 0 var(--red-d);
  transition:transform .15s, box-shadow .15s, background .2s;
  display:inline-block; white-space:nowrap;
}
.btn-red:hover  { background:var(--red-d); transform:translateY(2px); box-shadow:0 3px 0 var(--red-d); }
.btn-red:active { transform:translateY(5px); box-shadow:none; }
.nav-mobile-btn { display:flex; flex-direction:column; gap:5px; background:none; border:none; padding:4px; }
@media(min-width:768px){ .nav-mobile-btn { display:none; } }
.nav-mobile-btn span { display:block; width:22px; height:2px; background:var(--text); border-radius:1px; transition:var(--ease); }
.nav-mobile-btn.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity:0; }
.nav-mobile-btn.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
.nav-mobile-menu { display:none; background:var(--white); border-top:1px solid var(--border); padding:1rem 1.5rem 1.5rem; }
.nav-mobile-menu.open { display:block; }
.nav-mobile-menu a { display:block; padding:.6rem 0; font-size:.9rem; font-weight:600; color:var(--muted); border-bottom:1px solid var(--g100); }
.nav-mobile-menu a:last-child { border:none; color:var(--red); font-weight:800; margin-top:.4rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:linear-gradient(180deg, #e2f6ff 0%, #b5e3f8 55%, #C3EBFA 100%);
  padding-top:68px;
  position:relative;
  overflow:hidden;
  min-height:86vh;
  display:flex; flex-direction:column;
}
/* Subtle dot texture */
.hero::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(255,255,255,.55) 1px, transparent 1px);
  background-size:28px 28px; pointer-events:none; z-index:0;
}
.hero-inner {
  flex:1; display:flex; align-items:center;
  max-width:1200px; margin:0 auto;
  padding:3rem 1.5rem 1rem;
  position:relative; z-index:2; width:100%;
}
.hero-content-wrap {
  display:grid; grid-template-columns:1fr; gap:2.5rem; align-items:center; width:100%;
}
@media(min-width:1024px){ .hero-content-wrap { grid-template-columns:52% 48%; align-items:center; } }
.hero-text { color:var(--navy); }
.hero-badge {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(43,191,207,.12);
  border:1px solid rgba(43,191,207,.3);
  padding:.38rem 1rem; border-radius:var(--r-pill);
  font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--teal-d); margin-bottom:1.25rem;
}
.hero-badge::before {
  content:'';
  width:6px; height:6px; border-radius:50%;
  background:var(--teal);
  display:inline-block;
  box-shadow:0 0 0 3px rgba(43,191,207,.25);
}
.hero-title {
  font-size:clamp(2.4rem,5.5vw,4rem);
  font-weight:900; line-height:1.06; letter-spacing:-.03em;
  color:var(--navy); margin-bottom:1rem;
}
.hero-subtitle {
  font-size:1rem; line-height:1.72;
  color:var(--text); max-width:420px; margin-bottom:1.75rem;
}
.hero-actions { display:flex; gap:.9rem; flex-wrap:wrap; }
/* hero butonları: açık bg için yeniden tasarlandı */
.btn-white {
  background:var(--white); color:var(--teal-deep);
  padding:.8rem 2rem; border-radius:var(--r-pill);
  font-weight:800; font-size:.88rem; border:none;
  transition:var(--ease); display:inline-block;
  box-shadow:0 3px 14px rgba(0,0,0,.12);
}
.btn-white:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,.16); }
.btn-outline-white {
  background:transparent; color:var(--white);
  padding:.8rem 1.75rem; border-radius:var(--r-pill);
  font-weight:600; font-size:.88rem;
  border:2px solid rgba(255,255,255,.5); transition:var(--ease); display:inline-block;
}
.btn-outline-white:hover { background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.75); }
/* Açık bg hero için teal outlined cartoon buton */
.btn-outline-dark {
  background:transparent; color:var(--teal);
  padding:.85rem 2.2rem; border-radius:var(--r-pill);
  font-weight:700; font-size:1rem; letter-spacing:.02em;
  border:2.5px solid var(--teal);
  box-shadow:0 5px 0 rgba(43,191,207,.35);
  transition:transform .15s, box-shadow .15s, background .2s, color .2s;
  display:inline-block;
}
.btn-outline-dark:hover  { background:var(--teal); color:white; transform:translateY(2px); box-shadow:0 3px 0 rgba(43,191,207,.35); }
.btn-outline-dark:active { transform:translateY(5px); box-shadow:none; }
/* Illustration — maskot */
.hero-illustration {
  display:flex; align-items:flex-end; justify-content:center;
  position:relative;
}
.hero-mascot-wrap {
  position:relative;
  display:flex; align-items:flex-end; justify-content:center;
}
.hero-mascot-img {
  width:auto;
  height:clamp(300px, 46vh, 500px);
  max-width:100%;
  mix-blend-mode:multiply;           /* beyaz bg → şeffaf */
  animation:hero-float 4.5s cubic-bezier(.45,.05,.55,.95) infinite;
  filter:drop-shadow(0 24px 48px rgba(43,191,207,.22));
  transform-origin:bottom center;
  will-change:transform;
}
@keyframes hero-float {
  0%   { transform:translateY(0px) rotate(0deg); }
  30%  { transform:translateY(-14px) rotate(.4deg); }
  60%  { transform:translateY(-8px)  rotate(-.3deg); }
  100% { transform:translateY(0px) rotate(0deg); }
}
/* Arc removed — hero gradient blends seamlessly into body bg (#C3EBFA) */

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding:4.5rem 0 4rem; background:transparent; }
.services-top {
  display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:2.5rem; flex-wrap:wrap; gap:1rem;
}
.services-top-left { /* inherits section-label / section-title styles */ }
.services-nav-arrows { display:flex; gap:.6rem; align-items:center; }
.svc-arrow {
  width:44px; height:44px; border-radius:50%;
  border:2px solid var(--teal); background:transparent; color:var(--teal);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:background .2s, color .2s; flex-shrink:0;
}
.svc-arrow:hover { background:var(--teal); color:white; }
.services-scroll {
  display:flex; gap:1.5rem; overflow-x:auto; scroll-snap-type:x mandatory;
  scrollbar-width:none; padding-bottom:.5rem;
}
.services-scroll::-webkit-scrollbar { display:none; }
.service-card {
  flex:0 0 230px; scroll-snap-align:start;
  border:1px solid rgba(43,191,207,.2); border-radius:var(--r);
  padding:1.8rem 1.5rem; background:var(--white); transition:var(--ease);
  display:flex; flex-direction:column;
  box-shadow:0 2px 12px rgba(43,191,207,.08);
}
@media(min-width:640px)  { .service-card { flex-basis:260px; } }
.service-card:hover { border-color:var(--teal); box-shadow:0 8px 28px rgba(43,191,207,.16); transform:translateY(-3px); }
.service-icon-wrap {
  width:72px; height:72px; background:rgba(43,191,207,.1); border-radius:var(--r);
  display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem; transition:background .25s;
}
.service-card:hover .service-icon-wrap { background:rgba(43,191,207,.2); }
.service-icon-wrap svg { width:48px; height:48px; }
.service-card h3 { font-size:.95rem; font-weight:700; color:var(--text); margin-bottom:.45rem; }
.service-card p { font-size:.82rem; color:var(--muted); line-height:1.6; flex:1; }
.service-card-arrow {
  width:32px; height:32px; border-radius:50%;
  background:var(--teal-lt); color:var(--teal-d);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; font-weight:800; margin-top:1rem; align-self:flex-end;
  transition:var(--ease);
}
.service-card:hover .service-card-arrow { background:var(--teal); color:var(--white); }

/* ============================================================
   STATS / ABOUT
   ============================================================ */
.stats-section { background:transparent; padding:4.5rem 0; }
.stats-inner {
  display:grid; grid-template-columns:1fr;
  max-width:1200px; margin:0 auto;
  border-radius:var(--r); overflow:hidden;
  box-shadow:0 12px 52px rgba(43,191,207,.18);
}
@media(min-width:768px){ .stats-inner { grid-template-columns:1fr 1fr; } }
.stats-left {
  position:relative; overflow:hidden; min-height:380px;
  background:linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(212,244,252,.88) 100%);
}
.stats-left-photo {
  width:100%; height:100%; object-fit:contain; object-position:bottom center;
  position:absolute; top:0; left:0; bottom:0; right:0; z-index:2;
  mix-blend-mode:multiply;
}
.stats-left-ph {
  position:absolute; top:0; left:0; right:0; bottom:0; z-index:2;
  display:flex; align-items:center; justify-content:center;
  background:var(--teal-lt);
}
/* Right col — açık teal gradient, beyaz değil */
.stats-right {
  display:flex; flex-direction:column; justify-content:center;
  padding:3.5rem 2.5rem; color:var(--text);
  background:linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(212,244,252,.88) 100%);
}
.welcome-label { font-size:.68rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--teal-d); margin-bottom:.65rem; }
.stats-right h2 { font-size:clamp(1.4rem,2.6vw,2rem); font-weight:900; line-height:1.2; letter-spacing:-.02em; margin-bottom:.9rem; color:var(--text); }
.stats-right > p { font-size:.92rem; line-height:1.75; color:var(--muted); margin-bottom:1.6rem; max-width:380px; }
.stats-hours { background:var(--g100); border-radius:var(--r-sm); padding:.9rem 1.1rem; margin-bottom:1.6rem; }
.stats-hours-row { display:flex; justify-content:space-between; font-size:.83rem; color:var(--text); padding:.28rem 0; }
.stats-hours-row + .stats-hours-row { border-top:1px solid var(--border); }
.stats-hours-row .day { font-weight:600; }
.stats-hours-row .time { color:var(--muted); }
.btn-red-outline {
  display:inline-flex; align-items:center; gap:.4rem;
  background:var(--red); color:var(--white);
  padding:.7rem 1.6rem; border-radius:var(--r-pill);
  font-weight:700; font-size:.85rem; border:none;
  transition:var(--ease); align-self:flex-start;
}
.btn-red-outline:hover { background:var(--red-d); transform:translateY(-1px); }

/* ============================================================
   TEAM / FEATURES — white bg, düz kenar
   ============================================================ */
/* === DOCTOR / TEAM CARDS ============================================= */
.features-section { padding:4.5rem 0; background:transparent; }
.features-header { text-align:center; margin-bottom:3rem; }
.features-grid { display:grid; grid-template-columns:1fr; gap:2rem; max-width:820px; margin:0 auto; }
@media(min-width:600px) { .features-grid { grid-template-columns:repeat(2,1fr); } }
.feature-card {
  background:rgba(195,235,250,.3);
  border:2px solid #b5e3f8;
  border-radius:var(--r);
  padding:2.5rem 1.5rem 2rem;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  transition:var(--ease);
}
.feature-card:hover { box-shadow:0 8px 32px rgba(43,191,207,.18); transform:translateY(-4px); border-color:var(--teal); }
/* Oval fotoğraf — teal glow ring */
.feature-photo {
  width:160px; height:160px; flex-shrink:0;
  border-radius:50%;
  border:4px solid var(--teal);
  box-shadow:
    0 0 0 6px rgba(43,191,207,.22),
    0 0 0 14px rgba(43,191,207,.09),
    0 12px 40px rgba(43,191,207,.28);
  overflow:hidden; background:var(--teal-lt);
  margin-bottom:1.5rem;
}
.feature-photo img { width:100%; height:100%; object-fit:cover; object-position:top center; transition:transform .4s; }
.feature-card:hover .feature-photo img { transform:scale(1.05); }
.feature-photo-ph {
  display:flex; align-items:center; justify-content:center;
  width:100%; height:100%;
}
/* Bilgi alanı */
.feature-card-body { padding:0; text-align:center; }
.feature-tag {
  background:rgba(43,191,207,.15); color:var(--teal-d);
  border:1px solid rgba(43,191,207,.3);
  padding:.3rem .9rem; border-radius:var(--r-pill);
  font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  display:inline-block; margin-bottom:.8rem;
}
.feature-card h3 { font-size:1.05rem; font-weight:800; color:var(--text); margin-bottom:.35rem; }
.feature-card p { font-size:.85rem; color:var(--muted); line-height:1.6; margin:0; }
.feature-arrow { display:none; }

/* ============================================================
   APPROACH — light teal bg, dark navy card + tek fotoğraf
   ============================================================ */
.approach-section { padding:4.5rem 0; background:transparent; }
.approach-section.approach-teal { background:transparent; }
.approach-inner { display:grid; grid-template-columns:1fr; gap:2.5rem; align-items:stretch; }
@media(min-width:1024px){ .approach-inner { grid-template-columns:1fr 1fr; } }
/* Dark navy card */
.approach-card {
  background:var(--navy); border-radius:var(--r);
  padding:2.75rem 2.25rem; color:var(--white);
  display:flex; flex-direction:column;
}
.ap-label-light {
  font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(255,255,255,.55); margin-bottom:.7rem;
}
.approach-card h2 {
  font-size:clamp(1.4rem,2.6vw,2rem); font-weight:900;
  line-height:1.22; letter-spacing:-.02em; color:var(--white); margin-bottom:0;
}
/* Numbered items */
.ap-items { display:flex; flex-direction:column; gap:1.35rem; margin:1.75rem 0; flex:1; }
.ap-item { display:flex; align-items:flex-start; gap:1rem; }
.ap-item-num {
  width:34px; height:34px; border-radius:50%; flex-shrink:0;
  background:rgba(43,191,207,.22); border:1px solid rgba(43,191,207,.4);
  color:var(--teal); font-size:.7rem; font-weight:800; letter-spacing:.04em;
  display:flex; align-items:center; justify-content:center;
}
.ap-item-body strong { display:block; font-size:.9rem; font-weight:700; color:var(--white); margin-bottom:.3rem; }
.ap-item-body p { font-size:.82rem; color:rgba(255,255,255,.65); line-height:1.65; }
/* CTA link */
.btn-ap {
  display:inline-flex; align-items:center; gap:.45rem;
  font-size:.85rem; font-weight:700; color:var(--teal);
  border-bottom:2px solid rgba(43,191,207,.4); padding-bottom:2px;
  align-self:flex-start; transition:color .2s, border-color .2s; margin-top:auto; padding-top:.25rem;
}
.btn-ap:hover { color:var(--white); border-color:var(--teal); }
/* Single large photo */
.approach-visual { display:block; }
.ap-single-img { border-radius:var(--r); overflow:hidden; width:100%; height:100%; min-height:380px; background:var(--teal-lt); }
.ap-single-img img { width:100%; height:100%; object-fit:cover; }
.ap-img-ph { width:100%; min-height:380px; display:flex; align-items:center; justify-content:center; background:var(--teal-lt); border-radius:var(--r); }

/* ============================================================
   TEXT BANNER — static dark strip
   ============================================================ */
.textbanner {
  background:var(--navy); padding:1.2rem 1.5rem;
  text-align:center; overflow:hidden; white-space:nowrap;
  font-size:clamp(.9rem,1.9vw,1.55rem); font-weight:900;
  color:var(--white); letter-spacing:.12em; text-transform:uppercase;
  opacity:.92;
}
.tb-dot { color:var(--teal); margin:0 .85rem; font-size:.55em; vertical-align:middle; }

/* ============================================================
   CONTACT — teal bg, düz kenar
   ============================================================ */
.contact-section { background:transparent; padding:4.5rem 0; position:relative; overflow:hidden; }
.contact-cloud { position:absolute; pointer-events:none; }
.contact-cloud-1 { top:6%;  right:3%;  width:160px; opacity:.12; }
.contact-cloud-2 { bottom:5%;left:2%;  width:130px; opacity:.1; }
.contact-cloud-3 { top:42%; right:16%; width:80px;  opacity:.08; }
.contact-inner { display:grid; grid-template-columns:1fr; gap:2.5rem; position:relative; z-index:2; }
@media(min-width:768px){ .contact-inner { grid-template-columns:1fr 1fr; align-items:start; } }
.contact-form-card {
  background:var(--white); border-radius:16px; padding:2.2rem 2rem;
  box-shadow:0 8px 40px rgba(43,191,207,.13);
}
.contact-form-card h3 { font-size:1.1rem; font-weight:800; margin-bottom:1.6rem; color:var(--text); }
/* Underline field rows */
.form-field {
  display:flex; align-items:center; gap:.75rem;
  border-bottom:1.5px solid #e2e8f0; padding:.6rem 0;
  margin-bottom:.2rem; transition:border-color .2s;
}
.form-field:focus-within { border-color:var(--teal); }
.form-field-icon { width:20px; flex-shrink:0; display:flex; align-items:center; }
.form-field-icon svg { width:18px; height:18px; stroke:var(--muted); transition:stroke .2s; }
.form-field:focus-within .form-field-icon svg { stroke:var(--teal); }
.form-input-line {
  flex:1; border:none; outline:none; background:transparent;
  font-family:var(--font); font-size:.88rem; color:var(--text);
  padding:.15rem 0;
}
.form-input-line::placeholder { color:#a0aec0; }
textarea.form-input-line { resize:none; min-height:68px; line-height:1.55; padding-top:.3rem; }
/* Legacy .form-input kept for other pages */
.form-group { margin-bottom:.9rem; }
.form-input { width:100%; padding:.7rem .95rem; border:1px solid var(--border); border-radius:var(--r-sm); font-family:var(--font); font-size:.85rem; color:var(--text); transition:border-color .2s; outline:none; background:var(--white); }
.form-input:focus { border-color:var(--teal); }
textarea.form-input { resize:vertical; min-height:100px; }
.form-check { display:flex; align-items:flex-start; gap:.55rem; font-size:.78rem; color:rgba(255,255,255,.75); margin-bottom:1.1rem; }
.form-check input { margin-top:3px; accent-color:var(--teal); flex-shrink:0; }
.form-check a { color:rgba(255,255,255,.9); text-decoration:underline; }
.contact-form-card .form-check { color:var(--muted); margin-top:1rem; margin-bottom:1.2rem; }
.contact-form-card .form-check a { color:var(--teal-d); }
.btn-submit {
  background:var(--teal); color:var(--white);
  padding:.85rem 2rem; border-radius:var(--r-pill);
  font-weight:700; font-size:.9rem; border:none; cursor:pointer;
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--font);
  box-shadow:0 5px 0 var(--teal-d);
  transition:transform .15s, box-shadow .15s, background .2s;
}
.btn-submit:hover  { background:var(--teal-d); transform:translateY(2px); box-shadow:0 3px 0 var(--teal-d); }
.btn-submit:active { transform:translateY(5px); box-shadow:none; }
.form-alert { padding:.8rem .95rem; border-radius:var(--r-sm); font-size:.85rem; font-weight:600; margin-bottom:1.1rem; }
.form-alert.success { background:#d1fae5; color:#065f46; }
.form-alert.error   { background:#fee2e2; color:#991b1b; }
.contact-info { color:var(--white); }
.ci-label { font-size:.68rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.68); margin-bottom:.65rem; }
.contact-info h2 { font-size:clamp(1.5rem,2.8vw,2.2rem); font-weight:900; line-height:1.2; margin-bottom:1.75rem; }
.ci-item { display:flex; align-items:flex-start; gap:.9rem; margin-bottom:1.1rem; }
.ci-icon { width:38px; height:38px; background:rgba(255,255,255,.16); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:0; }
.ci-icon svg { width:22px; height:22px; animation:icon-bob 2.5s ease-in-out infinite; }
.ci-item:nth-child(2) .ci-icon svg { animation-delay:.4s; }
.ci-item:nth-child(3) .ci-icon svg { animation-delay:.8s; }
@keyframes icon-bob {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-3px); }
}
.ci-text { font-size:.85rem; line-height:1.65; color:rgba(255,255,255,.88); }
.ci-text strong { display:block; color:var(--white); font-weight:700; font-size:.76rem; letter-spacing:.06em; text-transform:uppercase; }
.ci-socials { display:flex; gap:.65rem; margin-top:1.75rem; }
.ci-social { width:36px; height:36px; background:rgba(255,255,255,.16); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--white); font-size:.8rem; font-weight:700; transition:var(--ease); }
.ci-social:hover { background:rgba(255,255,255,.28); }


/* ============================================================
   TEAL-ZONE — ortak gradient wrapper (blog + iletişim)
   ============================================================ */
.teal-zone { background:linear-gradient(160deg,#3EC8D8 0%,#1DA8B8 100%); }

/* ============================================================
   BLOG — transparent (teal-zone gradient üzerinde)
   ============================================================ */
.blog-section { padding:4.5rem 0; background:transparent; position:relative; overflow:hidden; }
.blog-grid { display:grid; grid-template-columns:1fr; gap:1.5rem; margin-top:2.75rem; }
@media(min-width:640px)  { .blog-grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .blog-grid { grid-template-columns:repeat(3,1fr); } }
.blog-card { background:transparent; border:none; overflow:hidden; transition:transform .3s var(--ease); }
.blog-card:hover { transform:translateY(-4px); }
.blog-card-img {
  height:200px; overflow:hidden; background:rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  position:relative; border-radius:var(--r);
}
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; border-radius:var(--r); }
.blog-card:hover .blog-card-img img { transform:scale(1.05); }
.blog-card-body { padding:.9rem .2rem 0; }
.blog-card-cat { font-size:.65rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.7); margin-bottom:.4rem; display:block; }
.blog-card h3 { font-size:.95rem; font-weight:700; color:#fff; margin-bottom:.45rem; line-height:1.4; }
.blog-card h3 a { color:#fff; }
.blog-card h3 a:hover { color:rgba(255,255,255,.8); }
.blog-card-meta { font-size:.74rem; color:rgba(255,255,255,.55); display:flex; gap:.65rem; }

/* ============================================================
   FOOTER  —  teal bg, tek yumuşak arc üstte
   ============================================================ */
.footer { background:#1DA8B8; color:var(--white); position:relative; overflow:hidden; padding:0; }
/* Arc: white→teal geçişi */
.footer-arc { display:block; line-height:0; }
.footer-arc svg { display:block; width:100%; height:60px; }
.footer-inner { display:grid; grid-template-columns:1fr; gap:2.25rem; max-width:1200px; margin:0 auto; padding:2rem 1.5rem 2.75rem; position:relative; z-index:2; }
@media(min-width:768px){ .footer-inner { grid-template-columns:2fr 1fr 1.5fr; } }
.footer-brand .f-logo { display:flex; align-items:center; gap:.5rem; font-size:1.3rem; font-weight:900; color:var(--white); margin-bottom:.85rem; }
.footer-brand p { font-size:.85rem; color:rgba(255,255,255,.78); line-height:1.65; margin-bottom:1.35rem; max-width:230px; }
.footer-col h4 { font-weight:700; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.6); margin-bottom:1rem; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:.6rem; }
.footer-col a { font-size:.85rem; color:rgba(255,255,255,.8); transition:color .2s; }
.footer-col a:hover { color:var(--white); }
.footer-contact p { font-size:.85rem; color:rgba(255,255,255,.8); margin-bottom:.35rem; }
.footer-socials { display:flex; gap:.55rem; margin-top:.9rem; }
.footer-social { width:32px; height:32px; background:rgba(255,255,255,.16); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--white); font-size:.75rem; font-weight:700; transition:var(--ease); }
.footer-social:hover { background:rgba(255,255,255,.28); }
.footer-social svg { display:block; }

/* ─── Page Header (alt sayfalar için ortak hero) ──────────────────────── */
.page-header {
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-d) 100%);
  padding:8rem 0 4.5rem; text-align:center; position:relative; overflow:hidden;
}
.page-header::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events:none;
}
.page-header-content { position:relative; z-index:2; }
.page-header-subtitle {
  font-size:.7rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(255,255,255,.72); margin-bottom:.55rem; display:block;
}
.page-header-title {
  font-size:clamp(2rem,4vw,3rem); font-weight:900; color:white;
  letter-spacing:-.025em; line-height:1.15;
}
.page-header-title span { color:rgba(255,255,255,.75); }
.page-header-description {
  font-size:1rem; color:rgba(255,255,255,.82); margin-top:.85rem; line-height:1.7;
  max-width:560px; margin-left:auto; margin-right:auto;
}

/* ─── Doctor Modal ──────────────────────── */
#doctor-modal {
  display:none; position:fixed; inset:0; z-index:9998;
  background:rgba(0,0,0,.5);
  align-items:center; justify-content:center;
  padding:1rem;
}
#doctor-modal.open { display:flex; }
#doctor-panel {
  background:var(--white); border-radius:20px;
  width:100%; max-width:460px;
  box-shadow:0 24px 80px rgba(0,0,0,.22);
  overflow:hidden;
  animation:dm-in .28s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes dm-in {
  from { opacity:0; transform:scale(.88) translateY(16px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}
.dm-header {
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-d) 100%);
  padding:1.8rem 1.5rem 3rem; text-align:center; position:relative;
}
.dm-close {
  position:absolute; top:.9rem; right:1rem;
  background:rgba(255,255,255,.18); border:none; cursor:pointer;
  width:32px; height:32px; border-radius:50%; color:white;
  font-size:20px; line-height:1; font-family:var(--font); display:flex;
  align-items:center; justify-content:center; transition:background .2s;
}
.dm-close:hover { background:rgba(255,255,255,.32); }
.dm-photo-wrap {
  width:110px; height:110px; border-radius:50%;
  border:4px solid rgba(255,255,255,.9);
  box-shadow:0 0 0 6px rgba(255,255,255,.2);
  overflow:hidden; background:var(--teal-lt);
  margin:0 auto; margin-top:-20px; position:relative; z-index:3;
  flex-shrink:0;
}
.dm-photo-outer {
  margin-top:-20px; display:flex; justify-content:center; position:relative; z-index:3;
}
.dm-photo-wrap img { width:100%; height:100%; object-fit:cover; object-position:top; }
.dm-photo-ph { width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
.dm-body { padding:1.5rem 2rem 2rem; text-align:center; }
.dm-tag {
  display:inline-block; background:rgba(43,191,207,.12); color:var(--teal-d);
  border:1px solid rgba(43,191,207,.3); padding:.3rem 1rem;
  border-radius:var(--r-pill); font-size:.72rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; margin-bottom:.9rem;
}
.dm-name { font-size:1.3rem; font-weight:900; color:var(--navy); margin-bottom:.25rem; }
.dm-title { font-size:.9rem; color:var(--teal-d); font-weight:600; margin-bottom:1.2rem; }
.dm-divider { height:1.5px; background:linear-gradient(90deg,transparent,var(--teal-lt),transparent); margin:0 auto 1.2rem; width:80%; }
.dm-bio { font-size:.88rem; color:var(--muted); line-height:1.75; text-align:left; }
.footer-bottom { max-width:1200px; margin:0 auto; padding:1rem 1.5rem; border-top:1px solid rgba(255,255,255,.14); display:flex; justify-content:space-between; align-items:center; font-size:.78rem; color:rgba(255,255,255,.6); flex-wrap:wrap; gap:.5rem; position:relative; z-index:2; }
.footer-bottom #fcreds, .footer-bottom #fcreds a { color:rgba(255,255,255,.6) !important; }
.footer-mascot { position:absolute; bottom:0; right:2rem; z-index:3; opacity:.8; pointer-events:none; }

/* Pre-footer illustration zone */
.pre-footer-zone {
  display:flex; justify-content:flex-end; align-items:flex-end;
  padding:0 3% 0;
  pointer-events:none;
  overflow:visible;
  position:relative;
  z-index:5;
}
.pfz-mascot-img {
  height:clamp(75px, 11vh, 120px); /* half of hero mascot */
  width:auto;
  display:block;
  margin-bottom:-24px;           /* 20% of 120px → dips into footer */
  mix-blend-mode:multiply;
  animation:hero-float 4.5s cubic-bezier(.45,.05,.55,.95) infinite;
  filter:drop-shadow(0 8px 18px rgba(43,191,207,.22));
  transform-origin:bottom center;
  will-change:transform;
  position:relative; z-index:5;
}
.footer { position:relative; z-index:1; }

/* Footer clouds */
.footer-clouds {
  position:relative; height:80px; overflow:hidden; pointer-events:none;
}
.fc-cloud { position:absolute; bottom:-4px; }
.fc-c1 { left:2%;   width:180px; animation:cloud-bob 5s   ease-in-out infinite; }
.fc-c2 { left:28%;  width:110px; animation:cloud-bob 4.2s ease-in-out infinite 1.8s; }
.fc-c3 { left:50%;  width:150px; animation:cloud-bob 4.8s ease-in-out infinite 0.9s; }
.fc-c4 { right:4%;  width:92px;  animation:cloud-bob 3.5s ease-in-out infinite 2.5s; }
.fc-c5 { right:22%; width:120px; animation:cloud-bob 5.3s ease-in-out infinite 1.2s; }
@keyframes cloud-bob {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-9px); }
}

/* ─── Floating Right Sidebar ──────────────────────── */
#float-bar { position:fixed; right:0; top:50%; transform:translateY(-50%); z-index:990; display:flex; flex-direction:column; }
#float-bar button {
  width:52px; height:52px; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
#float-bar .fb-btn-main { background:var(--teal); }
#float-bar .fb-btn-main:hover { background:var(--teal-d); }
#float-bar .fb-btn-top { background:var(--navy); opacity:0; pointer-events:none; transition:opacity .3s, background .2s; }
#float-bar .fb-btn-top.visible { opacity:1; pointer-events:auto; }
#float-bar .fb-btn-top:hover { background:#254e60; }
#float-bar button svg { stroke:white; fill:none; }

#contact-modal {
  display:none; position:fixed; inset:0; z-index:9999;
  background:rgba(0,0,0,.52);
}
#modal-panel {
  position:absolute; right:0; top:0; bottom:0;
  width:min(420px,100vw); background:var(--white);
  overflow-y:auto; overflow-x:hidden;
  box-shadow:-8px 0 40px rgba(0,0,0,.18);
  transform:translateX(100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
}
.mp-header {
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-d) 100%);
  padding:18px 22px;
  display:flex; justify-content:space-between; align-items:center;
  position:sticky; top:0; z-index:10;
}
.mp-header span { font-weight:800; color:white; font-size:16px; font-family:var(--font); }
.mp-close {
  background:rgba(255,255,255,.18); border:none; cursor:pointer;
  width:32px; height:32px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:white;
  font-size:20px; line-height:1; font-family:var(--font); transition:background .2s;
}
.mp-close:hover { background:rgba(255,255,255,.32); }
.mp-tabs {
  display:flex; border-bottom:2px solid var(--border); background:var(--white);
  position:sticky; top:57px; z-index:9;
}
.mp-tab {
  flex:1; padding:13px 6px; border:none; background:var(--white);
  font-size:13px; font-weight:600; color:var(--muted); cursor:pointer;
  border-bottom:2px solid transparent; margin-bottom:-2px;
  font-family:var(--font); transition:color .2s;
}
.mp-tab.active { color:var(--teal-d); border-bottom-color:var(--teal); }
.mp-tab-content { display:none; }
.mp-tab-content.active { display:block; }
.mp-map-frame { width:100%; height:280px; border:0; display:block; }
.mp-map-placeholder {
  height:280px; background:linear-gradient(135deg,#C3EBFA,#b5e3f8);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px; text-decoration:none;
}
.mp-map-placeholder svg { width:48px; height:48px; stroke:var(--teal-d); fill:none; }
.mp-map-placeholder span { font-size:13px; font-weight:700; color:var(--teal-d); }
.mp-addr-row {
  padding:16px 22px; background:var(--g50);
  display:flex; gap:11px; align-items:flex-start; border-top:1px solid var(--border);
}
.mp-addr-row svg { width:18px; height:18px; stroke:var(--teal); fill:none; flex-shrink:0; margin-top:2px; }
.mp-addr-label { font-size:11px; color:var(--muted); margin-bottom:3px; font-weight:600; text-transform:uppercase; letter-spacing:.05em; }
.mp-addr-val { font-size:13px; font-weight:600; color:var(--text); }
/* WhatsApp tab */
.mp-wa-body { padding:32px 24px; text-align:center; }
.mp-wa-icon { width:80px; height:80px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
.mp-wa-icon svg { width:38px; height:38px; fill:white; }
.mp-wa-body h3 { font-size:20px; font-weight:900; color:var(--navy); margin-bottom:8px; font-family:var(--font); }
.mp-wa-body p { font-size:13px; color:var(--muted); line-height:1.7; margin-bottom:24px; }
.mp-wa-btn {
  display:block; background:#25D366; color:white;
  padding:15px; font-weight:700; font-size:15px; text-decoration:none;
  text-align:center; transition:background .2s; font-family:var(--font);
}
.mp-wa-btn:hover { background:#1da851; }
.mp-phone-row {
  margin-top:18px; padding:14px 20px; background:var(--g50);
  display:flex; align-items:center; justify-content:center; gap:10px;
  text-decoration:none;
}
.mp-phone-row svg { width:18px; height:18px; stroke:var(--teal); fill:none; }
.mp-phone-row span { font-weight:700; color:var(--navy); font-size:14px; }
/* Contact tab */
.mp-contact-body { padding:24px; }
.mp-contact-body h3 { font-size:18px; font-weight:900; color:var(--navy); margin-bottom:6px; font-family:var(--font); }
.mp-contact-body p { font-size:12px; color:var(--muted); margin-bottom:20px; }
.mp-form-field {
  display:flex; align-items:center; gap:.7rem;
  border-bottom:1.5px solid #e2e8f0; padding:.55rem 0; margin-bottom:.15rem;
  transition:border-color .2s;
}
.mp-form-field:focus-within { border-color:var(--teal); }
.mp-form-field svg { width:16px; height:16px; stroke:var(--muted); fill:none; flex-shrink:0; }
.mp-form-field:focus-within svg { stroke:var(--teal); }
.mp-form-input {
  flex:1; border:none; outline:none; background:transparent;
  font-family:var(--font); font-size:.85rem; color:var(--text); padding:.1rem 0;
}
.mp-form-input::placeholder { color:#a0aec0; }
.mp-submit {
  width:100%; background:var(--teal); color:white; border:none; cursor:pointer;
  padding:14px; font-weight:700; font-size:14px; font-family:var(--font);
  border-radius:var(--r-pill); margin-top:1.4rem;
  box-shadow:0 4px 0 var(--teal-d);
  transition:transform .15s, box-shadow .15s, background .2s;
}
.mp-submit:hover  { background:var(--teal-d); transform:translateY(2px); box-shadow:0 2px 0 var(--teal-d); }
.mp-submit:active { transform:translateY(4px); box-shadow:none; }
.mp-success { background:#d1fae5; border:1px solid #6ee7b7; padding:14px; font-size:13px; color:#065f46; font-weight:600; margin-bottom:14px; border-radius:var(--r-sm); display:none; }

/* ─── Error Pages ──────────────────────── */
.err-section {
  min-height:70vh;
  display:flex; align-items:center; justify-content:center;
  padding:4rem 5%;
}
.err-inner { max-width:720px; width:100%; text-align:center; }

/* 404 — "4 [mascot] 4" row */
.err-404-row {
  display:flex; align-items:center; justify-content:center;
  gap:clamp(1rem,3vw,2.5rem); margin-bottom:2.5rem;
}
.err-digit {
  font-size:clamp(120px,18vw,200px);
  font-weight:900; line-height:1;
  color:var(--teal); opacity:.13;
  letter-spacing:-.04em; user-select:none;
}
.err-mascot-wrap { flex-shrink:0; }
.err-mascot-img {
  height:clamp(150px,22vw,220px); width:auto;
  mix-blend-mode:multiply;
  animation:hero-float 4.5s cubic-bezier(.45,.05,.55,.95) infinite;
  filter:drop-shadow(0 10px 24px rgba(43,191,207,.22));
}

/* 403 / 503 — ghost code above mascot */
.err-ghost-code {
  font-size:clamp(100px,17vw,180px);
  font-weight:900; line-height:1;
  color:var(--teal); opacity:.12;
  letter-spacing:-.04em; user-select:none;
  margin-bottom:0;
}
.err-mascot-solo {
  margin:-1.5rem auto 2rem;
  display:flex; justify-content:center;
}

.err-heading {
  font-size:clamp(1.6rem,3vw,2.3rem);
  font-weight:900; color:var(--navy);
  margin-bottom:.75rem;
}
.err-sub {
  color:var(--muted); font-size:1rem; line-height:1.75;
  max-width:440px; margin:0 auto 2.5rem;
}
.err-actions {
  display:flex; gap:1rem; justify-content:center; flex-wrap:wrap;
}
.err-btn-outline {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.85rem 2.2rem;
  font-size:1rem; font-weight:700; font-family:var(--font);
  border-radius:var(--r-pill);
  border:2.5px solid var(--teal); color:var(--teal);
  background:transparent;
  box-shadow:0 5px 0 rgba(43,191,207,.28);
  transition:transform .15s, box-shadow .15s, background .2s, color .2s;
  cursor:pointer; text-decoration:none;
}
.err-btn-outline:hover  { background:var(--teal); color:white; transform:translateY(2px); box-shadow:0 3px 0 rgba(43,191,207,.28); }
.err-btn-outline:active { transform:translateY(5px); box-shadow:none; }
