/* =========================================================
   MediPlus Modern ÔÇö hekim sitesi tema paketi
   Dinamik brand: --brand-* (tema rengi)
   ========================================================= */

body.theme-modern,
body.layout-modern {
  --cream: #f5f9fc;
  --ink: #2c2d3f;
  --muted: #757575;
  --line: #e6e6e6;
  --radius: 6px;
  --shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  --header-h: 90px;
  --mp-navy: #0B1C39;
  --mp-blue: var(--brand-600, #1A76D1);
  --mp-blue-dark: var(--brand-700, #0e5cad);
  --font: "Poppins", system-ui, sans-serif;
  --display: "Poppins", system-ui, sans-serif;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
}

body.layout-modern .topbar,
body.layout-modern .site-header,
body.layout-modern .site-footer {
  display: none !important;
}

body.layout-modern .site-main {
  min-height: 50vh;
}

/* ---------- Topbar ---------- */
.mp-topbar {
  background: var(--mp-navy);
  color: #fff;
  font-size: 13px;
}
.mp-topbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
}
.mp-topbar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}
.mp-topbar a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mp-topbar a:hover { color: #fff; }
.mp-topbar-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.mp-topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}

/* ---------- Header ---------- */
.mp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}
.mp-header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}
.mp-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mp-blue), var(--mp-blue-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.mp-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}
.mp-brand strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--mp-navy);
}
.mp-brand small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.mp-nav {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.mp-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.mp-nav a:hover,
.mp-nav a.is-active {
  color: var(--mp-blue);
  background: rgba(26, 118, 209, 0.06);
}
.mp-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.mp-btn-primary {
  background: var(--mp-blue);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(26, 118, 209, 0.35);
}
.mp-btn-primary:hover {
  background: var(--mp-blue-dark);
  transform: translateY(-1px);
}
.mp-btn-outline {
  background: transparent;
  color: var(--mp-blue) !important;
  border: 2px solid var(--mp-blue);
}
.mp-btn-outline:hover {
  background: var(--mp-blue);
  color: #fff !important;
}
.mp-btn-white {
  background: #fff;
  color: var(--mp-blue) !important;
}
.mp-btn-lg {
  padding: 14px 28px;
  font-size: 0.92rem;
}
.mp-menu-btn {
  display: inline-flex;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--ink);
}
.mp-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 16px 16px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mp-mobile.is-open { display: flex; }
.mp-mobile a {
  padding: 12px 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid #f1f5f9;
}
@media (min-width: 992px) {
  .mp-nav { display: flex; }
  .mp-menu-btn { display: none; }
  .mp-mobile { display: none !important; }
}

/* ---------- Hero (multi-slide swiper) ---------- */
.mp-hero {
  position: relative;
  background: #0B1C39;
  color: #fff;
  overflow: hidden;
}
.mp-hero-swiper { width: 100%; }
.mp-hero-slide {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.mp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.mp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 28, 57, 0.92) 0%, rgba(11, 28, 57, 0.55) 55%, rgba(26, 118, 209, 0.35) 100%);
}
.mp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 16px;
  width: 100%;
}
.mp-hero-pagination {
  position: absolute;
  bottom: 22px !important;
  z-index: 5;
}
.mp-hero-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.45;
}
.mp-hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--mp-blue, #1A76D1);
}
.mp-hero-prev,
.mp-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--mp-navy, #0B1C39);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: none;
}
@media (min-width: 768px) {
  .mp-hero-prev, .mp-hero-next { display: grid; place-items: center; }
}
.mp-hero-prev { left: 16px; }
.mp-hero-next { right: 16px; }
.mp-svc-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 14px;
  background: #e8eef5;
}
.mp-gal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) {
  .mp-gal-grid { grid-template-columns: repeat(3, 1fr); }
}
.mp-gal-item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line, #e6e6e6);
  background: #fff;
}
.mp-gal-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.mp-gal-item figcaption {
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mp-navy, #0B1C39);
}
.mp-hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8ec6ff;
  margin: 0 0 14px;
}
.mp-hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 640px;
  margin: 0 0 16px;
}
.mp-hero h1 em {
  font-style: normal;
  color: #7ec0ff;
}
.mp-hero-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 0 28px;
}
.mp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Feature strip (Emergency / Timetable / Hours) ---------- */
.mp-features {
  max-width: 1140px;
  margin: -48px auto 0;
  padding: 0 16px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  box-shadow: var(--shadow);
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .mp-features { grid-template-columns: repeat(3, 1fr); }
}
.mp-feature {
  background: #fff;
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .mp-feature {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
  .mp-feature:last-child { border-right: 0; }
}
.mp-feature:nth-child(2) { background: var(--mp-blue); color: #fff; }
.mp-feature:nth-child(2) .mp-feature-label,
.mp-feature:nth-child(2) p,
.mp-feature:nth-child(2) a,
.mp-feature:nth-child(2) li { color: rgba(255, 255, 255, 0.92); }
.mp-feature-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mp-blue);
  margin: 0 0 6px;
}
.mp-feature h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: inherit;
}
.mp-feature p {
  margin: 0 0 12px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}
