﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT PAGE â€” Premium Styles
   Extends base style.css design tokens
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   1. ABOUT HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(110deg,
      rgba(6, 12, 28, 0.95) 0%,
      rgba(6, 12, 28, 0.82) 40%,
      rgba(6, 12, 28, 0.5) 100%),
    url('assets/img/E10H1BMA.avif')
      center / cover no-repeat;
  padding: 120px 0 80px;
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08), transparent 40%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.about-hero-sub {
  font-size: 1.2rem;
  color: var(--brand);
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}

.about-hero-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
  margin: 0 0 30px;
}

.about-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Floating badge in hero */
.about-hero-badge {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.25);
  animation: badgeFloat 3.2s ease-in-out infinite;
}

.badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: grid;
  place-items: center;
  color: var(--brand);
  margin-bottom: 6px;
}

.about-hero-badge strong {
  font-size: 1.15rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
}

.about-hero-badge span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   2. WHO WE ARE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-who {
  padding: 80px 0;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-who-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 48px;
  align-items: center;
}

.about-who-collage {
  position: relative;
  width: 100%;
}

.who-img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.who-img-accent {
  position: absolute;
  right: -28px;
  bottom: -24px;
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.1);
  border: 4px solid #fff;
  z-index: 5;
}

.who-float-card {
  position: absolute;
  top: -18px;
  right: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.9);
  z-index: 10;
  animation: badgeFloat 3.5s ease-in-out infinite;
}

.who-float-card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--brand-dark);
  font-family: "Outfit", sans-serif;
  line-height: 1;
}

.who-float-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.about-label {
  display: inline-block;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.about-who-content .section-title {
  margin-bottom: 18px;
}

.about-who-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
  font-size: 1.02rem;
}

.about-who-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   3. OUR PHILOSOPHY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-philosophy {
  padding: 80px 0;
  background:
    radial-gradient(circle at right bottom, rgba(212, 175, 55, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.philosophy-text .section-title {
  margin-bottom: 16px;
}

.philosophy-lead {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 12px;
}

.philosophy-text p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 8px;
}

.philosophy-image-wrap {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
}

.philosophy-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.philosophy-values {
  display: grid;
  gap: 16px;
}

.philosophy-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(2, 6, 23, 0.08);
}

.philosophy-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.04));
  color: var(--brand-dark);
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.philosophy-card h3 {
  font-size: 1.02rem;
  margin: 0 0 4px;
  color: var(--ink);
}

.philosophy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.philosophy-bottom {
  margin-top: 40px;
}

.philosophy-quote {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.02));
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.14);
}

.philosophy-quote svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.philosophy-quote p {
  margin: 0;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   4. DOCTOR SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-doctor {
  padding: 80px 0;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
}

.doctor-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 48px;
  align-items: center;
}

.doctor-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.doctor-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.doctor-credential-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.doctor-credential-badge span {
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.doctor-degree {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.doctor-content .section-title {
  margin-bottom: 8px;
}

.doctor-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
  font-size: 1.02rem;
}

.doctor-highlights {
  display: flex;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.doctor-highlight {
  flex: 1 1 120px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.doctor-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.08);
}

.doctor-highlight strong {
  display: block;
  font-size: 1.4rem;
  color: var(--brand-dark);
  font-family: "Outfit", sans-serif;
  line-height: 1.1;
  margin-bottom: 4px;
}

.doctor-highlight span {
  font-size: 0.85rem;
  color: var(--muted);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   5. WHY PATIENTS TRUST US
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-trust {
  padding: 72px 0;
  background:
    radial-gradient(circle at left bottom, rgba(212, 175, 55, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.trust-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.trust-header .about-label {
  display: block;
  margin-bottom: 10px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 22px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 56px rgba(2, 6, 23, 0.08);
}

.trust-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
  color: var(--brand-dark);
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.trust-item h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   7. CLOSING CTA
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-cta-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  isolation: isolate;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 14, 28, 0.72), rgba(18, 41, 76, 0.55)),
    url('assets/img/E11EOJ9.avif') center center / cover no-repeat;
  transform: translate3d(0, 0, 0) scale(1.06);
  z-index: -2;
}

.about-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(7, 12, 24, 0.08), rgba(7, 12, 24, 0.35));
  pointer-events: none;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
}

