/* Profile photo (About page) — same premium treatment as the homepage Why Choose photo */
.about-profile-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}
.about-profile-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(1, 168, 186, 0.25) 100%);
}
.about-profile-photo img { width: 100%; height: 100%; object-fit: cover; }

.credential-list { list-style: none; padding: 0; margin: 0; }
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.credential-list li:last-child { margin-bottom: 0; }
.credential-list .icon { color: var(--color-teal); margin-top: 0.15rem; }

/* Bordered stat cards (About page) — same icon-chip language as the homepage trust stats */
.about-stat-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  height: 100%;
  transition: var(--transition-smooth);
}
.about-stat-card:hover { border-color: var(--color-teal); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.about-stat-card .icon-chip {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 10px;
  background-color: rgba(1, 168, 186, 0.1);
  color: var(--color-teal-dark);
  display: grid; place-items: center;
}
.about-stat-card .stat-value { font-family: var(--font-heading); font-optical-sizing: auto; font-weight: 700; font-size: 1.5rem; color: var(--color-navy); line-height: 1; }
.about-stat-card .stat-label { font-size: 0.78rem; color: var(--color-text-muted); margin-top: 0.25rem; line-height: 1.3; }

.warning-box {
  background-color: rgba(216, 173, 94, 0.12);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
}
.warning-box strong { color: var(--color-navy); }

/* Philosophy quote (About page) */
.philosophy-quote {
  background-color: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin: 2rem 0;
  position: relative;
}
.philosophy-quote .icon { color: var(--color-teal); opacity: 0.4; margin-bottom: 0.5rem; }
.philosophy-quote p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.philosophy-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Career timeline (About page) */
.timeline { position: relative; padding-left: 2rem; margin-bottom: 1rem; }
.timeline::before {
  content: '';
  position: absolute; left: 5px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-teal), var(--color-border));
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -2rem; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background-color: var(--color-teal);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-teal);
}
.timeline-year {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-teal-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.timeline-content h3 { font-size: 1rem; margin-bottom: 0.25rem; }

/* Gallery — CSS masonry + lightbox */
.masonry { column-count: 3; column-gap: 1.1rem; }
.masonry-item {
  display: block;
  position: relative;
  break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.masonry-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(18, 19, 42, 0.35);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item:hover .masonry-overlay { opacity: 1; }

@media (max-width: 991px) { .masonry { column-count: 2; } }
@media (max-width: 575px) { .masonry { column-count: 1; } }

.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10, 11, 26, 0.94);
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-figure { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox-figure img { max-width: 100%; max-height: 75vh; border-radius: var(--radius-md); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-figure figcaption { color: rgba(255,255,255,0.75); margin-top: 1rem; font-size: 0.9rem; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-nav:hover, .lightbox-close:hover { background: rgba(255,255,255,0.2); }
.rotate-90 { transform: rotate(90deg); }
.rotate-neg90 { transform: rotate(-90deg); }

@media (max-width: 767px) {
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* Contact / Book forms */
.contact-info-card { padding: 2rem; }
.contact-info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-row:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background-color: var(--color-navy);
  color: var(--color-teal);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info-row h3 { margin-bottom: 0.15rem; }
.contact-info-row p, .contact-info-row a { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

.brand-form label { font-weight: 600; font-size: 0.88rem; margin-bottom: 0.35rem; }
.brand-form .form-control,
.brand-form .form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}
.brand-form .form-control:focus,
.brand-form .form-select:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 0.2rem rgba(1, 168, 186, 0.15);
}


/* Patient Education — video grid */
.video-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-smooth);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video-embed { aspect-ratio: 9 / 16; }
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.video-thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  aspect-ratio: 9 / 16;
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  color: #fff;
}
.video-thumb-icon { opacity: 0.35; }
.video-thumb-icon .icon { width: 32px; height: 32px; }
.video-play-badge {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  transition: var(--transition-smooth);
}
.video-play-badge .icon { fill: currentColor; margin-left: 3px; }
.video-thumb:hover .video-play-badge { background-color: var(--color-gold); border-color: var(--color-gold); color: var(--color-navy-deep); transform: scale(1.08); }
.video-coming-soon {
  position: absolute;
  top: 0.7rem; right: 0.7rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.video-card-body { padding: 1rem 1.1rem; }
.video-card-body h3 { font-size: 0.9rem; }
.video-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-teal-dark);
}
.video-guide-link:hover { color: var(--color-teal); }
.video-guide-link .icon { transition: var(--transition-smooth); }
.video-guide-link:hover .icon { transform: translateX(2px); }

.review-share-card { transition: var(--transition-smooth); }
.review-share-card:hover { border-color: var(--color-teal); transform: translateY(-4px); box-shadow: var(--shadow-md); }