.mp-feature ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
}
.mp-feature li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  color: var(--muted);
}
.mp-feature a {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mp-blue);
  text-decoration: none;
}

/* ---------- Sections ---------- */
.mp-section {
  padding: 72px 0;
}
.mp-section-alt { background: var(--cream); }
.mp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.mp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.mp-section-head .mp-eyebrow {
  display: inline-block;
  color: var(--mp-blue);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mp-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--mp-navy);
  line-height: 1.3;
}
.mp-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Why us / features grid */
.mp-why {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .mp-why { grid-template-columns: 1fr 1fr; align-items: center; }
}
.mp-why-list {
  display: grid;
  gap: 20px;
}
.mp-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.mp-why-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(26, 118, 209, 0.1);
  color: var(--mp-blue);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.mp-why-item h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--mp-navy);
}
.mp-why-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Stats */
.mp-stats {
  background: var(--mp-blue);
  color: #fff;
  padding: 48px 0;
}
.mp-stats-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .mp-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.mp-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}
.mp-stat span {
  font-size: 0.88rem;
  opacity: 0.9;
}

/* About */
.mp-about-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .mp-about-grid { grid-template-columns: 1fr 1fr; }
}
.mp-about-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e8eef5;
  min-height: 320px;
  aspect-ratio: 4 / 5;
}
.mp-about-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.mp-about-check {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.mp-about-check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink);
}
.mp-about-check li::before {
  content: "Ô£ô";
  color: var(--mp-blue);
  font-weight: 800;
  flex-shrink: 0;
}

/* Emergency band */
.mp-emergency {
  background: linear-gradient(90deg, var(--mp-navy), var(--mp-blue));
  color: #fff;
  padding: 40px 0;
}
.mp-emergency-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mp-emergency h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}
.mp-emergency p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.92rem;
}

/* Services */
.mp-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .mp-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .mp-svc-grid { grid-template-columns: repeat(3, 1fr); }
}
.mp-svc-card {
  background: #fff !important;
  border: 1px solid var(--line, #e6e6e6);
  border-radius: 6px;
  padding: 28px 22px;
  text-decoration: none !important;
  color: #2c2d3f !important;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}
.mp-svc-card:hover {
  border-color: var(--mp-blue);
  box-shadow: 0 10px 30px rgba(26, 118, 209, 0.12);
  transform: translateY(-3px);
}
.mp-svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26, 118, 209, 0.1);
  color: var(--mp-blue);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.mp-svc-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--mp-navy);
}
.mp-svc-card p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.mp-svc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.mp-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(26, 118, 209, 0.08);
  color: var(--mp-blue);
  font-size: 0.75rem;
  font-weight: 600;
}
.mp-svc-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mp-blue);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Pricing style service cards */
.mp-price-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .mp-price-grid { grid-template-columns: repeat(3, 1fr); }
}
.mp-price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.mp-price-card:hover {
  border-color: var(--mp-blue);
  box-shadow: var(--shadow);
}
.mp-price-card.is-featured {
  border-color: var(--mp-blue);
  box-shadow: 0 12px 36px rgba(26, 118, 209, 0.18);
  transform: scale(1.02);
}
.mp-price-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--mp-navy);
}
.mp-price-card .mp-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--mp-blue);
  margin: 0 0 4px;
}
.mp-price-card .mp-price-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 18px;
}
.mp-price-card ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  text-align: left;
}
.mp-price-card li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.88rem;
  color: var(--muted);
}
.mp-price-card li::before {
  content: "ÔÇó ";
  color: var(--mp-blue);
  font-weight: 700;
}

/* Testimonials */
.mp-testimonials {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .mp-testimonials { grid-template-columns: repeat(3, 1fr); }
}
.mp-testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
}
.mp-testi-stars {
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.mp-testi p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
}
.mp-testi strong {
  display: block;
  font-size: 0.95rem;
  color: var(--mp-navy);
}
.mp-testi small {
  color: var(--muted);
  font-size: 0.78rem;
}

