:root {
  --navy: #133e69;
  --navy-deep: #0c2c4d;
  --teal: #00b1b5;
  --teal-dark: #009094;
  --accent: #c98a3e;
  --text-dark: #2b2b2b;
  --text-muted: #6a7580;
  --light-bg: #eef4f8;
  --radius: 10px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  background: #fff;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Roboto', sans-serif; }
.brand-title, .footer-brand { font-family: 'Poppins', sans-serif; font-weight: 600; }

a { text-decoration: none; }
main { overflow-x: clip; }

/* Mobilde içerik kenara yapışmasın */
@media (max-width: 767px) {
  .container, .container-fluid { --bs-gutter-x: 2.5rem; }
}
@media (max-width: 340px) {
  .container, .container-fluid { --bs-gutter-x: 2rem; }
}

/* Topbar */
.topbar { background: var(--navy-deep); color: #cfe0ee; font-size: .88rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 12px; }
.topbar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-contact a, .topbar-contact span { color: #cfe0ee; }
.topbar-contact i { color: var(--teal); margin-right: 5px; }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a {
  width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: #cfe0ee; background: rgba(255,255,255,.07); font-size: .85rem; transition: background .2s ease, color .2s ease;
}
.topbar-contact a:hover { color: #fff; }
.topbar-social a:hover { background: var(--teal); color: #fff; }

/* Nav */
.main-nav {
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  box-shadow: 0 2px 14px rgba(19,62,105,.06); padding: 0;
  font-family: 'Poppins', sans-serif;
}
.main-nav > .container { position: relative; min-height: 86px; transition: min-height .25s ease; }
.main-nav.is-scrolled > .container { min-height: 70px; }

.navbar-brand { display: flex; align-items: center; gap: 12px; margin-right: 24px; padding: 0; white-space: normal; }
.brand-text { min-width: 0; }
@media (max-width: 1199px) {
  .main-nav .navbar-brand { flex: 1 1 0; min-width: 0; margin-right: 12px; }
}
@media (max-width: 400px) {
  .brand-sub { display: none; }
}
.brand-mark {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  color: #fff; font-weight: 700; font-size: 1.15rem; letter-spacing: .5px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(19,62,105,.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-title { font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.brand-sub { font-size: .76rem; font-weight: 500; color: var(--teal-dark); letter-spacing: .2px; margin-top: 3px; white-space: nowrap; }
@media (max-width: 1199px) { .brand-sub { white-space: normal; } }

.main-nav .nav-link {
  color: var(--navy); font-weight: 500; font-size: 1.08rem;
  padding: 1.9rem 1.05rem !important; position: relative; transition: color .2s ease, padding .25s ease;
  white-space: nowrap;
}
.main-nav.is-scrolled .nav-link { padding-top: 1.4rem !important; padding-bottom: 1.4rem !important; }
.main-nav .nav-link::after {
  content: ''; position: absolute; left: 50%; bottom: 1.35rem; height: 3px; width: 0;
  background: var(--teal); border-radius: 3px; transform: translateX(-50%); transition: width .25s ease;
}
.main-nav.is-scrolled .nav-link::after { bottom: .9rem; }
.main-nav .nav-link:hover, .main-nav .nav-link:focus, .main-nav .nav-link.active, .main-nav .nav-link.show { color: var(--teal-dark); }
.main-nav .nav-link:hover::after, .main-nav .nav-link.active::after, .main-nav .nav-link.show::after { width: calc(100% - 2.1rem); }
.main-nav .dropdown-toggle::after { display: none; }
.main-nav .nav-item.mega > .nav-link, .main-nav .nav-item.has-sub > .nav-link { padding-right: 1.9rem !important; }
.main-nav .nav-item.mega > .nav-link::before, .main-nav .nav-item.has-sub > .nav-link::before {
  content: '\F282'; font-family: 'bootstrap-icons'; position: absolute; right: .9rem; top: 50%;
  font-size: .7rem; transform: translateY(-50%); transition: transform .25s ease;
}
.main-nav .nav-item.mega:hover > .nav-link::before, .main-nav .nav-item.mega > .nav-link.show::before,
.main-nav .nav-item.has-sub:hover > .nav-link::before, .main-nav .nav-item.has-sub > .nav-link.show::before { transform: translateY(-50%) rotate(180deg); }

/* Alt menü (normal açılır) */
.main-nav .nav-item.has-sub { position: relative; }
.sub-menu {
  border: 0; border-top: 3px solid var(--teal); border-radius: 0 0 14px 14px; padding: 8px; min-width: 240px;
  margin-top: 0 !important; box-shadow: 0 20px 44px rgba(12,44,77,.16); font-family: 'Roboto', sans-serif;
}
.sub-menu .dropdown-item {
  border-radius: 8px; padding: 9px 14px; color: var(--navy); font-size: .96rem; white-space: normal;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
.sub-menu .dropdown-item:hover { background: var(--light-bg); color: var(--teal-dark); padding-left: 18px; }
.sub-menu .dropdown-item.active, .sub-menu .dropdown-item:active { background: var(--light-bg); color: var(--teal-dark); font-weight: 600; }
.sub-menu .sub-parent-link { font-weight: 600; border-bottom: 1px solid #eef2f4; border-radius: 8px 8px 0 0; margin-bottom: 4px; }
.sub-menu .sub-grand { padding-left: 30px; font-size: .9rem; color: var(--text-muted); }
.page-header-sub { color: #cfe0ee; margin: 10px 0 0; font-size: 1.1rem; font-weight: 300; max-width: 720px; }

/* Mega menü */
.main-nav .nav-item.mega { position: static; }
.mega-menu {
  left: 0; right: 0; top: 100%; margin-top: 0 !important; border: 0; border-radius: 0 0 18px 18px;
  padding: 0; overflow: hidden; box-shadow: 0 24px 50px rgba(12,44,77,.18); border-top: 3px solid var(--teal);
}
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 28px; padding: 28px 32px 22px; }
.mega-head {
  display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1rem; color: var(--navy);
  padding-bottom: 12px; margin-bottom: 8px; border-bottom: 1px solid #eef2f4;
}
.mega-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--light-bg); color: var(--teal-dark);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
}
.mega-head:hover { color: var(--teal-dark); }
.mega-head:hover .mega-icon { background: var(--teal); color: #fff; }
.mega-link {
  display: block; padding: 7px 0 7px 14px; color: var(--text-muted); font-size: .93rem; font-family: 'Roboto', sans-serif;
  position: relative; transition: color .2s ease, padding-left .2s ease;
}
.mega-link::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 5px; height: 5px; border-radius: 50%;
  background: #c9d6df; transform: translateY(-50%); transition: background .2s ease;
}
.mega-link:hover { color: var(--teal-dark); padding-left: 20px; }
.mega-link:hover::before { background: var(--teal); }
.mega-footer {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: var(--light-bg); padding: 14px 32px; font-size: .9rem; color: var(--text-muted);
}
.mega-footer a { color: var(--teal-dark); font-weight: 600; }
.mega-footer a i { transition: transform .2s ease; display: inline-block; }
.mega-footer a:hover i { transform: translateX(4px); }

/* Sağ taraf: dil, WhatsApp, randevu */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  border: 1px solid #dbe5ec; background: #fff; color: var(--navy); border-radius: 30px;
  padding: 8px 14px; font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px;
  transition: border-color .2s ease, color .2s ease;
}
.lang-switch:hover, .lang-switch.show { border-color: var(--teal); color: var(--teal-dark); }
.lang-switch::after { display: none; }
.lang-menu { border: 0; border-radius: 14px; padding: 8px; box-shadow: 0 18px 40px rgba(12,44,77,.16); min-width: 190px; }
.lang-menu .dropdown-item { border-radius: 8px; padding: 8px 12px; font-size: .95rem; display: flex; align-items: center; gap: 10px; }
.lang-menu .dropdown-item.active, .lang-menu .dropdown-item:active { background: var(--teal); color: #fff; }
.lang-code {
  font-size: .72rem; font-weight: 700; background: var(--light-bg); color: var(--navy);
  border-radius: 6px; padding: 2px 6px; min-width: 30px; text-align: center;
}
.lang-menu .dropdown-item.active .lang-code { background: rgba(255,255,255,.25); color: #fff; }
.nav-wa {
  width: 44px; height: 44px; border-radius: 50%; background: #e9f9ef; color: #1ebc59; font-size: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center; transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-wa:hover { background: #25D366; color: #fff; transform: translateY(-2px); }
.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; border-radius: 30px;
  padding: 11px 22px; font-weight: 600; font-size: .98rem; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 20px rgba(0,145,148,.3); transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,145,148,.4); }

/* Hamburger */
.main-nav .navbar-toggler {
  border: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--light-bg);
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0;
}
@media (max-width: 1199px) {
  .main-nav .navbar-toggler { display: inline-flex; }
}
.main-nav .navbar-toggler:focus { box-shadow: none; }
.toggler-bar { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1200px) {
  .main-nav .nav-item.mega:hover > .mega-menu, .main-nav .nav-item.has-sub:hover > .sub-menu { display: block; animation: megaIn .22s ease; }
  @keyframes megaIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .main-nav .nav-link { font-size: 1.02rem; padding-left: .75rem !important; padding-right: .75rem !important; }
  .main-nav .nav-item.mega > .nav-link { padding-right: 1.6rem !important; }
  .main-nav .nav-item.mega > .nav-link::before { right: .7rem; }
  .main-nav .nav-link:hover::after, .main-nav .nav-link.active::after, .main-nav .nav-link.show::after { width: calc(100% - 1.5rem); }
  .brand-sub { display: none; }
  .navbar-brand { margin-right: 12px; }
  .nav-actions { gap: 8px; }
  .nav-cta { padding: 10px 18px; }
}

@media (max-width: 1199px) {
  .main-nav > .container { min-height: 72px; }
  .brand-mark { width: 42px; height: 42px; font-size: 1rem; border-radius: 12px; }
  .brand-title { font-size: 1.1rem; }
  .brand-sub { font-size: .7rem; }
  .main-nav .navbar-collapse { border-top: 1px solid #eef2f4; margin-top: 8px; padding: 10px 0 18px; max-height: calc(100vh - 110px); overflow-y: auto; }
  .main-nav .nav-link { padding: .85rem .25rem !important; font-size: 1.12rem; border-bottom: 1px solid #f1f5f7; }
  .main-nav .nav-link::after { display: none; }
  .main-nav .nav-item.mega > .nav-link::before { right: .25rem; }
  .mega-menu { box-shadow: none; border-top: 0; border-radius: 12px; background: var(--light-bg); margin: 6px 0 10px !important; }
  .mega-grid { grid-template-columns: 1fr 1fr; padding: 16px; gap: 14px; }
  .mega-footer { display: none; }
  .nav-actions { flex-wrap: wrap; margin-top: 16px; }
  .nav-cta { flex: 1; justify-content: center; }
}

@media (max-width: 575px) {
  .mega-grid { grid-template-columns: 1fr; }
  .topbar-social { display: none; }
}

/* Tam ekran video hero */
.hero-full {
  position: relative; isolation: isolate; overflow: hidden; color: #fff; background: var(--navy);
  height: calc(100vh - 124px); min-height: 620px; max-height: 980px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-media, .hero-shade { position: absolute; inset: 0; z-index: -1; }
.hero-poster, .hero-video-el { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-video { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-video iframe {
  position: absolute; top: 50%; left: 50%; border: 0;
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%) scale(1.15);
}
.hero-shade {
  background:
    linear-gradient(180deg, rgba(10,35,64,.55) 0%, rgba(10,35,64,.15) 40%, rgba(10,35,64,.35) 65%, rgba(9,40,82,.92) 100%);
}
.hero-heading { text-align: center; padding: 130px 24px 20px; animation: heroFadeUp 1s ease both; }
.hero-heading h1 { font-size: clamp(2.4rem, 4.6vw, 4rem); font-weight: 200; letter-spacing: .5px; margin: 0; text-shadow: 0 4px 24px rgba(0,0,0,.25); }
.hero-heading p { font-size: clamp(1.05rem, 1.8vw, 1.45rem); font-weight: 300; margin: 10px 0 0; color: #e6f0f8; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding-bottom: 80px; animation: heroFadeUp 1s ease .3s both; }
.hero-quote {
  margin: 0; max-width: 560px; font-size: clamp(1.1rem, 2vw, 1.55rem); font-weight: 300; line-height: 1.45;
  border-left: 3px solid var(--teal); padding-left: 20px;
}
.hero-socials { display: flex; gap: 10px; }
.hero-socials a {
  width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); font-size: 1.05rem;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-socials a:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-3px); color: #fff; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); color: rgba(255,255,255,.75);
  font-size: 1.4rem; animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll:hover { color: #fff; }
@keyframes scrollBounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

.hero-photo {
  width: 100%; max-width: 420px; border-radius: var(--radius);
  box-shadow: 0 25px 50px rgba(0,0,0,.35); position: relative; z-index: 1;
  border: 6px solid rgba(255,255,255,.08);
}

.btn-primary-custom {
  background: var(--teal); color: #fff; border: none; border-radius: 30px;
  padding: .8rem 2rem; font-weight: 500; display: inline-block; transition: background .15s ease;
}
.btn-primary-custom:hover { background: var(--teal-dark); color: #fff; }
.btn-outline-custom {
  border: 2px solid rgba(255,255,255,.4); color: #fff; border-radius: 30px;
  padding: .75rem 1.8rem; font-weight: 500; display: inline-block;
}
.btn-outline-custom:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Section titles */
.section-title { text-align: center; margin-bottom: 44px; }
.section-title h2 { color: var(--navy); font-weight: 700; }
.section-title .kicker { color: var(--teal-dark); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; font-size: .82rem; }
.section { padding: 80px 0; }
.section-alt { background: var(--light-bg); }

/* Uzmanlık alanları: tam genişlik, uzun dikey kartlar */
.specialties {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: #fff;
}
.specialty {
  position: relative; isolation: isolate; overflow: hidden; color: #fff;
  height: min(78vh, 720px); min-height: 480px; padding: 32px 30px 56px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  border-radius: 0 90px 0 0;
}
.specialty img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform 1s cubic-bezier(.2,.65,.3,1), filter .6s ease;
}
.specialty::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.72) 100%);
  transition: background .5s ease;
}
.specialty-title { font-size: clamp(1.25rem, 1.7vw, 1.7rem); font-weight: 300; line-height: 1.25; max-width: 80%; }
.specialty-arrow {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.5); font-size: 1.1rem;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.specialty:hover { color: #fff; }
.specialty:hover img { transform: scale(1.08); }
.specialty:hover::before { background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.8) 100%); }
.specialty-title { text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.specialty:hover .specialty-arrow { background: #fff; color: var(--teal-dark); border-color: #fff; transform: translateX(4px); }

/* Certificate section */
.certificate-section { padding: 70px 0; background: #fff; text-align: center; }
.certificate-section h4 { color: var(--navy); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; font-size: 1.1rem; }
.certificate-visual { max-width: 420px; margin: 24px auto 0; }
.certificate-text { max-width: 640px; margin: 14px auto 0; color: var(--text-muted); }

/* Ortak metin bağlantısı */
.text-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--teal-dark);
  border-bottom: 2px solid currentColor; padding-bottom: 3px; margin-top: 10px;
}
.text-link i { transition: transform .25s ease; }
.text-link:hover { color: var(--navy); }
.text-link:hover i { transform: translateX(5px); }
.feature-eyebrow { font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; font-size: .78rem; color: var(--teal-dark); }
.kicker-line {
  display: inline-flex; align-items: center; gap: 12px; color: var(--teal-dark);
  font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; font-size: .8rem; margin-bottom: 14px;
}
.kicker-line::before { content: ''; width: 36px; height: 2px; background: var(--teal); }

/* Ana sayfa hakkımızda */
.about-home { padding: 130px 0 110px; }
.about-home-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.about-copy h2 { font-size: clamp(2.2rem, 3.6vw, 3.3rem); font-weight: 300; color: var(--navy); margin: 0; line-height: 1.1; }
.about-subtitle { font-size: 1.2rem; color: var(--teal-dark); margin: 10px 0 26px; font-weight: 400; }
.about-body { color: var(--text-muted); font-size: 1.05rem; line-height: 1.85; }
.about-home-stats { display: flex; gap: 14px; margin: 30px 0 18px; flex-wrap: wrap; }
.about-home-stats > div {
  flex: 1; min-width: 120px; background: var(--light-bg); border-radius: 14px; padding: 18px 16px;
  border-left: 3px solid var(--teal);
}
.about-home-stats strong { display: block; font-size: 1.8rem; color: var(--navy); font-weight: 800; line-height: 1; }
.about-home-stats span { font-size: .85rem; color: var(--text-muted); }
.about-photo { position: relative; }
.about-photo::before {
  content: ''; position: absolute; inset: 40px -24px -24px 40px; border-radius: 0 90px 0 0;
  background: linear-gradient(135deg, var(--teal), var(--navy)); opacity: .14; z-index: -1;
}
.doctor-photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 0 90px 0 0;
  box-shadow: 0 30px 60px rgba(12,44,77,.2); transition: transform .8s ease;
}
.about-photo:hover .doctor-photo { transform: scale(1.015); }

/* Hasta bilgilendirme şeridi */
.patient-info { padding: 20px 0 80px; }
.patient-info-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
  background: var(--light-bg); border-radius: 0 90px 0 0; padding: 50px 56px;
}
.patient-info h2 { color: var(--navy); font-weight: 300; font-size: clamp(1.8rem, 2.6vw, 2.4rem); margin-bottom: 10px; }
.patient-info p { color: var(--text-muted); margin-bottom: 4px; }
.patient-call { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; text-align: right; }
.patient-call-label { color: var(--teal-dark); font-weight: 600; font-size: 1.1rem; }
.patient-call-phone { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 10px; }
.patient-call-phone i { color: var(--teal); font-size: .8em; }
.patient-call-phone:hover { color: var(--teal-dark); }
.patient-call .brand-mark { margin-top: 6px; }

/* Tedavi satırları */
.treatment-row { padding: 100px 0; background: #fff; }
.treatment-row.blue-row { background: linear-gradient(180deg, var(--navy) 0%, #336fb2 100%); color: #fff; padding: 130px 0; }
.treatment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.treatment-row.reverse .treatment-media { order: 2; }
.treatment-media { display: block; border-radius: 0 90px 0 0; }
.treatment-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; display: block; }
.treatment-row.reverse .treatment-media { border-radius: 90px 0 0 0; }
.treatment-copy h2 { font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 800; color: var(--navy); line-height: 1.12; margin: 8px 0 18px; }
.treatment-lead { font-size: 1.15rem; color: var(--text-dark); font-weight: 500; }
.treatment-copy p { color: var(--text-muted); line-height: 1.8; }
.blue-row .feature-eyebrow { color: #9fe6e8; }
.blue-row .treatment-copy h2 { color: #fff; }
.blue-row .treatment-lead { color: #fff; }
.blue-row .treatment-copy p { color: rgba(255,255,255,.82); }
.blue-row .text-link { color: #fff; }
.blue-row .text-link:hover { color: #9fe6e8; }

/* Tedavi + hasta yorumları bandı */
.testimonials-band { padding: 110px 0; background: linear-gradient(180deg, #32bdc3 0%, #4c5a7a 100%); color: #fff; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.band-treatment h2 { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 800; margin: 8px 0 18px; line-height: 1.12; }
.band-treatment .feature-eyebrow { color: rgba(255,255,255,.8); }
.band-treatment .treatment-lead { color: #fff; }
.band-treatment p { color: rgba(255,255,255,.88); line-height: 1.8; }
.band-treatment .text-link { color: #fff; }
.patient-reviews {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: 0 90px 0 0;
  padding: 44px 44px 36px; backdrop-filter: blur(6px); display: flex; flex-direction: column;
}
.patient-reviews h2 { font-weight: 300; font-size: clamp(1.8rem, 2.6vw, 2.4rem); margin-bottom: 20px; }
.review-slides { position: relative; flex: 1; min-height: 210px; }
.review-slide {
  position: absolute; inset: 0; margin: 0; opacity: 0; transform: translateX(24px);
  transition: opacity .6s ease, transform .6s ease; pointer-events: none;
}
.review-slide.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.review-quote-mark { font-family: Georgia, serif; font-size: 4.5rem; line-height: .6; color: rgba(255,255,255,.45); display: block; height: 30px; }
.review-slide blockquote { font-size: 1.12rem; line-height: 1.75; margin: 10px 0 18px; }
.review-slide figcaption { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.review-slide figcaption img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.6); }
.review-dots { display: flex; gap: 8px; margin-top: 22px; }
.review-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; background: rgba(255,255,255,.4); transition: width .3s ease, background .3s ease; }
.review-dots button[aria-pressed="true"] { width: 28px; border-radius: 6px; background: #fff; }
.review-caption { margin: 16px 0 0; color: rgba(255,255,255,.75); font-size: .92rem; }

/* Videolar */
.videos-home { padding: 120px 0 140px; }
@media (min-width: 1400px) { .videos-home .container { max-width: 1560px; } }
.videos-layout { display: grid; grid-template-columns: 1fr; gap: 44px; }
.videos-intro { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 26px; }
.videos-intro h2 { color: var(--navy); font-weight: 300; font-size: clamp(2.2rem, 3.4vw, 3rem); margin: 0; }
.videos-intro p { color: var(--text-muted); margin: 0; flex: 1 1 320px; max-width: 560px; }
.videos-intro .btn-primary-custom { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; }
.video-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.video-card { border: 0; background: none; padding: 0; text-align: left; cursor: pointer; }
.video-thumb { position: relative; display: block; overflow: hidden; border-radius: 0 60px 0 0; box-shadow: 0 18px 38px rgba(12,44,77,.18); }
.video-thumb img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; transition: transform .8s ease; }
.video-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(9,40,82,.75)); }
.video-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 1;
  width: 66px; height: 66px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.9rem; padding-left: 4px;
  box-shadow: 0 0 0 0 rgba(255,255,255,.5); animation: playPulse 2.4s ease-out infinite;
  transition: background .25s ease, color .25s ease;
}
@keyframes playPulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.55); } 100% { box-shadow: 0 0 0 22px rgba(255,255,255,0); } }
.video-card:hover .video-thumb img { transform: scale(1.07); }
.video-card:hover .video-play { background: var(--teal); color: #fff; }
.video-card-title { display: block; margin-top: 16px; color: var(--navy); font-weight: 600; font-size: 1.08rem; line-height: 1.4; }
.video-play { width: 80px; height: 80px; font-size: 2.3rem; }

@media (max-width: 1199px) {
  .specialty { padding: 26px 22px 44px; border-top-right-radius: 70px; }
  .about-home-grid, .treatment-grid, .testimonials-grid { gap: 50px; }
  .video-cards { gap: 22px; }
}
@media (max-width: 991px) {
  .hero-full { height: auto; min-height: 640px; }
  .hero-heading { padding-top: 110px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; padding-bottom: 70px; }
  .specialties { grid-template-columns: repeat(2, 1fr); }
  .specialty { height: 440px; min-height: 0; }
  .about-home { padding: 80px 0; }
  .about-home-grid, .treatment-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 480px; }
  .treatment-row, .treatment-row.blue-row { padding: 70px 0; }
  .treatment-row.reverse .treatment-media { order: 0; }
  .testimonials-band { padding: 70px 0; }
  .patient-info-grid { grid-template-columns: 1fr; padding: 34px 26px; width: calc(100% - 40px); border-radius: 0 60px 0 0; }
  .patient-call { align-items: flex-start; text-align: left; }
  .videos-home { padding: 80px 0 100px; }
  .videos-intro .btn-primary-custom { margin-left: 0; }
}
@media (max-width: 767px) {
  .video-cards { grid-template-columns: 1fr; gap: 28px; }
  .video-thumb img { aspect-ratio: 16 / 10; }
}
@media (max-width: 575px) {
  .specialties { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 20px; }
  .specialty { height: 230px; border-radius: 0 40px 0 0; padding: 16px 14px 18px; align-items: flex-end; }
  .specialty-title { font-size: 1.02rem; font-weight: 400; max-width: none; }
  .specialty-arrow { display: none; }
  .about-home-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .about-home-stats > div { min-width: 0; padding: 14px 10px; }
  .about-home-stats strong { font-size: 1.45rem; }
  .about-home-stats span { font-size: .74rem; line-height: 1.25; display: block; margin-top: 4px; }
  .patient-call .brand-mark { display: none; }
  .videos-intro { gap: 14px 16px; }
  .about-photo::before { inset: 18px -8px -12px 18px; border-radius: 0 60px 0 0; }
  .doctor-photo { border-radius: 0 60px 0 0; }
  .video-cards { grid-template-columns: 1fr; }
  .video-thumb img { aspect-ratio: 16 / 10; }
  .patient-reviews { padding: 30px 24px; border-top-right-radius: 60px; }
}

/* Cards */
.card-custom {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 24px rgba(19,62,105,.08); height: 100%; transition: transform .2s ease;
}
.card-custom:hover { transform: translateY(-4px); }
.card-custom img { width: 100%; height: 190px; object-fit: cover; }
.card-custom .card-body { padding: 22px; }
.card-custom .card-title { color: var(--navy); font-weight: 700; }

.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 28px; height: 100%;
  box-shadow: 0 8px 24px rgba(19,62,105,.08); position: relative;
}
.testimonial-card .quote-icon { color: var(--light-bg); font-size: 2.5rem; }
.testimonial-author-row { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-author { font-weight: 700; color: var(--navy); }
.testimonial-card.on-teal { background: rgba(255,255,255,.97); }

.video-embed { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 30px rgba(19,62,105,.15); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #b9cbdc; padding: 64px 0 20px; }
.site-footer h5, .site-footer h6 { color: #fff; font-weight: 700; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; color: #b9cbdc; }
.footer-links a { color: #b9cbdc; }
.footer-links a:hover { color: var(--teal); }
.footer-social a {
  display: inline-flex; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  color: #fff; align-items: center; justify-content: center; margin-right: 8px;
}
.footer-social a:hover { background: var(--teal); }
.footer-divider { border-color: rgba(255,255,255,.12); margin: 34px 0 20px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .88rem; padding-right: 90px; }
.footer-hours { white-space: pre-line; }
.footer-tagline { color: #9fe6e8; font-size: .95rem; line-height: 1.5; margin: 6px 0 18px; }
.footer-logo { max-height: 90px; max-width: 280px; object-fit: contain; background: #fff; padding: 6px 12px; border-radius: 12px; margin-bottom: 10px; } /* renkli / fotoğraflı logolar koyu zeminde bozulmadan görünsün */
.brand-logo { height: 120px; max-width: 420px; object-fit: contain; }
@media (max-width: 767px) { .brand-logo { height: 64px; max-width: 220px; } } /* telefonda menü düğmesine yer kalsın */
.certificate-img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 20px 40px rgba(19,62,105,.18); }
.testimonials-grid.single { grid-template-columns: minmax(0, 720px); justify-content: center; }
.contact-map { border-radius: 0 60px 0 0; overflow: hidden; box-shadow: 0 16px 36px rgba(12,44,77,.14); }
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; }
.contact-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.contact-socials a {
  width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--light-bg); color: var(--navy); transition: background .2s ease, color .2s ease;
}
.contact-socials a:hover { background: var(--teal); color: #fff; }
.btn-outline-custom.btn-outline-teal { border-color: var(--teal); color: var(--teal-dark); }
.btn-outline-custom.btn-outline-teal:hover { background: var(--teal); color: #fff; }
.footer-copy { color: #b9cbdc; }
@media (max-width: 575px) { .footer-bottom { padding-right: 72px; padding-bottom: 20px; } }

/* Sağ alttaki düğmeler: yol tarifi (üstte) + WhatsApp */
.float-actions { position: fixed; bottom: 24px; right: 24px; z-index: 1000; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.whatsapp-float {
  position: relative; width: 58px; height: 58px; background: #25D366;
  color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.directions-float {
  position: relative; width: 50px; height: 50px; background: var(--navy); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem; box-shadow: 0 8px 20px rgba(0,0,0,.22);
  transition: transform .2s ease, background .2s ease;
}
.directions-float:hover, .directions-float:focus-visible { color: #fff; background: var(--teal); transform: scale(1.06); }
.float-tip {
  position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%); background: var(--navy); color: #fff;
  font-size: .82rem; font-weight: 600; white-space: nowrap; padding: 6px 12px; border-radius: 8px; opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.directions-float:hover .float-tip, .directions-float:focus-visible .float-tip { opacity: 1; }
[dir="rtl"] .float-actions { right: auto; left: 24px; }
[dir="rtl"] .float-tip { right: auto; left: calc(100% + 10px); }
@media (max-width: 575px) { .float-actions { bottom: 16px; right: 16px; gap: 12px; } }
/* İletişim sayfası: haritanın üstünde yol tarifi */
.contact-map { position: relative; }
.clinic-map { width: 100%; height: 420px; z-index: 0; }
.clinic-pin span { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50% 50% 50% 0; background: var(--navy); color: #fff; transform: rotate(-45deg); box-shadow: 0 6px 16px rgba(0,0,0,.3); border: 3px solid #fff; }
.clinic-pin span i { transform: rotate(45deg); font-size: 1.1rem; }
.clinic-map .leaflet-popup-content { font-family: inherit; font-size: .92rem; line-height: 1.45; color: var(--navy); }
.clinic-map .leaflet-popup-content a { font-weight: 600; color: var(--teal); }
.whatsapp-float:hover { color: #fff; transform: scale(1.05); }

/* Page header (inner pages) */
.page-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); padding: 60px 0; margin-bottom: 10px; }
.page-header h1 { color: #fff; margin: 0; font-weight: 700; }
.breadcrumb-custom { color: #cfe0ee; }
.breadcrumb-custom a { color: var(--teal); }
.page-header-meta { color: #cfe0ee; }

/* Sidebar */
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { border-bottom: 1px solid #eee; }
.sidebar-list li a { display: block; padding: 12px 4px; color: var(--text-dark); }
.sidebar-list li a:hover, .sidebar-list li a.active { color: var(--teal-dark); }

/* Hakkımızda sayfası */
.about-sidebar {
  background: #fff; border: 1px solid #eef2f4; border-radius: var(--radius);
  padding: 24px; box-shadow: 0 10px 30px rgba(19,62,105,.08); position: sticky; top: 100px;
}
.about-sidebar .hero-photo { max-width: 100%; box-shadow: none; border: none; }
.about-stat { background: var(--light-bg); border-radius: 10px; padding: 14px 8px; }
.about-stat .num { font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.about-stat .label { font-size: .78rem; color: var(--text-muted); }
.about-sidebar-hours { border-top: 1px solid #eef2f4; padding-top: 16px; }
.about-sidebar-hours h6 { color: var(--navy); font-weight: 700; font-size: .9rem; }

.about-content { color: var(--text-muted); line-height: 1.75; }
.about-content h3 { color: var(--navy); font-weight: 700; font-size: 1.25rem; margin-top: 28px; margin-bottom: 14px; }
.about-content ul { padding-left: 0; list-style: none; }
.about-content ul li {
  position: relative; padding-left: 28px; margin-bottom: 10px;
}
.about-content ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--teal); font-weight: 700;
}
.about-content h4 { color: var(--navy); font-weight: 700; font-size: 1.05rem; margin-top: 20px; }
.cv-section { margin-top: 44px; padding-top: 36px; border-top: 1px solid #eef2f4; }
.cv-section h3 { color: var(--navy); font-weight: 700; display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.cv-section h3 i { color: var(--teal); }

/* ---------------------------------------------------------------
   Scroll ile beliren animasyonlar
--------------------------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.2,.65,.3,1), transform .8s cubic-bezier(.2,.65,.3,1);
}
.reveal.reveal-left { transform: translateX(-60px); }
.reveal.reveal-right { transform: translateX(60px); }
.reveal.reveal-zoom { transform: scale(.9); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Görsel hover efektleri */
.img-zoom { overflow: hidden; display: block; box-shadow: 0 24px 50px rgba(19,62,105,.22); }
.img-zoom img { transition: transform .8s cubic-bezier(.2,.65,.3,1); }
.img-zoom:hover img { transform: scale(1.07); }

.card-custom img { transition: transform .7s ease; }
.card-custom:hover img { transform: scale(1.07); }
.card-custom { transition: transform .3s ease, box-shadow .3s ease; }
.card-custom:hover { box-shadow: 0 18px 38px rgba(19,62,105,.16); }

.testimonial-card { transition: transform .3s ease, box-shadow .3s ease; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(12,44,77,.22); }

.btn-primary-custom, .btn-outline-custom { transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,145,148,.35); }

.hero-photo { transition: transform .6s ease; }
.hero-photo:hover { transform: scale(1.02) rotate(-.5deg); }

/* Navbar scroll gölgesi */
.main-nav { transition: box-shadow .25s ease; }
.main-nav.is-scrolled { box-shadow: 0 8px 24px rgba(19,62,105,.14); }

/* WhatsApp butonu nabız efekti */
.whatsapp-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }

/* Kayan başlık altı çizgi animasyonu */
.section-title h2 { position: relative; display: inline-block; padding-bottom: 12px; }
.section-title h2::after {
  content: ''; position: absolute; left: 50%; bottom: 0; height: 3px; width: 0;
  background: var(--teal); border-radius: 2px; transform: translateX(-50%);
  transition: width .8s ease .2s;
}
.section-title.text-lg-start h2::after { left: 0; transform: none; }
.reveal.is-visible .section-title h2::after, .section-title.reveal.is-visible h2::after { width: 60px; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-heading, .hero-bottom, .hero-scroll, .video-play, .whatsapp-float::after { animation: none; }
}

/* Editörden gelen resim, dosya ve hizalama */
.disease-content img, .about-content img, .about-body img, .certificate-text img { max-width: 100%; height: auto; border-radius: 12px; margin: 10px 0; }
.disease-content a[href*="/uploads/editor/files/"], .about-content a[href*="/uploads/editor/files/"] {
  display: inline-flex; align-items: center; gap: 6px; background: var(--light-bg); color: var(--navy);
  padding: 6px 14px; border-radius: 8px; font-weight: 600; text-decoration: none;
}
.disease-content a[href*="/uploads/editor/files/"]:hover, .about-content a[href*="/uploads/editor/files/"]:hover { background: var(--teal); color: #fff; }
.ql-align-center { text-align: center; }
.ql-align-right { text-align: right; }
.ql-align-justify { text-align: justify; }
[dir="rtl"] .ql-align-right { text-align: left; }
/* Blog kategorileri */
.blog-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.blog-cats a {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 99px;
  border: 1px solid rgba(0,0,0,.08); background: #fff; color: var(--navy); font-weight: 500; font-size: .92rem;
  text-decoration: none; transition: background .2s, color .2s, border-color .2s;
}
.blog-cats a span { background: var(--light-bg); color: var(--navy); border-radius: 99px; padding: 0 8px; font-size: .75rem; font-weight: 700; }
.blog-cats a:hover { border-color: var(--teal); color: var(--teal-dark); }
.blog-cats a.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.blog-cats a.active span { background: rgba(255,255,255,.2); color: #fff; }
.blog-cat-label { color: var(--teal-dark); font-weight: 600; }
.page-header-cat { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
/* Yayınlar ve projeler (Hakkımızda) */
.pub-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.pub-tab {
  border: 1px solid rgba(0,0,0,.1); background: #fff; color: var(--navy); border-radius: 99px; padding: 8px 16px;
  font-weight: 500; font-size: .9rem; display: inline-flex; gap: 8px; align-items: center; transition: background .2s, color .2s;
}
.pub-tab span { background: var(--light-bg); border-radius: 99px; padding: 0 8px; font-size: .75rem; font-weight: 700; }
.pub-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.pub-tab.active span { background: rgba(255,255,255,.2); color: #fff; }
.pub-public-list { list-style: none; padding: 0; margin: 0; counter-reset: pub; }
.pub-public-list li { counter-increment: pub; position: relative; padding: 14px 0 14px 44px; border-bottom: 1px solid rgba(0,0,0,.07); }
.pub-public-list li::before {
  content: counter(pub); position: absolute; left: 0; top: 14px; width: 30px; height: 30px; border-radius: 8px;
  background: var(--light-bg); color: var(--navy); font-weight: 700; font-size: .8rem; display: flex; align-items: center; justify-content: center;
}
.pub-public-list.is-collapsed li:nth-child(n+7) { display: none; }
.pub-public-title { font-weight: 600; color: var(--navy); line-height: 1.45; }
.pub-public-title a { color: inherit; text-decoration: none; }
.pub-public-title a:hover { color: var(--teal-dark); }
.pub-public-title a i { font-size: .75em; opacity: .6; }
.pub-public-meta { font-size: .88rem; color: var(--text-muted); margin-top: 4px; }
.pub-tag { display: inline-block; background: var(--light-bg); color: var(--navy); border-radius: 6px; padding: 1px 8px; font-size: .75rem; font-weight: 600; margin-left: 6px; }
.pub-more { margin-top: 14px; background: none; border: 0; color: var(--teal-dark); font-weight: 600; padding: 0; }
[dir="rtl"] .pub-public-list li { padding: 14px 44px 14px 0; }
[dir="rtl"] .pub-public-list li::before { left: auto; right: 0; }
/* Ana sayfa slider (çoklu resim / video) */
.hero-full.has-slides { justify-content: flex-end; }
.hero-slides { position: absolute; inset: 0; z-index: -1; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s ease, visibility 0s linear 1.1s; }
.hero-slide.is-active { opacity: 1; visibility: visible; transition: opacity 1.1s ease, visibility 0s; z-index: 1; }
.hero-slide-media, .hero-slide-shade { position: absolute; inset: 0; }
.hero-slide-media img, .hero-slide-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide[data-kind="image"] .hero-slide-media img { transform: scale(1.02); transition: transform 9s ease-out; }
.hero-slide[data-kind="image"].is-active .hero-slide-media img { transform: scale(1.12); }
.hero-shade-bottom { display: none; }
.hero-slide-media::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(10,35,64,.35) 0%, transparent 30%, transparent 55%, rgba(9,40,82,.9) 100%); }
.hero-slide-content {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding-top: 40px; padding-bottom: 170px; z-index: 2;
}
.hero-slide-content.align-center { align-items: center; text-align: center; }
.hero-slide-content.align-left { align-items: flex-start; text-align: left; }
.hero-slide-content.align-right { align-items: flex-end; text-align: right; }
.hero-slide-title {
  font-size: clamp(2.2rem, 4.8vw, 4.2rem); font-weight: 200; letter-spacing: .5px; line-height: 1.12; margin: 0; max-width: 900px;
  text-shadow: 0 4px 24px rgba(0,0,0,.3); color: #fff;
}
.hero-slide-text { font-size: clamp(1.02rem, 1.7vw, 1.4rem); font-weight: 300; margin: 16px 0 0; color: #e6f0f8; max-width: 720px; line-height: 1.5; }
.hero-slide-btn {
  margin-top: 28px; display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: 99px;
  background: var(--teal); color: #fff; font-weight: 500; text-decoration: none; box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: background .25s, transform .25s;
}
.hero-slide-btn:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); }
.hero-slide.is-active .hero-slide-title { animation: heroFadeUp .9s ease .25s both; }
.hero-slide.is-active .hero-slide-text { animation: heroFadeUp .9s ease .45s both; }
.hero-slide.is-active .hero-slide-btn { animation: heroFadeUp .9s ease .65s both; }
.hero-full.has-slides .hero-bottom { position: relative; z-index: 3; }
.hero-arrow {
  position: absolute; top: 50%; z-index: 4; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: #fff; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); transition: background .2s, border-color .2s;
}
.hero-arrow:hover { background: var(--teal); border-color: var(--teal); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
.hero-dots { position: absolute; left: 50%; bottom: 58px; transform: translateX(-50%); z-index: 4; display: flex; gap: 10px; }
.hero-dot { width: 46px; height: 4px; border: 0; padding: 0; border-radius: 4px; background: rgba(255,255,255,.3); overflow: hidden; position: relative; }
.hero-dot span { position: absolute; inset: 0 auto 0 0; width: 0; background: #fff; border-radius: 4px; }
.hero-dot:not(.is-active) span { width: 0 !important; }
.hero-full.has-slides .hero-scroll { z-index: 4; }
@media (max-width: 991px) {
  .hero-arrow { display: none; }
  .hero-slide-content { padding-bottom: 230px; }
  .hero-dots { bottom: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide.is-active { transition: none; }
  .hero-slide .hero-slide-media img { transition: none; transform: none !important; }
}
/* Ek yazı alanları (panelden eklenen) */
.cblock { padding: 44px 0; }
.cblock-inner { max-width: 960px; margin: 0 auto; }
.cblock-title { color: var(--navy); font-weight: 600; margin-bottom: 14px; }
.cblock-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--teal-dark); font-weight: 600; text-decoration: none; }
.cblock-link:hover { color: var(--navy); }
.cblock-boxed .cblock-inner { background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 18px; padding: 32px 36px; box-shadow: 0 16px 40px rgba(19,62,105,.08); }
.cblock-highlight { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; }
.cblock-highlight .cblock-title, .cblock-highlight .about-content, .cblock-highlight .cblock-link { color: #fff; }
.cblock-dark { background: var(--navy-deep); color: #e6f0f8; }
.cblock-dark .cblock-title, .cblock-dark .cblock-link { color: #fff; }
.cblock-dark .about-content { color: #cfdcea; }
.cblock-highlight .cblock-inner, .cblock-dark .cblock-inner { text-align: center; }
.cblock-notice { background: var(--teal); color: #fff; font-size: .92rem; padding: 9px 0; text-align: center; }
.cblock-notice .container { display: flex; flex-wrap: wrap; gap: 6px 12px; justify-content: center; align-items: center; }
.cblock-notice a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cblock-notice .cblock-link { margin: 0; font-weight: 700; }
.cblock-notice.cblock-dark { background: var(--navy-deep); }
.cblock-notice.cblock-plain, .cblock-notice.cblock-boxed { background: var(--light-bg); color: var(--navy); }
.cblock-notice.cblock-plain a, .cblock-notice.cblock-boxed a { color: var(--navy); }
/* Sabit Yazılar'dan eklenen kısa yazılar */
.cblock-inline { padding: 22px 0 0; }
.cblock-inline p { margin: 0 auto; max-width: 900px; text-align: center; color: var(--navy); font-size: 1.02rem; line-height: 1.6; background: var(--light-bg); border-radius: 14px; padding: 14px 22px; }
.footer-extra { margin: 18px 0 0; text-align: center; font-size: .92rem; color: rgba(255,255,255,.78); }
/* ==========================================================
   Online randevu
   ========================================================== */
.appt-intro { max-width: 760px; margin: 0 auto 28px; text-align: center; color: var(--text-muted); font-size: 1.05rem; }
.appt-steps { list-style: none; padding: 0; margin: 0 auto 30px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; counter-reset: s; }
.appt-steps li { display: flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 99px; background: #fff; border: 1px solid rgba(0,0,0,.08); color: var(--text-muted); font-weight: 500; font-size: .92rem; }
.appt-steps li span { width: 30px; height: 30px; border-radius: 50%; background: var(--light-bg); color: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; }
.appt-steps li.is-active { border-color: var(--teal); color: var(--navy); box-shadow: 0 8px 22px rgba(0,0,0,.06); }
.appt-steps li.is-active span { background: var(--teal); color: #fff; }
.appt-steps li.is-done { cursor: pointer; color: var(--navy); }
.appt-steps li.is-done span { background: var(--navy); color: #fff; font-size: 0; }
.appt-steps li.is-done span::before { content: '\F26E'; font-family: bootstrap-icons; font-size: 1rem; }
.appt-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.appt-main { background: #fff; border-radius: 22px; padding: 30px; box-shadow: 0 18px 50px rgba(19,62,105,.08); border: 1px solid rgba(0,0,0,.05); }
.appt-title { font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.appt-panel.is-active { animation: apptIn .35s ease both; }
@keyframes apptIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.appt-services { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.appt-service { position: relative; cursor: pointer; margin: 0; }
.appt-service input { position: absolute; opacity: 0; pointer-events: none; }
.appt-service-body { display: flex; flex-direction: column; gap: 6px; height: 100%; padding: 18px 18px 16px; border-radius: 16px; border: 2px solid rgba(0,0,0,.08); border-top: 5px solid var(--svc); background: #fff; transition: border-color .2s, box-shadow .2s, transform .2s; }
.appt-service:hover .appt-service-body { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.07); }
.appt-service input:checked + .appt-service-body { border-color: var(--svc); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.appt-service input:focus-visible + .appt-service-body { outline: 3px solid var(--teal); outline-offset: 2px; }
.appt-service strong { color: var(--navy); font-weight: 600; font-size: 1.02rem; padding-right: 22px; }
.appt-service small { color: var(--text-muted); line-height: 1.45; }
.appt-duration { margin-top: auto; font-size: .82rem; font-weight: 600; color: var(--svc); }
.appt-online { font-style: normal; font-size: .7rem; background: #ede9fe; color: #6d28d9; padding: 2px 8px; border-radius: 99px; margin-left: 4px; vertical-align: middle; }
.appt-check { position: absolute; top: 14px; right: 14px; font-size: 1.3rem; color: var(--svc); opacity: 0; transform: scale(.6); transition: .2s; }
.appt-service input:checked ~ .appt-check { opacity: 1; transform: none; }
.appt-datetime { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; }
.appt-cal { border: 1px solid rgba(0,0,0,.07); border-radius: 18px; padding: 16px; }
.appt-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.appt-cal-head strong { text-transform: capitalize; color: var(--navy); }
.appt-cal-nav { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(0,0,0,.1); background: #fff; color: var(--navy); }
.appt-cal-nav:disabled { opacity: .3; }
.appt-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.appt-wd { text-align: center; font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; padding: 4px 0; }
.appt-day { aspect-ratio: 1; border: 0; border-radius: 12px; background: #f6f8fb; color: #b5bdc8; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; padding: 0; }
.appt-day b { font-weight: 600; font-size: .95rem; }
.appt-day small { font-size: .62rem; margin-top: 3px; opacity: .75; }
.appt-day.is-open { background: var(--light-bg); color: var(--navy); cursor: pointer; transition: background .15s, color .15s, transform .15s; }
.appt-day.is-open:hover { background: color-mix(in srgb, var(--teal) 25%, #fff); transform: translateY(-1px); }
.appt-day.is-selected { background: var(--teal) !important; color: #fff !important; box-shadow: 0 8px 18px color-mix(in srgb, var(--teal) 40%, transparent); }
.appt-day.is-full b { text-decoration: line-through; }
.appt-cal-loading { grid-column: 1 / -1; text-align: center; padding: 30px 0; color: var(--teal); }
.appt-slot-date { font-weight: 600; color: var(--teal-dark); text-transform: capitalize; min-height: 1.5em; }
.appt-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 8px; max-height: 360px; overflow-y: auto; padding: 2px; }
.appt-slot { border: 1.5px solid color-mix(in srgb, var(--teal) 45%, #fff); background: #fff; color: var(--navy); border-radius: 10px; padding: 9px 0; font-weight: 600; transition: .15s; }
.appt-slot:hover:not([disabled]) { background: var(--teal); color: #fff; border-color: var(--teal); }
.appt-slot.is-selected { background: var(--teal); color: #fff; border-color: var(--teal); }
.appt-slot[disabled] { border-color: #eceff3; color: #c3cad3; background: #f8f9fb; text-decoration: line-through; }
.appt-hint { grid-column: 1 / -1; color: var(--text-muted); background: #f6f8fb; border-radius: 12px; padding: 18px; text-align: center; margin: 0; }
.appt-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.appt-btn-ghost { background: none; border: 0; color: var(--text-muted); font-weight: 500; padding: 8px 0; }
.appt-btn-ghost:hover { color: var(--navy); }
.appt-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.appt-chips label { margin: 0; cursor: pointer; }
.appt-chips input { position: absolute; opacity: 0; pointer-events: none; }
.appt-chips span { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 99px; border: 1px solid rgba(0,0,0,.12); font-size: .9rem; transition: .15s; }
.appt-chips input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }
.appt-chips input:focus-visible + span { outline: 2px solid var(--teal); outline-offset: 2px; }
.appt-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; margin-bottom: 8px; cursor: pointer; }
.appt-consent input { margin-top: 4px; width: 18px; height: 18px; flex: 0 0 18px; accent-color: var(--teal); }
.appt-link { background: none; border: 0; padding: 0; color: var(--teal-dark); text-decoration: underline; font-weight: 600; }
.appt-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.appt-error { margin-top: 18px; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; border-radius: 12px; padding: 12px 16px; font-weight: 500; }
#apptForm .is-invalid { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.12); }
.appt-summary { position: sticky; top: 110px; background: var(--navy); color: #fff; border-radius: 22px; padding: 26px; box-shadow: 0 18px 50px rgba(19,62,105,.18); }
.appt-summary h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 16px; color: #fff; }
.appt-summary dl { display: grid; grid-template-columns: 26px 1fr; gap: 12px 8px; margin: 0 0 18px; }
.appt-summary dt { color: var(--teal); }
.appt-summary dd { margin: 0; font-weight: 500; }
.appt-summary-contact { border-top: 1px solid rgba(255,255,255,.15); padding-top: 14px; font-size: .88rem; color: #cfdcea; }
.appt-summary-contact p { margin: 0 0 6px; }
.appt-summary-contact a { color: #fff; }
.appt-done { text-align: center; padding: 20px 0; }
.appt-done-icon { width: 76px; height: 76px; border-radius: 50%; background: var(--teal); color: #fff; font-size: 2.4rem; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; animation: apptPop .5s cubic-bezier(.2,1.6,.4,1) both; }
@keyframes apptPop { from { transform: scale(.3); opacity: 0; } to { transform: none; opacity: 1; } }
.appt-done h2 { color: var(--navy); font-weight: 600; }
.appt-done p { color: var(--text-muted); max-width: 520px; margin: 0 auto 16px; }
.appt-done-code { display: inline-flex; flex-direction: column; gap: 2px; background: var(--light-bg); border-radius: 14px; padding: 12px 26px; margin-bottom: 10px; }
.appt-done-code span { font-size: .78rem; color: var(--text-muted); }
.appt-done-code strong { font-size: 1.6rem; letter-spacing: .12em; color: var(--navy); font-family: ui-monospace, monospace; }
.appt-done-when { font-weight: 600; color: var(--navy) !important; }
.appt-disabled i { font-size: 3rem; color: var(--teal); display: block; margin-bottom: 12px; }
.appt-manage-code { font-size: 1.7rem; font-weight: 700; letter-spacing: .1em; color: var(--navy); font-family: ui-monospace, monospace; }
.appt-status-pill { background: color-mix(in srgb, var(--st) 12%, #fff); color: var(--st); font-weight: 700; padding: 6px 16px; border-radius: 99px; }
.appt-manage-list { display: grid; grid-template-columns: 28px 1fr; gap: 12px 8px; margin: 0; font-size: 1.02rem; }
.appt-manage-list dt { color: var(--teal); }
.appt-manage-list dd { margin: 0; color: var(--navy); }
.appt-cancel-btn { color: #b91c1c; border-color: #fecaca; background: #fff; }
.appt-cancel-btn:hover { background: #fef2f2; color: #991b1b; }
.appt-visit-picked { display: flex; align-items: center; gap: .5rem; min-height: 44px; padding: .45rem .6rem .45rem .9rem; border: 1px solid #cfe7e6; background: #f0fbfa; border-radius: 12px; color: var(--navy); font-weight: 600; }
.appt-visit-picked > i { color: var(--teal); }
.appt-visit-picked span { flex: 1; }
.appt-visit-change { border: 0; background: #fff; color: var(--teal); width: 32px; height: 32px; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.appt-visit-change:hover { background: var(--teal); color: #fff; }
.appt-cancel-box { margin-top: 1.75rem; padding: 1.25rem 1.35rem; border: 1px solid #fecaca; background: #fff7f7; border-radius: 14px; }
.appt-cancel-box h2 { color: #991b1b; }
.appt-cancel-box textarea { background: #fff; }
.appt-cancel-submit { background: #dc2626; color: #fff; border: 0; border-radius: 30px; padding: .7rem 1.5rem; font-weight: 600; }
.appt-cancel-submit:hover { background: #b91c1c; }
.appt-cancel-back { background: #fff; color: var(--navy); border: 1px solid #cbd5e1; border-radius: 30px; padding: .7rem 1.5rem; font-weight: 500; }
.appt-cancel-back:hover { background: #f1f5f9; }
@media (max-width: 991px) {
  .appt-layout { grid-template-columns: 1fr; }
  .appt-summary { position: static; order: -1; padding: 18px 20px; }
  .appt-summary dl { margin-bottom: 0; }
  .appt-summary-contact { display: none; }
  .appt-datetime { grid-template-columns: 1fr; }
  .appt-main { padding: 20px; }
}
@media (max-width: 575px) { .appt-steps li { font-size: 0; padding: 6px; } .appt-steps li span { font-size: .85rem; } }
/* Demo modu: sitenin kenarındaki "Yönetim Paneli" düğmesi */
.demo-admin-tab {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%); z-index: 1040;
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 10px 12px;
  background: var(--navy); color: #fff; text-decoration: none; border-radius: 0 14px 14px 0;
  box-shadow: 4px 8px 24px rgba(0,0,0,.22); transition: padding .2s, background .2s;
}
.demo-admin-tab i { font-size: 1.25rem; }
.demo-admin-tab span { writing-mode: vertical-rl; transform: rotate(180deg); font-weight: 600; font-size: .85rem; letter-spacing: .03em; white-space: nowrap; }
.demo-admin-tab em { font-style: normal; font-size: .62rem; font-weight: 800; letter-spacing: .08em; background: var(--teal); padding: 2px 6px; border-radius: 6px; }
.demo-admin-tab:hover, .demo-admin-tab:focus-visible { background: var(--teal-dark); color: #fff; padding-left: 16px; }
.demo-admin-tab:focus-visible { outline: 3px solid #fff; outline-offset: -5px; }
[dir="rtl"] .demo-admin-tab { left: auto; right: 0; border-radius: 14px 0 0 14px; }
@media (max-width: 575px) {
  .demo-admin-tab { top: auto; bottom: 88px; transform: none; flex-direction: row; padding: 10px 12px; }
  .demo-admin-tab span { writing-mode: horizontal-tb; transform: none; }
  .demo-admin-tab em { display: none; }
}

/* DoktorTakvimi widget ve kanal seçimi (randevu sayfası) */
.appt-channel-tabs { display: inline-flex; flex-wrap: wrap; gap: 6px; padding: 6px; background: #eef6f6; border-radius: 16px; margin: 0 0 1.5rem; }
.appt-channel-tabs button { border: 0; background: transparent; color: var(--navy); font-weight: 600; padding: .65rem 1.15rem; border-radius: 12px; display: inline-flex; align-items: center; gap: .45rem; }
.appt-channel-tabs button.is-active { background: #fff; color: var(--teal); box-shadow: 0 2px 8px rgba(19,62,105,.1); }
.appt-dt { padding: 1.5rem; }
.appt-dt-note { display: flex; gap: .5rem; align-items: flex-start; background: #f0fbfa; border: 1px solid #cfe7e6; color: var(--navy); border-radius: 12px; padding: .75rem 1rem; font-size: .95rem; margin-bottom: 1.25rem; }
.appt-dt-note i { color: var(--teal); margin-top: 2px; }
.appt-dt-widget { min-height: 220px; display: flex; justify-content: center; }
.appt-dt-widget iframe { max-width: 100% !important; }
.appt-dt-fallback { font-size: .9rem; color: #64748b; text-align: center; margin: 1rem 0 0; }
.appt-dt-fallback a { font-weight: 600; white-space: nowrap; }
@media (max-width: 575px) { .appt-channel-tabs { display: flex; } .appt-channel-tabs button { flex: 1 1 100%; justify-content: center; } .appt-dt { padding: 1rem; } }
/* =====================================================================
   Akademik site bileşenleri
   ===================================================================== */
.page-eyebrow { color: var(--teal); font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; font-size: .78rem; margin-bottom: 6px; }
.orcid-mark { display: inline-grid; place-items: center; width: 1.25em; height: 1.25em; border-radius: 50%; background: #a6ce39; color: #fff; font-size: .72em; font-weight: 800; line-height: 1; font-family: Arial, sans-serif; }
.topbar-profile .orcid-mark { font-size: .8rem; width: 18px; height: 18px; }

/* Ana sayfa: slider yokken akademik kimlik kartı */
.hero-academic { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 70%); color: #fff; padding: 90px 0 100px; }
.hero-academic::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.08), transparent 45%), radial-gradient(circle at 10% 90%, rgba(255,255,255,.05), transparent 40%); pointer-events: none; }
.hero-academic-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.hero-academic-bg iframe { width: 100%; height: 100%; }
.hero-academic-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: center; }
.hero-academic .kicker-line { color: var(--teal); }
.hero-academic h1 { font-size: clamp(2.3rem, 4.6vw, 4rem); font-weight: 300; margin: 10px 0 6px; color: #fff; letter-spacing: -.5px; }
.hero-academic-title { font-size: 1.25rem; font-weight: 500; color: var(--teal); margin-bottom: 18px; }
.hero-academic-inst { color: #d5e0ec; font-size: 1rem; line-height: 1.55; margin-bottom: 26px; }
.hero-academic-inst i { color: var(--teal); margin-right: 6px; }
.hero-academic-inst span { color: #aebfd2; font-size: .92rem; padding-left: 24px; display: inline-block; }
.hero-academic-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-academic-actions .btn-primary-custom, .hero-academic-actions .btn-outline-custom { display: inline-flex; align-items: center; gap: 8px; }
.hero-academic-photo { justify-self: center; }
.hero-academic-photo img { width: 100%; max-width: 340px; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 0 90px 0 90px; box-shadow: 0 30px 60px rgba(0,0,0,.35); border: 6px solid rgba(255,255,255,.08); }
.hero-academic-monogram { width: 260px; height: 260px; border-radius: 50%; display: grid; place-items: center; font-size: 5.5rem; font-weight: 300; color: #fff; background: rgba(255,255,255,.07); border: 2px solid rgba(255,255,255,.18); letter-spacing: 4px; }

/* Profil rozetleri (ORCID, YÖK, Scholar…) */
.profile-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.profile-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 99px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: .86rem; font-weight: 500; text-decoration: none; transition: background .2s, transform .2s; }
.profile-badge:hover { background: rgba(255,255,255,.2); color: #fff; transform: translateY(-2px); }
.profile-badge i { color: var(--teal); }
.profile-badge small { display: block; font-size: .72rem; opacity: .7; }
.section .profile-badge, .profile-card .profile-badge, .pub-sources .profile-badge { background: var(--light-bg); border-color: transparent; color: var(--navy); }
.section .profile-badge:hover, .profile-card .profile-badge:hover, .pub-sources .profile-badge:hover { background: var(--navy); color: #fff; }
.profile-badges.is-stacked { flex-direction: column; }
.profile-badges.is-stacked .profile-badge { border-radius: 12px; }

/* Bölüm başlığı + "tümünü gör" */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.section-head h2 { color: var(--navy); font-weight: 300; font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0; }
.about-home-grid.no-photo { grid-template-columns: 1fr; max-width: 900px; }

/* Öne çıkan yayın kartları */
.pub-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pub-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 10px 30px rgba(12,44,77,.07); border-top: 3px solid var(--teal); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.pub-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(12,44,77,.13); }
.pub-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.pub-card h3 { font-size: 1.02rem; font-weight: 600; line-height: 1.4; color: var(--navy); margin: 0 0 10px; }
.pub-card h3 a { color: inherit; }
.pub-card h3 a:hover { color: var(--teal-dark); }
.pub-type { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 3px 10px; border-radius: 99px; background: var(--light-bg); color: var(--navy); }
.pub-type-makale { background: #e6f0fb; color: #1d4f91; }
.pub-type-bildiri { background: #eaf7ef; color: #1f7a45; }
.pub-type-kitap { background: #fbf1e3; color: #97601a; }
.pub-year { font-weight: 800; color: var(--teal-dark); font-size: .92rem; }
.pub-authors { font-size: .88rem; color: var(--text-muted); margin: 0 0 6px; }
.pub-venue { font-size: .86rem; font-style: italic; color: var(--text-dark); margin: 0; }

/* Akademik yolculuk */
.journey { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 22px; position: relative; }
.journey-item { position: relative; padding: 22px 20px 20px; background: #fff; border: 1px solid #e8eef3; border-radius: 16px; }
.journey-dot { position: absolute; top: -18px; left: 20px; width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; box-shadow: 0 0 0 5px #fff; }
.journey-years { display: block; font-weight: 800; color: var(--teal-dark); font-size: .85rem; margin: 6px 0 6px; }
.journey-item strong { display: block; color: var(--navy); font-size: 1rem; line-height: 1.3; }
.journey-where { display: block; font-size: .84rem; color: var(--text-muted); margin-top: 6px; line-height: 1.4; }

/* Duyuru kartları */
.ann-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ann-card { display: flex; flex-direction: column; background: #fff; border-radius: 16px; padding: 24px; color: var(--text-dark); text-decoration: none; box-shadow: 0 10px 30px rgba(12,44,77,.07); transition: transform .25s, box-shadow .25s; }
.ann-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(12,44,77,.13); color: var(--text-dark); }
.ann-card time { font-size: .82rem; color: var(--teal-dark); font-weight: 700; }
.ann-card h3 { font-size: 1.1rem; color: var(--navy); font-weight: 600; margin: 10px 0; }
.ann-card p { font-size: .92rem; color: var(--text-muted); flex: 1; }

/* İletişim çağrısı */
.home-cta { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; padding: 70px 0; }
.home-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.home-cta h2 { font-weight: 300; font-size: clamp(1.5rem, 2.6vw, 2.2rem); max-width: 720px; margin: 0; color: #fff; }
.home-cta-text { color: #cfe0ee; margin: 10px 0 0; max-width: 680px; }
.home-cta-text p:last-child { margin-bottom: 0; }
.home-cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.home-cta-actions .btn-primary-custom { display: inline-flex; align-items: center; gap: 8px; }
.home-cta-mail { color: #cfe0ee; font-size: .92rem; }
.home-cta-mail:hover { color: #fff; }

/* Hakkımda: profil kartı ve özgeçmiş zaman çizelgesi */
.profile-card { text-align: left; }
.profile-monogram { aspect-ratio: 1; border-radius: 20px; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; display: grid; place-items: center; font-size: 4.5rem; font-weight: 300; letter-spacing: 3px; }
.profile-name { font-size: 1.45rem; color: var(--navy); font-weight: 700; margin: 20px 0 2px; }
.profile-title { color: var(--teal-dark); font-weight: 600; margin-bottom: 16px; }
.profile-facts { list-style: none; padding: 0; margin: 0 0 18px; }
.profile-facts li { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid #eef2f4; font-size: .92rem; }
.profile-facts li i { color: var(--teal); margin-top: 2px; }
.profile-facts small { display: block; color: var(--text-muted); }
.profile-facts a { word-break: break-all; }
.profile-sub { color: var(--navy); font-weight: 700; font-size: .9rem; margin: 20px 0 10px; }
.about-heading { color: var(--navy); font-weight: 300; margin-bottom: 18px; }
.about-stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 14px; margin-top: 36px; text-align: center; }
.cv-timeline { list-style: none; padding: 0 0 0 28px; margin: 0; border-left: 2px solid #e3eaf0; }
.cv-timeline li { position: relative; padding: 0 0 26px 18px; }
.cv-timeline li:last-child { padding-bottom: 4px; }
.cv-timeline-dot { position: absolute; left: -47px; top: -2px; width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 2px solid var(--teal); color: var(--teal-dark); display: grid; place-items: center; font-size: .95rem; }
.cv-years { display: inline-block; font-size: .8rem; font-weight: 800; color: #fff; background: var(--navy); border-radius: 99px; padding: 2px 12px; margin-bottom: 6px; }
.cv-timeline strong { display: block; color: var(--navy); font-size: 1.05rem; }
.cv-where { display: block; color: var(--text-muted); font-size: .92rem; margin-top: 2px; }
.cv-thesis { display: block; font-size: .88rem; margin-top: 6px; color: var(--text-dark); background: var(--light-bg); padding: 8px 12px; border-radius: 10px; }
.cv-thesis em { font-style: normal; font-weight: 700; color: var(--teal-dark); }

/* Yayınlar sayfası */
.pub-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 34px; padding-bottom: 20px; border-bottom: 1px solid #eef2f4; }
.pub-toolbar .pub-tabs { margin: 0; }
.pub-tabs a.pub-tab { text-decoration: none; }
.pub-filter { display: flex; gap: 10px; flex-wrap: wrap; }
.pub-filter .form-select { width: auto; min-width: 140px; border-radius: 99px; }
.pub-search { position: relative; }
.pub-search i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.pub-search .form-control { padding-left: 38px; border-radius: 99px; min-width: 260px; }
.pub-year-group { margin-bottom: 34px; }
.pub-year-head { font-size: 1.5rem; font-weight: 800; color: var(--navy); display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.pub-year-head span { font-size: .75rem; font-weight: 700; background: var(--light-bg); color: var(--text-muted); border-radius: 99px; padding: 2px 10px; }
.pub-list { list-style: none; padding: 0; margin: 0; }
.pub-item { padding: 18px 0 18px 20px; border-left: 3px solid #e8eef3; margin-bottom: 4px; transition: border-color .2s, background .2s; }
.pub-item:hover { border-left-color: var(--teal); background: linear-gradient(90deg, var(--light-bg), transparent 60%); }
.pub-title { font-size: 1.05rem; font-weight: 600; color: var(--navy); line-height: 1.4; margin: 8px 0 6px; }
.pub-title a { color: inherit; }
.pub-title a:hover { color: var(--teal-dark); }
.pub-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; font-size: .86rem; }
.pub-doi { font-weight: 700; font-size: .78rem; color: var(--teal-dark); border: 1px solid currentColor; border-radius: 99px; padding: 1px 10px; }
.pub-sources { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; padding-top: 24px; border-top: 1px solid #eef2f4; }
.empty-note { text-align: center; color: var(--text-muted); padding: 50px 10px; font-size: 1.05rem; }
.empty-note i { display: block; font-size: 2.4rem; color: #c3cfda; margin-bottom: 10px; }

/* Projeler */
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.project-card { background: #fff; border: 1px solid #e8eef3; border-radius: 16px; padding: 24px; transition: box-shadow .25s, transform .25s; }
.project-card:hover { box-shadow: 0 16px 36px rgba(12,44,77,.1); transform: translateY(-3px); }
.project-top { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; font-size: .82rem; }
.project-status { font-weight: 700; border-radius: 99px; padding: 2px 12px; font-size: .75rem; }
.project-status.is-done { background: #eaf7ef; color: #1f7a45; }
.project-status.is-ongoing { background: #fff5e0; color: #97601a; }
.project-dates { color: var(--text-muted); }
.project-card h3 { font-size: 1.05rem; color: var(--navy); font-weight: 600; line-height: 1.4; margin-bottom: 12px; }
.project-card h3 a { color: inherit; }
.project-facts { list-style: none; padding: 0; margin: 0 0 10px; display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: .88rem; color: var(--text-dark); }
.project-facts i { color: var(--teal); }
.project-team { font-size: .84rem; color: var(--text-muted); margin: 0; }

/* Dersler */
.term-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.term-nav a { padding: 6px 14px; border-radius: 99px; background: var(--light-bg); color: var(--navy); font-weight: 600; font-size: .88rem; }
.term-nav a:hover { background: var(--navy); color: #fff; }
.course-term { margin-bottom: 34px; scroll-margin-top: 110px; }
.course-term-head { font-size: 1.2rem; color: var(--navy); font-weight: 700; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.course-term-head i { color: var(--teal); }
.course-term-head span { font-size: .75rem; background: var(--light-bg); color: var(--text-muted); border-radius: 99px; padding: 2px 10px; }
.course-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid #e8eef3; border-radius: 14px; overflow: hidden; }
.course-table th { background: var(--light-bg); color: var(--navy); font-size: .8rem; text-transform: uppercase; letter-spacing: .6px; padding: 12px 16px; }
.course-table td { padding: 12px 16px; border-top: 1px solid #eef2f4; font-size: .94rem; }
.course-table tr:hover td { background: #fafcfd; }
.course-name { font-weight: 600; color: var(--navy); }

/* Dökümanlar */
.doc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.doc-card { background: #fff; border: 1px solid #e8eef3; border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 14px; scroll-margin-top: 110px; }
.doc-head { display: flex; gap: 14px; align-items: flex-start; }
.doc-icon { flex: 0 0 48px; height: 48px; border-radius: 12px; background: var(--light-bg); color: var(--navy); display: grid; place-items: center; font-size: 1.5rem; }
.doc-card h3 { font-size: 1.02rem; color: var(--navy); font-weight: 600; margin: 0 0 4px; }
.doc-file { font-size: .8rem; color: var(--text-muted); }
.doc-lock { color: #97601a; font-weight: 700; }
.doc-desc { font-size: .9rem; color: var(--text-dark); margin: 0; flex: 1; }
.doc-unlock { display: flex; gap: 8px; }
.doc-unlock .form-control { border-radius: 99px; }
.doc-unlock .btn-primary-custom, .doc-download { white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; }

/* Duyurular */
.ann-item { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid #eef2f4; scroll-margin-top: 110px; }
.ann-item:target .ann-body h2 { color: var(--teal-dark); }
.ann-date { flex: 0 0 78px; height: 84px; border-radius: 14px; background: var(--navy); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.ann-date .d { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.ann-date .m { font-size: .7rem; opacity: .85; margin-top: 4px; padding: 0 4px; line-height: 1.2; }
.ann-body h2 { font-size: 1.3rem; color: var(--navy); font-weight: 600; margin-bottom: 10px; }

/* Fotoğraflar */
.photo-tabs { margin-bottom: 28px; }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-item { position: relative; border: 0; padding: 0; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--light-bg); cursor: zoom-in; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo-item:hover img { transform: scale(1.07); }
.photo-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 12px 10px; font-size: .84rem; color: #fff; text-align: left; background: linear-gradient(transparent, rgba(0,0,0,.7)); }
.photo-modal { background: #0b1522; border: 0; border-radius: 16px; position: relative; padding: 14px; }
.photo-modal img { width: 100%; max-height: 78vh; object-fit: contain; }
.photo-modal .btn-close { position: absolute; top: 12px; right: 12px; z-index: 3; }
.photo-modal-caption { color: #cfe0ee; text-align: center; margin: 10px 0 0; min-height: 1em; }
.photo-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 1.3rem; }
.photo-nav:hover { background: rgba(255,255,255,.25); }
.photo-nav.prev { left: 16px; } .photo-nav.next { right: 16px; }

/* Ödüller */
.award-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.award-card { position: relative; background: #fff; border: 1px solid #e8eef3; border-radius: 16px; padding: 26px 24px 22px; overflow: hidden; }
.award-card::after { content: ''; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; border-radius: 50%; background: var(--light-bg); }
.award-icon { position: relative; z-index: 1; width: 48px; height: 48px; border-radius: 12px; background: var(--teal); color: #fff; display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 14px; }
.award-year { position: absolute; z-index: 1; right: 22px; top: 22px; font-weight: 800; color: var(--navy); }
.award-card h3 { font-size: 1.05rem; color: var(--navy); font-weight: 600; margin-bottom: 8px; }
.award-org { font-size: .9rem; color: var(--text-dark); margin-bottom: 4px; }
.award-country { font-size: .84rem; color: var(--text-muted); margin: 0; }

@media (max-width: 1199px) {
  .journey { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .hero-academic-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .hero-academic-photo { justify-self: start; }
  .hero-academic-photo img { max-width: 260px; }
  .hero-academic-monogram { width: 180px; height: 180px; font-size: 4rem; }
  .pub-card-grid, .ann-card-grid, .doc-grid, .award-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .hero-academic { padding: 56px 0 64px; }
  .pub-card-grid, .ann-card-grid, .doc-grid, .award-grid, .journey { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pub-search .form-control { min-width: 0; width: 100%; }
  .pub-filter, .pub-search { width: 100%; }
  .ann-item { gap: 16px; }
  .ann-date { flex-basis: 62px; height: 70px; }
  .doc-unlock { flex-direction: column; }
  .course-table th:nth-child(3), .course-table td:nth-child(3) { display: none; }
}
/* Ders Notları */
.note-course { margin-bottom: 36px; }
.note-list { display: grid; gap: 12px; }
.note-item { display: grid; grid-template-columns: 48px 1fr auto; gap: 16px; align-items: center; background: #fff; border: 1px solid #e8eef3; border-radius: 16px; padding: 16px 18px; scroll-margin-top: 110px; transition: box-shadow .2s, border-color .2s; }
.note-item:hover { border-color: var(--teal); box-shadow: 0 10px 26px rgba(12,44,77,.08); }
.note-item:target { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(200,162,74,.25); }
.note-body h3 { font-size: 1.02rem; color: var(--navy); font-weight: 600; margin: 0 0 4px; }
.note-body .doc-desc { margin: 0 0 4px; font-size: .88rem; color: var(--text-muted); }
.doc-open { color: #1f7a45; font-weight: 700; }
.note-action .doc-unlock { min-width: 300px; }

/* Video Galerisi */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-item { display: flex; flex-direction: column; text-align: left; background: #fff; border: 1px solid #e8eef3; border-radius: 16px; overflow: hidden; padding: 0; color: var(--text-dark); text-decoration: none; transition: transform .25s, box-shadow .25s; }
.video-item:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(12,44,77,.13); color: var(--text-dark); }
.video-item-thumb { position: relative; display: block; aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); overflow: hidden; }
.video-item-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.video-item:hover .video-item-thumb img { transform: scale(1.06); }
.video-item-ph { position: absolute; inset: 0; display: grid; place-items: center; font-size: 2.4rem; color: rgba(255,255,255,.35); }
.video-item-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--navy); display: grid; place-items: center; font-size: 2rem; box-shadow: 0 8px 24px rgba(0,0,0,.3); transition: transform .25s; }
.video-item:hover .video-item-play { transform: translate(-50%, -50%) scale(1.1); background: var(--teal); color: #fff; }
.video-item-text { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; }
.video-item-text strong { color: var(--navy); font-size: 1rem; line-height: 1.35; }
.video-item-text small { color: var(--text-muted); font-size: .86rem; }
#videoModalBody iframe, #videoModalBody video { width: 100%; height: 100%; border: 0; border-radius: 10px; background: #000; }

/* Galeri giriş sayfası */
.gallery-switch { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery-switch-card { display: flex; align-items: center; gap: 18px; padding: 26px 28px; border-radius: 18px; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; text-decoration: none; transition: transform .25s, box-shadow .25s; }
.gallery-switch-card:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 38px rgba(12,44,77,.25); }
.gallery-switch-card > i:first-child { font-size: 2rem; color: var(--teal); }
.gallery-switch-card span { flex: 1; }
.gallery-switch-card strong { display: block; font-size: 1.2rem; font-weight: 600; }
.gallery-switch-card small { color: #cfe0ee; }
a.photo-item { display: block; }

@media (max-width: 991px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) {
  .video-grid, .gallery-switch { grid-template-columns: 1fr; }
  .note-item { grid-template-columns: 40px 1fr; }
  .note-action { grid-column: 1 / -1; }
  .note-action .doc-unlock { min-width: 0; }
}