/* ==========================================================================
   DC Clinic - UX/UI Improvements Layer
   Premium Medical Clinic | Luxury | Minimal | Hospital-grade
   ==========================================================================

   Table of Contents:
   1. Design Tokens (Enhanced)
   2. Section Spacing System
   3. Card Design System (Consistent)
   4. Button System (Consistent + Ripple)
   5. Typography Hierarchy
   6. Breadcrumb Component
   7. FAQ Accordion (Enhanced)
   8. Related Content / Services
   9. Footer CTA Section
   10. Subtle Motion System
   11. Image Zoom Effect
   12. Hover Scale Effects
   13. Responsive Improvements
   14. No Horizontal Scroll Guard
   15. Print Styles
   ========================================================================== */

/* ==========================================================================
   1. Design Tokens (Enhanced)
   ========================================================================== */
:root {
  /* New: Dark Green → Dark Gold */
  --dc-green: #635943;
  --dc-green-light: #635943;
  --dc-green-soft: #F7EBE4;

  /* New: Warm Gray → Warm Beige */
  --dc-warm-gray: #F7EBE4;
  --dc-warm-gray-light: #FFFFFF;
  --dc-warm-gray-dark: #E0D5C8;

  /* Enhanced Shadows - Soft warm */
  --dc-shadow-xs: 0 1px 2px rgba(99, 89, 67, 0.04);
  --dc-shadow-sm: 0 2px 8px rgba(99, 89, 67, 0.06);
  --dc-shadow-md: 0 4px 16px rgba(99, 89, 67, 0.08);
  --dc-shadow-lg: 0 8px 32px rgba(99, 89, 67, 0.10);
  --dc-shadow-xl: 0 16px 48px rgba(99, 89, 67, 0.12);
  --dc-shadow-gold: 0 4px 20px rgba(172, 141, 98, 0.15);

  /* Large Border Radius */
  --dc-radius-lg: 24px;
  --dc-radius-md: 16px;
  --dc-radius-sm: 12px;
  --dc-radius-xs: 8px;

  /* Section Spacing */
  --dc-section-space: 120px;
  --dc-section-space-tablet: 80px;
  --dc-section-space-mobile: 60px;
  --dc-section-space-sm: 64px;
  --dc-section-space-sm-tablet: 48px;
  --dc-section-space-sm-mobile: 32px;

  /* Transitions */
  --dc-transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dc-transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --dc-transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   2. Section Spacing System
   ========================================================================== */
.dc-section {
  padding-top: var(--dc-section-space);
  padding-bottom: var(--dc-section-space);
}

.dc-section--sm {
  padding-top: var(--dc-section-space-sm);
  padding-bottom: var(--dc-section-space-sm);
}

.dc-section--flush-top {
  padding-top: 0;
}

.dc-section--flush-bottom {
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .dc-section {
    padding-top: var(--dc-section-space-tablet);
    padding-bottom: var(--dc-section-space-tablet);
  }
  .dc-section--sm {
    padding-top: var(--dc-section-space-sm-tablet);
    padding-bottom: var(--dc-section-space-sm-tablet);
  }
}

@media (max-width: 767px) {
  .dc-section {
    padding-top: var(--dc-section-space-mobile);
    padding-bottom: var(--dc-section-space-mobile);
  }
  .dc-section--sm {
    padding-top: var(--dc-section-space-sm-mobile);
    padding-bottom: var(--dc-section-space-sm-mobile);
  }
}

/* ==========================================================================
   3. Card Design System (Consistent)
   ========================================================================== */
.dc-card {
  background: #fff;
  border-radius: var(--dc-radius-lg);
  box-shadow: var(--dc-shadow-sm);
  transition: var(--dc-transition-smooth);
  overflow: hidden;
  border: 1px solid rgba(99, 89, 67, 0.04);
}

.dc-card:hover {
  box-shadow: var(--dc-shadow-lg);
  transform: translateY(-4px);
}

.dc-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--dc-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dc-warm-gray-light), var(--dc-warm-gray));
  color: var(--dc-gold);
  margin-bottom: 24px;
  transition: var(--dc-transition-spring);
}

.dc-card:hover .dc-card__icon {
  transform: scale(1.1) rotate(-3deg);
  background: linear-gradient(135deg, var(--dc-gold-soft), var(--dc-gold));
  color: #fff;
}

.dc-card__icon .material-symbols-outlined {
  font-size: 32px;
}

.dc-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dc-navy-deep);
  margin-bottom: 12px;
  line-height: 1.4;
}

.dc-card p {
  color: var(--dc-on-surface-variant);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Service Card Enhancement */
.dc-service-card {
  border-radius: var(--dc-radius-lg);
  overflow: hidden;
}

.dc-service-card__content {
  padding: 32px;
}

.dc-service-card__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.dc-service-card__content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ==========================================================================
   4. Button System (Consistent + Ripple)
   ========================================================================== */
.btn-dc-primary,
.btn-dc-gold,
.btn-dc-outline {
  border-radius: var(--dc-radius-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--dc-transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Ripple Effect */
.btn-dc-primary::after,
.btn-dc-gold::after,
.btn-dc-outline::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-dc-primary:active::after,
.btn-dc-gold:active::after,
.btn-dc-outline:active::after {
  width: 300px;
  height: 300px;
  transition: 0s;
}

.btn-dc-primary:hover,
.btn-dc-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--dc-shadow-md);
}

.btn-dc-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--dc-shadow-sm);
}

/* ==========================================================================
   5. Typography Hierarchy
   ========================================================================== */
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dc-navy-deep);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--dc-on-surface-variant);
  line-height: 1.7;
  max-width: 640px;
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

.label-caps {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dc-gold);
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
  .section-header p {
    font-size: 1rem;
  }
}

/* ==========================================================================
   6. Breadcrumb Component
   ========================================================================== */
.dc-breadcrumb {
  background: var(--dc-warm-gray-light);
  padding: 16px 0;
  border-bottom: 1px solid rgba(99, 89, 67, 0.04);
}

.dc-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

.dc-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dc-on-surface-variant);
}

.dc-breadcrumb__item a {
  color: var(--dc-on-surface-variant);
  text-decoration: none;
  transition: var(--dc-transition-smooth);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dc-breadcrumb__item a:hover {
  color: var(--dc-gold);
}

.dc-breadcrumb__item--active {
  color: var(--dc-navy-deep);
  font-weight: 600;
}

.dc-breadcrumb__separator {
  color: var(--dc-outline-variant);
  font-size: 1rem;
}

.dc-breadcrumb__item .material-symbols-outlined {
  font-size: 18px;
}

/* ==========================================================================
   7. FAQ Accordion (Enhanced)
   ========================================================================== */
.dc-faq {
  max-width: 800px;
  margin: 0 auto;
}

.dc-faq__item {
  background: #fff;
  border-radius: var(--dc-radius-sm);
  margin-bottom: 16px;
  box-shadow: var(--dc-shadow-xs);
  border: 1px solid rgba(99, 89, 67, 0.04);
  overflow: hidden;
  transition: var(--dc-transition-smooth);
}

.dc-faq__item:hover {
  box-shadow: var(--dc-shadow-sm);
}

.dc-faq__item--active {
  box-shadow: var(--dc-shadow-md);
  border-color: var(--dc-gold-soft);
}

.dc-faq__question {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dc-navy-deep);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--dc-transition-smooth);
}

.dc-faq__question:hover {
  color: var(--dc-gold);
}

.dc-faq__question-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dc-warm-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--dc-transition-spring);
  color: var(--dc-gold);
}

.dc-faq__item--active .dc-faq__question-icon {
  transform: rotate(180deg);
  background: var(--dc-gold);
  color: #fff;
}

.dc-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.dc-faq__item--active .dc-faq__answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.dc-faq__answer p {
  color: var(--dc-on-surface-variant);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================================================
   8. Related Content / Services
   ========================================================================== */
.dc-related {
  background: var(--dc-warm-gray-light);
}

.dc-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.dc-related__card {
  background: #fff;
  border-radius: var(--dc-radius-md);
  overflow: hidden;
  box-shadow: var(--dc-shadow-xs);
  transition: var(--dc-transition-smooth);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.dc-related__card:hover {
  box-shadow: var(--dc-shadow-md);
  transform: translateY(-3px);
}

.dc-related__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  overflow: hidden;
}

.dc-related__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dc-related__card:hover .dc-related__card-image img {
  transform: scale(1.08);
}

.dc-related__card-body {
  padding: 20px 24px;
}

.dc-related__card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dc-gold);
  margin-bottom: 8px;
}

.dc-related__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dc-navy-deep);
  margin-bottom: 8px;
  line-height: 1.4;
}

.dc-related__card-desc {
  font-size: 0.875rem;
  color: var(--dc-on-surface-variant);
  line-height: 1.6;
}

/* ==========================================================================
   9. Footer CTA Section
   ========================================================================== */
.dc-footer-cta {
  background: #FFFFFF;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(99, 89, 67, 0.06);
}

.dc-footer-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 141, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.dc-footer-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.dc-footer-cta__label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dc-gold);
  margin-bottom: 16px;
  display: block;
}

