/* ==========================================================================
   DC Clinic — Homepage Landing Styles
   Sections: Clinic Intro, Why Us, Review (Surgery), Review (Wellness),
   Promotion, Clip Review, Services+Guide+AfterCare, Campaign, Articles
   ========================================================================== */

/* ===== Variables ===== */
:root {
  --dc-home-navy: #2a2a2a;
  --dc-home-olive: #3E4D35;
  --dc-home-gold: #AC8D62;
  --dc-home-cream: #F7F4EF;
  --dc-home-cream-dark: #EDE7DC;
  --dc-home-charcoal: #333;
  --dc-home-text: #444;
  --dc-home-text-light: #666;
  --dc-home-border: rgba(99, 89, 67, 0.1);
  --dc-home-radius: 12px;
  --dc-home-radius-lg: 20px;
  --dc-home-container: 1280px;
  --dc-home-section-py: 80px;
  --dc-home-section-py-mobile: 48px;
}

/* Doctor profile CTAs: keep both actions aligned across breakpoints. */
.dc-doctor-profile__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 520px;
  margin-top: 8px;
}

.dc-doctor-profile__actions > .btn-dc-gold,
.dc-doctor-profile__actions > .btn-dc-outline-gold {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 20px;
  justify-content: center;
  text-align: center;
  line-height: 1.35;
  white-space: normal;
}

@media (max-width: 575px) {
  .dc-doctor-profile__card {
    padding-bottom: 24px !important;
  }

  .dc-doctor-profile__actions {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
    margin-top: 4px;
  }

  .dc-doctor-profile__actions > .btn-dc-gold,
  .dc-doctor-profile__actions > .btn-dc-outline-gold {
    min-height: 46px !important;
    padding: 11px 18px !important;
    font-size: 14px !important;
  }
}

/* ===== Container ===== */
.dc-home-container {
  max-width: var(--dc-home-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Section Base ===== */
.dc-home-section {
  padding-top: var(--dc-home-section-py);
  padding-bottom: var(--dc-home-section-py);
}

@media (max-width: 768px) {
  .dc-home-section {
    padding-top: var(--dc-home-section-py-mobile);
    padding-bottom: var(--dc-home-section-py-mobile);
  }
}

/* ===== Section Header ===== */
.dc-home-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.dc-home-section-header__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dc-home-section-header__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dc-home-gold);
}

.dc-home-section-header__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dc-home-olive);
  margin: 0;
  line-height: 1.2;
}

.dc-home-section-header__subtitle {
  font-size: 14px;
  color: var(--dc-home-text-light);
  margin: 0;
}

.dc-home-section-header__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--dc-home-gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap 0.2s ease;
}

.dc-home-section-header__link:hover {
  gap: 8px;
}

.dc-home-section-header__link .material-symbols-outlined {
  font-size: 18px;
}

@media (max-width: 768px) {
  .dc-home-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .dc-home-section-header__title {
    font-size: 22px;
  }
}

/* ==========================================================================
   1. CLINIC INTRO
   ========================================================================== */
.dc-home-intro {
  padding-top: 60px;
  padding-bottom: 40px;
  text-align: center;
}

