/* =====================================================================
   OP. DR. XUDU XUDIYEV — PREMIUM ESTETİK SİTE
   Renkleri değiştirmek için sadece aşağıdaki :root değişkenlerini düzenle.
   ===================================================================== */

:root {
  /* --- RENKLER --- */
  --cyan:        #00bde0;   /* ana turkuaz */
  --cyan-dark:   #0098b5;   /* koyu turkuaz */
  --cyan-tint:   #e7f9fd;   /* çok açık turkuaz zemin */
  --ink:         #0e1a1f;   /* antrasit / koyu metin */
  --ink-soft:    #33474f;   /* yumuşak gri metin */
  --muted:       #6b7f87;   /* soluk metin */
  --line:        #e3ecef;   /* ince çizgi */
  --white:       #ffffff;
  --cream:       #f6fafb;   /* açık zemin */
  --dark:        #071216;   /* footer / koyu blok */
  --dark-2:      #0c1f26;   /* koyu blok 2 */

  /* --- GRADIENTLER --- */
  --grad-cyan:   linear-gradient(135deg, #00bde0 0%, #0098b5 100%);
  --grad-glow:   radial-gradient(circle at 30% 20%, rgba(0,189,224,.18), transparent 60%);

  /* --- ÖLÇÜ / GÖLGE --- */
  --radius:      20px;
  --radius-sm:   14px;
  --shadow:      0 20px 60px rgba(8,40,50,.10);
  --shadow-lg:   0 30px 80px rgba(8,40,50,.16);
  --shadow-cyan: 0 18px 50px rgba(0,189,224,.35);
  --container:   1200px;
  --nav-h:       76px;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===================== RESET ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
section { position: relative; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===================== DİL GÖSTER / GİZLE =====================
   Yazılar HTML içinde .lg-tr / .lg-en / .lg-ru olarak durur.
   Aktif dile göre biri gösterilir, diğerleri gizlenir. */
.lg-en, .lg-ru { display: none; }
body[data-lang="tr"] .lg-tr { display: inline; }
body[data-lang="tr"] .lg-en, body[data-lang="tr"] .lg-ru { display: none; }
body[data-lang="en"] .lg-en { display: inline; }
body[data-lang="en"] .lg-tr, body[data-lang="en"] .lg-ru { display: none; }
body[data-lang="ru"] .lg-ru { display: inline; }
body[data-lang="ru"] .lg-tr, body[data-lang="ru"] .lg-en { display: none; }
/* blok seviyesinde gösterilmesi gereken diller (ör. paragraf) */
body[data-lang="tr"] .lg-block.lg-tr,
body[data-lang="en"] .lg-block.lg-en,
body[data-lang="ru"] .lg-block.lg-ru { display: block; }

/* ===================== PRELOADER ===================== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 26px;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-size: 46px; font-weight: 700; letter-spacing: 6px;
  color: var(--white);
  display: flex; align-items: center; gap: 4px;
}
.preloader-logo span {
  background: var(--grad-cyan);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.preloader-bar {
  width: 180px; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,.12); overflow: hidden;
}
.preloader-bar i {
  display: block; height: 100%; width: 40%;
  background: var(--grad-cyan);
  animation: loadbar 1.1s ease-in-out infinite;
}
@keyframes loadbar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 40px;
}
.topbar-left { display: flex; gap: 22px; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 15px; height: 15px; color: var(--cyan); }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { color: rgba(255,255,255,.7); transition: color .25s; }
.topbar-social a:hover { color: var(--cyan); }
.topbar-social svg { width: 16px; height: 16px; }

/* ===================== NAVBAR ===================== */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all .35s ease;
}
.nav.shrink { box-shadow: 0 8px 30px rgba(8,40,50,.08); }
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); transition: height .35s ease;
}
.nav.shrink .container { height: 62px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-cyan);
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 18px; letter-spacing: 1px;
  box-shadow: var(--shadow-cyan);
  transition: all .35s ease;
}
.nav.shrink .brand-mark { width: 38px; height: 38px; font-size: 16px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text b { font-size: 16px; font-weight: 700; letter-spacing: .3px; }
.brand-text small { font-size: 10.5px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 15px; border-radius: 10px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 2px; background: var(--grad-cyan); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; gap: 2px; background: var(--cyan-tint); border-radius: 10px; padding: 3px; }
.lang-switch button {
  padding: 5px 10px; font-size: 12.5px; font-weight: 600; border-radius: 7px;
  color: var(--cyan-dark); transition: all .2s;
}
.lang-switch button.active { background: var(--white); color: var(--cyan-dark); box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.btn-nav {
  padding: 11px 22px; border-radius: 11px; font-size: 14px; font-weight: 600;
  background: var(--grad-cyan); color: #fff; box-shadow: var(--shadow-cyan);
  transition: transform .25s, box-shadow .25s;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 22px 55px rgba(0,189,224,.45); }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; background: var(--cyan-tint); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw); z-index: 1200;
  background: var(--white); box-shadow: -20px 0 60px rgba(0,0,0,.15);
  transform: translateX(100%); transition: transform .4s cubic-bezier(.7,0,.2,1);
  padding: 26px; display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { padding: 14px 12px; border-radius: 12px; font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--line); }
