/* Doctor Single Page — all sections */

/* ===== doctor-single-hero.css ===== */
/* =========================================
   Doctor Single — First section
   Full BG photo + LEFT white fade (mockup effect)
   Flat skyblue bar (#2CA9E1) — NO wave
   ========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.doc-single-page {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #2a3340;
  background: #fff;
}

.doc-hero {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

/* ---- Photo background layer — full width by default ---- */
.doc-hero__main {
  position: relative;
  width: 100%;
  min-height: 620px;
  background-color: #ffffff;
  background-image: var(--doc-hero-bg, url("assets/doctor-hero-clinic.png"));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
   padding: 80px 40px 80px;
}

/* Soft white wash on LEFT — same as screenshot / image left effect */
.doc-hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 34%,
    rgba(255, 255, 255, 0.92) 44%,
    rgba(255, 255, 255, 0.55) 56%,
    rgba(255, 255, 255, 0.12) 70%,
    rgba(255, 255, 255, 0) 82%
  );
}

.doc-hero__container {
  position: relative;
  z-index: 2;
  max-width: 1367px;
  margin: 0 auto;
 
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
  min-height: 620px;
}

.doc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.doc-hero__spacer {
  min-height: 1px;
}

.doc-hero__title {
  margin: 0 0 22px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #2ca9e1;
}

.doc-hero__title span {
  display: block;
  margin-top: 6px;
  color: #2ca9e1;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.doc-hero__copy p {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #2a3340;
}

.doc-hero__copy p:last-child {
  margin-bottom: 0;
}

.doc-hero__list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.doc-hero__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #2ca9e1;
}

.doc-hero__list li:last-child {
  margin-bottom: 0;
}

.doc-hero__check {
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 50%;
  background: #2ca9e1;
  color: #fff;
}

.doc-hero__check svg {
  width: 14px;
  height: 14px;
}

.doc-hero__check i {
  font-size: 12px;
  line-height: 1;
}

/* ---- Bottom bar: FLAT skyblue — no wave ---- */
.doc-hero__bar {
  width: 100%;
  background: #2ca9e1;
  padding: 40px 40px 40px;
}

.doc-hero__bar-inner {
  max-width: 1367px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.doc-hero__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px 16px;
}

.doc-hero__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 0;
  width: 1px;
  height: 76%;
  background: rgba(255, 255, 255, 0.35);
}

.doc-hero__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #fff;
}

.doc-hero__stat-icon svg {
  width: 34px;
  height: 34px;
}

.doc-hero__stat-icon i {
  font-size: 26px;
  line-height: 1;
}

.doc-hero__stat-label {
  max-width: 160px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

/* ---- Tablet ---- */
@media (min-width: 768px) and (max-width: 1024px) {
  .doc-hero__main,
  .doc-hero__container {
    min-height: 540px;
  }

  .doc-hero__container {
    padding: 48px 28px 56px;
  }

  .doc-hero__fade {
    background: linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 38%,
      rgba(255, 255, 255, 0.88) 50%,
      rgba(255, 255, 255, 0.4) 64%,
      rgba(255, 255, 255, 0) 80%
    );
  }

  .doc-hero__title {
    font-size: 30px;
  }

  .doc-hero__stat-label {
    font-size: 12px;
  }

  .doc-hero__stat-icon {
    width: 56px;
    height: 56px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  .doc-hero__main {
    min-height: 0;
    background-position: center top;
    padding:0;
  }

  .doc-hero__fade {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.75) 28%,
      #ffffff 48%,
      #ffffff 100%
    );
  }

  .doc-hero__container {
    grid-template-columns: 1fr;
    padding: 20px 20px 20px;
    min-height: 0;
    gap: 0;
  }
  .doc-about__fact--highlight i.fa-solid.fa-user-secret {
    font-size: 35px;
}
.doc-about__fact {
    gap: 7px;
}
  .doc-hero__spacer {
    display: none;
  }

  .doc-hero__content {
    max-width: none;
  }

  .doc-hero__title {
    font-size: 26px;
  }

  .doc-hero__bar {
    padding: 24px 16px 28px;
  }

  .doc-hero__bar-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .doc-hero__stat {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 14px;
    padding: 0;
  }

  .doc-hero__stat:not(:last-child)::after {
    display: none;
  }

  .doc-hero__stat-label {
    max-width: none;
    font-size: 14px;
  }

  .doc-hero__stat-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
  }
}