.dc-footer-cta__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dc-navy-deep);
  line-height: 1.3;
  margin-bottom: 20px;
}

.dc-footer-cta__desc {
  font-size: 1.05rem;
  color: rgba(99, 89, 67, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.dc-footer-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .dc-footer-cta {
    padding: 80px 0;
  }
  .dc-footer-cta__title {
    font-size: 1.5rem;
  }
  .dc-footer-cta__buttons {
    flex-direction: column;
  }
  .dc-footer-cta__buttons .btn-dc-lg {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   10. Subtle Motion System
   ========================================================================== */

/* Fade In */
@keyframes dc-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dc-fade-in-scale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes dc-fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes dc-fade-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Intersection Observer Triggered */
.dc-fade-in {
  opacity: 0;
  animation: dc-fade-in-up 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.dc-fade-in--scale {
  opacity: 0;
  animation: dc-fade-in-scale 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Stagger Delays */
.dc-fade-in[data-delay="1"] { animation-delay: 0.1s; }
.dc-fade-in[data-delay="2"] { animation-delay: 0.2s; }
.dc-fade-in[data-delay="3"] { animation-delay: 0.3s; }
.dc-fade-in[data-delay="4"] { animation-delay: 0.4s; }
.dc-fade-in[data-delay="5"] { animation-delay: 0.5s; }
.dc-fade-in[data-delay="6"] { animation-delay: 0.6s; }

/* ==========================================================================
   11. Image Zoom Effect
   ========================================================================== */
.dc-image-zoom {
  overflow: hidden;
  border-radius: var(--dc-radius-lg);
}

.dc-image-zoom img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  display: block;
}

.dc-image-zoom:hover img {
  transform: scale(1.06);
}

/* ==========================================================================
   12. Hover Scale Effects
   ========================================================================== */
.dc-hover-scale {
  transition: var(--dc-transition-smooth);
}

.dc-hover-scale:hover {
  transform: scale(1.03);
}

.dc-card-lift {
  transition: var(--dc-transition-smooth);
}

.dc-card-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--dc-shadow-lg);
}

/* ==========================================================================
   13. Responsive Improvements
   ========================================================================== */

/* Container max-width */
.dc-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 991px) {
  .dc-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .dc-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Grid responsive */
.dc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.dc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .dc-grid-3,
  .dc-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .dc-grid-2,
  .dc-grid-3,
  .dc-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Bento grid responsive */
.dc-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .dc-bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .dc-bento-7,
  .dc-bento-5 {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .dc-bento-grid {
    grid-template-columns: 1fr;
  }
  .dc-bento-7,
  .dc-bento-5 {
    grid-column: span 1;
  }
}

/* ==========================================================================
   14. No Horizontal Scroll Guard
   ========================================================================== */
body {
  overflow-x: clip;
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
}

.dc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Prevent overflow from animations */
.dc-fade-in,
.dc-fade-in--scale {
  will-change: opacity, transform;
}

/* ==========================================================================
   15. Hero Banner Enhancement (Sub Pages)
   ========================================================================== */
.dc-page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dc-navy-deep);
}

.dc-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dc-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.dc-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 89, 67, 0.85) 0%, rgba(27, 67, 50, 0.6) 100%);
  z-index: 1;
}

.dc-page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 60px;
}

.dc-page-hero__label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dc-gold);
  margin-bottom: 16px;
  display: block;
}

.dc-page-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.dc-page-hero__desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .dc-page-hero {
    min-height: 320px;
  }
  .dc-page-hero__title {
    font-size: 1.75rem;
  }
  .dc-page-hero__desc {
    font-size: 1rem;
  }
}

/* ==========================================================================
   16. Print Styles
   ========================================================================== */
@media print {
  .dc-header,
  .dc-footer,
  .dc-social-bar,
  .dc-chat-widget,
  .dc-mobile-nav,
  .dc-back-to-top,
  .dc-tour-trigger,
  .dc-customizer,
  .dc-announcement,
  .dc-cookie-consent,
  .dc-demo-notify,
  .dc-footer-cta {
    display: none !important;
  }
  .dc-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* ==========================================================================
   17. Accessibility - Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .dc-fade-in,
  .dc-fade-in--scale {
    opacity: 1;
    animation: none;
  }
}

/* ==========================================================================
   18. Homepage Premium - Trust Bar
   ========================================================================== */
.dc-trust-bar {
  background: var(--dc-navy-deep);
  padding: 20px 0;
  border-bottom: 1px solid rgba(172, 141, 98, 0.15);
}

.dc-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.dc-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.dc-trust-bar__item .material-symbols-outlined {
  font-size: 22px;
  color: var(--dc-gold);
}

.dc-trust-bar__divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 767px) {
  .dc-trust-bar__inner {
    gap: 16px;
  }
  .dc-trust-bar__divider {
    display: none;
  }
  .dc-trust-bar__item {
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   19. Homepage Premium - Statistics Section
   ========================================================================== */
.dc-stats-section {
  background: linear-gradient(135deg, var(--dc-navy-deep) 0%, #635943 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.dc-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(172, 141, 98, 0.3), transparent);
}

.dc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.dc-stat-item {
  padding: 16px;
  position: relative;
}

.dc-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.dc-stat-item__value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dc-gold);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Hanken Grotesk', sans-serif;
}

.dc-stat-item__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

@media (max-width: 991px) {
  .dc-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .dc-stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .dc-stats-section {
    padding: 48px 0;
  }
  .dc-stat-item__value {
    font-size: 2rem;
  }
  .dc-stat-item::after {
    display: none !important;
  }
}

/* ==========================================================================
   20. Homepage Premium - Patient Journey
   ========================================================================== */
.dc-journey {
  background: var(--dc-warm-gray-light);
}

.dc-journey__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.dc-journey__grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--dc-gold-soft) 0%, var(--dc-gold) 50%, var(--dc-gold-soft) 100%);
  z-index: 0;
}

.dc-journey__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.dc-journey__step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--dc-shadow-md);
  border: 3px solid var(--dc-gold);
  transition: var(--dc-transition-spring);
}

.dc-journey__step:hover .dc-journey__step-num {
  transform: scale(1.1);
  border-color: var(--dc-gold);
  box-shadow: var(--dc-shadow-lg), 0 0 0 8px rgba(172, 141, 98, 0.1);
}

.dc-journey__step-num .material-symbols-outlined {
  font-size: 32px;
  color: var(--dc-navy-deep);
}

.dc-journey__step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dc-navy-deep);
  margin-bottom: 8px;
}

.dc-journey__step-desc {
  font-size: 0.875rem;
  color: var(--dc-on-surface-variant);
  line-height: 1.6;
  padding: 0 8px;
}

@media (max-width: 991px) {
  .dc-journey__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .dc-journey__grid::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .dc-journey__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   21. Homepage Premium - Before & After
   ========================================================================== */
.dc-before-after {
  padding: 100px 0;
  background-color: #A9B39E; /* Sage Green background */
}

.dc-before-after .section-header h2 {
  font-size: 3.5rem;
  font-family: 'Hanken Grotesk', sans-serif;
  color: #3E4D35;
  font-weight: 700;
  margin-bottom: 40px;
}

.dc-ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.dc-ba-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(62, 77, 53, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dc-ba-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(62, 77, 53, 0.25);
}

.dc-ba-card__images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: #f0f0f0;
}

.dc-ba-card__images-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.dc-ba-card__info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dc-ba-card__id {
  font-size: 1.8rem;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin-bottom: 4px;
}

.dc-ba-card__meta {
  display: flex;
  gap: 20px;
  font-size: 1rem;
  color: #444;
  margin-bottom: 4px;
}

.dc-ba-card__meta-item span {
  color: #888;
  margin-right: 4px;
}

.dc-ba-card__meta-item strong {
  color: #333;
  font-weight: 700;
}

.dc-ba-card__procedure {
  margin-top: 4px;
}

.dc-ba-card__procedure-label {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 4px;
}

.dc-ba-card__procedure-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.dc-ba-card__link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #AC8D62;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.dc-ba-card__link .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.dc-ba-card__link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* ==========================================================================
   22. Homepage Premium - Awards & Recognition
   ========================================================================== */
.dc-awards {
  background: var(--dc-warm-gray-light);
}

.dc-awards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.dc-award-badge {
  background: #fff;
  border-radius: var(--dc-radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--dc-shadow-xs);
  transition: var(--dc-transition-smooth);
  border: 1px solid rgba(99, 89, 67, 0.04);
}

.dc-award-badge:hover {
  box-shadow: var(--dc-shadow-md);
  transform: translateY(-3px);
}

.dc-award-badge__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dc-gold-soft), var(--dc-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}

.dc-award-badge__icon .material-symbols-outlined {
  font-size: 28px;
}

.dc-award-badge__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dc-navy-deep);
  margin-bottom: 4px;
}

.dc-award-badge__sub {
  font-size: 0.78rem;
  color: var(--dc-on-surface-variant);
}

/* ==========================================================================
   23. Homepage Premium - Gallery
   ========================================================================== */
.dc-gallery {
  background: #fff;
}