.mobile-menu a:hover { background: var(--cyan-tint); color: var(--cyan-dark); }
.mobile-menu .btn-nav { margin-top: 12px; text-align: center; border-bottom: none; }
.overlay { position: fixed; inset: 0; background: rgba(7,18,22,.5); z-index: 1100; opacity: 0; visibility: hidden; transition: .35s; backdrop-filter: blur(2px); }
.overlay.show { opacity: 1; visibility: visible; }

/* ===================== SHARED SECTION BITS ===================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--cyan-dark); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--grad-cyan); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.sec-title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -.5px; }
.sec-title .hl { background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.sec-head p { color: var(--muted); margin-top: 16px; font-size: 16.5px; }
.section-pad { padding: 100px 0; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 13px; font-weight: 600; font-size: 15px;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-primary { background: var(--grad-cyan); color: #fff; box-shadow: var(--shadow-cyan); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(0,189,224,.45); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan-dark); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--cyan-dark); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn svg { width: 18px; height: 18px; }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(7,18,22,.94) 0%, rgba(7,18,22,.7) 45%, rgba(0,152,181,.35) 100%);
}
.hero-glow { position: absolute; z-index: 1; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,189,224,.28), transparent 65%);
  top: -160px; right: -120px; filter: blur(20px); }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; min-height: calc(100vh - var(--nav-h) - 40px); padding-top: 60px; padding-bottom: 60px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 30px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(0,189,224,.35);
  color: #7fe3f5; font-size: 12.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 26px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(0,189,224,.25); }
.hero h1 { font-size: clamp(38px, 6vw, 68px); font-weight: 700; line-height: 1.05; letter-spacing: -1.5px; color: #fff; }
.hero h1 .accent { display: block; background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: rgba(255,255,255,.75); font-size: 17.5px; margin: 26px 0 36px; max-width: 540px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 34px;
  color: rgba(255,255,255,.65); font-size: 14px;
}
.hero-badge svg { width: 18px; height: 18px; color: var(--cyan); }

/* hero photo frame */
.hero-photo { position: relative; }
.hero-frame {
  position: relative; border-radius: 26px; overflow: hidden; aspect-ratio: 4/5;
  border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #0c1f26, #071216);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; left: -26px; bottom: 42px; z-index: 3;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
}
.hero-float .n { font-size: 26px; font-weight: 700; color: var(--cyan-dark); line-height: 1; }
.hero-float .t { font-size: 13px; color: var(--muted); }
.hero-ring { position: absolute; top: -24px; right: -24px; width: 120px; height: 120px; border: 2px dashed rgba(0,189,224,.4); border-radius: 50%; animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.6); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: var(--cyan); border-radius: 2px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%,12px); } }

/* ===================== ABOUT (home snippet) ===================== */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.about-photo { position: relative; }
.about-photo .frame { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); border: 8px solid #fff; }
.about-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .badge {
  position: absolute; right: -20px; bottom: 30px; background: var(--grad-cyan); color: #fff;
  border-radius: 18px; padding: 20px 24px; box-shadow: var(--shadow-cyan); text-align: center;
}
.about-photo .badge b { font-size: 32px; display: block; line-height: 1; }
.about-photo .badge span { font-size: 12.5px; opacity: .9; }
.about-points { display: grid; gap: 14px; margin: 26px 0 32px; }
.about-points li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-weight: 500; }
.about-points .tick { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--cyan-tint); display: grid; place-items: center; margin-top: 2px; }
.about-points .tick svg { width: 14px; height: 14px; color: var(--cyan-dark); }
.about-grid p { color: var(--muted); margin-top: 16px; font-size: 16px; }