.dc-home-intro__image {
  width: 100%;
  max-width: var(--dc-home-container);
  margin: 0 auto 28px;
  border-radius: var(--dc-home-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
}

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

.dc-home-intro__name {
  font-size: 24px;
  font-weight: 700;
  color: var(--dc-home-olive);
  margin: 0 0 4px;
}

.dc-home-intro__role {
  font-size: 14px;
  color: var(--dc-home-gold);
  font-weight: 600;
  margin: 0 0 12px;
}

.dc-home-intro__text {
  font-size: 15px;
  color: var(--dc-home-text);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .dc-home-intro {
    padding-top: 32px;
    padding-bottom: 24px;
  }
  .dc-home-intro__image {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  .dc-home-intro__name {
    font-size: 20px;
  }
  .dc-home-intro__text {
    font-size: 14px;
  }
}

/* ==========================================================================
   2. WHY US
   ========================================================================== */
.dc-home-whyus {
  background: var(--dc-home-cream);
}

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

.dc-home-whyus__card {
  background: #fff;
  border-radius: var(--dc-home-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--dc-home-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-home-whyus__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(99, 89, 67, 0.1);
}

.dc-home-whyus__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dc-home-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.dc-home-whyus__card-icon .material-symbols-outlined {
  font-size: 28px;
  color: var(--dc-home-gold);
}

.dc-home-whyus__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dc-home-olive);
  margin: 0 0 8px;
}

.dc-home-whyus__card-desc {
  font-size: 13px;
  color: var(--dc-home-text-light);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .dc-home-whyus__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dc-home-whyus__card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   3. REVIEW SECTIONS (Surgery + Wellness)
   ========================================================================== */
.dc-home-reviews--surgery {
  background: linear-gradient(180deg, #F5F0E8 0%, #FAF7F2 100%);
}

.dc-home-reviews--wellness {
  background: linear-gradient(180deg, #EFF3ED 0%, #F5F8F3 100%);
}

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

.dc-home-reviews__scroll.owl-loaded {
  display: block;
}

.dc-home-review-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dc-home-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(99, 89, 67, 0.12);
  border-color: rgba(172, 141, 98, 0.3);
}

.dc-home-review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.dc-home-review-card__logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.dc-home-review-card__heading {
  flex: 1;
  text-align: right;
}

.dc-home-review-card__cat {
  font-size: 22px;
  font-weight: 700;
  color: #2B2B2B;
  margin: 0;
  line-height: 1.2;
}

.dc-home-review-card__subcat {
  font-size: 10px;
  color: #AC8D62;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.dc-home-review-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F9F7F2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dc-home-review-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.dc-home-review-card:hover .dc-home-review-card__img img {
  transform: scale(1.05);
}

.dc-home-review-card__ba {
  position: absolute;
  bottom: 12px;
  background: rgba(107, 91, 69, 0.85);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.dc-home-review-card__ba--before {
  left: 12px;
}

.dc-home-review-card__ba--after {
  right: 12px;
}

.dc-home-review-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 16px 0;
}

.dc-home-review-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #2B2B2B;
  background: #F9F7F2;
  padding: 6px 10px;
  border-radius: 100px;
}

.dc-home-review-card__tag .material-symbols-outlined {
  font-size: 14px;
  color: #AC8D62;
}

.dc-home-review-card__id {
  font-size: 22px;
  font-weight: 700;
  color: #2B2B2B;
  padding: 12px 16px 0;
}

.dc-home-review-card__meta {
  padding: 10px 16px 16px;
}

.dc-home-review-card__meta-row {
  display: flex;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 13px;
}

.dc-home-review-card__meta-row:last-child {
  border-bottom: none;
}

.dc-home-review-card__meta-label {
  color: #8B8B8B;
  min-width: 70px;
  flex-shrink: 0;
}

.dc-home-review-card__meta-value {
  color: #2B2B2B;
  font-weight: 500;
}

@media (max-width: 768px) {
  .dc-home-reviews__scroll:not(.owl-carousel) {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -20px;
    padding: 0 20px 8px;
  }
  .dc-home-reviews__scroll:not(.owl-carousel) .dc-home-review-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
}

/* ==========================================================================
   4. PROMOTION
   ========================================================================== */
.dc-home-promo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dc-home-promo__grid.owl-loaded {
  display: block;
}

.dc-home-promo-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--dc-home-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--dc-home-border);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-home-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(99, 89, 67, 0.12);
}

.dc-home-promo-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.dc-home-promo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.dc-home-promo-card:hover .dc-home-promo-card__img img {
  transform: scale(1.05);
}

.dc-home-promo-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.dc-home-promo-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dc-home-olive);
  margin: 0;
}

.dc-home-promo-card__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--dc-home-gold);
  margin: 0;
}