.dc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.dc-gallery__item {
  border-radius: var(--dc-radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.dc-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dc-gallery__item:hover img {
  transform: scale(1.08);
}

.dc-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(99, 89, 67, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dc-gallery__item:hover::after {
  opacity: 1;
}

.dc-gallery__item-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.dc-gallery__item:hover .dc-gallery__item-label {
  opacity: 1;
  transform: translateY(0);
}

.dc-gallery__item--tall {
  grid-row: span 2;
}

.dc-gallery__item--wide {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .dc-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 767px) {
  .dc-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 12px;
  }
  .dc-gallery__item--wide {
    grid-column: span 2;
  }
  .dc-gallery__item--tall {
    grid-row: span 1;
  }
}

/* ==========================================================================
   24. Homepage Premium - Google Reviews
   ========================================================================== */
.dc-google-reviews {
  background: #fff;
}

.dc-google-reviews__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.dc-google-reviews__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dc-google-reviews__logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.dc-google-reviews__score {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dc-navy-deep);
  line-height: 1;
}

.dc-google-reviews__stars {
  display: flex;
  gap: 2px;
}

.dc-google-reviews__stars .material-symbols-outlined {
  font-size: 24px;
  color: #FFB300;
  fill: #FFB300;
}

.dc-google-reviews__count {
  font-size: 0.875rem;
  color: var(--dc-on-surface-variant);
}

.dc-google-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dc-google-review {
  background: var(--dc-warm-gray-light);
  border-radius: var(--dc-radius-md);
  padding: 24px;
  transition: var(--dc-transition-smooth);
}

.dc-google-review:hover {
  box-shadow: var(--dc-shadow-md);
  transform: translateY(-2px);
}

.dc-google-review__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.dc-google-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.dc-google-review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-google-review__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dc-navy-deep);
  margin-bottom: 2px;
}

.dc-google-review__date {
  font-size: 0.78rem;
  color: var(--dc-on-surface-variant);
}

.dc-google-review__stars {
  display: flex;
  gap: 1px;
  margin-bottom: 12px;
}

.dc-google-review__stars .material-symbols-outlined {
  font-size: 18px;
  color: #FFB300;
  fill: #FFB300;
}

.dc-google-review__text {
  font-size: 0.9rem;
  color: var(--dc-on-surface-variant);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .dc-google-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .dc-google-reviews__grid {
    grid-template-columns: 1fr;
  }
  .dc-google-reviews__score {
    font-size: 2rem;
  }
}

/* ==========================================================================
   25. Homepage Premium - Doctor Introduction (Redesigned)
   ========================================================================== */
.dc-doctor-intro {
  background: #FFFFFF;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.dc-doctor-intro__bg {
  position: absolute;
  inset: 0;
  background: url('../images/dc-clinic-background-1200x960.png') center center / cover no-repeat;
  filter: blur(14px) brightness(108%);
  opacity: 0.4;
  transform: scale(1.08);
  pointer-events: none;
  z-index: -1;
}

.dc-doctor-intro__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section: Doctor + Content Card */
.dc-doctor-profile {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 0;
}

.dc-doctor-profile__image {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dc-doctor-profile__image:hover {
  transform: scale(1.03);
}

.dc-doctor-profile__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(99, 89, 67, 0.15));
}

.dc-doctor-profile__card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 60px 60px 0;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(172, 141, 98, 0.12);
  border: 1px solid #F7EBE4;
  position: relative;
  transition: all 0.4s ease;
}

.dc-doctor-profile__card:hover {
  box-shadow: 0 30px 80px rgba(172, 141, 98, 0.18);
  border-color: rgba(172, 141, 98, 0.3);
}

.dc-doctor-profile__eyebrow {
  color: #AC8D62;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.dc-doctor-profile__name {
  color: #2B2B2B;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.dc-doctor-profile__title {
  color: #635943;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 30px;
  display: block;
}

.dc-doctor-profile__bio {
  color: #635943;
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.dc-doctor-profile__creds {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.dc-doctor-profile__cred {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  color: #2B2B2B;
  font-weight: 600;
}

.dc-doctor-profile__cred-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F7EBE4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AC8D62;
}

/* Why Choose Us Row */
.dc-intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 28px;
  box-shadow: 0 10px 40px rgba(99, 89, 67, 0.05);
  border: 1px solid #F7EBE4;
  margin-top: 0;
}

.dc-intro-features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.dc-feature-minimal {
  text-align: left;
  transition: all 0.3s ease;
  cursor: default;
}

.dc-feature-minimal__icon {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'wght' 200;
  font-size: 36px;
  color: #AC8D62;
  margin-bottom: 20px;
  display: block;
}

.dc-feature-minimal__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 12px;
  line-height: 1.5;
}

.dc-feature-minimal__arrow {
  color: #AC8D62;
  font-size: 20px;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.dc-feature-minimal:hover .dc-feature-minimal__arrow {
  transform: translateX(8px);
  opacity: 1;
}

/* Editorial Gallery */
.dc-intro-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.dc-gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
}

.dc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dc-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(172, 141, 98, 0.2);
  border-color: #F7EBE4;
}

.dc-gallery-item:hover img {
  transform: scale(1.08);
}

.dc-gallery-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(43, 43, 43, 0.85));
  color: #FFFFFF;
  padding: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.dc-gallery-item:hover .dc-gallery-item__label {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Redesign */
@media (max-width: 1199px) {
  .dc-doctor-profile { gap: 50px; }
  .dc-doctor-profile__card { padding: 45px 45px 0; }
  .dc-intro-features { grid-template-columns: 1fr; gap: 60px; }
  .dc-intro-features__list { order: 1; }
  .dc-intro-gallery { order: 2; }
}

@media (max-width: 991px) {
  .dc-doctor-profile { grid-template-columns: 1fr; }
  .dc-doctor-profile__image { max-width: 450px; margin: 0 auto; order: 1; }
  .dc-doctor-profile__card { order: 2; }
}

@media (max-width: 767px) {
  .dc-doctor-intro { padding: 80px 0; }
  .dc-doctor-profile__card { padding: 35px 35px 0; border-radius: 24px; }
  .dc-doctor-profile__name { font-size: 2rem; }
  .dc-intro-features__list { grid-template-columns: 1fr; gap: 30px; }
  .dc-intro-gallery { grid-template-columns: 1fr; }
  .dc-gallery-item { height: 220px; }
}

/* ==========================================================================
   26. Homepage Premium - Service Editorial (Comprehensive Care)
   ========================================================================== */
.dc-service-editorial {
  padding: 120px 0;
  background: #FFFFFF;
}

.dc-editorial-grid {
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 32px;
  min-height: 700px;
}

/* Left Column: Feature Card */
.dc-editorial-feature {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(99, 89, 67, 0.1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  height: 100%;
}

.dc-editorial-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dc-editorial-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(43, 43, 43, 0.9) 0%, 
    rgba(43, 43, 43, 0.4) 40%, 
    transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
  z-index: 2;
}

.dc-editorial-feature:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 70px rgba(99, 89, 67, 0.15);
}

.dc-editorial-feature:hover .dc-editorial-feature__img {
  transform: scale(1.05);
}

.dc-editorial-feature__eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #AC8D62;
  font-weight: 700;
  margin-bottom: 20px;
}

.dc-editorial-feature__title {
  font-size: 48px;
  line-height: 1.1;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 25px;
  max-width: 90%;
}

.dc-editorial-feature__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 80%;
}

/* Right Column: Stacked Cards */
.dc-editorial-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dc-editorial-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(99, 89, 67, 0.05);
  border: 1px solid #F7EBE4;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex: 1;
}

.dc-editorial-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(172, 141, 98, 0.12);
  border-color: rgba(172, 141, 98, 0.3);
}

.dc-editorial-card__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dc-editorial-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dc-editorial-card:hover .dc-editorial-card__img {
  transform: scale(1.08);
}

.dc-editorial-card__eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #AC8D62;
  font-weight: 700;
  margin-bottom: 12px;
}

.dc-editorial-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 15px;
  line-height: 1.3;
}

.dc-editorial-card__desc {
  font-size: 0.95rem;
  color: #635943;
  line-height: 1.6;
}

/* Responsive Editorial */
@media (max-width: 1199px) {
  .dc-editorial-feature__title { font-size: 38px; }
  .dc-editorial-feature__overlay { padding: 40px; }
  .dc-editorial-card__body { padding: 30px; }
  .dc-editorial-card__title { font-size: 1.5rem; }
}

@media (max-width: 991px) {
  .dc-editorial-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .dc-editorial-feature { height: 500px; }
}

@media (max-width: 767px) {
  .dc-editorial-feature { height: 450px; }
  .dc-editorial-feature__title { font-size: 32px; }
  .dc-editorial-card {
    grid-template-columns: 1fr;
  }
  .dc-editorial-card__img {
    height: 240px;
    order: 1;
  }
  .dc-editorial-card__body {
    order: 2;
  }
}

/* ==========================================================================
   27. Homepage Premium - World-Class Facilities
   ========================================================================== */
/* ==========================================================================
   24. World-Class Facilities Showcase
   ========================================================================== */
.dc-facilities-showcase {
  padding: 100px 0;
  background: #fff;
}

.dc-facilities-feature {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 48px;
}