/* ===================== STATS ===================== */
.stats { background: var(--dark); position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; inset: 0; background: var(--grad-glow); }
.stats .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat {
  text-align: center; padding: 34px 20px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s, border-color .35s;
}
.stat:hover { transform: translateY(-6px); border-color: rgba(0,189,224,.4); }
.stat .num { font-size: clamp(34px,4vw,50px); font-weight: 700; background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat .lbl { color: rgba(255,255,255,.7); font-size: 14.5px; margin-top: 10px; }

/* ===================== VALUES / WHY-US ===================== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative; overflow: hidden;
}
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-cyan); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-card:hover::before { transform: scaleX(1); }
.value-icon { width: 58px; height: 58px; border-radius: 16px; background: var(--cyan-tint); display: grid; place-items: center; margin-bottom: 20px; transition: background .35s; }
.value-card:hover .value-icon { background: var(--grad-cyan); }
.value-icon svg { width: 28px; height: 28px; color: var(--cyan-dark); transition: color .35s; }
.value-card:hover .value-icon svg { color: #fff; }
.value-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 14.5px; }

/* ===================== SERVICES (premium home) ===================== */
.services-premium { background: var(--dark-2); position: relative; overflow: hidden; }
.services-premium::before { content: ''; position: absolute; inset: 0; background: var(--grad-glow); }
.services-premium .ghost {
  position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
  font-size: clamp(90px, 18vw, 240px); font-weight: 800; letter-spacing: -4px;
  color: rgba(255,255,255,.03); z-index: 0; white-space: nowrap; pointer-events: none;
}
.services-premium .container { position: relative; z-index: 2; }
.services-premium .sec-head .eyebrow { color: #7fe3f5; }
.services-premium .sec-title { color: #fff; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.svc-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  padding: 34px 26px 30px; background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09); transition: transform .4s, border-color .4s;
}
.svc-card:hover { transform: translateY(-10px); border-color: rgba(0,189,224,.5); }
.svc-card.featured { background: var(--grad-cyan); border-color: transparent; box-shadow: var(--shadow-cyan); }
.svc-card .idx { position: absolute; top: 22px; right: 24px; font-size: 15px; font-weight: 700; color: rgba(255,255,255,.35); }
.svc-card.featured .idx { color: rgba(255,255,255,.6); }
.svc-icon { width: 66px; height: 66px; border-radius: 18px; background: rgba(255,255,255,.09); display: grid; place-items: center; margin-bottom: 22px; }
.svc-card.featured .svc-icon { background: rgba(255,255,255,.2); }
.svc-icon img { width: 38px; height: 38px; object-fit: contain; }
.svc-icon svg { width: 32px; height: 32px; color: #7fe3f5; }
.svc-card.featured .svc-icon svg { color: #fff; }
.svc-card h3 { color: #fff; font-size: 18.5px; font-weight: 600; margin-bottom: 12px; }
.svc-card p { color: rgba(255,255,255,.66); font-size: 14px; }
.svc-card.featured p { color: rgba(255,255,255,.9); }
.svc-divider { width: 40px; height: 3px; background: var(--grad-cyan); border-radius: 3px; margin: 20px 0 0; }
.svc-card.featured .svc-divider { background: rgba(255,255,255,.8); }
.svc-card .sheen { position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.14), transparent); transform: skewX(-20deg); transition: left .7s; }
.svc-card:hover .sheen { left: 130%; }
.svc-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 18px;
  padding: 5px 12px; border-radius: 20px; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px;
  background: rgba(255,255,255,.22); color: #fff;
}
.services-cta-wrap { text-align: center; margin-top: 50px; }

/* ===================== SERVICES PAGE (detail lists) ===================== */
.svc-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.svc-detail-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); transition: transform .35s, box-shadow .35s; }
.svc-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-detail-card .head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.svc-detail-card .head .ic { width: 54px; height: 54px; border-radius: 14px; background: var(--grad-cyan); display: grid; place-items: center; box-shadow: var(--shadow-cyan); }
.svc-detail-card .head .ic svg { width: 26px; height: 26px; color: #fff; }
.svc-detail-card .head h3 { font-size: 20px; font-weight: 600; }
.svc-detail-card ul { display: grid; gap: 12px; }
.svc-detail-card li { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-weight: 500; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.svc-detail-card li:last-child { border-bottom: none; }
.svc-detail-card li .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); flex: 0 0 8px; }