.dc-home-promo-card__desc {
  font-size: 13px;
  color: var(--dc-home-text-light);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dc-home-promo-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--dc-home-gold);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 8px;
}

.dc-home-promo-card__cta .material-symbols-outlined {
  font-size: 18px;
}

@media (max-width: 768px) {
  .dc-home-promo__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -20px;
    padding: 0 20px 8px;
  }
  .dc-home-promo-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}

/* ==========================================================================
   5. CLIP REVIEW
   ========================================================================== */
.dc-home-clips__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dc-home-clips__grid.owl-loaded {
  display: block;
}

.dc-home-clip-card__img-wrap {
  position: relative;
}

.dc-home-clip-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  pointer-events: none;
}

.dc-home-review-card:hover .dc-home-clip-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}

.dc-home-clip-card__play .material-symbols-outlined {
  font-size: 24px;
  color: var(--dc-home-olive);
}

.dc-home-clip-card {
  position: relative;
  border-radius: var(--dc-home-radius);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  aspect-ratio: 4 / 3;
  background: #000;
}

.dc-home-clip-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.dc-home-clip-card:hover .dc-home-clip-card__thumb {
  transform: scale(1.05);
  opacity: 0.85;
}

.dc-home-clip-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.dc-home-clip-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.dc-home-clip-card:hover .dc-home-clip-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}

.dc-home-clip-card__play .material-symbols-outlined {
  font-size: 28px;
  color: var(--dc-home-olive);
}

.dc-home-clip-card__title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .dc-home-clips__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -20px;
    padding: 0 20px 8px;
  }
  .dc-home-clip-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
  }
}

/* ==========================================================================
   6. SERVICES + VISIT GUIDE + AFTER CARE
   ========================================================================== */
.dc-home-services {
  background: var(--dc-home-cream);
}

.dc-home-services__grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 20px;
}

.dc-home-services__main {
  border-radius: var(--dc-home-radius);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  text-decoration: none;
  display: block;
}

.dc-home-services__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.dc-home-services__main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.dc-home-services__main-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dc-home-gold);
  margin: 0 0 4px;
}

.dc-home-services__main-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.dc-home-services__main-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 0 0 12px;
}

.dc-home-services__main-link {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dc-home-services__main-link .material-symbols-outlined {
  font-size: 18px;
}

.dc-home-services__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dc-home-services__sub-card {
  display: flex;
  align-items: stretch;
  border-radius: var(--dc-home-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--dc-home-border);
  text-decoration: none;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-home-services__sub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 89, 67, 0.1);
}

.dc-home-services__sub-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dc-home-services__sub-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--dc-home-gold);
  letter-spacing: 0.1em;
  margin: 0 0 4px;
}

.dc-home-services__sub-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dc-home-olive);
  margin: 0 0 6px;
}

.dc-home-services__sub-desc {
  font-size: 13px;
  color: var(--dc-home-text-light);
  line-height: 1.5;
  margin: 0 0 10px;
}

.dc-home-services__sub-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--dc-home-gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.dc-home-services__sub-link .material-symbols-outlined {
  font-size: 16px;
}

.dc-home-services__sub-img {
  width: 140px;
  flex-shrink: 0;
  object-fit: cover;
}

@media (max-width: 768px) {
  .dc-home-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dc-home-services__main {
    min-height: 240px;
  }
  .dc-home-services__sub-img {
    width: 100px;
  }
  .dc-home-services__sub-body {
    padding: 16px 18px;
  }
}

/* ==========================================================================
   7. CAMPAIGN BANNER
   ========================================================================== */
.dc-home-campaign {
  padding-top: 10;
  padding-bottom: var(--dc-home-section-py);
}

.dc-home-campaign__banner {
  width: 100%;
  border-radius: var(--dc-home-radius-lg);
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
}

.dc-home-campaign__banner img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

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