.dc-facilities-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.dc-facilities-feature__content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 2;
}

.dc-facilities-feature__title {
  font-size: 4rem;
  font-weight: 400;
  color: #2B2B2B;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.dc-facilities-feature__subtitle {
  font-size: 3rem;
  font-weight: 700;
  color: #2B2B2B;
  line-height: 1.1;
  margin: 0;
}

.dc-facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dc-facility-card {
  display: flex;
  flex-direction: column;
}

.dc-facility-card__img-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}

.dc-facility-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-facility-card__body {
  text-align: center;
}

.dc-facility-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3E4D35;
  margin-bottom: 12px;
}

.dc-facility-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #777;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .dc-facilities-feature {
    height: 380px;
  }
  .dc-facilities-feature__title {
    font-size: 2.5rem;
  }
  .dc-facilities-feature__subtitle {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .dc-facilities-showcase {
    padding: 60px 0;
  }
  .dc-facilities-feature {
    height: 180px; /* Short like mockup */
    margin-bottom: 24px;
    border-radius: 20px;
    position: relative !important;
    overflow: hidden !important;
  }
  .dc-facilities-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%) !important;
    z-index: 1;
    pointer-events: none;
  }
  .dc-facilities-feature__content {
    display: block !important;
    position: absolute !important;
    bottom: 16px !important;
    left: 20px !important;
    z-index: 2 !important;
  }
  .dc-facilities-feature__title {
    font-size: 1.4rem !important;
    color: #fff !important;
    font-weight: 800 !important;
    margin: 0 !important;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5) !important;
    letter-spacing: 0.05em !important;
  }
  .dc-facilities-feature__subtitle {
    font-size: 1rem !important;
    color: #fff !important;
    font-weight: 600 !important;
    margin: 2px 0 0 0 !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
  }
  .dc-facilities-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 10px !important;
    margin: 0 -20px !important;
  }
  .dc-facilities-grid::-webkit-scrollbar {
    display: none !important;
  }
  .dc-facility-card {
    flex-shrink: 0 !important;
    width: 100% !important;
    scroll-snap-align: center !important;
  }
  .dc-facility-card__img-wrapper {
    aspect-ratio: 1/1 !important; /* Square like mockup */
    margin-bottom: 16px;
    border-radius: 20px;
  }
  .dc-facility-card__body {
    display: block !important; /* Show text in carousel */
    text-align: center;
    padding: 0 10px;
  }
  .dc-facility-card__title {
    font-size: 1.15rem !important;
    margin-bottom: 8px !important;
  }
  .dc-facility-card__desc {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
}

.dc-mr-only {
  display: none;
}

@media (max-width: 768px) {
  .dc-mr-only {
    display: block;
  }
}

@media (max-width: 575px) {
  .dc-facilities-grid { grid-template-columns: 1fr; }
  .dc-facility-item { height: 350px; }
}

/* ==========================================================================
   28. Homepage Premium - Sticky Floating CTA
   ========================================================================== */
.dc-sticky-cta {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.dc-sticky-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dc-sticky-cta__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--dc-shadow-lg);
  transition: var(--dc-transition-smooth);
  text-decoration: none;
  position: relative;
}

.dc-sticky-cta__btn:hover {
  transform: scale(1.1);
  box-shadow: var(--dc-shadow-xl);
}

.dc-sticky-cta__btn--line {
  background: #06C755;
  color: #fff;
}

.dc-sticky-cta__btn--appt {
  background: var(--dc-gold);
  color: #fff;
  width: auto;
  padding: 0 24px;
  border-radius: 28px;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.dc-sticky-cta__btn--appt .material-symbols-outlined {
  font-size: 22px;
}

.dc-sticky-cta__btn .material-symbols-outlined,
.dc-sticky-cta__btn .bi {
  font-size: 24px;
}

.dc-sticky-cta__btn--line .bi {
  font-size: 26px;
}

.dc-sticky-cta__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #06C755;
  opacity: 0.4;
  animation: dc-pulse-ring 2s ease-out infinite;
  z-index: -1;
}

@keyframes dc-pulse-ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (min-width: 768px) {
  .dc-sticky-cta {
    display: none;
  }
}

@media (max-width: 767px) {
  .dc-sticky-cta {
    bottom: 72px;
    right: 16px;
  }
  .dc-sticky-cta__btn--appt {
    display: none;
  }
}

/* ==========================================================================
   28. Homepage Premium - Section Spacing Tightening
   ========================================================================== */
.dc-section--tight {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .dc-section--tight {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 767px) {
  .dc-section--tight {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* ==========================================================================
   29. Homepage Premium - Section Divider
   ========================================================================== */
.dc-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 89, 67, 0.06), transparent);
  margin: 0;
  border: none;
}

/* ==========================================================================
   30. About Page - Medical Philosophy
   ========================================================================== */
.dc-philosophy {
  background: linear-gradient(135deg, var(--dc-navy-deep) 0%, var(--dc-green) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.dc-philosophy::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 141, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.dc-philosophy__quote {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.dc-philosophy__quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--dc-gold);
  display: block;
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.5;
}

.dc-philosophy__author {
  text-align: center;
  color: var(--dc-gold);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.dc-philosophy__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.dc-philosophy__pillar {
  text-align: center;
  padding: 24px;
}

.dc-philosophy__pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(172, 141, 98, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.dc-philosophy__pillar-icon .material-symbols-outlined {
  font-size: 30px;
  color: var(--dc-gold);
}

.dc-philosophy__pillar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.dc-philosophy__pillar-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .dc-philosophy__pillars {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dc-philosophy__quote {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   31. About Page - Operating Room
   ========================================================================== */
.dc-or-section {
  background: #fff;
}

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

.dc-or__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dc-or__img {
  border-radius: var(--dc-radius-md);
  overflow: hidden;
  position: relative;
}

.dc-or__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.dc-or__img--tall {
  grid-row: span 2;
}

.dc-or__img img {
  transition: transform 0.6s ease;
}

.dc-or__img:hover img {
  transform: scale(1.05);
}

.dc-or__features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.dc-or__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(99, 89, 67, 0.04);
}

.dc-or__features li:last-child {
  border-bottom: none;
}

.dc-or__features li .material-symbols-outlined {
  font-size: 22px;
  color: var(--dc-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.dc-or__features li span:last-child {
  font-size: 0.9rem;
  color: var(--dc-on-surface-variant);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .dc-or-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .dc-or__images {
    grid-template-columns: 1fr;
  }
  .dc-or__img--tall {
    grid-row: span 1;
  }
}

/* ==========================================================================
   32. About Page - Patient Experience
   ========================================================================== */
.dc-patient-exp {
  background: var(--dc-warm-gray-light);
}

.dc-patient-exp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dc-patient-exp__card {
  background: #fff;
  border-radius: var(--dc-radius-lg);
  padding: 32px;
  box-shadow: var(--dc-shadow-xs);
  transition: var(--dc-transition-smooth);
  border: 1px solid rgba(99, 89, 67, 0.04);
}

.dc-patient-exp__card:hover {
  box-shadow: var(--dc-shadow-md);
  transform: translateY(-3px);
}

.dc-patient-exp__card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--dc-radius-sm);
  background: linear-gradient(135deg, var(--dc-gold-soft), var(--dc-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.dc-patient-exp__card-icon .material-symbols-outlined {
  font-size: 28px;
}

.dc-patient-exp__card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dc-navy-deep);
  margin-bottom: 8px;
}

.dc-patient-exp__card p {
  font-size: 0.9rem;
  color: var(--dc-on-surface-variant);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .dc-patient-exp__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .dc-patient-exp__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   33. About Page - Doctor's Team
   ========================================================================== */
dc-team {
  background: #fff;
}

.dc-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dc-team__card {
  text-align: center;
  transition: var(--dc-transition-smooth);
}

.dc-team__card:hover {
  transform: translateY(-4px);
}

.dc-team__card-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--dc-radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--dc-shadow-sm);
}

.dc-team__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dc-team__card:hover .dc-team__card-img img {
  transform: scale(1.05);
}

.dc-team__card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dc-navy-deep);
  margin-bottom: 4px;
}

.dc-team__card-role {
  font-size: 0.8rem;
  color: var(--dc-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.dc-team__card-desc {
  font-size: 0.82rem;
  color: var(--dc-on-surface-variant);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .dc-team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

@media (max-width: 767px) {
  .dc-team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}

/* ==========================================================================
   34. About Page - Contact Section
   ========================================================================== */
.dc-contact-section {
  background: var(--dc-warm-gray-light);
}

.dc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.dc-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dc-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--dc-radius-md);
  box-shadow: var(--dc-shadow-xs);
  transition: var(--dc-transition-smooth);
}

.dc-contact-info__item:hover {
  box-shadow: var(--dc-shadow-sm);
}

.dc-contact-info__item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--dc-radius-xs);
  background: linear-gradient(135deg, var(--dc-gold-soft), var(--dc-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.dc-contact-info__item-icon .material-symbols-outlined {
  font-size: 24px;
}

.dc-contact-info__item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dc-navy-deep);
  margin-bottom: 4px;
}

.dc-contact-info__item p {
  font-size: 0.875rem;
  color: var(--dc-on-surface-variant);
  line-height: 1.5;
  margin-bottom: 0;
}

.dc-contact-map {
  border-radius: var(--dc-radius-lg);
  overflow: hidden;
  box-shadow: var(--dc-shadow-md);
  min-height: 400px;
}

.dc-contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

@media (max-width: 991px) {
  .dc-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   35. About Page - Enhanced Timeline
   ========================================================================== */
.dc-doc-timeline {
  position: relative;
  padding-left: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.dc-doc-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--dc-gold-soft), var(--dc-gold), var(--dc-gold-soft));
}

.dc-doc-timeline__item {
  position: relative;
  padding-bottom: 32px;
}

.dc-doc-timeline__item:last-child {
  padding-bottom: 0;
}

.dc-doc-timeline__dot {
  position: absolute;
  left: -35px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dc-gold);
  border: 4px solid #fff;
  box-shadow: var(--dc-shadow-sm);
}