/* ===================== FAQ ===================== */
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 44px; align-items: start; }
.faq-doctor { position: sticky; top: 100px; }
.faq-doctor-card { background: var(--dark-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.faq-doctor-card .photo { aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(160deg,#0c1f26,#071216); }
.faq-doctor-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.faq-doctor-card .info { padding: 24px; }
.faq-doctor-card .name { color: #fff; font-size: 19px; font-weight: 700; }
.faq-doctor-card .role { color: var(--cyan); font-size: 13px; margin-top: 3px; }
.faq-doctor-card .desc { color: rgba(255,255,255,.65); font-size: 13.5px; margin: 14px 0 18px; }
.faq-doctor-card .dstats { display: flex; gap: 14px; margin-bottom: 18px; }
.faq-doctor-card .dstat { flex: 1; background: rgba(255,255,255,.05); border-radius: 12px; padding: 12px; text-align: center; }
.faq-doctor-card .dstat b { display: block; color: var(--cyan); font-size: 20px; }
.faq-doctor-card .dstat span { color: rgba(255,255,255,.6); font-size: 11.5px; }
.faq-doctor-card .btn { width: 100%; justify-content: center; }

.faq-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.faq-cat { padding: 9px 18px; border-radius: 30px; font-size: 13.5px; font-weight: 500; background: var(--cyan-tint); color: var(--cyan-dark); transition: all .25s; }
.faq-cat:hover { background: #d3f2f9; }
.faq-cat.active { background: var(--grad-cyan); color: #fff; box-shadow: var(--shadow-cyan); }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow); border-color: rgba(0,189,224,.35); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-weight: 600; font-size: 15.5px; cursor: pointer; }
.faq-q .ic { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; background: var(--cyan-tint); display: grid; place-items: center; transition: background .3s, transform .3s; }
.faq-q .ic svg { width: 16px; height: 16px; color: var(--cyan-dark); transition: transform .3s; }
.faq-item.open .faq-q .ic { background: var(--grad-cyan); }
.faq-item.open .faq-q .ic svg { color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 14.5px; }

/* ===================== CTA BANNER (PREMIUM CAM EFEKTİ) ===================== */
.cta-band {
  position: relative; overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,189,224,.28), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(0,152,181,.30), transparent 50%),
    linear-gradient(150deg, #061418 0%, #0a2129 55%, #061a20 100%);
}
/* animasyonlu ışık lekeleri */
.cta-band::before {
  content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(0,189,224,.4), transparent 65%);
  filter: blur(30px); animation: ctaFloat 9s ease-in-out infinite; pointer-events: none;
}
.cta-band::after {
  content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  bottom: -180px; right: -100px;
  background: radial-gradient(circle, rgba(127,227,245,.32), transparent 65%);
  filter: blur(34px); animation: ctaFloat 11s ease-in-out infinite reverse; pointer-events: none;
}
@keyframes ctaFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,30px) scale(1.12); }
}
.cta-band .container { position: relative; z-index: 2; }
/* buzlu cam panel */
.cta-glass {
  position: relative;
  max-width: 900px; margin: 0 auto; text-align: center;
  padding: 62px 48px;
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 30px 80px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.25),
    0 0 60px rgba(0,189,224,.18);
  overflow: hidden;
}
/* cam üzerine parlak cyan kenar ışıltısı */
.cta-glass::before {
  content: ''; position: absolute; inset: 0; border-radius: 28px; padding: 1px;
  background: linear-gradient(135deg, rgba(0,189,224,.9), transparent 40%, transparent 60%, rgba(127,227,245,.7));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
/* üstten geçen ışık yansıması */
.cta-glass .shine {
  position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.14), transparent);
  transform: skewX(-20deg); animation: ctaShine 6s ease-in-out infinite;
}
@keyframes ctaShine { 0%,60% { left: -60%; } 100% { left: 140%; } }
.cta-glass .cta-chip {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  padding: 8px 18px; border-radius: 30px;
  background: rgba(0,189,224,.16); border: 1px solid rgba(0,189,224,.4);
  color: #7fe3f5; font-size: 12.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}
.cta-glass .cta-chip svg { width: 15px; height: 15px; }
.cta-band h2 { color: #fff; font-size: clamp(28px,3.8vw,46px); font-weight: 700; letter-spacing: -.6px; position: relative; z-index: 1; }
.cta-band h2 .hl { background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-band p { color: rgba(255,255,255,.82); font-size: 17px; margin: 18px auto 34px; max-width: 620px; position: relative; z-index: 1; }
.cta-band .btn-white { position: relative; z-index: 1; box-shadow: 0 14px 40px rgba(0,189,224,.35); }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 24px; transition: transform .3s, box-shadow .3s; }
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.contact-card .ic { flex: 0 0 52px; width: 52px; height: 52px; border-radius: 14px; background: var(--cyan-tint); display: grid; place-items: center; }
.contact-card .ic svg { width: 24px; height: 24px; color: var(--cyan-dark); }
.contact-card .lbl { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-card .val { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 20px; font-weight: 600; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: var(--cream); transition: border-color .25s, background .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; justify-content: center; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }
.map-wrap { margin-top: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero { background: var(--dark); position: relative; overflow: hidden; padding: 70px 0 64px; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--grad-glow); }
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero .eyebrow { color: #7fe3f5; justify-content: center; }
.page-hero h1 { color: #fff; font-size: clamp(30px,4.5vw,52px); font-weight: 700; letter-spacing: -1px; }
.page-hero p { color: rgba(255,255,255,.72); margin-top: 14px; font-size: 16.5px; max-width: 600px; margin-left: auto; margin-right: auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; color: rgba(255,255,255,.5); font-size: 13.5px; margin-top: 18px; }
.breadcrumb a:hover { color: var(--cyan); }

/* ===================== FOOTER (YENİ TASARIM + HARİTA) ===================== */
.footer {
  position: relative; overflow: hidden; color: rgba(255,255,255,.7);
  background:
    radial-gradient(circle at 88% 0%, rgba(0,189,224,.15), transparent 42%),
    linear-gradient(180deg, #081a20 0%, #050f13 100%);
  padding: 0 0 0;
}
/* üst CTA şeridi */
.footer-cta {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  padding: 40px 46px; margin: -46px auto 0; max-width: var(--container);
  width: calc(100% - 48px);
  border-radius: 24px;
  background: var(--grad-cyan);
  box-shadow: 0 30px 70px rgba(0,189,224,.35);
}
.footer-cta .fc-txt h3 { color: #fff; font-size: clamp(20px,2.4vw,28px); font-weight: 700; letter-spacing: -.4px; }
.footer-cta .fc-txt p { color: rgba(255,255,255,.9); font-size: 14.5px; margin-top: 6px; }
.footer-cta .fc-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-cta .btn-white { background: #fff; color: var(--cyan-dark); }
.footer-cta .btn-outline { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.footer-cta .btn-outline:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }

.footer-main { position: relative; z-index: 1; padding: 66px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr 1.4fr; gap: 40px; padding-bottom: 46px; }
.footer .brand-mark { box-shadow: none; }
.footer-about { max-width: 330px; }
.footer-about .brand { margin-bottom: 18px; }
.footer-about .brand-text b { color: #fff; }
.footer-about .brand-text small { color: var(--cyan); }
.footer-about p { font-size: 14px; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 15.5px; font-weight: 600; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--grad-cyan); }
.footer-links { display: grid; gap: 11px; }
.footer-links a { font-size: 14px; transition: color .25s, padding-left .25s; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); opacity: 0; transition: opacity .25s; }
.footer-links a:hover { color: var(--cyan); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }
.footer-contact { display: grid; gap: 15px; }
.footer-contact-item { display: flex; gap: 12px; font-size: 14px; align-items: flex-start; transition: color .25s; }
.footer-contact-item:hover { color: #fff; }
.footer-contact-item .ci { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 11px; background: rgba(0,189,224,.12); display: grid; place-items: center; }
.footer-contact-item .ci svg { width: 17px; height: 17px; color: var(--cyan); }
.footer-contact-item .ct small { display: block; font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 2px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background .3s, transform .3s; }
.footer-social a:hover { background: var(--grad-cyan); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
/* footer harita */
.footer-map { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 14px 40px rgba(0,0,0,.35); }
.footer-map iframe { width: 100%; height: 190px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; }
.footer-bottom .hl { color: var(--cyan); }

/* ===================== FLOATING WHATSAPP + SCROLLTOP ===================== */
.float-wa { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .3s; }
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; color: #fff; }
.scroll-top { position: fixed; right: 22px; bottom: 88px; z-index: 900; width: 46px; height: 46px; border-radius: 50%; background: var(--grad-cyan); display: grid; place-items: center; box-shadow: var(--shadow-cyan); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .3s; }
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top svg { width: 22px; height: 22px; color: #fff; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { max-width: 420px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-doctor { position: static; max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .cta-glass { padding: 48px 30px; }
}
@media (max-width: 720px) {
  .section-pad { padding: 68px 0; }
  .topbar-left { gap: 14px; }
  .topbar-item.hide-sm { display: none; }
  .nav-links, .nav-right .lang-switch, .nav-right .btn-nav { display: none; }
  .nav-toggle { display: block; }
  .stats-grid, .values-grid, .svc-grid, .svc-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta { padding: 30px 26px; margin-top: -40px; }
  .hero-float { left: 10px; }
  .about-photo .badge { right: 10px; }
  .cta-glass { padding: 40px 22px; }
}