/* ===== doctor-single-about.css ===== */
/* =========================================
   Doctor Single — About
   Image on .doc-about__container + left ::before
   Flex only — no grid, no CSS variables
   Brand: #2CA9E1
   ========================================= */

.doc-about {
  width: 100%;
  padding: 0 40px 80px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
}

.doc-about__container {
  position: relative;
  z-index: 1;
  max-width: 1367px;
  margin: 0 auto;
  padding: 0;
  min-height: 700px;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  overflow: visible;
  background-color: #fff;
  background-image: url("assets/doctor-about-bg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

/* Left white fade — stop before doctor photo */
.doc-about__container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 34%,
    rgba(255, 255, 255, 0.92) 42%,
    rgba(255, 255, 255, 0.35) 48%,
    rgba(255, 255, 255, 0) 54%
  );
}

.doc-about__content {
  position: relative;
  z-index: 2;
  flex: 0 0 52%;
  width: 52%;
  max-width: 540px;
  padding: 40px 20px 48px 0;
  box-sizing: border-box;
  align-self: center;
}

.doc-about__label {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: #9aa3ab;
}

.doc-about__name {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #2ca9e1;
}

.doc-about__rule {
  position: relative;
  display: block;
  width: 200px;
  height: 2px;
  margin: 12px 0 18px;
  background: #2ca9e1;
}

.doc-about__rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #2ca9e1;
  transform: translate(-50%, -50%) rotate(45deg);
}

.doc-about__intro {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3a3a3a;
}

.doc-about__facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.doc-about__fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.doc-about__fact--highlight {
  padding: 14px 16px 14px 12px;
  margin-left: 0;
  border-radius: 14px;
  background: #e8f6fc;
}

.doc-about__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2ca9e1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.doc-about__fact--highlight .doc-about__icon {
  background: transparent;
  color: #2ca9e1;
}

.doc-about__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.doc-about__icon i {
  font-size: 18px;
  line-height: 1;
}

.doc-about__fact p {
  margin: 0;
  padding-top: 6px;
  font-size: 14px;
  line-height: 1.65;
  color: #3a3a3a;
}

.doc-about__fact strong {
  font-weight: 700;
  color: #2ca9e1;
}

.doc-about__media {
  position: relative;
  z-index: 2;
  flex: 1 1 48%;
  display: flex;
  align-items: unset;
  justify-content: center;
  min-height: 700px;
  min-width: 0;
  padding: 0 24px;
  overflow: visible;
  box-sizing: border-box;
}

.doc-about__portrait {
  display: block;
  height: auto;
  max-height: 700px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  user-select: none;
  pointer-events: none;
  padding-top: 60px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .doc-about {
    padding: 0 28px 56px;
  }

  .doc-about__container,
  .doc-about__media {
    min-height: 560px;
  }

  .doc-about__portrait {
    max-height: 520px;
  }

  .doc-about__content {
    flex: 0 0 52%;
    width: 52%;
  }
}

@media (max-width: 767px) {
  .doc-about {
    padding: 0 20px 48px;
  }

  .doc-about__container {
    min-height: 0;
    flex-direction: column;
    background-position: 75% top;
  }

  .doc-about__container::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.75) 40%,
      #fff 55%,
      #fff 100%
    );
  }

  .doc-about__content {
    flex: none;
    width: 100%;
    max-width: none;
    order: 2;
    padding: 12px 0 0;
  }

  .doc-about__media {
    flex: none;
    width: 100%;
    order: 1;
    min-height: 400px;
    justify-content: center;
    padding: 0 12px;
  }

  .doc-about__portrait {
    max-height: 400px;
    max-width: 100%;
  }

  .doc-about__fact--highlight {
    margin-left: 0;
  }
}

/* ===== doctor-credentials.css ===== */
/* =========================================
   Doctor Single — Education & Credentials
   BG on .doc-cred__inner + left ::before fade
   Flex layout — no CSS variables
   Brand: #2CA9E1
   ========================================= */

.doc-cred {
  position: relative;
  width: 100%;
  padding: 0 40px 80px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
}

.doc-cred__inner {
  position: relative;
  z-index: 1;
  max-width: 1367px;
  margin: 0 auto;
  padding: 0;
  min-height: 560px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #fff;
  background-image: url("assets/doctor-credentials-bg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

/* Left white fade — before effect on inner */
.doc-cred__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 38%,
    rgba(255, 255, 255, 0.92) 48%,
    rgba(255, 255, 255, 0.45) 58%,
    rgba(255, 255, 255, 0) 72%
  );
}