.dc-doc-timeline__year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dc-gold);
  margin-bottom: 4px;
}

.dc-doc-timeline__content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dc-navy-deep);
  margin-bottom: 6px;
}

.dc-doc-timeline__content p {
  font-size: 0.9rem;
  color: var(--dc-on-surface-variant);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   36. About Page - Awards Section
   ========================================================================== */
dc-awards-about {
  background: #fff;
}

.dc-awards-about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.dc-awards-about__card {
  background: #fff;
  border-radius: var(--dc-radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--dc-shadow-xs);
  border: 1px solid rgba(99, 89, 67, 0.04);
  transition: var(--dc-transition-smooth);
}

.dc-awards-about__card:hover {
  box-shadow: var(--dc-shadow-md);
  transform: translateY(-3px);
}

.dc-awards-about__card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dc-gold-soft), var(--dc-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}

.dc-awards-about__card-icon .material-symbols-outlined {
  font-size: 30px;
}

.dc-awards-about__card-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dc-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.dc-awards-about__card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dc-navy-deep);
  margin-bottom: 4px;
}

.dc-awards-about__card-org {
  font-size: 0.78rem;
  color: var(--dc-on-surface-variant);
}

/* ===== Medical Knowledge Center ===== */

/* -- Hero -- */
.dc-kc-hero {
  position: relative;
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--dc-navy) 0%, var(--dc-navy-deep) 100%);
  overflow: hidden;
}
.dc-kc-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(172, 141, 98,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(100,140,200,0.08) 0%, transparent 50%);
}
.dc-kc-hero__content { position: relative; z-index: 1; }
.dc-kc-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(172, 141, 98,0.15); border: 1px solid rgba(172, 141, 98,0.3);
  color: var(--dc-gold); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.dc-kc-hero h1 {
  color: #fff; font-size: 2.6rem; font-weight: 800;
  line-height: 1.2; margin-bottom: 16px; max-width: 700px;
}
.dc-kc-hero__desc {
  color: rgba(255,255,255,0.65); font-size: 1.05rem;
  max-width: 600px; margin-bottom: 32px; line-height: 1.6;
}
.dc-kc-hero__stats {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.dc-kc-hero__stat strong {
  display: block; font-size: 2rem; font-weight: 800; color: var(--dc-gold);
}
.dc-kc-hero__stat span {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.dc-kc-hero__search {
  margin-top: 32px; display: flex; max-width: 560px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; overflow: hidden;
}
.dc-kc-hero__search input {
  flex: 1; background: transparent; border: none; outline: none;
  color: #fff; font-size: 0.95rem; padding: 14px 24px;
}
.dc-kc-hero__search input::placeholder { color: rgba(255,255,255,0.4); }
.dc-kc-hero__search button {
  background: var(--dc-gold); border: none; color: var(--dc-navy-deep);
  padding: 0 28px; font-weight: 700; font-size: 0.9rem; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: opacity 0.2s;
}
.dc-kc-hero__search button:hover { opacity: 0.85; }

/* -- Category Filter -- */
.dc-kc-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 24px 0; border-bottom: 1px solid var(--dc-border);
}
.dc-kc-filter__chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 100px;
  border: 1px solid var(--dc-border); background: var(--dc-surface);
  color: var(--dc-on-surface-variant); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.dc-kc-filter__chip:hover {
  border-color: var(--dc-gold); color: var(--dc-gold);
}
.dc-kc-filter__chip.is-active {
  background: var(--dc-navy); border-color: var(--dc-navy);
  color: #fff;
}
.dc-kc-filter__chip .material-symbols-outlined { font-size: 18px; }

/* -- Featured Slider -- */
.dc-kc-slider { position: relative; }
.dc-kc-slider__track {
  display: flex; gap: 0; overflow: hidden; border-radius: var(--dc-radius-xl);
  transition: transform 0.5s ease;
}
.dc-kc-slide {
  min-width: 100%; position: relative;
  min-height: 420px; display: flex; align-items: flex-end;
}
.dc-kc-slide__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.dc-kc-slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,30,50,0.9) 100%);
}
.dc-kc-slide__content {
  position: relative; z-index: 2; padding: 40px;
  max-width: 600px;
}
.dc-kc-slide__cat {
  display: inline-block; padding: 4px 14px; border-radius: 100px;
  background: rgba(172, 141, 98,0.2); border: 1px solid rgba(172, 141, 98,0.4);
  color: var(--dc-gold); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.dc-kc-slide__title {
  color: #fff; font-size: 1.8rem; font-weight: 700;
  line-height: 1.3; margin-bottom: 12px;
}
.dc-kc-slide__desc {
  color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.5; margin-bottom: 20px;
}
.dc-kc-slide__meta {
  display: flex; gap: 20px; align-items: center;
  color: rgba(255,255,255,0.5); font-size: 0.82rem;
}
.dc-kc-slide__meta span { display: flex; align-items: center; gap: 6px; }
.dc-kc-slide__meta .material-symbols-outlined { font-size: 16px; }
.dc-kc-slider__nav {
  display: flex; gap: 8px; justify-content: flex-end; margin-top: 16px;
}
.dc-kc-slider__nav button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--dc-border); background: var(--dc-surface);
  color: var(--dc-on-surface); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.dc-kc-slider__nav button:hover {
  background: var(--dc-navy); color: #fff; border-color: var(--dc-navy);
}
.dc-kc-slider__dots {
  display: flex; gap: 8px; justify-content: center; margin-top: 16px;
}
.dc-kc-slider__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--dc-border); cursor: pointer; transition: all 0.2s;
  border: none; padding: 0;
}
.dc-kc-slider__dot.is-active {
  background: var(--dc-gold); width: 24px; border-radius: 100px;
}

/* -- Article Card -- */
.dc-kc-card {
  display: flex; flex-direction: column;
  background: var(--dc-surface); border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius-lg); overflow: hidden;
  transition: all 0.3s; text-decoration: none; color: inherit;
}
.dc-kc-card:hover {
  border-color: var(--dc-gold); box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.dc-kc-card__img {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
}
.dc-kc-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.dc-kc-card:hover .dc-kc-card__img img { transform: scale(1.05); }
.dc-kc-card__cat {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(15,30,50,0.85); backdrop-filter: blur(8px);
  color: var(--dc-gold); font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.dc-kc-card__body {
  padding: 20px; display: flex; flex-direction: column; flex: 1;
}
.dc-kc-card__title {
  font-size: 1.05rem; font-weight: 700; color: var(--dc-navy-deep);
  line-height: 1.4; margin-bottom: 8px;
}
.dc-kc-card__desc {
  font-size: 0.85rem; color: var(--dc-on-surface-variant);
  line-height: 1.5; margin-bottom: 16px; flex: 1;
}
.dc-kc-card__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--dc-border);
}
.dc-kc-card__meta {
  display: flex; gap: 14px; font-size: 0.78rem; color: var(--dc-on-surface-variant);
}
.dc-kc-card__meta span { display: flex; align-items: center; gap: 4px; }
.dc-kc-card__meta .material-symbols-outlined { font-size: 14px; }
.dc-kc-card__share {
  display: flex; gap: 6px;
}
.dc-kc-card__share a {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--dc-surface-variant); color: var(--dc-on-surface-variant);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.2s; text-decoration: none;
}
.dc-kc-card__share a:hover {
  background: var(--dc-gold); color: var(--dc-navy-deep);
}
.dc-kc-card__author {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-top: 1px solid var(--dc-border);
  background: var(--dc-surface-low);
}
.dc-kc-card__author img {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
}
.dc-kc-card__author-info { flex: 1; }
.dc-kc-card__author-name {
  font-size: 0.82rem; font-weight: 600; color: var(--dc-navy-deep);
}
.dc-kc-card__author-role {
  font-size: 0.72rem; color: var(--dc-on-surface-variant);
}