/* Blog */
.mp-blog-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .mp-blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.mp-blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.mp-blog-card:hover { box-shadow: var(--shadow); }
.mp-blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #e8eef5;
}
.mp-blog-body { padding: 18px 18px 22px; flex: 1; display: flex; flex-direction: column; }
.mp-blog-date {
  font-size: 0.75rem;
  color: var(--mp-blue);
  font-weight: 600;
  margin-bottom: 8px;
}
.mp-blog-body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--mp-navy);
  line-height: 1.35;
}
.mp-blog-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Doctor highlight */
.mp-doctor-card {
  display: grid;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (min-width: 800px) {
  .mp-doctor-card { grid-template-columns: 280px 1fr; }
}
.mp-doctor-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.mp-doctor-body {
  padding: 28px 28px 28px 8px;
}
@media (max-width: 799px) {
  .mp-doctor-body { padding: 20px; }
}
.mp-doctor-body .mp-eyebrow {
  color: var(--mp-blue);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mp-doctor-body h2 {
  margin: 6px 0 10px;
  font-size: 1.5rem;
  color: var(--mp-navy);
}
.mp-doctor-body p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* CTA appointment band */
.mp-cta-band {
  background: var(--cream);
  padding: 64px 0;
}
.mp-cta-card {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}
.mp-cta-card h2 {
  margin: 0 0 10px;
  font-size: 1.65rem;
  color: var(--mp-navy);
}
.mp-cta-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

/* ---------- Page hero (inner pages) ---------- */
.mp-page-hero {
  background: linear-gradient(100deg, var(--mp-navy) 0%, var(--mp-blue) 100%);
  color: #fff;
  padding: 56px 0 48px;
}
.mp-page-hero .mp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 12px;
  opacity: 0.9;
}
.mp-page-hero .mp-breadcrumb a {
  color: #cfe5ff;
  text-decoration: none;
}
.mp-page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
}
.mp-page-hero p {
  margin: 0;
  max-width: 560px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Inner content helpers */
.mp-page .mp-section { padding: 48px 0 64px; }
.mp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.mp-card h2, .mp-card h3 { color: var(--mp-navy); }

/* ---------- Booking wizard (site-like) ---------- */
.mp-book {
  display: grid;
  gap: 24px;
}
@media (min-width: 992px) {
  .mp-book { grid-template-columns: 1.4fr 0.9fr; align-items: start; }
}
.mp-book-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mp-book-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.mp-book-head h2 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--mp-navy);
}
.mp-book-head p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.mp-book-steps {
  display: flex;
  gap: 6px;
}
.mp-book-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dbe3ef;
}
.mp-book-step-dot.is-active { background: var(--mp-blue); }
.mp-book-step-dot.is-done { background: #22c55e; }
.mp-book-body { padding: 22px; }
.mp-book-panel[hidden] { display: none !important; }
.mp-book-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 0 0 12px;
}
.mp-book-svc-search {
  position: relative;
  margin-bottom: 14px;
}
.mp-book-svc-search input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
}
.mp-book-svc-search input:focus {
  outline: none;
  border-color: var(--mp-blue);
  box-shadow: 0 0 0 3px rgba(26, 118, 209, 0.12);
}
.mp-book-svc-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}
.mp-book-svc-scroll {
  max-height: 340px;
  overflow-y: auto;
  padding-right: 4px;
}
.mp-book-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 520px) {
  .mp-book-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
.mp-book-svc {
  display: flex;
  gap: 12px;
  align-items: center;
  text-align: left;
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.mp-book-svc:hover {
  border-color: #93c5fd;
  background: #f8fbff;
}
.mp-book-svc.is-selected {
  border-color: var(--mp-blue);
  background: rgba(26, 118, 209, 0.06);
  box-shadow: 0 0 0 3px rgba(26, 118, 209, 0.12);
}
.mp-book-svc-media {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: #eef4fb;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--mp-blue);
}
.mp-book-svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-book-svc-name {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--mp-navy);
}
.mp-book-svc-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.mp-book-svc-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mp-blue);
  background: rgba(26, 118, 209, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
}
.mp-book-datetime {
  display: grid;
  gap: 20px;
}
@media (min-width: 700px) {
  .mp-book-datetime { grid-template-columns: 1fr 1fr; }
}
.mp-book-cal {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}
.mp-book-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mp-book-cal-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--mp-navy);
}
.mp-book-icon-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.mp-book-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}
.mp-book-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.mp-book-day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  font-family: inherit;
}
.mp-book-day.is-muted { color: #cbd5e1; cursor: default; }
.mp-book-day.is-off { color: #cbd5e1; cursor: not-allowed; }
.mp-book-day.is-on:hover { background: #e8f2fc; color: var(--mp-blue); }
.mp-book-day.is-selected {
  background: var(--mp-blue);
  color: #fff;
}
.mp-book-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (min-width: 500px) {
  .mp-book-slots { grid-template-columns: repeat(4, 1fr); }
}
.mp-book-slot {
  padding: 10px 6px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
}
.mp-book-slot.is-free:hover {
  border-color: var(--mp-blue);
  color: var(--mp-blue);
}
.mp-book-slot.is-selected {
  background: var(--mp-blue);
  border-color: var(--mp-blue);
  color: #fff;
}
.mp-book-slot.is-busy {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}
.mp-book-empty {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 12px 0;
  margin: 0;
}
.mp-book-err {
  color: #b91c1c;
  font-size: 0.85rem;
  margin: 10px 0 0;
}
.mp-book-fields {
  display: grid;
  gap: 12px;
}
@media (min-width: 560px) {
  .mp-book-fields { grid-template-columns: 1fr 1fr; }
}
.mp-book-fields .full { grid-column: 1 / -1; }
.mp-book-fields label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 6px;
}
.mp-book-fields input,
.mp-book-fields textarea,
.mp-book-fields select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: inherit;
}
.mp-book-fields input:focus,
.mp-book-fields textarea:focus {
  outline: none;
  border-color: var(--mp-blue);
  box-shadow: 0 0 0 3px rgba(26, 118, 209, 0.12);
}
.mp-gorusme-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mp-gorusme-opt {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
}
.mp-gorusme-opt:has(input:checked) {
  border-color: var(--mp-blue);
  background: rgba(26, 118, 209, 0.06);
}
.mp-gorusme-opt input { accent-color: var(--mp-blue); }
.mp-gorusme-opt strong { display: block; font-size: 0.9rem; color: var(--mp-navy); }
.mp-gorusme-opt small { display: block; font-size: 0.75rem; color: var(--muted); }
.mp-book-kvkk {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
}
.mp-book-kvkk input { margin-top: 3px; accent-color: var(--mp-blue); }
.mp-book-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.mp-book-summary {
  background: #f0f7ff;
  border: 1px solid #cfe2f8;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--mp-navy);
  margin-bottom: 14px;
}
.mp-book-alert {
  padding: 12px 14px;
  border-radius: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.mp-book-success {
  padding: 16px;
  border-radius: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 0.95rem;
  line-height: 1.55;
}
.mp-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mp-side-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
}
.mp-side-list span:first-child { font-weight: 600; color: var(--ink); }
.mp-side-list span:last-child { color: var(--muted); }
.mp-map {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 6px;
}

/* ---------- Footer ---------- */
.mp-footer {
  background: var(--mp-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 0;
  margin-top: 0;
}
.mp-footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px 36px;
  display: grid;
  gap: 28px;
}
@media (min-width: 768px) {
  .mp-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .mp-footer-grid-4 { grid-template-columns: 1.15fr 0.85fr 1.15fr 1.15fr; }
}
.mp-footer-brand {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.mp-footer-klinik {
  margin: 0 0 4px !important;
  color: #8ec6ff;
  font-size: 0.88rem !important;
  font-weight: 600;
}
.mp-footer-uzmanlik {
  margin: 0 0 14px !important;
  font-size: 0.85rem !important;
  opacity: 0.85;
}
.mp-footer p {
  margin: 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.65;
}
.mp-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 14px;
}
.mp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mp-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
}
.mp-footer-links a:hover { color: #fff; }
.mp-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.mp-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.mp-footer-social a:hover {
  background: var(--mp-blue);
  border-color: var(--mp-blue);
}
.mp-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.mp-footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
}
.mp-fc-icon {
  flex: 0 0 22px;
  opacity: 0.9;
  margin-top: 2px;
}
.mp-footer-contact small {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.55;
  margin-bottom: 2px;
}
.mp-footer-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.mp-footer-contact a:hover { color: #8ec6ff; }
.mp-footer-contact span { color: rgba(255, 255, 255, 0.88); }
.mp-fc-sub {
  display: block !important;
  font-size: 0.8rem !important;
  opacity: 0.7;
  margin-top: 2px;
}
.mp-fc-hours {
  display: block;
  font-size: 0.82rem;
  opacity: 0.9;
  margin-top: 2px;
}
.mp-fc-hours em {
  font-style: normal;
  opacity: 0.7;
  margin-right: 6px;
}
.mp-footer-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #061022;
}
.mp-footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  display: block;
}
.mp-footer-map-cap {
  margin: 8px 0 0 !important;
  font-size: 0.8rem !important;
  opacity: 0.75;
  line-height: 1.45 !important;
}
.mp-footer-map-empty {
  margin: 0 0 8px !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
}
.mp-footer-map-link {
  color: #8ec6ff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.mp-footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.mp-footer-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: center;
}
.mp-footer-bar-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.mp-footer-bar-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.mp-footer-bar-contact a:hover { color: #fff; }

/* WhatsApp float inherits site styles if any */
body.layout-modern .btn-primary {
  background: var(--mp-blue);
  border-radius: 4px;
}