@media (max-width: 768px) {
  .dc-home-campaign {
    padding-bottom: var(--dc-home-section-py-mobile);
  }
  .dc-home-campaign__banner {
    border-radius: 12px;
  }
  .dc-home-campaign__banner img {
    max-height: 220px;
  }
}

/* ==========================================================================
   8. ARTICLES (Owl Carousel)
   ========================================================================== */
.dc-home-articles {
  background: linear-gradient(180deg, #EFF3ED 0%, #F5F8F3 100%);
}

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

.dc-home-articles__carousel.owl-loaded {
  display: block;
}

.dc-home-article-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--dc-home-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--dc-home-border);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-home-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(99, 89, 67, 0.1);
}

.dc-home-article-card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.dc-home-article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.dc-home-article-card:hover .dc-home-article-card__img img {
  transform: scale(1.05);
}

.dc-home-article-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.dc-home-article-card__cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--dc-home-gold);
}

.dc-home-article-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dc-home-olive);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dc-home-article-card__excerpt {
  font-size: 13px;
  color: var(--dc-home-text-light);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dc-home-article-card__date {
  font-size: 12px;
  color: #999;
  margin-top: auto;
  padding-top: 4px;
}

.dc-home-article-card__read {
  font-size: 12px;
  font-weight: 600;
  color: var(--dc-home-gold);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.dc-home-article-card__read .material-symbols-outlined {
  font-size: 16px;
}

/* ==========================================================================
   9. FACILITIES
   ========================================================================== */
.dc-home-facilities {
  background: #fff;
}

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

.dc-home-facilities__grid.owl-carousel {
  display: block;
}

.dc-home-facility-card {
  border-radius: var(--dc-home-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--dc-home-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-home-facility-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(99, 89, 67, 0.1);
}

.dc-home-facility-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.dc-home-facility-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.dc-home-facility-card:hover .dc-home-facility-card__img img {
  transform: scale(1.05);
}

.dc-home-facility-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dc-home-olive);
  margin: 0;
  padding: 16px 20px 0;
}

.dc-home-facility-card__desc {
  font-size: 13px;
  color: var(--dc-home-text-light);
  line-height: 1.5;
  margin: 8px 0 0;
  padding: 0 20px 20px;
}

@media (max-width: 768px) {
  .dc-home-facilities__grid:not(.owl-carousel) {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== Video Modal ===== */
.dc-home-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dc-home-video-modal.is-open {
  display: flex;
}

.dc-home-video-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.dc-home-video-modal__close .material-symbols-outlined {
  font-size: 24px;
}

.dc-home-video-modal__video {
  max-width: 800px;
  width: 100%;
  border-radius: 12px;
}

/* ==========================================================================
   Certificate Gallery
   ========================================================================== */
.dc-certificate-gallery {
  margin-top: 0;
  padding: 0 24px 24px;
  background: #fff;
  border-radius: 0;
  text-align: center;
  width: 100%;
}

.dc-certificate__grid {
  max-width: none;
  margin: 0 auto;
  position: relative;
}

.dc-certificate__grid .owl-stage-outer {
  padding: 4px 0;
}

.dc-certificate__grid .owl-item {
  padding: 0 12px;
}

.dc-certificate__card {
  text-align: center;
  padding: 12px;
}

.dc-certificate__frame {
  background: #fff;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}

.dc-certificate__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.dc-certificate__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dc-navy-deep, #2B2B2B);
  margin: 0 0 4px;
}

.dc-certificate__desc {
  font-size: 0.9rem;
  color: var(--dc-on-surface-variant, #635943);
  margin: 0;
}

.dc-certificate__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .dc-certificate__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .dc-certificate-gallery {
    margin-top: 40px;
  }
  .dc-certificate__frame {
    aspect-ratio: 1 / 1;
  }
  .dc-certificate__title {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Wellness Banner
   ========================================================================== */
.dc-home-wellness-banner {
  padding-top: 0;
  padding-bottom: 0;
}

.dc-home-wellness-banner__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