/* -- Section Layouts -- */
.dc-kc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.dc-kc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.dc-kc-list {
  display: flex; flex-direction: column; gap: 20px;
}
.dc-kc-list-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px; border: 1px solid var(--dc-border); border-radius: var(--dc-radius-lg);
  background: var(--dc-surface); transition: all 0.2s; text-decoration: none; color: inherit;
}
.dc-kc-list-item:hover {
  border-color: var(--dc-gold); box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.dc-kc-list-item__img {
  width: 140px; height: 100px; border-radius: var(--dc-radius-md);
  object-fit: cover; flex-shrink: 0;
}
.dc-kc-list-item__body { flex: 1; }
.dc-kc-list-item__cat {
  font-size: 0.72rem; font-weight: 700; color: var(--dc-gold);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
}
.dc-kc-list-item__title {
  font-size: 1rem; font-weight: 700; color: var(--dc-navy-deep);
  line-height: 1.4; margin-bottom: 6px;
}
.dc-kc-list-item__desc {
  font-size: 0.82rem; color: var(--dc-on-surface-variant); line-height: 1.5;
  margin-bottom: 10px;
}
.dc-kc-list-item__meta {
  display: flex; gap: 14px; font-size: 0.76rem; color: var(--dc-on-surface-variant);
}
.dc-kc-list-item__meta span { display: flex; align-items: center; gap: 4px; }
.dc-kc-list-item__meta .material-symbols-outlined { font-size: 14px; }
.dc-kc-list-item__rank {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dc-navy); color: var(--dc-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
}

/* -- Doctor's Picks -- */
.dc-kc-pick {
  display: flex; gap: 20px; padding: 24px;
  border: 1px solid var(--dc-border); border-radius: var(--dc-radius-lg);
  background: var(--dc-surface); transition: all 0.2s;
  text-decoration: none; color: inherit;
}
.dc-kc-pick:hover {
  border-color: var(--dc-gold); box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.dc-kc-pick__img {
  width: 180px; height: 130px; border-radius: var(--dc-radius-md);
  object-fit: cover; flex-shrink: 0;
}
.dc-kc-pick__body { flex: 1; }
.dc-kc-pick__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(172, 141, 98,0.1); border: 1px solid rgba(172, 141, 98,0.2);
  color: var(--dc-gold); font-size: 0.72rem; font-weight: 700;
  margin-bottom: 10px;
}
.dc-kc-pick__badge .material-symbols-outlined { font-size: 14px; }
.dc-kc-pick__title {
  font-size: 1.1rem; font-weight: 700; color: var(--dc-navy-deep);
  line-height: 1.4; margin-bottom: 8px;
}
.dc-kc-pick__desc {
  font-size: 0.85rem; color: var(--dc-on-surface-variant); line-height: 1.5;
  margin-bottom: 12px;
}
.dc-kc-pick__doctor {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px; border-top: 1px solid var(--dc-border);
}
.dc-kc-pick__doctor img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
}
.dc-kc-pick__doctor-info { flex: 1; }
.dc-kc-pick__doctor-name {
  font-size: 0.82rem; font-weight: 600; color: var(--dc-navy-deep);
}
.dc-kc-pick__doctor-quote {
  font-size: 0.76rem; color: var(--dc-on-surface-variant); font-style: italic;
}

/* -- Health Tips -- */
.dc-kc-tip {
  display: flex; flex-direction: column;
  padding: 28px; border: 1px solid var(--dc-border); border-radius: var(--dc-radius-lg);
  background: var(--dc-surface); transition: all 0.2s;
  text-decoration: none; color: inherit;
}
.dc-kc-tip:hover {
  border-color: var(--dc-gold); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.dc-kc-tip__icon {
  width: 48px; height: 48px; border-radius: var(--dc-radius-md);
  background: linear-gradient(135deg, rgba(172, 141, 98,0.1), rgba(172, 141, 98,0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.dc-kc-tip__icon .material-symbols-outlined {
  font-size: 24px; color: var(--dc-gold);
}
.dc-kc-tip__title {
  font-size: 1rem; font-weight: 700; color: var(--dc-navy-deep);
  margin-bottom: 8px; line-height: 1.4;
}
.dc-kc-tip__desc {
  font-size: 0.85rem; color: var(--dc-on-surface-variant); line-height: 1.5;
  flex: 1; margin-bottom: 16px;
}
.dc-kc-tip__link {
  font-size: 0.82rem; font-weight: 600; color: var(--dc-gold);
  display: inline-flex; align-items: center; gap: 4px;
}
.dc-kc-tip__link .material-symbols-outlined { font-size: 16px; }

/* -- Tags Cloud -- */
.dc-kc-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.dc-kc-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--dc-border); background: var(--dc-surface);
  color: var(--dc-on-surface-variant); font-size: 0.82rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.dc-kc-tag:hover {
  background: var(--dc-navy); color: #fff; border-color: var(--dc-navy);
}
.dc-kc-tag .material-symbols-outlined { font-size: 14px; color: var(--dc-gold); }
.dc-kc-tag:hover .material-symbols-outlined { color: var(--dc-gold); }
.dc-kc-tag--lg { font-size: 0.9rem; padding: 10px 20px; }
.dc-kc-tag--sm { font-size: 0.76rem; padding: 6px 12px; }

/* -- Newsletter -- */
.dc-kc-newsletter {
  background: linear-gradient(135deg, var(--dc-navy) 0%, var(--dc-navy-deep) 100%);
  border-radius: var(--dc-radius-xl); padding: 48px;
  position: relative; overflow: hidden;
}
.dc-kc-newsletter__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(172, 141, 98,0.1) 0%, transparent 50%);
}
.dc-kc-newsletter__content { position: relative; z-index: 1; }
.dc-kc-newsletter h2 {
  color: #fff; font-size: 1.8rem; font-weight: 700; margin-bottom: 12px;
}
.dc-kc-newsletter p {
  color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.5;
}
.dc-kc-newsletter__form {
  display: flex; gap: 12px; max-width: 500px;
}
.dc-kc-newsletter__form input {
  flex: 1; padding: 14px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08);
  color: #fff; font-size: 0.9rem; outline: none;
}
.dc-kc-newsletter__form input::placeholder { color: rgba(255,255,255,0.4); }
.dc-kc-newsletter__form button {
  padding: 14px 32px; border-radius: 100px;
  background: var(--dc-gold); color: var(--dc-navy-deep);
  border: none; font-weight: 700; font-size: 0.9rem; cursor: pointer;
  transition: opacity 0.2s; white-space: nowrap;
}
.dc-kc-newsletter__form button:hover { opacity: 0.85; }
.dc-kc-newsletter__features {
  display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap;
}
.dc-kc-newsletter__feature {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.82rem;
}
.dc-kc-newsletter__feature .material-symbols-outlined { font-size: 18px; color: var(--dc-gold); }

/* -- Two-column layout -- */
.dc-kc-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 40px;
}
.dc-kc-sidebar {
  display: flex; flex-direction: column; gap: 32px;
  position: sticky; top: 100px;
}
.dc-kc-sidebar__block {
  border: 1px solid var(--dc-border); border-radius: var(--dc-radius-lg);
  padding: 24px; background: var(--dc-surface);
}
.dc-kc-sidebar__title {
  font-size: 0.82rem; font-weight: 700; color: var(--dc-navy-deep);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.dc-kc-sidebar__title .material-symbols-outlined { font-size: 18px; color: var(--dc-gold); }

/* -- Trending -- */
.dc-kc-trend-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--dc-border);
  text-decoration: none; color: inherit;
}
.dc-kc-trend-item:last-child { border-bottom: none; }
.dc-kc-trend-item__num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--dc-surface-low); color: var(--dc-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800; flex-shrink: 0;
}
.dc-kc-trend-item__body { flex: 1; }
.dc-kc-trend-item__title {
  font-size: 0.85rem; font-weight: 600; color: var(--dc-navy-deep);
  line-height: 1.4; margin-bottom: 4px;
}
.dc-kc-trend-item__meta {
  font-size: 0.72rem; color: var(--dc-on-surface-variant);
}

/* -- Responsive -- */
@media (max-width: 991px) {
  .dc-kc-layout { grid-template-columns: 1fr; }
  .dc-kc-sidebar { position: static; }
  .dc-kc-grid { grid-template-columns: repeat(2, 1fr); }
  .dc-kc-grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .dc-kc-hero h1 { font-size: 1.8rem; }
  .dc-kc-hero__stats { gap: 20px; }
  .dc-kc-hero__stat strong { font-size: 1.4rem; }
  .dc-kc-grid { grid-template-columns: 1fr; }
  .dc-kc-slide__content { padding: 24px; }
  .dc-kc-slide__title { font-size: 1.3rem; }
  .dc-kc-list-item { flex-direction: column; }
  .dc-kc-list-item__img { width: 100%; height: 180px; }
  .dc-kc-pick { flex-direction: column; }
  .dc-kc-pick__img { width: 100%; height: 180px; }
  .dc-kc-newsletter { padding: 28px; }
  .dc-kc-newsletter__form { flex-direction: column; }
  .dc-kc-newsletter__form button { width: 100%; }
}

/* ===== Treatment Hub (Services Page) ===== */