.about-cta-panel {
  background: rgba(8, 15, 32, 0.55);
  color: #f8fafc;
  border-radius: 32px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-cta-text p {
  color: #d7deea;
  font-size: 1.08rem;
  margin: 12px 0 0;
  line-height: 1.65;
}

.cta-highlight {
  font-weight: 600;
  color: #fff !important;
  font-size: 1.05rem !important;
}

.about-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.about-cta-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.about-cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 1024px
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* About page motion layer (home-page style richness) */
@media (hover: hover) and (pointer: fine) {
  /* Hero panel shimmer + depth */
  .about-hero-badge {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .about-hero-badge::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -40%;
    width: 36%;
    height: 150%;
    background: linear-gradient(115deg, rgba(255,255,255,0), rgba(255,255,255,0.45), rgba(255,255,255,0));
    transform: translateX(-180%) skewX(-14deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .about-hero-badge:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: rgba(212, 175, 55, 0.42);
    box-shadow: 0 34px 78px rgba(2, 6, 23, 0.34);
  }
  .about-hero-badge:hover::after {
    opacity: 1;
    animation: aboutShineSweep 860ms cubic-bezier(0.22, 0.61, 0.36, 1) 1;
  }

  /* Who section parallax-like hover */
  .about-who-collage {
    transition: transform 0.28s ease;
    transform-style: preserve-3d;
  }
  .about-who-collage:hover {
    transform: perspective(900px) rotateY(-2.5deg) rotateX(1.3deg);
  }
  .who-img-main,
  .who-img-accent,
  .who-float-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }
  .about-who-collage:hover .who-img-main {
    transform: translate3d(-4px, -4px, 0);
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.14);
  }
  .about-who-collage:hover .who-img-accent {
    transform: translate3d(6px, -6px, 0) rotate(-1.5deg);
  }
  .about-who-collage:hover .who-float-card {
    transform: translate3d(-4px, -6px, 0);
  }

  /* Philosophy cards with directional personality */
  .philosophy-card {
    position: relative;
    overflow: hidden;
  }
  .philosophy-card::before {
    content: "";
    position: absolute;
    inset: -120% auto -120% -52%;
    width: 38%;
    transform: rotate(20deg);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.26), rgba(212, 175, 55, 0));
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
  }
  .philosophy-card:hover::before {
    opacity: 1;
    animation: philosophySweep 900ms ease 1;
  }
  .philosophy-card:nth-child(odd):hover {
    transform: translateY(-7px) rotate(-0.6deg);
  }
  .philosophy-card:nth-child(even):hover {
    transform: translateY(-7px) rotate(0.6deg);
  }

  /* Doctor photo cinematic hover */
  .doctor-image-wrap {
    transition: transform 0.32s ease, box-shadow 0.32s ease;
  }
  .doctor-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,0.22), rgba(255,255,255,0));
    opacity: 0;
    transform: translateX(-120%) skewX(-12deg);
    pointer-events: none;
  }
  .doctor-image-wrap:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 36px 90px rgba(2, 6, 23, 0.2);
  }
  .doctor-image-wrap:hover::after {
    opacity: 1;
    animation: doctorSweep 980ms cubic-bezier(0.22, 0.61, 0.36, 1) 1;
  }

  /* Trust items */
  .trust-item {
    position: relative;
    overflow: hidden;
  }
  .trust-item::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.82), rgba(212, 175, 55, 0.18));
    transform: rotate(45deg) scale(0.35);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
    pointer-events: none;
  }
  .trust-item:hover::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
  }

  /* CTA panel animated glow edge */
  .about-cta-panel {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .about-cta-panel::before {
    content: "";
    position: absolute;
    inset: auto -25% -50% -25%;
    height: 70%;
    border-radius: 999px;
    background: radial-gradient(closest-side, rgba(212,175,55,0.38), rgba(212,175,55,0));
    opacity: 0;
    transform: translateY(18px);
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .about-cta-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 90px rgba(15, 23, 42, 0.42);
  }
  .about-cta-panel:hover::before {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutShineSweep {
  from { transform: translateX(-180%) skewX(-14deg); }
  to { transform: translateX(350%) skewX(-14deg); }
}

@keyframes philosophySweep {
  0% { left: -52%; }
  100% { left: 130%; }
}

@keyframes doctorSweep {
  from { transform: translateX(-120%) skewX(-12deg); }
  to { transform: translateX(250%) skewX(-12deg); }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-badge,
  .who-float-card,
  .about-who-collage,
  .who-img-main,
  .who-img-accent,
  .philosophy-card,
  .doctor-image-wrap,
  .trust-item,
  .about-cta-panel {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .about-hero-badge::after,
  .philosophy-card::before,
  .doctor-image-wrap::after,
  .trust-item::after,
  .about-cta-panel::before {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .about-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-hero-badge {
    max-width: 340px;
    margin: 0 auto;
  }

  .about-who-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .who-img-main {
    height: 320px;
  }
  .who-img-accent {
    right: 12px;
    bottom: -16px;
    width: 160px;
    height: 120px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .philosophy-image {
    height: 230px;
  }

  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .doctor-image-wrap {
    width: min(100%, 560px);
    margin: 0 auto;
  }
  .doctor-photo {
    height: clamp(440px, 62vw, 540px);
    object-position: center 22%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta-panel {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .about-cta-actions {
    justify-content: flex-start;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 768px
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0 48px;
  }
  .about-hero-content h1 {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
  }
  .about-hero-sub {
    font-size: 1.05rem;
  }
  .about-hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .about-hero-actions .btn,
  .about-hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .about-hero-badge {
    max-width: 100%;
  }

  .about-who {
    padding: 52px 0;
  }
  .about-who-collage > img.who-img-main {
    display: block !important;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.08);
  }
  .about-who-collage > img.who-img-accent {
    display: none !important;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 14px;
    margin-top: 12px;
  }
  .who-float-card {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 12px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    animation: none;
  }
  .who-float-card strong {
    font-size: 1.2rem;
  }
  .about-who-cta {
    flex-direction: column;
  }
  .about-who-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .about-philosophy {
    padding: 52px 0;
  }
  .philosophy-quote {
    padding: 22px 20px;
  }
  .philosophy-quote p {
    font-size: 1rem;
  }
  .philosophy-image {
    height: 210px;
  }

  .about-doctor {
    padding: 52px 0;
  }
  .doctor-photo {
    height: clamp(380px, 82vw, 500px);
    object-position: center 20%;
  }
  .doctor-highlights {
    gap: 12px;
  }
  .doctor-highlight {
    flex: 1 1 0;
    padding: 14px 12px;
  }
  .doctor-highlight strong {
    font-size: 1.15rem;
  }

  .about-trust {
    padding: 52px 0;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-section {
    padding: 56px 0;
  }
  .about-cta-panel {
    padding: 28px 20px;
    border-radius: 22px;
  }
  .about-cta-actions {
    flex-direction: column;
    gap: 10px;
  }
  .about-cta-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” 520px
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 520px) {
  .about-hero {
    padding: 72px 0 40px;
  }
  .about-hero-content h1 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }
  .about-hero-sub {
    font-size: 0.95rem;
  }
  .about-hero-intro {
    font-size: 0.95rem;
  }
  .eyebrow {
    font-size: 0.74rem;
  }

  .about-who {
    padding: 36px 0;
  }
  .about-who-collage > img.who-img-main {
    display: block !important;
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .about-who-collage > img.who-img-accent { display: none !important; }

  .about-philosophy {
    padding: 36px 0;
  }
  .philosophy-card {
    padding: 16px;
  }
  .philosophy-icon {
    width: 44px;
    height: 44px;
  }

  .about-doctor {
    padding: 36px 0;
  }
  .doctor-photo {
    height: 320px;
    object-position: center 12%;
  }
  .doctor-highlight strong {
    font-size: 1rem;
  }

  .about-trust {
    padding: 36px 0;
  }
  .trust-item {
    padding: 18px 16px;
  }
  .trust-item-icon {
    width: 44px;
    height: 44px;
  }

  .about-cta-section {
    padding: 40px 0;
  }
  .about-cta-panel {
    padding: 22px 16px;
    border-radius: 18px;
  }
}