.doc-cred__content {
  position: relative;
  z-index: 2;
  flex: 0 0 52%;
  width: 52%;
  max-width: 560px;
  box-sizing: border-box;
  padding: 40px 24px 40px 0;
}

.doc-cred__media {
  position: relative;
  z-index: 2;
  flex: 1 1 48%;
  min-height: 1px;
  background: transparent;
}

.doc-cred__title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2ca9e1;
}

.doc-cred__rule {
  position: relative;
  display: block;
  width: 220px;
  height: 2px;
  margin: 14px 0 20px;
  background: #2ca9e1;
}

.doc-cred__rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #2ca9e1;
  transform: translate(-50%, -50%) rotate(45deg);
}

.doc-cred__intro {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.doc-cred__box {
  border: 1.5px solid #2ca9e1;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 22px;
}

.doc-cred__box-head {
  margin: 0;
  padding: 14px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #2ca9e1;
}

.doc-cred__list {
  margin: 0;
  padding: 20px 22px 22px;
  list-style: none;
}

.doc-cred__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #333;
}

.doc-cred__list li:last-child {
  margin-bottom: 0;
}

.doc-cred__check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: #2ca9e1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.doc-cred__check svg {
  width: 12px;
  height: 12px;
  display: block;
}

.doc-cred__check i {
  font-size: 10px;
  line-height: 1;
}

.doc-cred__list-text {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.doc-cred__list-text strong {
  display: inline;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  vertical-align: baseline;
  color: #2ca9e1;
}

.doc-cred__note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid #2ca9e1;
  border-radius: 14px;
  background: #e8f6fc;
}

.doc-cred__note-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2ca9e1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.doc-cred__note-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.doc-cred__note-icon i {
  font-size: 18px;
  line-height: 1;
}

.doc-cred__note p {
  margin: 0;
  padding-top: 4px;
  font-size: 14px;
  line-height: 1.65;
  color: #333;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .doc-cred {
    padding: 0 28px 56px;
  }

  .doc-cred__inner {
    min-height: 480px;
  }

  .doc-cred__content {
    flex: 0 0 58%;
    width: 58%;
    max-width: 520px;
  }

  .doc-cred__title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .doc-cred {
    padding: 0 20px 48px;
  }

  .doc-cred__inner {
    min-height: 0;
    flex-direction: column;
    background-position: center top;
  }

  .doc-cred__inner::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.75) 35%,
      #ffffff 50%,
      #ffffff 100%
    );
  }

  .doc-cred__content {
    flex: none;
    width: 100%;
    max-width: none;
    order: 2;
    padding: 24px 0 0;
  }

  .doc-cred__media {
    display: none;
  }
}

/* ===== doctor-care.css ===== */
/* =========================================
   Doctor Single — Comprehensive Care
   Flex only — no grid, no CSS variables
   Brand: #2CA9E1
   ========================================= */

.doc-care {
  width: 100%;
  padding: 0 40px 80px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
}

.doc-care__inner {
  max-width: 1367px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  box-sizing: border-box;
}

.doc-care__content {
  flex: 0 0 48%;
  width: 48%;
  max-width: 560px;
  box-sizing: border-box;
  padding: 20px 40px 20px 0;
  z-index: 2;
}

.doc-care__title {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
}

.doc-care__title span {
  color: #2ca9e1;
}