/* -- Hero Banner -- */
.dc-th-hero {
  position: relative; padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--dc-navy-deep) 0%, var(--dc-primary-container) 50%, var(--dc-navy-deep) 100%);
  overflow: hidden;
}
.dc-th-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(172, 141, 98,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(0,31,63,0.4) 0%, transparent 50%);
}
.dc-th-hero__inner { position: relative; z-index: 1; }
.dc-th-hero__crumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; margin-bottom: 20px; }
.dc-th-hero__crumbs a { color: rgba(255,255,255,0.6); text-decoration: none; }
.dc-th-hero__crumbs a:hover { color: var(--dc-gold); }
.dc-th-hero__crumbs span { color: rgba(255,255,255,0.4); }
.dc-th-hero__crumbs > span:last-child { color: var(--dc-gold); font-weight: 600; }
.dc-th-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(172, 141, 98,0.15); border: 1px solid rgba(172, 141, 98,0.3);
  color: var(--dc-gold); padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.dc-th-hero__badge .material-symbols-outlined { font-size: 18px; }
.dc-th-hero h1 { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.1; }
.dc-th-hero__subtitle { font-size: 1.15rem; color: var(--dc-gold); font-weight: 600; margin-bottom: 16px; }
.dc-th-hero__desc { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.8; max-width: 640px; margin-bottom: 28px; }
.dc-th-hero__stats { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; }
.dc-th-hero__stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--dc-gold); }
.dc-th-hero__stat span { font-size: 12px; color: rgba(255,255,255,0.5); }
.dc-th-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.dc-th-hero__trust {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
}
.dc-th-hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.6); }
.dc-th-hero__trust-item .material-symbols-outlined { font-size: 18px; color: var(--dc-gold); }

/* -- Treatment Categories -- */
.dc-th-categories { padding: 80px 0; }
.dc-th-categories__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px;
}
.dc-th-cat-card {
  position: relative; border-radius: 4px; overflow: hidden; text-decoration: none; color: inherit;
  aspect-ratio: 4/5; display: flex; align-items: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dc-th-cat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.dc-th-cat-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dc-th-cat-card:hover .dc-th-cat-card__img { transform: scale(1.06); }
.dc-th-cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(99, 89, 67,0.9) 0%, rgba(99, 89, 67,0.2) 60%, transparent 100%);
}
.dc-th-cat-card__content { position: relative; z-index: 1; padding: 24px; width: 100%; }
.dc-th-cat-card__icon {
  width: 48px; height: 48px; border-radius: 4px;
  background: rgba(172, 141, 98,0.2); border: 1px solid rgba(172, 141, 98,0.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.dc-th-cat-card__icon .material-symbols-outlined { font-size: 24px; color: var(--dc-gold); }
.dc-th-cat-card__content h3 { color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.dc-th-cat-card__content p { color: rgba(255,255,255,0.65); font-size: 13px; margin: 0 0 10px; line-height: 1.5; }
.dc-th-cat-card__link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--dc-gold); font-size: 13px; font-weight: 600; text-decoration: none;
}
.dc-th-cat-card__link .material-symbols-outlined { font-size: 16px; transition: transform 0.2s ease; }
.dc-th-cat-card:hover .dc-th-cat-card__link .material-symbols-outlined { transform: translateX(4px); }

/* -- Treatment Overview -- */
.dc-th-overview { padding: 80px 0; }
.dc-th-overview__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.dc-th-overview__text h2 { font-size: 2rem; font-weight: 600; margin-bottom: 16px; }
.dc-th-overview__text p { font-size: 1.02rem; color: #666; line-height: 1.8; margin-bottom: 16px; }
.dc-th-overview__features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.dc-th-overview__feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #444; }
.dc-th-overview__feature .material-symbols-outlined { color: var(--dc-gold); font-size: 22px; flex-shrink: 0; }
.dc-th-overview__img { border-radius: 4px; overflow: hidden; }
.dc-th-overview__img img { width: 100%; height: 100%; object-fit: cover; }

/* -- Popular Procedures -- */
.dc-th-procedures { padding: 80px 0; background: #fafafa; }
.dc-th-procedures__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
}
.dc-th-proc-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 4px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dc-th-proc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.dc-th-proc-card__img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.dc-th-proc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dc-th-proc-card:hover .dc-th-proc-card__img img { transform: scale(1.06); }
.dc-th-proc-card__icon {
  position: absolute; top: 12px; left: 12px;
  width: 40px; height: 40px; border-radius: 4px;
  background: rgba(99, 89, 67,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.dc-th-proc-card__icon .material-symbols-outlined { font-size: 22px; color: var(--dc-gold); }
.dc-th-proc-card__body { padding: 20px; }
.dc-th-proc-card__body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.dc-th-proc-card__body > p { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 16px; }
.dc-th-proc-card__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.dc-th-proc-card__meta-item {
  display: flex; align-items: center; gap: 6px; font-size: 12px; color: #555;
}
.dc-th-proc-card__meta-item .material-symbols-outlined { font-size: 16px; color: var(--dc-gold); flex-shrink: 0; }
.dc-th-proc-card__meta-item strong { font-weight: 600; color: var(--dc-primary-container); }
.dc-th-proc-card__suit {
  padding: 12px; background: #f8f8f8; border-radius: 4px; margin-bottom: 12px;
  font-size: 12px; color: #666; line-height: 1.5;
}
.dc-th-proc-card__suit strong { color: var(--dc-primary-container); display: block; margin-bottom: 4px; font-size: 13px; }
.dc-th-proc-card__result {
  display: flex; align-items: center; gap: 6px; padding: 8px 12px;
  background: rgba(172, 141, 98,0.08); border-radius: 8px;
  font-size: 12px; color: var(--dc-gold); font-weight: 600; margin-bottom: 14px;
}
.dc-th-proc-card__result .material-symbols-outlined { font-size: 16px; }
.dc-th-proc-card__cta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid #f0f0f0;
}
.dc-th-proc-card__price strong { font-size: 1.1rem; font-weight: 800; color: var(--dc-primary-container); }
.dc-th-proc-card__price span { font-size: 11px; color: #999; }
.dc-th-proc-card__btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--dc-gold); text-decoration: none;
}
.dc-th-proc-card__btn .material-symbols-outlined { font-size: 16px; transition: transform 0.2s ease; }
.dc-th-proc-card:hover .dc-th-proc-card__btn .material-symbols-outlined { transform: translateX(4px); }

/* -- Doctor Recommendation -- */
.dc-th-doctor { padding: 80px 0; }
.dc-th-doctor__card {
  display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center;
  background: #fff; border: 1px solid #e8e8e8; border-radius: 4px; padding: 36px;
}
.dc-th-doctor__photo {
  width: 260px; height: 260px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--dc-gold); margin: 0 auto; display: block;
}
.dc-th-doctor__info h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 4px; }
.dc-th-doctor__role { font-size: 1rem; color: var(--dc-gold); font-weight: 600; margin-bottom: 16px; }
.dc-th-doctor__bio { font-size: 0.95rem; color: #666; line-height: 1.8; margin-bottom: 20px; }
.dc-th-doctor__quote {
  padding: 16px 20px; background: #f8f4e8; border-left: 3px solid var(--dc-gold);
  border-radius: 0 4px 4px 0; margin-bottom: 20px;
  font-size: 14px; color: #555; font-style: italic; line-height: 1.7;
}
.dc-th-doctor__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.dc-th-doctor__stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--dc-primary-container); }
.dc-th-doctor__stat span { font-size: 12px; color: #999; }

/* -- Patient Reviews -- */
.dc-th-reviews { padding: 80px 0; background: #fafafa; }
.dc-th-reviews__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.dc-th-review {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 4px; padding: 24px;
}
.dc-th-review__header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.dc-th-review__header img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.dc-th-review__header h5 { font-size: 15px; font-weight: 700; margin: 0; }
.dc-th-review__header > div > span { font-size: 12px; color: var(--dc-gold); font-weight: 600; }
.dc-th-review__badge {
  margin-left: auto; display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: #4caf50; font-weight: 600;
}
.dc-th-review__badge .material-symbols-outlined { font-size: 16px; }
.dc-th-review__rating { display: flex; gap: 2px; margin-bottom: 10px; }
.dc-th-review__rating .material-symbols-outlined { color: #ffc107; font-size: 20px; }
.dc-th-review p { font-size: 14px; color: #555; line-height: 1.6; margin: 0; }
.dc-th-review__treatment {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid #f0f0f0;
  font-size: 12px; color: #999;
}
.dc-th-review__treatment strong { color: var(--dc-primary-container); }

/* -- Before & After -- */
.dc-th-ba { padding: 80px 0; }
.dc-th-ba__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.dc-th-ba__item {
  position: relative; aspect-ratio: 1; border-radius: 4px; overflow: hidden; cursor: pointer;
}
.dc-th-ba__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dc-th-ba__item:hover img { transform: scale(1.06); }
.dc-th-ba__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(99, 89, 67,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.3s ease;
}
.dc-th-ba__item:hover .dc-th-ba__overlay { opacity: 1; }
.dc-th-ba__tag {
  display: inline-block; background: var(--dc-gold); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
  margin-bottom: 6px; width: fit-content;
}
.dc-th-ba__label { color: #fff; font-size: 14px; font-weight: 600; }

/* -- Appointment CTA -- */
.dc-th-cta {
  background: linear-gradient(135deg, var(--dc-navy-deep) 0%, var(--dc-primary-container) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.dc-th-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(172, 141, 98,0.1) 0%, transparent 60%);
}
.dc-th-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.dc-th-cta__inner h2 { font-size: 2rem; font-weight: 600; color: #fff; margin-bottom: 12px; }
.dc-th-cta__inner p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.dc-th-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.dc-th-cta__features {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 24px;
}
.dc-th-cta__feature { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.5); }
.dc-th-cta__feature .material-symbols-outlined { font-size: 18px; color: var(--dc-gold); }

/* -- Responsive -- */
@media (max-width: 991px) {
  .dc-th-overview__grid { grid-template-columns: 1fr; }
  .dc-th-doctor__card { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .dc-th-doctor__photo { margin-bottom: 20px; }
  .dc-th-doctor__stats { grid-template-columns: 1fr 1fr 1fr; }
  .dc-th-hero__stats { gap: 20px; }
}
@media (max-width: 767px) {
  .dc-th-hero { padding: 80px 0 50px; }
  .dc-th-hero__actions { flex-direction: column; }
  .dc-th-hero__actions a { width: 100%; text-align: center; }
  .dc-th-overview__features { grid-template-columns: 1fr; }
  .dc-th-doctor__stats { grid-template-columns: 1fr; gap: 12px; }
  .dc-th-cta__buttons { flex-direction: column; }
  .dc-th-cta__buttons a { width: 100%; text-align: center; }
  .dc-th-proc-card__meta { grid-template-columns: 1fr; }
}

/* ==========================================================================
   27. Homepage Rebuild - Hero Building
   ========================================================================== */
.dc-hero-building {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.dc-hero-building__bg { position: absolute; inset: 0; z-index: 0; }
.dc-hero-building__bg img, .dc-hero-building__bg video { width: 100%; height: 100%; object-fit: cover; }
.dc-hero-building__bg::after { content: ''; }
.dc-hero-building__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(99, 89, 67,0.3) 0%, rgba(99, 89, 67,0.05) 45%, transparent 100%);
  z-index: 1;
}
.dc-hero-building__content {
  position: relative; z-index: 2; width: 100%;
  padding: 60px 0 56px;
  text-align: center;
}
.dc-hero-building__label {
  color: var(--dc-gold); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.75rem; font-weight: 700; display: block; margin-bottom: 12px;
}
.dc-hero-building__title { color: #fff; font-size: 2.5rem; font-weight: 700; margin-bottom: 12px; }
.dc-hero-building__desc { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 28px; font-size: 1rem; line-height: 1.7; }
@media (max-width: 767px) {
  .dc-hero-building { min-height: 560px; }
  .dc-hero-building__title { font-size: 1.8rem; line-height: 1.3; }
  .dc-hero-building__desc { font-size: 0.9rem; margin-bottom: 24px; }
  .dc-hero-building__content { padding: 48px 0 44px; }
  .dc-hero-building__label { font-size: 0.7rem; margin-bottom: 10px; }
  .dc-hero-building .dc-hero__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .dc-hero-building .dc-hero__buttons a {
    width: auto;
    min-width: 160px;
  }
}

/* ==========================================================================
   28. Homepage Rebuild - Doctor Intro (Light Variant)
   ========================================================================== */
.dc-doctor-intro--light {
  background: #fff;
  color: var(--dc-navy-deep);
}
.dc-doctor-intro--light::before { display: none; }
.dc-doctor-intro--light .dc-doctor-intro__name { color: var(--dc-navy-deep); }
.dc-doctor-intro--light .dc-doctor-intro__desc { color: var(--dc-on-surface-variant); }
.dc-doctor-intro--light .dc-doctor-intro__cred-text { color: var(--dc-on-surface-variant); }
.dc-doctor-intro--light .dc-doctor-intro__cred-text strong { color: var(--dc-navy-deep); }
.dc-doctor-intro--light .dc-doctor-intro__cred-icon { background: rgba(99, 89, 67,0.05); }
.dc-doctor-intro--light .dc-doctor-intro__image-badge { background: var(--dc-navy-deep); color: #fff; }
.dc-doctor-intro__strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px;
}
.dc-doctor-intro__strip-item { border-radius: var(--dc-radius-md); overflow: hidden; height: 200px; }
.dc-doctor-intro__strip-item img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 767px) {
  .dc-doctor-intro__strip { grid-template-columns: 1fr; }
}

/* ==========================================================================
   29. Homepage Rebuild - Trust Section (Split Cards)
   ========================================================================== */
.dc-trust-split {
  background: #F7F8FA;
}
.dc-trust-split__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.dc-trust-split__card {
  position: relative; border-radius: var(--dc-radius-lg); overflow: hidden;
  min-height: 360px; display: flex; align-items: flex-end;
}
.dc-trust-split__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dc-trust-split__card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(99, 89, 67,0.9) 0%, rgba(99, 89, 67,0.2) 60%);
}
.dc-trust-split__body { position: relative; z-index: 1; padding: 32px; }
.dc-trust-split__tag {
  color: var(--dc-gold); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.75rem; font-weight: 700; display: block; margin-bottom: 8px;
}
.dc-trust-split__title { color: var(--dc-navy-deep); font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.dc-trust-split__desc { color: var(--dc-on-surface-variant); font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 767px) {
  .dc-trust-split__grid { grid-template-columns: 1fr; }
  .dc-trust-split__card { min-height: 280px; }
}

/* ==========================================================================
   30. Homepage Rebuild - Large Promotional Banner
   ========================================================================== */
.dc-promo-banner {
  background: #fff;
  position: relative; overflow: hidden;
}
.dc-promo-banner__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 48px;
}
.dc-promo-banner__image { border-radius: var(--dc-radius-lg); overflow: hidden; }
.dc-promo-banner__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dc-promo-banner__label {
  color: var(--dc-gold); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.8rem; font-weight: 700; display: block; margin-bottom: 12px;
}
.dc-promo-banner__title { color: var(--dc-navy-deep); font-size: 2.25rem; font-weight: 800; margin-bottom: 16px; }
.dc-promo-banner__desc { color: var(--dc-on-surface-variant); font-size: 1rem; line-height: 1.8; margin-bottom: 28px; }
.dc-promo-banner__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.dc-promo-banner__card { border-radius: var(--dc-radius-md); overflow: hidden; position: relative; height: 220px; }
.dc-promo-banner__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dc-promo-banner__card:hover img { transform: scale(1.08); }
.dc-promo-banner__card-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(to top, rgba(99, 89, 67,0.9) 0%, transparent 100%);
  color: #fff; font-size: 0.85rem; font-weight: 600;
}
@media (max-width: 991px) {
  .dc-promo-banner__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 767px) {
  .dc-promo-banner__cards { grid-template-columns: 1fr; }
  .dc-promo-banner__title { font-size: 1.6rem; }
}

/* ==========================================================================
   31. Homepage Rebuild - Reviews Social Proof Row
   ========================================================================== */
.dc-social-proof {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  background: var(--dc-warm-gray-light); border-radius: var(--dc-radius-md);
  max-width: 640px; margin: 40px auto 0;
}
.dc-social-proof__avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.dc-social-proof__avatar img { width: 100%; height: 100%; object-fit: cover; }
.dc-social-proof__body { flex: 1; min-width: 0; }
.dc-social-proof__name { font-weight: 700; color: var(--dc-navy-deep); font-size: 0.9rem; }
.dc-social-proof__meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--dc-on-surface-variant); margin-top: 4px; }
.dc-social-proof__meta .material-symbols-outlined { font-size: 15px; vertical-align: -3px; margin-right: 3px; }

