@charset "UTF-8";
/* doktorv2 — Token bridge + mega menu + search overlay (doktor markup'ı assets/css/style.css'te) */

:root{
  --d2-accent: #28b6f6;       /* Medsky theme blue */
  --d2-accent-deep: #40a79b;
  --d2-ink: #11283a;
  --d2-ink-mute: #6b7c8c;
  --d2-line: #e7eef3;
  --d2-bg-soft: #f5f9fc;
}

section.content-spacer,
.content-spacer {
  display: block !important;
  width: 100% !important;
  height: var(--spacer-height, 80px) !important;
  min-height: var(--spacer-height, 80px) !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff !important;
  position: relative !important;
  z-index: 100 !important;
  clear: both !important;
  flex: 0 0 auto !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.content-spacer::before,
.content-spacer__fill {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: #fff !important;
  z-index: 2;
  pointer-events: none;
}

.content-spacer + footer,
.content-spacer + .footer,
.content-spacer + #footerParallax {
  position: relative;
  z-index: 0;
}

.header.header-topbar .top-bar .block-right {
  gap: 18px;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.header-social-link i {
  font-size: 14px;
  line-height: 1;
}

.header-social-link:hover,
.header-social-link:focus {
  background: var(--d2-accent-deep);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1199.98px) {
  .header.header-topbar .top-bar .top-contact {
    gap: 12px;
  }

  .header-social-link {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 767.98px) {
  section.content-spacer,
  .content-spacer {
    display: block !important;
    height: var(--spacer-height, 80px) !important;
    min-height: var(--spacer-height, 80px) !important;
  }
}

/* Mega menu — Medsky native .navbar-nav .mega-dropdown markup. CSS style.css'te tanımlı; sadece CTA satırı + ufak hover renk düzeltmesi. */
.header .navbar-nav .nav-item.active > a,
.header .navbar-nav .nav-item:hover > a { color: var(--d2-accent); }
.header .navbar-nav .dropdown-menu li a:hover,
.header .navbar-nav .dropdown-menu li.current > a { color: var(--d2-accent); }
.header .navbar-nav li.has-dropdown.mega-dropdown > .dropdown-menu .row .menu-head { color: white; }
.header .navbar-nav li.has-dropdown.mega-dropdown > .dropdown-menu .row ul li a {
  padding-left: 18px;
}

@media (min-width: 992px) {
  .header .navbar-nav > li.has-dropdown > ul.dropdown-menu {
    background-color: var(--global--color-secondary);
  }
}

/* Mega menu — şık logo watermark (sağ-alt köşede yarı saydam, içerikle etkileşmez)
   NOT: .dropdown-menu'nun position/display/overflow değerlerine dokunma — Bootstrap'in absolute
   konumlandırması bozulur. Watermark'ı background-image olarak doğrudan uygula. */
.header .navbar-nav li.has-dropdown.mega-dropdown > .dropdown-menu {
  background-color: var(--global--color-secondary);
  background-image:
    linear-gradient(
      color-mix(in srgb, var(--global--color-secondary) 88%, transparent),
      color-mix(in srgb, var(--global--color-secondary) 88%, transparent)
    ),
    url("images/logo/menu-logo.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center, right -30px bottom -30px;
  background-size: cover, 280px auto;
}

/* Desktop mega menu jitter fix:
   style.css hover state translateY(0) kuralı, merkezlenen mega menülerdeki translateX(-50%)'yi ezip
   sağ-sol titremeye sebep oluyordu. X/Y transform'u birlikte sabitliyoruz. */
@media (min-width: 992px) {
  .header .navbar-nav li.has-dropdown.mega-dropdown > .dropdown-menu {
    will-change: transform, opacity;
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  }

  .header .navbar-nav li.has-dropdown.mega-dropdown > .dropdown-menu.mega-cols-3,
  .header .navbar-nav li.has-dropdown.mega-dropdown > .dropdown-menu.mega-cols-4 {
    transform: translate3d(-50%, 20px, 0);
  }

  .header .navbar-nav li.has-dropdown.mega-dropdown:hover > .dropdown-menu.mega-cols-3,
  .header .navbar-nav li.has-dropdown.mega-dropdown:hover > .dropdown-menu.mega-cols-4,
  .header .navbar-nav li.has-dropdown.mega-dropdown.show > .dropdown-menu.mega-cols-3,
  .header .navbar-nav li.has-dropdown.mega-dropdown.show > .dropdown-menu.mega-cols-4 {
    transform: translate3d(-50%, 0, 0);
  }
}

.mega-cta-row {
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  margin-top: 14px; padding: 14px 40px; border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* services-content modulu — tek sutun akis, H3 listesi iceri girintili */
.services-content .services-content-list {
  margin-top: 24px;
  padding-left: 32px;
  border-left: 2px solid var(--d2-line);
}
.services-content .services-content-item { margin-bottom: 20px; }
.services-content .services-content-item:last-child { margin-bottom: 0; }
.services-content .services-content-item h3 { margin-bottom: 8px; }
.services-content .services-content-item h3 a { color: inherit; }
.services-content .services-content-item h3 a:hover { color: var(--d2-accent); }
.services-content .services-content-cta { margin-top: 28px; }
.services-content .services-content-media { position: relative; }
.services-content .services-content-media .img-popup { display: block; }
.services-content .services-content-media img {
  width: 100%; height: auto; display: block; border-radius: 8px;
}

/* Clean text — H3 icerigindeki WYSIWYG linkleri tema butonu gibi goster */
.clean-text .clean-text-title a {
  color: inherit;
  text-decoration: none;
}

.clean-text .clean-text-title a:hover,
.clean-text .clean-text-title a:focus {
  color: var(--global--color-primary, #28b6f6);
}

.clean-text .clean-text-body a,
.clean-text .clean-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 26px;
  border-radius: 4px;
  background: var(--global--color-primary, #28b6f6);
  color: #fff !important;
  font-family: var(--global--font-heading, "Montserrat", sans-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 10px 20px rgba(40, 182, 246, .22);
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.clean-text .clean-text-body a::after,
.clean-text .clean-text-link::after {
  content: "\e904";
  margin-left: 10px;
  font-family: "medsky";
  font-size: 12px;
  line-height: 1;
}

.clean-text .clean-text-body a:hover,
.clean-text .clean-text-body a:focus,
.clean-text .clean-text-link:hover,
.clean-text .clean-text-link:focus {
  background: var(--global--color-secondary, #021a42);
  color: #fff !important;
  box-shadow: 0 14px 26px rgba(2, 26, 66, .18);
  transform: translateY(-1px);
}
.features.features-2 .features-img > .img-popup { display: block; }
.features.features-2 .features-img > .img-popup > img { display: block; width: 100%; }
.contact.contact-4 .img-card .bg-section > .img-popup { display: block; width: 100%; height: 100%; }
.contact.contact-4 .img-card .bg-section > .img-popup > img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* services-content-2 — H2/H3 + H3 contentindeki <li> info-card tablo satiri gibi */
.services-content-2 .services-content-2-list { margin-top: 24px; }
.services-content-2 .services-content-2-item {
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 2px solid var(--d2-line);
}
.services-content-2 .services-content-2-item:last-child { margin-bottom: 0; }
.services-content-2 .services-content-2-title { margin-bottom: 12px; }
.services-content-2 .services-content-2-body .entry-table { margin-top: 0; }
@media (max-width: 575.98px) {
  .services-content-2 .services-content-2-item { padding-left: 14px; }
}
@media (max-width: 575.98px) {
  .services-content .services-content-list { padding-left: 18px; }
}
.mega-cta-row .mega-cta-text { color: rgba(255, 255, 255, 0.5); font-size: 13px; }

/* Slider departments */
.slider.slider-2.slider-departments-module .slide-text-2 {
  font-weight: 900;
}

/* Blog list - kategori filtre satiri ayrimi */
.blog.blog-grid#blog .blog-category-filter {
  margin-bottom: 28px !important;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--d2-line);
}

@media (max-width: 767.98px) {
  .blog.blog-grid#blog .blog-category-filter {
    margin-bottom: 20px !important;
    padding-bottom: 14px;
  }
}

/* Module language dropdown */
.module-language { position: relative; cursor: pointer; }
.module-language .selected { display:inline-flex; align-items:center; gap:6px; }
.module-language .lang-list {
  position:absolute; right:0; top:100%; margin-top:6px;
  background:#fff; box-shadow: 0 8px 24px rgba(17,40,58,.12);
  min-width: 140px; padding: 6px 0; z-index: 99; display: none;
}
.module-language.open .lang-list { display: block; }
.module-language .lang-list ul { list-style:none; margin:0; padding:0; }
.module-language .lang-list a {
  display:block; padding: 7px 14px; color: var(--d2-ink); text-decoration:none;
  font-size:13px; text-transform: uppercase; letter-spacing: .04em;
}
.module-language .lang-list a:hover { background: var(--d2-bg-soft); color: var(--d2-accent); }

/* Search overlay */
.cms-search-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(17,40,58,.96); backdrop-filter: blur(8px); display: flex; align-items: flex-start; justify-content: center; padding: 80px 24px 24px; }
.cms-search-overlay[hidden] { display: none; }
.cms-search-close { position: absolute; top: 24px; right: 24px; background: transparent; border: 1px solid rgba(255,255,255,.2); color: #fff; width: 44px; height: 44px; font-size: 28px; line-height: 1; cursor: pointer; border-radius: 50%; }
.cms-search-close:hover { border-color: var(--d2-accent); background: rgba(40,182,246,.15); }
.cms-search-inner { width: 100%; max-width: 780px; }
.cms-search-form { display: flex; align-items: stretch; border-bottom: 2px solid rgba(255,255,255,.2); padding-bottom: 14px; margin-bottom: 14px; }
.cms-search-form input { flex: 1; background: transparent; border: none; outline: none; color: #fff; font-size: 36px; padding: 8px 0; }
.cms-search-form input::placeholder { color: rgba(255,255,255,.35); }
.cms-search-go { background: transparent; border: none; color: var(--d2-accent); font-weight: 600; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; padding: 0 14px; align-self: center; }
.cms-search-go:hover { color: #fff; }
.cms-search-results { display: flex; flex-direction: column; gap: 14px; color: #fff; max-height: 60vh; overflow-y: auto; }
.cms-search-group-title { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--d2-accent); font-weight: 600; }
.cms-search-item { display: block; padding: 12px 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); text-decoration: none; color: #fff; border-radius: 4px; }
.cms-search-item:hover { border-color: var(--d2-accent); background: rgba(40,182,246,.08); }
.cms-search-item-title { font-weight: 600; font-size: 16px; color: #fff; }
.cms-search-item-snippet { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 4px; }
.cms-search-hint { color: rgba(255,255,255,.45); font-size: 13px; text-align: center; padding: 24px; }
.cms-search-empty { color: rgba(255,255,255,.55); font-size: 14px; text-align: center; padding: 24px; }
@media (max-width: 780px) { .cms-search-form input { font-size: 24px; } }

/* Header CTA buttons */
.header .navbar .module-holder {
  gap: 10px;
}

.header .navbar .module-holder .module-search {
  margin-right: 8px;
}

.header .navbar .module-contact .btn.cms-header-call,
.header .navbar .module-contact .btn.cms-header-appointment {
  display: inline-flex !important;
  width: auto !important;
  min-width: 142px;
  height: 44px !important;
  padding: 0 15px !important;
  border-radius: 999px;
  gap: 8px;
  box-shadow: 0 10px 22px rgba(10, 42, 72, .12);
  text-transform: none;
  white-space: nowrap;
}

.header .navbar .module-contact .btn.cms-header-call {
  background: #41a69b !important;
  color: #fff !important;
}

.header .navbar .module-contact .btn.cms-header-call:hover,
.header .navbar .module-contact .btn.cms-header-call:focus {
  background: #348b82 !important;
  color: #fff !important;
}

.header .navbar .module-contact .btn.cms-header-appointment {
  background: #0b2b52 !important;
  color: #fff !important;
}

.header .navbar .module-contact .btn.cms-header-appointment:hover,
.header .navbar .module-contact .btn.cms-header-appointment:focus {
  background: #123a68 !important;
  color: #fff !important;
}

.header .navbar .module-contact .btn.cms-header-call i,
.header .navbar .module-contact .btn.cms-header-appointment i {
  color: inherit !important;
  font-size: 13px;
  margin-left: 0;
}

@media (min-width: 992px) and (max-width: 1320px) {
  .header .navbar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header .navbar-brand {
    margin-right: 16px;
  }

  .header .navbar .navbar-nav > li {
    margin-right: 10px;
  }

  .header .navbar .navbar-nav > li > a {
    font-size: 13px;
  }

  .header .navbar .module-holder {
    margin-left: 10px;
    gap: 7px;
  }

  .header .navbar .module-holder .module-search {
    display: none;
  }

  .header .navbar .module-contact .btn.cms-header-call,
  .header .navbar .module-contact .btn.cms-header-appointment {
    min-width: 0;
    height: 40px !important;
    padding: 0 12px !important;
    font-size: 13px;
  }
}

@media (min-width: 992px) and (max-width: 1120px) {
  .header .navbar .module-contact .btn.cms-header-call,
  .header .navbar .module-contact .btn.cms-header-appointment {
    width: 40px !important;
    min-width: 40px;
    padding: 0 !important;
    overflow: hidden;
    color: transparent !important;
  }

  .header .navbar .module-contact .btn.cms-header-call i,
  .header .navbar .module-contact .btn.cms-header-appointment i {
    color: #fff !important;
    margin-right: 0;
  }
}

/* Btcnc framework crumb fallback (h1 layouts'tan gelirse) — doktorv2 page-title kullanır */
.crumb { display: none; }

/* Hide preloader (eğer index.html'in preloader'ı kalırsa) */
.preloader { display: none !important; }

/* Page-title (inner sayfa hero) — doktorv2 page-title section'ı */
.page-title { background-size: cover; background-position: center; padding: 100px 0 80px; color: #fff; position: relative; }
.page-title::before { content:''; position:absolute; inset:0; background: linear-gradient(120deg, rgba(17,40,58,.85), rgba(40,182,246,.55)); }
.page-title > .container { position: relative; z-index: 2; }
.page-title h1 { color: #fff; font-size: clamp(32px, 5vw, 56px); font-weight: 700; margin: 0 0 12px; }
.page-title .breadcrumb { background: transparent; padding: 0; color: rgba(255,255,255,.85); }
.page-title .breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.page-title .breadcrumb a:hover { color: #fff; }

/* Hiyerarşi bridge — markup'ta h3 kullanılan yerler için h4 stilleri (semantik h3, görsel h4 davranışı) */
.team-member .team-content .team-title h3 {
  font-family: var(--global--font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 3px;
  text-transform: capitalize;
}
.team-member .team-content .team-title h3 a { color: var(--global--color-secondary-darken); }
.team-member .team-content .team-title h3 a:hover { color: var(--global--color-primary); }

/* CTA #3 — process panel başlığı h3 (HTML h5'ti, hiyerarşi için h3) */
.processes .process-panel .process-body .process-content h3 {
  font-family: var(--global--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--global--color-secondary-darken-alt);
  line-height: 28px;
  margin-bottom: 16px;
  text-transform: capitalize;
}

/* Contact #2 — card-heading h3 (HTML h5'ti) */
/* ===========================================================
   QnA Module (Doktora Soru Sor) — Medsky/doktorv2 görsel dilinde
   =========================================================== */
.qna-section {
  position: relative;
  padding: 100px 0;
  background: var(--global--color-white, #fff);
}
.qna-section > .bg-section {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: .35;
}
.qna-section > .bg-section img {
  width: 100%; height: 100%; object-fit: cover;
}
.qna-section > .container { position: relative; z-index: 1; }

/* ---- Üst başlık theme heading-1 zaten style.css'ten geliyor ---- */

/* ---- Intro row (Privacy + CTA) ---- */
.qna-section .qna-intro-row {
  margin-top: 30px;
  margin-bottom: 50px;
  align-items: stretch;
}
.qna-section .qna-intro-row > [class^="col"] { display: flex; }

/* Privacy panel */
.qna-section .qna-privacy {
  display: flex; gap: 20px; align-items: flex-start;
  flex: 1;
  background: #fff;
  border: 1px solid var(--global--color-border, #ebebeb);
  border-left: 4px solid var(--global--color-primary, #28b6f6);
  padding: 28px 30px;
  box-shadow: 0 5px 30px 0 rgba(9, 29, 62, 0.06);
}
.qna-section .qna-privacy-icon {
  flex: 0 0 50px; width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--global--color-primary-light, #e6f8fb);
  color: var(--global--color-primary, #28b6f6);
  font-size: 20px;
}
.qna-section .qna-privacy-body { flex: 1; }
.qna-section .qna-privacy-title {
  font-family: var(--global--font-heading, "Montserrat", sans-serif);
  font-size: 16px; font-weight: 700; line-height: 1.4;
  color: var(--global--color-secondary-darken, #021a42);
  margin: 0 0 8px;
}
.qna-section .qna-privacy-body p {
  font-family: var(--global--font-body, "Roboto", sans-serif);
  font-size: 14px; line-height: 1.7; color: var(--global--color-body, #9094a3);
  margin: 0;
}

/* CTA card */
.qna-section .qna-cta-card {
  flex: 1;
  background: linear-gradient(135deg, #40a89b, #9797e8);
  color: #fff;
  padding: 30px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 40px 0 rgba(40, 182, 246, 0.25);
}
.qna-section .qna-cta-card::before {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.qna-section .qna-cta-card::after {
  content: ''; position: absolute; left: -30px; bottom: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.qna-section .qna-cta-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: 50%; background: rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  position: relative; z-index: 1;
}
.qna-section .qna-cta-card h5 {
  font-family: var(--global--font-heading, "Montserrat", sans-serif);
  font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 8px;
  position: relative; z-index: 1;
}
.qna-section .qna-cta-card p {
  font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.85);
  margin: 0 0 22px;
  position: relative; z-index: 1;
}
.qna-section .qna-cta-card .btn { position: relative; z-index: 1; }

/* ---- Form card ---- */
.qna-section .qna-form-card { margin-bottom: 50px; }
.qna-section .qna-form-card .contact-card {
  background: #fff;
  box-shadow: 0 5px 83px 0 rgba(9, 29, 62, 0.08);
  padding: 40px;
  border: 1px solid var(--global--color-border, #ebebeb);
}
.qna-section .qna-form-card .contact-body { padding: 0; }
.qna-section .qna-form-card .card-heading {
  font-family: var(--global--font-heading, "Montserrat", sans-serif);
  font-size: 24px; font-weight: 700; color: var(--global--color-secondary-darken, #021a42);
  margin: 0 0 8px; text-transform: capitalize;
}
.qna-section .qna-form-card .card-desc {
  font-size: 14px; line-height: 1.7; color: var(--global--color-body, #9094a3);
  margin: 0 0 24px;
}
.qna-section .qna-form .row > [class^="col"] { margin-bottom: 14px; }
.qna-section .qna-form .form-control { background: var(--global--color-gray, #f5f5f5); border: 0; padding: 14px 18px; font-size: 14px; }
.qna-section .qna-form-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 6px; }

/* KVKK */
.qna-section .qna-kvkk-label {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; line-height: 1.6; color: var(--global--color-body, #9094a3);
  cursor: pointer; margin: 0;
}
.qna-section .qna-kvkk-label input { margin-top: 3px; flex: 0 0 auto; }
.qna-section .qna-kvkk-label a { color: var(--global--color-primary, #28b6f6); text-decoration: underline; }

/* Result */
.qna-section .qna-result { font-size: 14px; line-height: 1.6; margin-top: 8px; padding: 0; }
.qna-section .qna-result.is-success { color: #0a7d3b; background: #e6f8ef; padding: 14px 18px; border-left: 3px solid #0a7d3b; }
.qna-section .qna-result.is-error   { color: #b00020; background: #fdecec; padding: 14px 18px; border-left: 3px solid #b00020; }

/* ---- Threads list header ---- */
.qna-section .qna-threads { margin-top: 30px; }
.qna-section .qna-threads-header {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 20px; margin-bottom: 30px;
  border-bottom: 2px solid var(--global--color-border, #ebebeb);
}
.qna-section .qna-threads-header h3 {
  font-family: var(--global--font-heading, "Montserrat", sans-serif);
  font-size: 22px; font-weight: 700; color: var(--global--color-secondary-darken, #021a42);
  margin: 0; text-transform: capitalize;
}
.qna-section .qna-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 28px; padding: 0 10px;
  background: var(--global--color-primary, #28b6f6); color: #fff;
  font-size: 13px; font-weight: 700;
  border-radius: 14px;
}

/* ---- Single thread card ---- */
.qna-section .qna-thread {
  background: #fff;
  border: 1px solid var(--global--color-border, #ebebeb);
  margin-bottom: 24px;
  box-shadow: 0 3px 30px 0 rgba(9, 29, 62, 0.05);
  transition: box-shadow 0.3s ease;
}
.qna-section .qna-thread:hover {
  box-shadow: 0 8px 50px 0 rgba(9, 29, 62, 0.10);
}

/* Thread question header */
.qna-section .qna-thread-head {
  display: flex; gap: 18px; align-items: center;
  padding: 22px 30px;
  background: linear-gradient(135deg, var(--global--color-primary-light, #e6f8fb), #fff);
  border-bottom: 1px solid var(--global--color-border, #ebebeb);
}
.qna-section .qna-q-badge {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--global--color-primary, #28b6f6); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(40, 182, 246, 0.3);
}
.qna-section .qna-thread-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.qna-section .qna-thread-tag {
  font-family: var(--global--font-heading, "Montserrat", sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--global--color-primary, #28b6f6); text-transform: uppercase;
}
.qna-section .qna-thread-date {
  font-size: 13px; color: var(--global--color-body, #9094a3);
}

.qna-section .qna-thread-question {
  padding: 24px 30px;
  border-bottom: 1px solid var(--global--color-border, #ebebeb);
}
.qna-section .qna-thread-question p {
  font-family: var(--global--font-body, "Roboto", sans-serif);
  font-size: 16px; line-height: 1.8;
  color: var(--global--color-secondary-darken, #021a42);
  margin: 0;
  white-space: pre-wrap; word-wrap: break-word;
  font-weight: 500;
}

/* Replies */
.qna-section .qna-replies { padding: 0; }
.qna-section .qna-reply {
  display: flex; gap: 18px;
  padding: 22px 30px;
  border-bottom: 1px solid var(--global--color-border, #ebebeb);
  position: relative;
}
.qna-section .qna-reply:last-child { border-bottom: none; }

.qna-section .qna-reply--doctor {
  background: linear-gradient(90deg, var(--global--color-primary-light, #e6f8fb), #fff);
  border-left: 3px solid var(--global--color-primary, #28b6f6);
}
.qna-section .qna-reply--visitor {
  background: #fafbfc;
  border-left: 3px solid #d4dce4;
}

.qna-section .qna-reply-avatar {
  flex: 0 0 52px; width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.qna-section .qna-reply-avatar img { width: 100%; height: 100%; object-fit: cover; }
.qna-section .qna-reply--doctor .qna-reply-avatar {
  background: var(--global--color-primary, #28b6f6); color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--global--color-primary, #28b6f6);
}
.qna-section .qna-reply--visitor .qna-reply-avatar {
  background: #e9ecef; color: #6c757d;
}

.qna-section .qna-reply-content { flex: 1; min-width: 0; }
.qna-section .qna-reply-meta {
  display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap;
  margin-bottom: 10px;
}
.qna-section .qna-reply-author {
  font-family: var(--global--font-heading, "Montserrat", sans-serif);
  font-size: 15px; font-weight: 700; margin: 0;
  display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap;
}
.qna-section .qna-reply-position {
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--global--color-primary, #28b6f6); text-transform: uppercase;
}
.qna-section .qna-reply-name { color: var(--global--color-secondary-darken, #021a42); }
.qna-section .qna-reply--visitor .qna-reply-name { color: var(--global--color-secondary-darken, #021a42); font-style: italic; opacity: 0.85; }

.qna-section .qna-doctor-badge {
  display: inline-flex; align-items: center;
  background: var(--global--color-primary, #28b6f6); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 3px;
}
.qna-section .qna-reply-date {
  font-size: 12px; color: var(--global--color-body, #9094a3);
}
.qna-section .qna-reply-body {
  font-family: var(--global--font-body, "Roboto", sans-serif);
  font-size: 14.5px; line-height: 1.75; color: var(--global--color-body, #5d6677);
  white-space: pre-wrap; word-wrap: break-word;
}

/* Thread foot */
.qna-section .qna-thread-foot {
  padding: 16px 30px;
  background: #fafbfc;
  border-top: 1px solid var(--global--color-border, #ebebeb);
}
.qna-section .qna-reply-toggle {
  background: transparent; border: none; cursor: pointer;
  font-family: var(--global--font-heading, "Montserrat", sans-serif);
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--global--color-primary, #28b6f6);
  padding: 6px 0; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.qna-section .qna-reply-toggle i { font-size: 14px; }
.qna-section .qna-reply-toggle:hover,
.qna-section .qna-reply-toggle.is-active { color: var(--global--color-secondary-darken, #021a42); }

.qna-section .qna-reply-form {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px dashed var(--global--color-border, #ebebeb);
}

/* Empty state */
.qna-section .qna-empty-state {
  text-align: center; padding: 60px 20px;
  background: #fff;
  border: 1px dashed var(--global--color-border, #ebebeb);
}
.qna-section .qna-empty-state i {
  font-size: 56px; color: var(--global--color-primary, #28b6f6);
  opacity: 0.5; margin-bottom: 16px; display: block;
}
.qna-section .qna-empty-state h4 {
  font-family: var(--global--font-heading, "Montserrat", sans-serif);
  font-size: 20px; font-weight: 700;
  color: var(--global--color-secondary-darken, #021a42);
  margin: 0 0 8px;
}
.qna-section .qna-empty-state p {
  font-size: 14px; color: var(--global--color-body, #9094a3); margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .qna-section { padding: 60px 0; }
  .qna-section .qna-intro-row > [class^="col"] { margin-bottom: 18px; }
}
@media (max-width: 767.98px) {
  .qna-section .qna-privacy,
  .qna-section .qna-cta-card,
  .qna-section .qna-form-card .contact-card { padding: 22px; }
  .qna-section .qna-thread-head,
  .qna-section .qna-thread-question,
  .qna-section .qna-reply,
  .qna-section .qna-thread-foot { padding-left: 18px; padding-right: 18px; }
  .qna-section .qna-reply { gap: 12px; }
  .qna-section .qna-reply-avatar,
  .qna-section .qna-q-badge { flex: 0 0 42px; width: 42px; height: 42px; font-size: 16px; }
  .qna-section .qna-form-card .card-heading { font-size: 20px; }
}

.contact-card .contact-body h3.card-heading {
  color: #021a42;
  font-family: var(--global--font-heading);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.kvkk-popup[hidden] {
  display: none !important;
}

.kvkk-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.kvkk-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 26, 66, .72);
  backdrop-filter: blur(6px);
}

.kvkk-popup__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(920px, 100%);
  height: min(760px, 86vh);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(2, 26, 66, .32);
}

.kvkk-popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid #e7eef3;
}

.kvkk-popup__head h3 {
  margin: 0;
  color: var(--d2-ink);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.kvkk-popup__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: #f2f6fa;
  color: var(--d2-ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.kvkk-popup__close:hover,
.kvkk-popup__close:focus {
  background: var(--global--color-primary, #28b6f6);
  color: #fff;
}

.kvkk-popup__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  background: #fff;
  padding: 26px;
}

.kvkk-popup__content {
  color: var(--d2-ink);
  font-size: 15px;
  line-height: 1.75;
}

.kvkk-popup__content h2 {
  margin: 0 0 18px;
  color: var(--d2-ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  text-transform: none;
}

.kvkk-popup__content h3,
.kvkk-popup__content h4 {
  margin-top: 22px;
  color: var(--d2-ink);
  text-transform: none;
}

.kvkk-popup__content p,
.kvkk-popup__content li {
  color: var(--d2-ink-mute);
}

.kvkk-popup__content > :last-child,
.kvkk-popup__content article > :last-child,
.kvkk-popup__content main > :last-child {
  margin-bottom: 0;
}

.kvkk-popup-open {
  overflow: hidden;
}

.donations.donations-1 .accordion .card .card-heading .card-link {
  text-transform: none !important;
}

/* ---- Education Card ---- */
.team-single.education-card-module {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.team-single.education-card-module .entry-bio.entry-education {
  border: 1px solid #dbe8f1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(2, 26, 66, .1);
  padding: 38px 34px 34px;
}

.team-single.education-card-module .entry-bio.entry-education .entry-heading {
  color: var(--d2-ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.team-single.education-card-module .entry-bio.entry-education .entry-desc {
  color: var(--d2-ink-mute);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.team-single.education-card-module .education-panels {
  display: grid;
  gap: 16px;
}

.team-single.education-card-module .education-panel {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.team-single.education-card-module .education-year {
  display: flex;
  align-items: flex-start;
}

.team-single.education-card-module .education-year .year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #bfe5fb;
  border-radius: 6px;
  background: #e8f7ff;
  color: #075aa9;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.team-single.education-card-module .education-body {
  position: relative;
  border: 1px solid #dbe8f1;
  border-radius: 8px;
  background: #fff;
  padding: 20px 20px 18px 26px;
  box-shadow: 0 14px 36px rgba(2, 26, 66, .08);
}

.team-single.education-card-module .education-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--d2-accent), #075aa9);
}

.team-single.education-card-module .education-body .bullet {
  position: absolute;
  left: -10px;
  top: 22px;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--d2-accent);
  box-shadow: 0 0 0 3px rgba(40, 182, 246, .25);
}

.team-single.education-card-module .education-body h3 {
  margin-bottom: 8px;
  color: var(--d2-ink);
  font-size: 21px;
  line-height: 1.35;
  text-transform: none;
}

.team-single.education-card-module .education-body h3 a {
  color: inherit;
  text-decoration: none;
}

.team-single.education-card-module .education-body h3 a:hover {
  color: var(--d2-accent-deep);
}

.team-single.education-card-module .education-body p {
  margin: 0;
  color: var(--d2-ink-mute);
  font-size: 15px;
  line-height: 1.7;
}

@media screen and (max-width: 767.98px) {
  .team-single.education-card-module .entry-bio.entry-education {
    padding: 24px 16px 20px;
  }
  .team-single.education-card-module .education-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .team-single.education-card-module .education-year {
    align-items: center;
  }
  .team-single.education-card-module .education-body {
    padding: 18px 14px 14px 20px;
  }
}

/* ===========================================================
   Başlık boyutları — h3/h4 küçültme
   =========================================================== */
h3, .h3 { font-size: 22px; }
h4, .h4 { font-size: 17px; }

@media screen and (max-width: 767.98px) {
  h3, .h3 { font-size: 19px; }
  h4, .h4 { font-size: 15px; }
}

/* ===========================================================
   MOBİL RESPONSIVE — Navigasyon + Tüm Modüller
   =========================================================== */

/* ---- Navbar: mobilde position:relative (dropdown absolute için) ---- */
@media screen and (max-width: 991.98px) {
  .header .navbar {
    position: relative;
  }
  /* Navbar padding'i azalt */
  .header .navbar {
    padding: 0 16px;
  }
}

/* ---- Hero / Main layout mobil ---- */
@media screen and (max-width: 991.98px) {
  .hero .hero-content { padding: 60px 0 0; }
  .hero .hero-title { font-size: clamp(24px, 6vw, 40px); }
  .hero .hero-desc  { font-size: 14px; }
  .hero .hero-action { flex-wrap: wrap; gap: 10px; }
  .hero.hero-1,
  .hero.hero-7 { min-height: 280px; padding-bottom: 0; }
  .breadcrumb-holder .breadcrumb { font-size: 13px; }
}

/* ---- About #3 / about-image-text ---- */
.about.about-3.about-image-text-module {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.about.about-3.about-image-text-module .heading.heading-12 .heading-title {
  color: var(--d2-ink);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.18;
  margin-bottom: 18px;
}

.about.about-3.about-image-text-module .heading.heading-12 .paragraph {
  color: var(--d2-accent-deep);
  font-weight: 700;
  margin-bottom: 12px;
}

.about.about-3.about-image-text-module .heading.heading-12 .heading-desc,
.about.about-3.about-image-text-module .heading.heading-12 .heading-desc p {
  color: var(--d2-ink-mute);
  font-size: 16px;
  line-height: 1.78;
}

.about.about-3.about-image-text-module .about-action {
  margin-top: 28px;
}

.about.about-3.about-image-text-module .about-action .btn {
  height: 60px;
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(2, 26, 66, .16);
}

.about.about-3.about-image-text-module .about-action .btn i {
  width: 60px;
}

.about.about-3.about-image-text-module .about-img {
  position: relative;
}

.about.about-3.about-image-text-module .about-img > a {
  display: block;
}

.about.about-3.about-image-text-module .about-img > a > img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(2, 26, 66, .18);
}

.about.about-3.about-image-text-module .about-img .features-carousel {
  margin-top: -56px;
  margin-left: 28px;
  margin-right: 28px;
  position: relative;
  z-index: 5;
}

.about.about-3.about-image-text-module .about-img .features-carousel .feature-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 24px 24px;
  border: 1px solid #dbe8f1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(2, 26, 66, .16);
}

.about.about-3.about-image-text-module .about-img .features-carousel .feature-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #dbe8f1;
  background: #f6fbff;
}

.about.about-3.about-image-text-module .about-img .features-carousel .feature-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.about.about-3.about-image-text-module .about-img .features-carousel .feature-icon i {
  font-size: 34px;
  color: var(--d2-accent);
}

.about.about-3.about-image-text-module .about-img .features-carousel .feature-content h3 {
  margin-bottom: 8px;
  color: var(--d2-ink);
  font-size: 21px;
  line-height: 1.35;
  text-transform: none;
}

.about.about-3.about-image-text-module .about-img .features-carousel .feature-content div,
.about.about-3.about-image-text-module .about-img .features-carousel .feature-content p {
  color: var(--d2-ink-mute);
  font-size: 15px;
  line-height: 1.7;
}

.about.about-3.about-image-text-module .about-img .features-carousel .owl-dots {
  margin-top: 16px;
}

.about.about-3.about-image-text-module .about-img .features-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #c8d9e6;
}

.about.about-3.about-image-text-module .about-img .features-carousel .owl-dots .owl-dot.active span {
  width: 28px;
  border-radius: 999px;
  background: var(--d2-accent);
}

@media screen and (max-width: 991.98px) {
  .about.about-3.about-image-text-module .about-img { margin-bottom: 30px; }
  .about.about-3.about-image-text-module .about-img .features-carousel { margin-top: 20px; margin-left: 0; margin-right: 0; }
}

@media screen and (max-width: 767.98px) {
  .about.about-3.about-image-text-module .about-img .features-carousel .feature-info {
    padding: 20px 16px;
    gap: 12px;
  }
  .about.about-3.about-image-text-module .about-img .features-carousel .feature-icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
  }
  .about.about-3.about-image-text-module .about-img .features-carousel .feature-icon img {
    width: 32px;
    height: 32px;
  }
  .about.about-3.about-image-text-module .about-img .features-carousel .feature-content h3 {
    font-size: 19px;
  }
}

/* ---- Features Banner (features-1) ---- */
.features.features-1 .heading.heading-2 .paragraph p {
  color: var(--global--color-white);
}

.features.features-1 .features-cards {
  flex-wrap: wrap;
  gap: 40px 4%;
}

.features.features-1 .features-cards.owl-carousel {
  display: block;
  gap: 0;
}

.features.features-1 .features-cards.owl-carousel .owl-stage {
  display: flex;
}

.features.features-1 .features-cards.owl-carousel .owl-item {
  display: flex;
}

.features.features-1 .features-cards.owl-carousel .card-panel {
  flex: 1 1 auto;
  width: 100%;
}

.features.features-1 .features-cards.doktor-feature-card-slider .owl-nav {
  display: flex;
  position: absolute;
  top: -62px;
  right: 0;
  z-index: 8;
  gap: 10px;
  margin: 0;
}

.features.features-1 .features-cards.doktor-feature-card-slider .owl-nav button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  color: var(--global--color-white);
  box-shadow: 0 12px 32px rgba(2, 26, 66, 0.22);
  transition: 0.3s ease-in-out;
}

.features.features-1 .features-cards.doktor-feature-card-slider .owl-nav .owl-prev {
  background: #021a42;
}

.features.features-1 .features-cards.doktor-feature-card-slider .owl-nav .owl-next {
  background: #1f406d;
}

.features.features-1 .features-cards.doktor-feature-card-slider .owl-nav button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(2, 26, 66, 0.28);
}

.features.features-1 .features-cards.doktor-feature-card-slider .owl-nav span {
  font-size: 0;
  line-height: 1;
}

.features.features-1 .features-cards.doktor-feature-card-slider .owl-nav .owl-prev::before,
.features.features-1 .features-cards.doktor-feature-card-slider .owl-nav .owl-next::before {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
}

.features.features-1 .features-cards.doktor-feature-card-slider .owl-nav .owl-prev::before {
  content: "<";
}

.features.features-1 .features-cards.doktor-feature-card-slider .owl-nav .owl-next::before {
  content: ">";
}

.features.features-1 .features-cards .card-panel .card-content .card-body h3 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: var(--global--color-white);
  margin-bottom: 15px;
  text-transform: capitalize;
}

.features.features-1 .features-cards .card-panel .card-content .card-icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  display: inline-flex;
  filter: brightness(0) invert(1);
}

@media screen and (min-width: 992px) {
  .features.features-1 .features-cards .card-panel {
    flex: 0 0 48%;
  }
}

@media screen and (max-width: 991.98px) {
  .features.features-1 .features-wrapper { padding: 40px 0; }
  .features.features-1 .features-cards { margin-top: 24px; }
  .features.features-1 .features-cards .card-panel { flex: 0 0 100%; max-width: 100%; }
  .features.features-1 .features-cards.doktor-feature-card-slider .owl-nav {
    top: -56px;
    right: 12px;
  }
}
@media screen and (max-width: 767.98px) {
  .features.features-1 .features-cards .card-panel { flex-direction: column; }
}

/* ---- Features Grid (features-2) ---- */
@media screen and (max-width: 575.98px) {
  .features.features-2 .features-img { margin-bottom: 24px; }
  /* col-10 → col-12 fix via CSS (Bootstrap xs override) */
  .features.features-2 .features-img .col-10 { flex: 0 0 100%; max-width: 100%; width: 100%; }
}

/* ---- Services Grid ---- */
@media screen and (max-width: 991.98px) {
  .services.services-1 { padding: 60px 0; }
  .services.services-1 .service-panel { min-height: auto; }
}

/* Services-1 carousel — dark navy nav butonları (features/process slider ile aynı stil) */
.services.services-1 .carousel-navs-slider .owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.services.services-1 .carousel-navs-slider .owl-nav button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 12px 32px rgba(2, 26, 66, 0.22);
  transition: 0.3s ease-in-out;
  background: #021a42;
}

.services.services-1 .carousel-navs-slider .owl-nav .owl-next {
  background: #1f406d;
}

.services.services-1 .carousel-navs-slider .owl-nav button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(2, 26, 66, 0.28);
}

.services.services-1 .carousel-navs-slider .owl-nav span {
  font-size: 0;
  line-height: 1;
}

.services.services-1 .carousel-navs-slider .owl-nav .owl-prev::before,
.services.services-1 .carousel-navs-slider .owl-nav .owl-next::before {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
}

.services.services-1 .carousel-navs-slider .owl-nav .owl-prev::before {
  content: "<";
}

.services.services-1 .carousel-navs-slider .owl-nav .owl-next::before {
  content: ">";
}

/* ---- Team Carousel ---- */
@media screen and (max-width: 991.98px) {
  .team.team-modern .team-cv-img { margin-bottom: 24px; }
  .team.team-modern .team-single-cv { text-align: center; }
  .team.team-modern .team-single-cv .team-cv-body .team-info { flex-direction: column; gap: 8px; }
}

/* ---- Testimonials Parallax ---- */
@media screen and (max-width: 991.98px) {
  .testimonial.testimonial-3 .col-12.col-lg-10 { padding: 0; }
  .testimonial.testimonial-3 .testimonials-wrapper { padding: 40px 16px; }
  .testimonial.testimonial-3 .testimonial-panel { padding: 24px; }
}

@media screen and (max-width: 767.98px) {
  .testimonial.testimonial-3 {
    padding-top: 78px;
    padding-bottom: 58px;
  }

  .testimonial.testimonial-3 .testimonials-wrapper {
    padding: 30px 12px;
  }

  .testimonial.testimonial-3 .section-head {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .testimonial.testimonial-3 .section-intro {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .testimonial.testimonial-3 .testimonial-panel {
    padding: 14px 6px;
  }

  .testimonial.testimonial-3 .testimonial-author-name {
    font-size: 17px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }

  .testimonial.testimonial-3 .testimonial-panel .testimonial-body p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .testimonial.testimonial-3 .testimonials-holder .testimonials-icon {
    width: 16px;
    margin-right: 12px;
  }

  .testimonial.testimonial-3 .testimonials-holder .testimonials-body {
    width: calc(100% - 28px);
  }
}

/* ---- Blog Carousel ---- */
.blog.blog-1.blog-carousel-module {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.blog.blog-1.blog-carousel-module .heading.heading-14 {
  margin-bottom: 46px;
}

.blog.blog-1.blog-carousel-module .heading .heading-subtitle {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 4px;
  background: rgba(40, 182, 246, .09);
  color: var(--d2-accent-deep);
  font-weight: 700;
}

.blog.blog-1.blog-carousel-module .heading .heading-title {
  color: var(--d2-ink);
}

.blog.blog-1.blog-carousel-module .blog-carousel-slider {
  padding: 4px 0 20px;
}

.blog.blog-1.blog-carousel-module .blog-entry {
  height: 100%;
  overflow: hidden;
  border: 1px solid #dbe8f1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 40, 58, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.blog.blog-1.blog-carousel-module .blog-entry:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 182, 246, .45);
  box-shadow: 0 18px 42px rgba(17, 40, 58, .12);
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-img {
  height: 245px;
  overflow: hidden;
  background: #eef6fb;
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(2, 26, 66, 0) 0%, rgba(2, 26, 66, .34) 100%);
  pointer-events: none;
  z-index: 2;
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-img .entry-img-holder,
.blog.blog-1.blog-carousel-module .blog-entry .entry-img img {
  width: 100%;
  height: 100%;
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-img img {
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease;
}

.blog.blog-1.blog-carousel-module .blog-entry:hover .entry-img img {
  transform: scale(1.08);
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-content {
  position: relative;
  min-height: 260px;
  margin: 0;
  padding: 28px 28px 30px;
  transform: none;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  z-index: 4;
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-content::before {
  content: "";
  position: absolute;
  inset: 0 28px auto;
  width: auto;
  height: 3px;
  border-radius: 0;
  background: linear-gradient(180deg, var(--d2-accent), #021a42);
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-content .entry-meta {
  display: block;
  margin-bottom: 14px;
}

@media screen and (min-width: 768px) {
  .blog.blog-1.blog-carousel-module .blog-entry .entry-content {
    margin-right: 0;
    margin-bottom: 0;
    transform: none;
  }
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-content .entry-meta .entry-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 4px;
  background: #f1f8fc;
  color: var(--d2-accent-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-content .entry-meta .entry-date span {
  color: inherit;
  font-size: inherit;
  line-height: 1;
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-content .entry-meta .entry-date span::after {
  color: rgba(17, 40, 58, .3);
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-content .entry-body {
  padding: 0;
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-content .entry-body .entry-title {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.35;
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-content .entry-body .entry-title a {
  color: var(--d2-ink);
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-content .entry-body .entry-title a:hover {
  color: var(--d2-accent-deep);
}

.blog.blog-1.blog-carousel-module .blog-entry .entry-content .entry-body .entry-bio p {
  display: -webkit-box;
  min-height: 78px;
  margin-bottom: 22px;
  overflow: hidden;
  color: var(--d2-ink-mute);
  font-size: 15px;
  line-height: 1.7;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog.blog-1.blog-carousel-module .note.note-3 {
  margin-top: 8px;
}

.blog.blog-1.blog-carousel-module .note.note-3 p {
  margin: 0;
}

.blog.blog-1.blog-carousel-module .note.note-3 a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  background: #f4f9fc;
  color: var(--d2-ink);
  font-weight: 700;
}

.blog.blog-1.blog-carousel-module .note.note-3 a:hover {
  background: #021a42;
  color: #fff;
}

@media screen and (max-width: 767.98px) {
  .blog.blog-1.blog-carousel-module .blog-entry .entry-img { height: 200px; overflow: hidden; }
  .blog.blog-1.blog-carousel-module .blog-entry .entry-img img { width: 100%; height: 100%; object-fit: cover; }
  .blog.blog-1.blog-carousel-module .blog-entry .entry-content { min-height: 0; margin: 0; padding: 22px 18px; }
  .blog.blog-1.blog-carousel-module .entry-bio p { min-height: 0; }
}

/* ---- Blog Detail (single post) ---- */
@media screen and (max-width: 991.98px) {
  .blog.blog-single .sidebar { margin-top: 40px; }
  .blog.blog-single .blog-entry-wrapper { margin-bottom: 0; }
  .entry-meta-wrapper { flex-direction: column; gap: 10px; }
}

/* ---- CTA Modules ---- */
.cta.cta-3.cta-process {
  background: #fff;
}

.cta.cta-3.cta-process .heading.heading-11 {
  margin-bottom: 44px;
}

.cta.cta-3.cta-process .heading .heading-subtitle {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 4px;
  background: rgba(40, 182, 246, .09);
  color: var(--d2-accent-deep);
  font-weight: 700;
}

.cta.cta-3.cta-process .heading .heading-title {
  color: var(--d2-ink);
}

.cta.cta-3.cta-process .heading-desc,
.cta.cta-3.cta-process .heading-desc p {
  color: var(--d2-ink-mute);
}

.cta.cta-3.cta-process .advantages-list-wrapper {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--d2-line);
}

.cta.cta-3.cta-process .advantages-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.cta.cta-3.cta-process .advantages-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--d2-ink);
  font-weight: 600;
}

.cta.cta-3.cta-process .advantages-list li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 4px;
  background: var(--d2-accent);
  color: #fff;
  font-size: 11px;
}

.cta.cta-3.cta-process .processes {
  margin-top: 0;
}

.cta.cta-3.cta-process .processes .processes-holder {
  border: 0;
  box-shadow: none;
}

.cta.cta-3.cta-process .processes .processes-holder.owl-carousel .owl-stage {
  display: flex;
}

.cta.cta-3.cta-process .processes .processes-holder.owl-carousel .owl-item {
  display: flex;
}

.cta.cta-3.cta-process .processes .processes-holder .process-item {
  width: 100%;
  display: flex;
}

.cta.cta-3.cta-process .processes .row {
  row-gap: 28px;
}

.cta.cta-3.cta-process .processes .row > [class*="col-"] {
  display: flex;
}

.cta.cta-3.cta-process .process-panel {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 36px 28px 32px;
  color: #fff;
  box-shadow: 0 18px 45px rgba(17, 40, 58, .16);
  transition: transform .25s ease, box-shadow .25s ease;
  isolation: isolate;
}

.cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav {
  display: flex;
  position: absolute;
  top: -62px;
  right: 0;
  z-index: 8;
  gap: 10px;
  margin: 0;
}

.cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  color: var(--global--color-white);
  box-shadow: 0 12px 32px rgba(2, 26, 66, 0.22);
  transition: 0.3s ease-in-out;
}

.cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav .owl-prev {
  background: #021a42;
}

.cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav .owl-next {
  background: #1f406d;
}

.cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(2, 26, 66, 0.28);
}

.cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav span {
  font-size: 0;
  line-height: 1;
}

.cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav .owl-prev::before,
.cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav .owl-next::before {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
}

.cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav .owl-prev::before {
  content: "<";
}

.cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav .owl-next::before {
  content: ">";
}

.cta.cta-3.cta-process .process-panel.process-tone-1 {
  background: linear-gradient(135deg, #c0e0dd 0%, #41a398 52%, #40a59b 100%);
}

.cta.cta-3.cta-process .process-panel.process-tone-2 {
  background: linear-gradient(135deg, #33615c 0%, #67bcb2 48%, #41a89c 100%);
}

.cta.cta-3.cta-process .process-panel.process-tone-3 {
  background: linear-gradient(135deg, #1c9485 0%, #165d56 56%, #41a499 100%);
}

.cta.cta-3.cta-process .process-panel.process-tone-4 {
  background: linear-gradient(135deg, #73c1b7 0%, #40a499 50%, #e3fffc 100%);
}

.cta.cta-3.cta-process .process-panel::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: rgba(255, 255, 255, .5);
  opacity: .7;
  transform: none;
  z-index: 1;
}

.cta.cta-3.cta-process .process-panel::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -80px;
  width: 210px;
  height: 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, 0));
  transform: rotate(16deg);
  z-index: -1;
}

.cta.cta-3.cta-process .process-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(17, 40, 58, .24);
}

.cta.cta-3.cta-process .process-panel:hover::before {
  height: 5px;
}

.cta.cta-3.cta-process .process-panel .process-number {
  position: absolute;
  top: 22px;
  right: 24px;
  margin: 0;
  color: rgba(255, 255, 255, .18);
  font-family: var(--global--font-heading);
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.cta.cta-3.cta-process .process-panel .process-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.cta.cta-3.cta-process .process-panel .process-body .process-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
}

.cta.cta-3.cta-process .process-panel .process-body .process-icon i {
  color: #fff;
  font-size: 30px;
  transition: transform .25s ease;
}

.cta.cta-3.cta-process .process-panel:hover .process-body .process-icon i {
  color: #fff;
  transform: scale(1.08);
}

.cta.cta-3.cta-process .process-panel .process-body .process-content h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 21px;
  line-height: 1.35;
  text-transform: none;
}

.cta.cta-3.cta-process .process-panel .process-body .process-content p {
  min-height: 78px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  line-height: 1.7;
}

.cta.cta-3.cta-process .process-panel .process-body .process-content a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 4px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
}

.cta.cta-3.cta-process .process-panel .process-body .process-content a i {
  color: #fff;
  font-size: 12px;
}

.cta.cta-3.cta-process .process-panel .process-body .process-content a:hover {
  background: #fff;
  color: var(--d2-ink);
}

.cta.cta-3.cta-process .process-panel .process-body .process-content a:hover i {
  color: var(--d2-accent-deep);
}

.cta.cta-3.cta-process .note.note-2 {
  margin-top: 34px;
}

@media screen and (max-width: 991.98px) {
  .cta.cta-3.cta-process .processes { margin-top: 30px; }
  .cta.cta-3.cta-process .prief-set { margin-bottom: 30px; }
  .cta.cta-3.cta-process .advantages-list { grid-template-columns: 1fr; }
  .cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav { top: -56px; }
}
@media screen and (max-width: 767.98px) {
  .cta.cta-3.cta-process .process-panel { padding: 20px 16px; }
  .cta.cta-3.cta-process .process-panel .process-number { font-size: 46px; }
  .cta.cta-3.cta-process .process-panel .process-body .process-content p { min-height: 0; }
  .cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav {
    position: static;
    justify-content: flex-end;
    margin-bottom: 12px;
  }
}

/* ---- CTA Banner ---- */
.cta.cta-3.cta-banner {
  background: #fff;
  position: relative;
}

.cta.cta-3.cta-banner .heading.heading-11 {
  margin-bottom: 46px;
}

.cta.cta-3.cta-banner .heading .heading-subtitle {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 14px;
  border-left: 3px solid #037f70;
  border-radius: 4px;
  background: #f4f9fc;
  color: var(--d2-accent-deep);
  font-weight: 700;
}

.cta.cta-3.cta-banner .heading .heading-title {
  color: var(--d2-ink);
}

.cta.cta-3.cta-banner .heading-desc,
.cta.cta-3.cta-banner .heading-desc p {
  color: var(--d2-ink-mute);
}

.cta.cta-3.cta-banner .processes {
  margin-top: 0;
}

.cta.cta-3.cta-banner .processes .processes-holder {
  border: 0;
  box-shadow: none;
}

.cta.cta-3.cta-banner .processes .processes-holder.owl-carousel {
  position: relative;
  display: block;
}

.cta.cta-3.cta-banner .processes .processes-holder.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.cta.cta-3.cta-banner .processes .processes-holder.owl-carousel .owl-item {
  display: flex;
}

.cta.cta-3.cta-banner .processes .processes-holder .process-item {
  display: flex;
  width: 100%;
}

.cta.cta-3.cta-banner .processes .processes-holder.doktor-banner-process-slider .owl-nav {
  display: flex !important;
  position: absolute;
  top: -62px;
  right: 0;
  z-index: 8;
  gap: 10px;
  margin: 0;
}

.cta.cta-3.cta-banner .processes .processes-holder.doktor-banner-process-slider .owl-nav.disabled {
  display: flex !important;
}

.cta.cta-3.cta-banner .processes .processes-holder.doktor-banner-process-slider .owl-nav button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  color: var(--global--color-white);
  box-shadow: 0 12px 32px rgba(2, 26, 66, 0.22);
  transition: 0.3s ease-in-out;
}

.cta.cta-3.cta-banner .processes .processes-holder.doktor-banner-process-slider .owl-nav .owl-prev {
  background: #021a42;
}

.cta.cta-3.cta-banner .processes .processes-holder.doktor-banner-process-slider .owl-nav .owl-next {
  background: #1f406d;
}

.cta.cta-3.cta-banner .processes .processes-holder.doktor-banner-process-slider .owl-nav button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(2, 26, 66, 0.28);
}

.cta.cta-3.cta-banner .processes .processes-holder.doktor-banner-process-slider .owl-nav span {
  font-size: 0;
  line-height: 1;
}

.cta.cta-3.cta-banner .processes .processes-holder.doktor-banner-process-slider .owl-nav .owl-prev::before,
.cta.cta-3.cta-banner .processes .processes-holder.doktor-banner-process-slider .owl-nav .owl-next::before {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.cta.cta-3.cta-banner .processes .processes-holder.doktor-banner-process-slider .owl-nav .owl-prev::before {
  content: "<";
}

.cta.cta-3.cta-banner .processes .processes-holder.doktor-banner-process-slider .owl-nav .owl-next::before {
  content: ">";
}

.cta.cta-3.cta-banner .processes .row {
  row-gap: 28px;
}

.cta.cta-3.cta-banner .processes .row > [class*="col-"] {
  display: flex;
}

.cta.cta-3.cta-banner .process-panel {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #dbe8f1;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
  padding: 34px 26px 30px;
  box-shadow: 0 16px 40px rgba(17, 40, 58, .1);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  isolation: isolate;
}

.cta.cta-3.cta-banner .process-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: var(--banner-tone, var(--d2-accent));
  transform: none;
  z-index: 2;
}

.cta.cta-3.cta-banner .process-panel::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 86px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--banner-tone, #28b6f6) 34%, transparent) 0%, color-mix(in srgb, var(--banner-tone, #28b6f6) 12%, transparent) 46%, transparent 82%);
  z-index: -1;
}

.cta.cta-3.cta-banner .process-panel.process-banner-tone-1 { --banner-tone: #43a89d; }
.cta.cta-3.cta-banner .process-panel.process-banner-tone-2 { --banner-tone: #53827d; }
.cta.cta-3.cta-banner .process-panel.process-banner-tone-3 { --banner-tone: #43a89d; }
.cta.cta-3.cta-banner .process-panel.process-banner-tone-4 { --banner-tone: #53827d; }

.cta.cta-3.cta-banner .process-panel:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--banner-tone, #28b6f6) 45%, #dbe8f1);
  box-shadow: 0 24px 56px rgba(17, 40, 58, .16);
}

.cta.cta-3.cta-banner .process-panel:hover::before {
  width: 5px;
}

.cta.cta-3.cta-banner .process-panel .process-number {
  position: absolute;
  top: 20px;
  right: 22px;
  margin: 0;
  color: rgba(17, 40, 58, .08);
  font-family: var(--global--font-heading);
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}

.cta.cta-3.cta-banner .process-panel .process-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.cta.cta-3.cta-banner .process-panel .process-body .process-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--banner-tone, #28b6f6) 24%, #e6eef4);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 40, 58, .08);
}

.cta.cta-3.cta-banner .process-panel .process-body .process-icon i {
  color: var(--banner-tone, var(--d2-accent));
  font-size: 31px;
  transition: transform .25s ease, color .25s ease;
}

.cta.cta-3.cta-banner .process-panel .process-body .process-icon img {
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
}

.cta.cta-3.cta-banner .process-panel:hover .process-body .process-icon i {
  color: var(--d2-ink);
  transform: scale(1.06);
}

.cta.cta-3.cta-banner .process-panel .process-body .process-content h3 {
  margin-bottom: 12px;
  color: var(--d2-ink);
  font-size: 21px;
  line-height: 1.35;
  text-transform: none;
}

.cta.cta-3.cta-banner .process-panel .process-body .process-content p {
  min-height: 84px;
  margin-bottom: 22px;
  color: var(--d2-ink-mute);
  font-size: 15px;
  line-height: 1.7;
}

.cta.cta-3.cta-banner .process-panel .process-body .process-content a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid color-mix(in srgb, var(--banner-tone, #28b6f6) 42%, #dbe8f1);
  border-radius: 4px;
  background: #fff;
  color: var(--d2-ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
}

.cta.cta-3.cta-banner .process-panel .process-body .process-content a i {
  color: var(--banner-tone, var(--d2-accent));
  font-size: 12px;
}

.cta.cta-3.cta-banner .process-panel .process-body .process-content a:hover {
  background: var(--banner-tone, var(--d2-accent));
  border-color: var(--banner-tone, var(--d2-accent));
  color: #fff;
}

.cta.cta-3.cta-banner .process-panel .process-body .process-content a:hover i {
  color: #fff;
}

.cta.cta-3.cta-banner .note.note-2 {
  margin-top: 34px;
}

@media screen and (max-width: 991.98px) {
  .cta.cta-3.cta-banner .processes { margin-top: 30px; }
  .cta.cta-3.cta-banner .prief-set { margin-bottom: 30px; }
}

@media screen and (max-width: 767.98px) {
  .cta.cta-3.cta-banner .process-panel { padding: 24px 18px; }
  .cta.cta-3.cta-banner .process-panel .process-number { font-size: 46px; }
  .cta.cta-3.cta-banner .process-panel .process-body .process-content p { min-height: 0; }
  .cta.cta-3.cta-banner .processes .processes-holder.doktor-banner-process-slider .owl-nav {
    position: static;
    justify-content: flex-end;
    margin: 0 0 16px;
  }
}

/* ---- Gallery Grid ---- */
@media screen and (max-width: 767.98px) {
  .team.team-gallery .team-member { margin-bottom: 16px; }
  .team.team-gallery .team-img img { height: 220px; object-fit: cover; }
}

/* ---- FAQ Accordion ---- */
@media screen and (max-width: 991.98px) {
  .donations.donations-1 .img-hotspot { margin-bottom: 30px; }
  /* Hotspot pointer bilgileri mobilde gizle, akkordiyona git */
  .donations.donations-1 .img-hotspot-pointers { display: none; }
}

/* ---- Map Embed responsive height ---- */
@media screen and (max-width: 767.98px) {
  .map iframe { height: 280px !important; }
}

/* ---- Contact Card Image ---- */
@media screen and (max-width: 991.98px) {
  .contact.contact-4 .img-card { min-height: 280px; margin-top: 30px; }
  .contact.contact-4 .contact-panel { padding: 30px 16px; }
}

/* ---- Contact Form Card ---- */
@media screen and (max-width: 991.98px) {
  .contact.contact-2 .contact-card { flex-direction: column; }
  .contact.contact-2 .contact-card .contact-body { width: 100%; }
}

/* ---- Appointment Form ---- */
.contact.contact-2.appointment-final {
  padding-top: 118px;
  padding-bottom: 118px;
  overflow: hidden;
}

.contact.contact-2.appointment-final .contact-overlay {
  width: 100%;
}

.contact.contact-2.appointment-final .contact-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
      background: linear-gradient(120deg, rgb(64 167 155) 0%, rgb(31 64 109) 48%, rgb(31 64 109) 100%), linear-gradient(180deg, rgba(2, 26, 66, .18), rgba(2, 26, 66, .34));
  z-index: 2;
}

.contact.contact-2.appointment-final .bg-section {
  z-index: 1;
}

.contact.contact-2.appointment-final .bg-section img {
  filter: saturate(.9) contrast(1.04);
}

.contact.contact-2.appointment-final .container {
  position: relative;
  z-index: 5;
}

.contact.contact-2.appointment-final .contact-panel.contact-panel-3 {
  padding: 0;
}

.contact.contact-2.appointment-final .heading.heading-light.heading-5 {
  max-width: 520px;
  padding-top: 26px;
}

.contact.contact-2.appointment-final .heading .heading-subtitle {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 4px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-weight: 700;
}

.contact.contact-2.appointment-final .heading .heading-title {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.13;
  text-transform: none;
}

.contact.contact-2.appointment-final .heading .heading-desc,
.contact.contact-2.appointment-final .heading .heading-desc p {
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  line-height: 1.75;
}

.contact.contact-2.appointment-final .contact-actions.contact-actions-2 {
  gap: 14px;
  margin-bottom: 44px;
}

.contact.contact-2.appointment-final .contact-actions .btn {
  margin-right: 0;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(2, 26, 66, .18);
}

.contact.contact-2.appointment-final .contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(219, 232, 241, .95);
  border-radius: 8px;
  background: #fff;
  padding: 44px 44px 40px;
  box-shadow: 0 26px 70px rgba(2, 26, 66, .24);
}

.contact.contact-2.appointment-final .contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
      background: linear-gradient(90deg, #3fa499, #5b74aa, #021a42);
}

.contact.contact-2.appointment-final .contact-card::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  width: 42%;
  height: 110px;
  background: linear-gradient(135deg, rgba(40, 182, 246, .13), rgba(2, 26, 66, 0));
  pointer-events: none;
}

.contact.contact-2.appointment-final .contact-card .contact-body {
  position: relative;
  z-index: 2;
}

.contact.contact-2.appointment-final .contact-card .card-heading {
  margin-bottom: 12px;
  color: var(--d2-ink);
  font-size: 28px;
  line-height: 1.2;
  text-transform: none;
}

.contact.contact-2.appointment-final .contact-card .card-desc {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--d2-ink-mute);
  font-size: 15px;
  line-height: 1.7;
}

.contact.contact-2.appointment-final .contact-card .contactForm .row {
  row-gap: 16px;
}

.contact.contact-2.appointment-final .contact-card .contactForm .row > [class*="col-"] {
  margin-bottom: 0;
}

.contact.contact-2.appointment-final .contact-card .form-control {
  height: 58px;
  margin-bottom: 0;
  border: 1px solid #dbe8f1;
  border-radius: 4px;
  background: #f7fbfe;
  color: var(--d2-ink);
  font-size: 14px;
  box-shadow: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact.contact-2.appointment-final .contact-card textarea.form-control {
  min-height: 126px;
  padding-top: 18px;
  resize: vertical;
}

.contact.contact-2.appointment-final .contact-card .form-control:focus {
  border-color: var(--d2-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(40, 182, 246, .12);
}

.contact.contact-2.appointment-final .contact-card .form-control::placeholder {
  color: #7b8a98;
}

.contact.contact-2.appointment-final .contact-card label {
  align-items: flex-start !important;
  margin-top: 2px;
  padding: 12px 14px;
  border: 1px solid #e4edf3;
  border-radius: 4px;
  background: #f7fbfe;
}

.contact.contact-2.appointment-final .contact-card label input[type="checkbox"] {
  margin-top: 3px !important;
  accent-color: var(--d2-accent);
}

.contact.contact-2.appointment-final .contact-card .btn {
  width: 100%;
  height: 62px;
  margin-top: 4px;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(2, 26, 66, .14);
}

.contact.contact-2.appointment-final .contact-card .btn i {
  width: 62px;
}

@media screen and (max-width: 767.98px) {
  .appointments .appointment-panel { padding: 24px 16px; }
}

@media screen and (max-width: 991.98px) {
  .contact.contact-2.appointment-final .heading.heading-light.heading-5 {
    max-width: none;
    margin-bottom: 34px;
    padding-top: 0;
    text-align: center;
  }

  .contact.contact-2.appointment-final .contact-actions.contact-actions-2 {
    justify-content: center;
  }

}

@media screen and (max-width: 767.98px) {
  .contact.contact-2.appointment-final {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .contact.contact-2.appointment-final .contact-card {
    padding: 34px 20px 28px;
  }

  .contact.contact-2.appointment-final .contact-card .card-heading {
    font-size: 24px;
  }

  .contact.contact-2.appointment-final .contact-actions .btn {
    margin-bottom: 12px;
  }
}

/* ---- Slider responsive güvenlik ---- */
@media screen and (max-width: 767.98px) {
  .hero-slide .slide-title { font-size: clamp(20px, 5vw, 32px); }
  .hero-slide .slide-desc  { font-size: 13px; }
}

/* ---- Section headings genel ---- */
@media screen and (max-width: 767.98px) {
  .section { padding: 50px 0; }
  .heading .heading-title { font-size: clamp(22px, 5vw, 36px); }
  .section-head h2 { font-size: clamp(20px, 4.5vw, 32px); }
}

/* ---- CMS page content (sayfa içeriği) ---- */
@media screen and (max-width: 767.98px) {
  .cms-page-content img { max-width: 100%; height: auto; }
  .cms-page-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cms-page-content iframe { max-width: 100%; }
}

/* ---- FAQ sayfası split-view mobil ---- */
@media screen and (max-width: 991.98px) {
  .faq-split-layout { flex-direction: column; }
  .faq-split-layout .faq-list-col,
  .faq-split-layout .faq-answer-col { width: 100%; position: static; height: auto; }
  .faq-split-layout .faq-list-col { border-right: none; border-bottom: 1px solid #e7eef3; padding-bottom: 20px; margin-bottom: 24px; }
}

/* ---- Donations map hotspot pointers mobil ---- */
@media screen and (max-width: 767.98px) {
  .img-hotspot-pointer .info { display: none !important; }
}

/* ---- Blog detay icerik listeleri ---- */
.blog.blog-single .blog-entry-wrapper .entry-content .entry-title h1 {
  color: var(--global--color-secondary-darken, #021a42);
  font-family: var(--global--font-heading);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  text-transform: none;
  margin: 0 0 24px;
}

.blog.blog-single .blog-entry-wrapper .entry-content .entry-bio h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.28;
  margin: 28px 0 14px;
  text-transform: none;
}

.blog.blog-single .blog-entry-wrapper .entry-content .entry-bio ul {
  list-style: disc;
  margin: 14px 0 22px;
  padding-left: 24px;
}

.blog.blog-single .blog-entry-wrapper .entry-content .entry-bio ul li {
  display: list-item;
  list-style: disc;
  margin-bottom: 8px;
  padding-left: 4px;
  color: #000;
}

.blog.blog-single .blog-entry-wrapper .entry-content .entry-bio ul ul {
  list-style: circle;
  margin-top: 8px;
  margin-bottom: 8px;
}

.blog.blog-single .blog-entry-wrapper .entry-content .entry-bio ul ul li {
  list-style: circle;
}

.blog.blog-single .blog-entry-wrapper .entry-content .entry-bio ol {
  list-style: decimal;
  margin: 14px 0 22px;
  padding-left: 24px;
}

.blog.blog-single .blog-entry-wrapper .entry-content .entry-bio ol li {
  display: list-item;
  list-style: decimal;
  margin-bottom: 8px;
  padding-left: 4px;
  color: #000;
}

.blog.blog-single .blog-entry-wrapper .entry-content .entry-bio ol ol {
  list-style: lower-alpha;
  margin-top: 8px;
  margin-bottom: 8px;
}

.blog.blog-single .blog-entry-wrapper .entry-content .entry-bio ol ol li {
  list-style: lower-alpha;
}

/* ---- Footer ---- */
.footer.footer-1 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #021a42 0%, #073a70 52%, #0b78df 100%);
  color: #fff;
}

.footer.footer-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, 0) 38%), linear-gradient(135deg, rgba(40, 182, 246, .2), rgba(2, 26, 66, 0) 54%);
  pointer-events: none;
}

.footer.footer-1 .footer-top,
.footer.footer-1 .footer-bottom {
  position: relative;
  z-index: 2;
}

.footer.footer-1 .footer-top {
  padding: 82px 0 56px;
}

.footer.footer-1 .footer-top .row {
  row-gap: 34px;
}

.footer.footer-1 .footer-widget {
  height: 100%;
  margin-bottom: 0;
}

.footer.footer-1 .footer-brand {
  display: inline-flex;
  align-items: center;
  max-width: 190px;
  min-height: 48px;
  margin-bottom: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 34px rgba(2, 26, 66, .18);
}

.footer.footer-1 .footer-brand img {
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
}

.footer.footer-1 .footer-brand.footer-brand-text {
  color: var(--d2-ink);
  font-family: var(--global--font-heading);
  font-weight: 700;
  text-decoration: none;
}

.footer.footer-1 .footer-widget .footer-widget-title h3 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 14px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  text-transform: none;
}

.footer.footer-1 .footer-widget .footer-widget-title h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 3px;
  background: var(--d2-accent);
}

.footer.footer-1 .footer-widget .widget-content p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.75;
}

.footer.footer-1 .footer-widget .widget-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer.footer-1 .footer-widget .widget-content ul li {
  margin-bottom: 12px;
}

.footer.footer-1 .footer-widget .widget-content ul li:last-child {
  margin-bottom: 0;
}

.footer.footer-1 .widget-links ul li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.65;
  text-decoration: none;
}

.footer.footer-1 .widget-links ul li a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 2px;
  background: rgba(40, 182, 246, .7);
  transition: background .2s ease, transform .2s ease;
}

.footer.footer-1 .widget-links ul li a:hover {
  color: #fff;
}

.footer.footer-1 .widget-links ul li a:hover::before {
  background: #fff;
  transform: translateX(3px);
}

.footer.footer-1 .widget-contact .widget-content ul li a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.55;
  text-decoration: none;
}

.footer.footer-1 .widget-contact .widget-content ul li a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: var(--d2-accent);
  font-size: 14px;
}

.footer.footer-1 .widget-contact .widget-content ul li a:hover {
  color: #fff;
}

.footer.footer-1 .widget-contact .widget-content > ul {
  margin-bottom: 42px;
}

.footer.footer-1 .widget-newsletter .widget-content {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 46px rgba(2, 26, 66, .18);
}

.footer.footer-1 .widget-newsletter .widget-content .btn {
  width: 100%;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(2, 26, 66, .18);
}

.footer.footer-1 .widget-newsletter .widget-content .btn i {
  width: 58px;
}

.footer.footer-1 .module-social-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px !important;
}

.footer.footer-1 .module-social-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.footer.footer-1 .module-social-footer a:hover {
  background: var(--d2-accent);
  border-color: var(--d2-accent);
  color: #fff;
}

.footer.footer-1 .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(2, 26, 66, .34);
}

.footer.footer-1 .footer-copyright {
  min-height: 78px;
}

.footer.footer-1 .footer-copyright .copyright span,
.footer.footer-1 .footer-copyright .copyright span strong {
  color: rgba(255, 255, 255, .74);
}

.footer.footer-1 .footer-copyright .copyright span strong {
  color: #fff;
}

.footer.footer-1 .footer-copyright .copyright-links ul li a {
  color: rgba(255, 255, 255, .72);
}

.footer.footer-1 .footer-copyright .copyright-links ul li a:hover {
  color: #fff;
}

.footer.footer-1 .footer-copyright .copyright-links ul li::after {
  background: rgba(255, 255, 255, .28);
}

/* ---- Footer mobil ---- */
@media screen and (max-width: 767.98px) {
  .footer .footer-top { padding: 50px 0 30px; }
  .footer-widget { margin-bottom: 30px; }
  .footer-bottom .footer-copyright { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom .links-holder { justify-content: center; }
  .footer-bottom .copyright-links ul { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .footer.footer-1 .footer-brand {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 auto 18px;
  }
  .footer.footer-1 .footer-brand img {
    display: block;
    max-height: 54px;
  }
}

/* ---- Top bar mobile (already hidden via header-topbar CSS, but ensure) ---- */
@media screen and (max-width: 991.98px) {
  .header.header-topbar .top-bar { display: none; }
  .header .navbar .navbar-brand .logo.logo-phone {
    display: inline-block !important;
    max-height: 46px;
    width: auto;
  }

  .header .navbar .navbar-collapse {
    padding: 10px 16px 20px;
  }

  .header .navbar .navbar-nav > li > a {
    line-height: 42px;
    padding-right: 30px;
    white-space: normal;
  }

  .header .navbar li.has-dropdown.mega-dropdown > .dropdown-menu {
    padding: 10px 14px 12px;
    background-image: none;
    background-color: #fff;
    border-radius: 4px;
  }

  .header .navbar li.has-dropdown.mega-dropdown > .dropdown-menu .row {
    display: block;
    margin: 0;
  }

  .header .navbar li.has-dropdown.mega-dropdown > .dropdown-menu .row > div {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 14px;
    padding: 0;
  }

  .header .navbar li.has-dropdown.mega-dropdown > .dropdown-menu .row > div:last-child {
    margin-bottom: 0;
  }

  .header .navbar li.has-dropdown.mega-dropdown > .dropdown-menu .row ul {
    margin-bottom: 0;
  }

  .header .navbar li.has-dropdown.mega-dropdown > .dropdown-menu .row .menu-head,
  .header .navbar li.has-dropdown.mega-dropdown > .dropdown-menu .row ul li a {
    color: var(--global--color-heading) !important;
    padding-left: 12px;
    padding-right: 12px;
  }

  .header .navbar li.has-dropdown.mega-dropdown > .dropdown-menu .row ul li a {
    padding-left: 28px;
  }

  .header .navbar li.has-dropdown.mega-dropdown > .dropdown-menu .row ul li a:hover {
    color: var(--global--color-primary) !important;
    background: var(--d2-bg-soft) !important;
  }

  .header .navbar .module-holder {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(2, 26, 66, .08);
  }

  .header .navbar .module-holder .module-search {
    display: none;
  }

  .header .navbar .module-holder .module-contact {
    width: 100%;
    margin: 0;
  }

  .header .navbar .module-holder .module-contact .btn.module-contact-ghost {
    display: none !important;
  }

  .header .navbar .module-holder .module-contact .btn {
    width: 100% !important;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }

  .header .navbar .module-holder .module-contact-mobile-call .mobile-call-btn {
    background: #41a69b !important;
    border-color: #41a69b !important;
    color: #fff !important;
    font-weight: 700;
  }

  .header .navbar .module-contact .btn.cms-header-call,
  .header .navbar .module-contact .btn.cms-header-appointment {
    width: 100% !important;
    min-width: 0;
    height: 46px !important;
    border-radius: 4px;
  }
}

/* ---- Genel section padding küçültme ---- */
@media screen and (max-width: 575.98px) {
  .section { padding: 40px 0; }
  .hero.hero-1 .hero-content { padding-top: 40px; }
  .container { padding-left: 16px; padding-right: 16px; }
}

/* ---- Main layout 03 / feature bar dynamic icons ---- */
.features-bar .features-holder .feature-panel-wrapper .feature-panel .feature-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: inline-flex;
  filter: brightness(0) invert(1);
}

.features-bar .features-holder .feature-panel-wrapper .feature-panel .feature-icon-bg img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  opacity: 0.1;
  filter: brightness(0) invert(1);
}

.features-bar .features-holder .feature-panel-wrapper .feature-panel .feature-content .feature-text,
.features-bar .features-holder .feature-panel-wrapper .feature-panel .feature-content .feature-text p {
  font-family: var(--global--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--global--color-white);
  margin-bottom: 22px;
}

.features-bar .features-holder .feature-panel-wrapper .feature-panel .feature-content .feature-text > :last-child {
  margin-bottom: 0;
}

.features-bar .features-holder .feature-panel-wrapper .feature-panel .feature-content .doktor-feature-link,
.features-bar .features-holder .feature-panel-wrapper.feature-reservation .feature-panel .feature-content .doktor-feature-link,
.features-bar .features-holder .feature-panel-wrapper.feature-timetable .feature-panel .feature-content .doktor-feature-link,
.features-bar .features-holder .feature-panel-wrapper.feature-opening-hours .feature-panel .feature-content .doktor-feature-link {
  font-family: var(--global--font-body);
  font-weight: 700;
  color: var(--global--color-white);
  font-size: 15px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
}

.features-bar .features-holder .feature-panel-wrapper .feature-panel .feature-content .doktor-feature-link i,
.features-bar .features-holder .feature-panel-wrapper.feature-reservation .feature-panel .feature-content .doktor-feature-link i,
.features-bar .features-holder .feature-panel-wrapper.feature-timetable .feature-panel .feature-content .doktor-feature-link i,
.features-bar .features-holder .feature-panel-wrapper.feature-opening-hours .feature-panel .feature-content .doktor-feature-link i {
  flex-shrink: 0;
  color: var(--global--color-white);
  margin-right: 10px;
  font-size: 11px;
  transition: 0.3s ease-in-out;
}

.features-bar .features-holder .feature-panel-wrapper .feature-panel .feature-content .doktor-feature-link span,
.features-bar .features-holder .feature-panel-wrapper.feature-reservation .feature-panel .feature-content .doktor-feature-link span,
.features-bar .features-holder .feature-panel-wrapper.feature-timetable .feature-panel .feature-content .doktor-feature-link span,
.features-bar .features-holder .feature-panel-wrapper.feature-opening-hours .feature-panel .feature-content .doktor-feature-link span {
  position: relative;
}

.features-bar .features-holder .feature-panel-wrapper .feature-panel .feature-content .doktor-feature-link span::after,
.features-bar .features-holder .feature-panel-wrapper.feature-reservation .feature-panel .feature-content .doktor-feature-link span::after,
.features-bar .features-holder .feature-panel-wrapper.feature-timetable .feature-panel .feature-content .doktor-feature-link span::after,
.features-bar .features-holder .feature-panel-wrapper.feature-opening-hours .feature-panel .feature-content .doktor-feature-link span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--global--color-primary);
}

/* ---- Main-11 intro content ---- */
.main11-intro-section {
  padding-top: 56px;
}

.main11-intro-content {
  max-width: 980px;
  margin: 0 auto;
  color: var(--d2-ink);
}

.main11-intro-content p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--d2-ink-mute);
  margin-bottom: 1.1em;
}

.main11-intro-content > p:first-of-type::first-letter {
  float: left;
  font-size: 64px;
  line-height: 0.85;
  font-weight: 800;
  color: var(--global--color-primary-darken);
  margin-right: 10px;
  margin-top: 8px;
}

@media (max-width: 767.98px) {
  .main11-intro-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .main11-intro-content > p:first-of-type::first-letter {
    font-size: 48px;
    margin-right: 8px;
    margin-top: 6px;
  }
}

/* ---- Info Card module ---- */
.team-single.info-card-module {
  margin-top: 0;
  padding-top: 80px;
  margin-bottom:7px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.team-single.info-card-module .entry-bio {
  margin-bottom: 24px;
}

.team-single.info-card-module .entry-bio .entry-heading {
  color: var(--d2-ink);
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.team-single.info-card-module .entry-bio .entry-desc.strong {
  color: var(--d2-ink-mute);
  font-weight: 500;
}

.team-single.info-card-module .entry-table {
  border: 1px solid var(--d2-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 37, 64, 0.08);
}

.team-single.info-card-module .entry-table .table {
  margin-bottom: 0;
}

.team-single.info-card-module .entry-table .table tbody tr {
  transition: background-color 0.28s ease, transform 0.28s ease;
}

.team-single.info-card-module .entry-table .table tbody tr:nth-child(odd) {
  background-color: #f9fcff;
}

.team-single.info-card-module .entry-table .table tbody tr:hover {
  background: linear-gradient(90deg, rgba(42, 119, 255, 0.1), rgba(25, 42, 86, 0.08));
}

.team-single.info-card-module .entry-table .table tbody td {
  border-color: #e8f0fa;
  padding: 18px 22px;
  vertical-align: middle;
}

.team-single.info-card-module .entry-table .content.head {
  font-weight: 800;
  color: var(--d2-accent-deep);
}

.team-single.info-card-module .entry-table .content {
  color: var(--d2-ink);
}

.team-single.info-card-module .entry-table .content h3 {
  color: var(--d2-accent-deep);
  transition: color 0.28s ease;
}

.team-single.info-card-module .entry-table .table tbody tr:hover .content h3 {
  color: var(--d2-accent);
}

.team-single.info-card-module .info-card-mobile-list {
  display: none;
}

@media (max-width: 767px) {
  .team-single.info-card-module {
    padding-top: 55px;
    background: #fff;
  }

  .team-single.info-card-module .entry-table {
    display: none !important;
  }

  .team-single.info-card-module .info-card-mobile-list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .team-single.info-card-module .info-card-mobile-list::-webkit-scrollbar {
    height: 6px;
  }

  .team-single.info-card-module .info-card-mobile-list::-webkit-scrollbar-thumb {
    background: rgba(65, 166, 155, .45);
    border-radius: 999px;
  }

  .team-single.info-card-module .info-card-mobile-item {
    flex: 0 0 86%;
    min-width: 252px;
    max-width: 340px;
    padding: 18px 16px;
    border: 1px solid #e8f0fa;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(12, 38, 70, .08);
    scroll-snap-align: start;
  }

  .team-single.info-card-module .info-card-mobile-title {
    display: block !important;
    margin: 0 0 10px;
    color: var(--d2-accent-deep) !important;
    font-size: 17px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    letter-spacing: 0;
  }

  .team-single.info-card-module .info-card-mobile-content,
  .team-single.info-card-module .info-card-mobile-content p,
  .team-single.info-card-module .info-card-mobile-content li,
  .team-single.info-card-module .info-card-mobile-content h3,
  .team-single.info-card-module .info-card-mobile-content h4,
  .team-single.info-card-module .info-card-mobile-content strong,
  .team-single.info-card-module .info-card-mobile-content span {
    display: revert;
    color: var(--d2-ink) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .team-single.info-card-module .info-card-mobile-content > :last-child {
    margin-bottom: 0;
  }

  .team-single.info-card-module .info-card-mobile-content ul,
  .team-single.info-card-module .info-card-mobile-content ol {
    margin: 8px 0 0;
    padding-left: 18px;
  }

  .team-single.info-card-module .info-card-mobile-content li {
    margin-bottom: 6px;
  }
}

/* ---- Expertise module ---- */
.single-service.expertise-module .entry-infos.tips-info .entry-heading {
  color: var(--d2-ink);
  font-weight: 800;
  margin-bottom: 14px;
}

.single-service.expertise-module .entry-infos.tips-info .entry-desc,
.single-service.expertise-module .entry-infos.tips-info .prices-desc,
.single-service.expertise-module .entry-infos.tips-info .prices-desc p {
  color: var(--d2-ink-mute);
}

.single-service.expertise-module .entry-infos.tips-info .prices-list {
  border: 1px solid var(--d2-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(12, 38, 70, 0.08);
  padding: 22px 20px;
  height: 100%;
  margin-bottom: 24px;
}

.single-service.expertise-module .entry-infos.tips-info .prices-list h3 {
  color: var(--d2-accent-deep);
  margin-bottom: 12px;
}

.single-service.expertise-module .entry-infos.tips-info .prices-list ul {
  margin: 16px 0 0;
  padding: 0;
}

.single-service.expertise-module .entry-infos.tips-info .prices-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid #e8f0fa;
  border-radius: 10px;
  background: #f9fcff;
  margin-bottom: 10px;
  transition: background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.single-service.expertise-module .entry-infos.tips-info .prices-list ul li:last-child {
  margin-bottom: 0;
}

.single-service.expertise-module .entry-infos.tips-info .prices-list ul li .list-title {
  margin: 0;
  color: var(--d2-ink);
  font-weight: 700;
  transition: color 0.28s ease;
}

.single-service.expertise-module .entry-infos.tips-info .prices-list ul li .price {
  color: var(--d2-accent-deep);
  font-weight: 800;
  transition: color 0.28s ease;
}

.single-service.expertise-module .entry-infos.tips-info .prices-list ul li:hover {
  background: linear-gradient(90deg, rgba(42, 119, 255, 0.12), rgba(25, 42, 86, 0.1));
  border-color: rgba(42, 119, 255, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(13, 54, 102, 0.14);
}

.single-service.expertise-module .entry-infos.tips-info .prices-list ul li:hover .list-title,
.single-service.expertise-module .entry-infos.tips-info .prices-list ul li:hover .price {
  color: var(--d2-accent-deep);
}

/* ---- Services Content 2 module ---- */
.single-service.services-content-2 {
    padding-top: 65px;
    padding-bottom: 65px;
    background: linear-gradient(135deg, #ffffff 0%, #e3effc 52%, #ffffff 100%);
}

.services-content-2 .entry-bio {
  margin-bottom: 30px;
  padding: 24px 26px;
  border: 1px solid #e7eef8;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 28px rgba(12, 38, 70, 0.08);
}

.services-content-2 .entry-bio .entry-heading {
  color: var(--d2-ink);
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.services-content-2 .entry-bio .entry-subheading {
    margin: 25px 13px 25px -4px;
    color: #ffffff;
    background: #5ba69d;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    padding: 17px;
}

.services-content-2 .entry-bio .entry-desc.strong {
  color: var(--d2-ink-mute);
  font-weight: 500;
  margin-bottom: 0;
}

.services-content-2 .entry-bio .entry-desc.strong > :last-child {
  margin-bottom: 0;
}

.services-content-2 .services-content-2-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.services-content-2 .services-content-2-item {
  border: 1px solid #e7eef8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(12, 38, 70, 0.1);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.services-content-2 .services-content-2-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--d2-accent), var(--d2-accent-deep));
  opacity: 0.9;
}

.services-content-2 .services-content-2-title {
  margin: 0 0 12px;
  color: var(--d2-accent-deep);
}

.services-content-2 .services-content-2-body,
.services-content-2 .services-content-2-body p {
  color: var(--d2-ink-mute);
}

.services-content-2 .services-content-2-body .entry-table {
  margin-top: 12px;
  border: 1px solid #e5eef9;
  border-radius: 12px;
  overflow: hidden;
}

.services-content-2 .services-content-2-body .entry-table .table {
  margin: 0;
}

.services-content-2 .services-content-2-body .entry-table .table tbody tr {
  transition: background-color 0.25s ease;
}

.services-content-2 .services-content-2-body .entry-table .table tbody tr:nth-child(odd) {
  background: #f8fbff;
}

.services-content-2 .services-content-2-body .entry-table .table tbody tr:hover {
  background: linear-gradient(90deg, rgba(42, 119, 255, 0.12), rgba(25, 42, 86, 0.1));
}

.services-content-2 .services-content-2-body .entry-table .table tbody td {
  border-color: #e8f0fa;
  padding: 12px 14px;
  vertical-align: middle;
}

.services-content-2 .services-content-2-body .entry-table .content.head {
  color: var(--d2-accent-deep);
  font-weight: 800;
}

.services-content-2 .services-content-2-body .entry-table .content {
  color: var(--d2-ink);
}

.services-content-2 .services-content-2-body ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.services-content-2 .services-content-2-body ul li {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 11px 14px;
  border: 1px solid #e8f0fa;
  border-radius: 10px;
  background: #f9fcff;
  margin-bottom: 0;
  color: var(--d2-ink);
  font-weight: 600;
  line-height: 1.35;
  transition: background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.services-content-2 .services-content-2-body ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--d2-accent), var(--d2-accent-deep));
  margin-right: 10px;
  flex: 0 0 8px;
}

.services-content-2 .services-content-2-body ul li:last-child {
  margin-bottom: 0;
}

.services-content-2 .services-content-2-body ul li:hover {
  background: linear-gradient(90deg, rgba(42, 119, 255, 0.12), rgba(25, 42, 86, 0.1));
  border-color: rgba(42, 119, 255, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(13, 54, 102, 0.14);
}

/* WYSIWYG bazen listeyi entry-desc icine basabiliyor: ayni kart stilini burada da koru */
.services-content-2 .entry-desc ul,
.services-content-2 .entry-desc.strong ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.services-content-2 .entry-desc ul li,
.services-content-2 .entry-desc.strong ul li {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 11px 14px;
  border: 1px solid #e8f0fa;
  border-radius: 10px;
  background: #f9fcff;
  margin-bottom: 0;
  color: var(--d2-ink);
  font-weight: 600;
  line-height: 1.35;
  transition: background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.services-content-2 .entry-desc ul li::before,
.services-content-2 .entry-desc.strong ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--d2-accent), var(--d2-accent-deep));
  margin-right: 10px;
  flex: 0 0 8px;
}

.services-content-2 .entry-desc ul li:hover,
.services-content-2 .entry-desc.strong ul li:hover {
  background: linear-gradient(90deg, rgba(42, 119, 255, 0.12), rgba(25, 42, 86, 0.1));
  border-color: rgba(42, 119, 255, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(13, 54, 102, 0.14);
}

@media (max-width: 575.98px) {
  .services-content-2 .entry-bio {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .services-content-2 .entry-bio .entry-heading {
    font-size: 24px;
    line-height: 1.25;
  }

  .services-content-2 .entry-desc ul,
  .services-content-2 .entry-desc.strong ul {
    grid-template-columns: 1fr;
  }
  .services-content-2 .services-content-2-body ul {
    grid-template-columns: 1fr;
  }
  .services-content-2 .services-content-2-item {
    padding: 16px;
    border-radius: 12px;
  }
}

@media (max-width: 1199.98px) and (min-width: 768px) {
  .services-content-2 .entry-desc ul,
  .services-content-2 .entry-desc.strong ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .services-content-2 .services-content-2-body ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) and (min-width: 576px) {
  .services-content-2 .entry-bio .entry-heading {
    font-size: 26px;
    line-height: 1.25;
  }

  .services-content-2 .entry-desc ul,
  .services-content-2 .entry-desc.strong ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-content-2 .services-content-2-body ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---- Global mobile hardening for page components (desktop'a dokunmaz) ---- */
@media (max-width: 991.98px) {
  #main-content .cms-page-content,
  .single-service .entry-desc,
  .single-service .entry-desc p,
  .team-single .entry-desc,
  .team-single .entry-desc p {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .cms-page-content table,
  .services-content-2 .entry-table .table,
  .team-single.info-card-module .entry-table .table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cms-page-content iframe,
  .cms-page-content video,
  .cms-page-content embed,
  .cms-page-content object {
    max-width: 100%;
  }

  .blog.blog-1.blog-carousel-module .blog-entry .entry-content,
  .services.services-2 .service-panel .service-body,
  .features.features-1 .features-cards .card-panel .card-content .card-body {
    min-height: 0;
  }

  .contact.contact-2.appointment-final .contact-actions,
  .about.about-3.about-image-text-module .about-action,
  .services-content .services-content-cta,
  .services-content-left .services-content-cta {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 767.98px) {
  .section,
  .team-single,
  .single-service,
  .blog.blog-1,
  .features.features-1,
  .cta.cta-3,
  .about.about-3,
  .contact.contact-2 {
    overflow-x: clip;
  }

  /* Hero/slider stabilizasyon */
  .slider.slider-2.slider-departments-module .slide-content {
    padding-top: 18px;
  }

  .slider.slider-2.slider-departments-module .slide-text-1,
  .slider.slider-2.slider-departments-module .slide-text-2 {
    max-width: 100%;
  }

  .slider.slider-2.slider-departments-module .departments-card .department-info {
    padding: 16px 12px;
  }

  /* Features banner kart/nav */
  .features.features-1 .features-cards .card-panel {
    margin-bottom: 0;
  }

  .features.features-1 .features-cards.doktor-feature-card-slider .owl-nav {
    top: -52px;
    right: 0;
  }

  /* CTA process nav mobile uyumu */
  .cta.cta-3.cta-process .processes .processes-holder.doktor-process-card-slider .owl-nav {
    top: -52px;
    right: 0;
  }

  /* Team carousel inline-style dengesi */
  .team-cv .team-cv-body h3,
  .team-cv .team-cv-content h3 {
    font-size: 26px !important;
    line-height: 1.22 !important;
  }

  .team-cv .team-cv-body,
  .team-cv .team-cv-content {
    padding-top: 10px !important;
  }

  .team-cv .team-info li {
    padding: 8px 0;
  }

  .team-cv .team-social {
    gap: 8px !important;
  }

  /* Contact card image inline-style dengesi */
  .contact-card-image-module .img-card-holder,
  .contact.contact-1 .img-card-holder {
    margin-top: 18px;
  }

  .contact-card-image-module .contact-info-list,
  .contact.contact-1 .contact-info-list {
    gap: 10px !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  /* About image text */
  .about.about-3.about-image-text-module .heading .heading-title {
    margin-bottom: 10px;
  }

  .about.about-3.about-image-text-module .about-img > a > img {
    min-height: 0;
  }

  /* FAQ / donations accordion */
  .donations.donations-1 .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 15px;
    line-height: 1.4;
    padding-right: 44px;
  }

  /* Info / education / expertise */
  .team-single.info-card-module .entry-table,
  .team-single.education-card-module .education-body,
  .single-service.expertise-module .entry-infos.tips-info .prices-list {
    border-radius: 10px;
  }

  .single-service.expertise-module .entry-infos.tips-info .prices-list ul li {
    padding: 10px 12px;
  }

  /* Services content ailesi */
  .services-content .services-content-item,
  .services-content-left .services-content-item,
  .services-content-2 .services-content-2-item {
    padding-left: 0;
  }

  .services-content-2 .services-content-2-title {
    font-size: 19px;
    line-height: 1.3;
  }

  .services-content-2 .services-content-2-body ul li,
  .services-content-2 .entry-desc ul li,
  .services-content-2 .entry-desc.strong ul li {
    min-height: 46px;
    padding: 9px 11px;
    font-size: 13px;
  }

  /* Appointment final */
  .contact.contact-2.appointment-final .contact-panel {
    padding: 18px 14px;
    border-radius: 10px;
  }

  .contact.contact-2.appointment-final .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Harita iframe */
  .map iframe {
    min-height: 300px;
  }
}

/* ---- H1 layouts: slider typography skin ---- */
.hero.h1-layout-skin .hero-content .hero-title {
  display: block;
  font-size: 50px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 18px;
  color: #fff;
}

.hero.h1-layout-skin .hero-content .hero-desc {
  font-family: var(--global--font-body);
  font-size: 18px;
  line-height: 1.58;
  font-weight: 600;
  color: #ffffff;
  max-width: 640px;
  margin-bottom: 18px;
}

.hero.h1-layout-skin .breadcrumb-holder .breadcrumb,
.hero.h1-layout-skin .breadcrumb-holder .breadcrumb a,
.hero.h1-layout-skin .breadcrumb-holder .breadcrumb-item {
  color: rgba(255, 255, 255, 0.9);
}

.hero.h1-layout-skin .breadcrumb-holder .breadcrumb a:hover {
  color: #fff;
}

.h1-layout-skin-main13 .heading.heading-6 .heading-title {
  font-size: 50px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--global--color-secondary-darken);
  margin-bottom: 18px;
}

.h1-layout-skin-main13 .heading.heading-6 .heading-desc,
.h1-layout-skin-main13 .heading.heading-6 .heading-desc p,
.h1-layout-skin-main13 .heading.heading-6 .cms-page-content,
.h1-layout-skin-main13 .heading.heading-6 .cms-page-content p {
  font-family: var(--global--font-body);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
  color: var(--d2-ink-mute);
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
  .hero.h1-layout-skin .hero-content .hero-title,
  .h1-layout-skin-main13 .heading.heading-6 .heading-title { font-size: 44px; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero.h1-layout-skin .hero-content .hero-title,
  .h1-layout-skin-main13 .heading.heading-6 .heading-title { font-size: 37px; }
}

@media (max-width: 767.98px) {
  .hero.h1-layout-skin .hero-content .hero-title,
  .h1-layout-skin-main13 .heading.heading-6 .heading-title { font-size: 30px; }
  .hero.h1-layout-skin .hero-content .hero-desc,
  .h1-layout-skin-main13 .heading.heading-6 .heading-desc,
  .h1-layout-skin-main13 .heading.heading-6 .heading-desc p,
  .h1-layout-skin-main13 .heading.heading-6 .cms-page-content,
  .h1-layout-skin-main13 .heading.heading-6 .cms-page-content p {
    font-size: 15px;
    line-height: 1.68;
  }
}

/* ---- Blog list spacing ---- */
.blog.blog-grid#blog {
  padding-top: 92px;
  padding-bottom: 96px;
}

.blog.blog-grid#blog .row {
  --bs-gutter-y: 28px;
}

.blog.blog-grid#blog .pagination {
  margin-top: 22px;
}

@media (max-width: 767.98px) {
  .blog.blog-grid#blog {
    padding-top: 64px;
    padding-bottom: 68px;
  }
  .blog.blog-grid#blog .row {
    --bs-gutter-y: 20px;
  }
}

/* ---- Main layout TinyMCE listeleri ---- */
.cms-page-content ul,
.cms-page-content ol {
  margin: 14px 0 22px;
  padding-left: 24px;
  color: inherit;
}

.cms-page-content ul {
  list-style: disc;
}

.cms-page-content ol {
  list-style: decimal;
}

.cms-page-content li {
  display: list-item;
  margin-bottom: 8px;
  padding-left: 4px;
  color: var(--d2-ink-mute);
}

.cms-page-content ul li {
  list-style: disc;
}

.cms-page-content ol li {
  list-style: decimal;
}

.cms-page-content li::marker {
  color: currentColor;
}

.cms-page-content ul ul {
  list-style: circle;
}

.cms-page-content ul ul li {
  list-style: circle;
}

.cms-page-content ol ol {
  list-style: lower-alpha;
}

.cms-page-content ol ol li {
  list-style: lower-alpha;
}

/* ═══════════════════════════════════════════════════════════
   SLIDER NAV ARROWS — ‹ › yuvarlak buton stili
   (style.css içindeki icon-font ::before override)
   ═══════════════════════════════════════════════════════════ */
.slider .carousel-navs-slider .owl-nav .owl-prev,
.slider .carousel-navs-slider .owl-nav .owl-next {
  width: 44px !important;
  height: 44px !important;
  background: #162032 !important;
  border-radius: 10px !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.22s ease !important;
}

.slider .carousel-navs-slider .owl-nav .owl-prev:hover,
.slider .carousel-navs-slider .owl-nav .owl-next:hover {
  background: #1f3148 !important;
}

.slider .carousel-navs-slider .owl-nav .owl-prev:before,
.slider .carousel-navs-slider .owl-nav .owl-next:before {
  font-family: inherit !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  display: block !important;
  color: #fff !important;
  background: none !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  transition: none !important;
}

.slider .carousel-navs-slider .owl-nav .owl-prev:before {
  content: '<' !important;
}

.slider .carousel-navs-slider .owl-nav .owl-next:before {
  content: '>' !important;
}

.slider .carousel-navs-slider .owl-nav .owl-prev:hover::before,
.slider .carousel-navs-slider .owl-nav .owl-next:hover::before {
  background: none !important;
  border-color: transparent !important;
  color: #fff !important;
}