.doc-care__intro {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

.doc-care__sub {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.doc-care__line {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 18px;
  background: #2ca9e1;
}

.doc-care__conditions {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.doc-care__conditions li {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  box-sizing: border-box;
  padding: 12px 12px 12px 0;
  border-bottom: 1px solid #e6eef3;
}

.doc-care__ico {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2ca9e1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.doc-care__ico svg {
  width: 14px;
  height: 14px;
  display: block;
}

.doc-care__ico i {
  font-size: 12px;
  line-height: 1;
}

.doc-care__outro {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
}

.doc-care__outro strong {
  font-weight: 700;
  color: #2ca9e1;
}

/* Right media — height follows left content via flex stretch */
.doc-care__media {
  position: relative;
  flex: 1 1 52%;
  min-height: 0;
  align-self: stretch;
  overflow: hidden;
  box-sizing: border-box;
  background: #f4f8fb;
}

.doc-care__photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
}

/* Left fade into white text column */
.doc-care__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 32%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 30%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* Wave + spine graphic at bottom */
.doc-care__band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  box-sizing: border-box;
  pointer-events: none;
}

.doc-care__wave {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.doc-care__stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 0 5% 22px 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 6px;
  box-sizing: border-box;
  pointer-events: none;
}

.doc-care__stat {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  color: #fff;
  min-width: 0;
}

.doc-care__stat-icon {
  padding: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.doc-care__stat-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.doc-care__stat-icon i {
  font-size: 22px;
  line-height: 1;
}

.doc-care__stat > span:last-child {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .doc-care {
    padding: 0 28px 56px;
  }

  .doc-care__content {
    flex: 0 0 50%;
    width: 50%;
    max-width: 480px;
    padding-right: 20px;
  }

  .doc-care__title {
    font-size: 28px;
  }

  .doc-care__stat > span:last-child {
    font-size: 13px;
  }

  .doc-care__stat-icon i {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .doc-care {
    padding: 0 20px 48px;
  }

  .doc-care__inner {
    flex-direction: column;
    gap: 0;
  }

  .doc-care__content {
    flex: none;
    width: 100%;
    max-width: none;
    order: 2;
    padding: 28px 0 0;
  }

  .doc-care__media {
    flex: none;
    width: 100%;
    order: 1;
    min-height: 360px;
    align-self: auto;
  }

  .doc-care__photo {
    position: absolute;
    inset: 0;
  }

  .doc-care__media::before {
    width: 100%;
    height: 24%;
    inset: 0 0 auto 0;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .doc-care__conditions li {
    flex: 0 0 100%;
    width: 100%;
  }

  .doc-care__stats {
    padding: 0 4% 14px 10px;
  }

  .doc-care__stat > span:last-child {
    font-size: 11px;
  }

  .doc-care__stat-icon {
    padding: 4px;
  }

  .doc-care__stat-icon i {
    font-size: 16px;
  }
}

/* ===== doctor-commitment.css ===== */
/* =========================================
   Doctor Single — Our Commitment
   Flex only — no grid, no CSS variables
   Brand: #2CA9E1
   ========================================= */

.doc-commit {
  width: 100%;
  padding: 0 40px 80px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.doc-commit__inner {
  max-width: 1367px;
  margin: 0 auto;
  box-sizing: border-box;
}

.doc-commit__top {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-bottom: 36px;
}

.doc-commit__content {
  flex: 0 0 48%;
  width: 48%;
  max-width: 560px;
  box-sizing: border-box;
  padding: 8px 12px 8px 0;
}

.doc-commit__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2ca9e1;
}

.doc-commit__eyebrow::before {
  content: "";
  flex: 0 0 36px;
  width: 36px;
  height: 2px;
  background: #2ca9e1;
}

.doc-commit__title {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
}

.doc-commit__title em {
  display: block;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.2;
  color: #2ca9e1;
}

.doc-commit__blocks {
  display: flex;
  flex-direction: column;
}

.doc-commit__block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid #e6eef3;
}

.doc-commit__block:last-child {
  border-bottom: 1px solid #e6eef3;
}

.doc-commit__ico {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2ca9e1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.doc-commit__ico svg {
  width: 24px;
  height: 24px;
  display: block;
}

.doc-commit__ico i {
  font-size: 18px;
  line-height: 1;
}

.doc-commit__block p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #000;
}

.doc-commit__block strong {
  font-weight: 700;
  color: #2ca9e1;
}

/* Right photo — height follows left content */
.doc-commit__media {
  position: relative;
  flex: 1 1 52%;
  min-height: 0;
  align-self: stretch;
  overflow: hidden;
  border-radius: 24px;
  background: #f4f8fb;
}

.doc-commit__photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Bottom pillars */
.doc-commit__pillars {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 28px;
  background: #f3f7fa;
  border-radius: 20px;
  box-sizing: border-box;
}

.doc-commit__pillar {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.doc-commit__pillar-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid #2ca9e1;
  color: #2ca9e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.doc-commit__pillar-ico svg {
  width: 26px;
  height: 26px;
  display: block;
}

.doc-commit__pillar-ico i {
  font-size: 22px;
  line-height: 1;
}

.doc-commit__pillar h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #2ca9e1;
}

.doc-commit__pillar p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .doc-commit {
    padding: 0 28px 56px;
  }

  .doc-commit__top {
    gap: 28px;
  }

  .doc-commit__content {
    flex: 0 0 50%;
    width: 50%;
  }

  .doc-commit__pillars {
    gap: 14px;
    padding: 28px 18px;
  }

  .doc-commit__pillar h3 {
    font-size: 17px;
  }

  .doc-commit__pillar p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .doc-commit {
    padding: 0 20px 48px;
  }

  .doc-commit__top {
    flex-direction: column;
    gap: 24px;
  }

  .doc-commit__content {
    flex: none;
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .doc-commit__media {
    flex: none;
    width: 100%;
    min-height: 320px;
    align-self: auto;
  }

  .doc-commit__pillars {
    flex-wrap: wrap;
    padding: 24px 16px;
    gap: 24px 12px;
  }

  .doc-commit__pillar {
    flex: 0 0 100%;
    width: 100%;
  }
}

/* ===== doctor-choose.css ===== */
/* =========================================
   Doctor Single — Why Patients Choose
   Flex only — no grid, no CSS variables
   Brand: #2CA9E1 — no bottom wave
   ========================================= */

.doc-choose {
  width: 100%;
  padding: 0 40px 80px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.doc-choose__inner {
  max-width: 1367px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 48px;
  box-sizing: border-box;
}

/* Left media + mission */
.doc-choose__media {
  position: relative;
  flex: 0 0 42%;
  width: 42%;
  max-width: 480px;
  min-height: 520px;
  box-sizing: border-box;
}

.doc-choose__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.doc-choose__mission {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: #2ca9e1;
  border-radius: 12px;
  color: #fff;
  box-sizing: border-box;
}

.doc-choose__mission-ico {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.doc-choose__mission-ico svg {
  width: 22px;
  height: 22px;
  display: block;
}

.doc-choose__mission-ico i {
  font-size: 18px;
  line-height: 1;
}

.doc-choose__mission-body {
  flex: 1 1 auto;
  min-width: 0;
}

.doc-choose__mission-body h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.doc-choose__mission-body h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.55);
}

.doc-choose__mission-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #fff;
}

/* Right content */
.doc-choose__content {
  position: relative;
  flex: 1 1 58%;
  min-width: 0;
  box-sizing: border-box;
  padding-top: 8px;
}

.doc-choose__dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 56px;
  background-image: radial-gradient(circle, #2ca9e1 1.5px, transparent 1.6px);
  background-size: 12px 12px;
  background-repeat: repeat;
  opacity: 0.45;
  pointer-events: none;
}

.doc-choose__title {
  margin: 0 0 14px;
  padding-right: 80px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

.doc-choose__title span {
  color: #2ca9e1;
}

.doc-choose__intro {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #000;
}

.doc-choose__rule {
  display: block;
  width: 72px;
  height: 2px;
  margin: 0 0 8px;
  background: #2ca9e1;
}

.doc-choose__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.doc-choose__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e6eef3;
}

.doc-choose__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.doc-choose__ico {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2ca9e1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.doc-choose__ico svg {
  width: 22px;
  height: 22px;
  display: block;
}

.doc-choose__ico i {
  font-size: 16px;
  line-height: 1;
}

.doc-choose__text {
  flex: 1 1 auto;
  min-width: 0;
}

.doc-choose__text h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #2ca9e1;
}

.doc-choose__text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #000;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .doc-choose {
    padding: 0 28px 56px;
  }

  .doc-choose__inner {
    gap: 32px;
  }

  .doc-choose__media {
    flex: 0 0 40%;
    width: 40%;
    min-height: 480px;
  }

  .doc-choose__photo {
    min-height: 480px;
  }

  .doc-choose__title {
    font-size: 28px;
    padding-right: 60px;
  }

  .doc-choose__text h3 {
    font-size: 16px;
  }

  .doc-choose__text p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .doc-choose {
    padding: 0 20px 48px;
  }

  .doc-choose__inner {
    flex-direction: column;
    gap: 28px;
  }

  .doc-choose__media {
    flex: none;
    width: 100%;
    max-width: none;
    min-height: 420px;
  }

  .doc-choose__photo {
    min-height: 420px;
  }

  .doc-choose__content {
    flex: none;
    width: 100%;
  }

  .doc-choose__title {
    padding-right: 0;
    font-size: 24px;
  }

  .doc-choose__dots {
    display: none;
  }
}