/* ==========================================================================
   32. Homepage Rebuild - Video Gallery
   ========================================================================== */
.dc-gallery__item--video .dc-video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.dc-gallery__item--video::after { opacity: 0.35; }

/* ==========================================================================
   33. Homepage - Service Menu (4 Cards)
   ========================================================================== */
.dc-service-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dc-service-menu__card {
  position: relative;
  border-radius: var(--dc-radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  height: 380px;
  background: var(--dc-navy-deep);
}
.dc-service-menu__img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.dc-service-menu__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dc-service-menu__card:hover .dc-service-menu__img img {
  transform: scale(1.08);
}
.dc-service-menu__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(99, 89, 67,0.92) 0%, rgba(99, 89, 67,0.3) 55%, rgba(99, 89, 67,0.05) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}
.dc-service-menu__card:hover::before {
  background: linear-gradient(to top, rgba(99, 89, 67,0.95) 0%, rgba(99, 89, 67,0.4) 60%, rgba(99, 89, 67,0.1) 100%);
}
.dc-service-menu__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}
.dc-service-menu__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(172, 141, 98,0.2);
  border: 1px solid rgba(172, 141, 98,0.4);
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}
.dc-service-menu__icon .material-symbols-outlined {
  font-size: 22px;
  color: var(--dc-gold);
}
.dc-service-menu__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.dc-service-menu__desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0 0 12px;
}
.dc-service-menu__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dc-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.dc-service-menu__card:hover .dc-service-menu__link {
  gap: 8px;
}
@media (max-width: 991px) {
  .dc-service-menu { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .dc-service-menu { grid-template-columns: 1fr; }
  .dc-service-menu__card { height: 300px; }
}
