/* ===== Wellness & Skin Landing Page Styles ===== */

/* -- Section Header -- */
.dc-sk-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.dc-sk-section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.dc-sk-section-header h2 { font-size: 1.6rem; font-weight: 700; margin: 0; }

/* -- Hero -- */
.dc-sk-hero {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #0f1e3d 0%, #1a2f5a 50%, #0f1e3d 100%);
  overflow: hidden;
}
.dc-sk-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(193,162,72,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(26,47,90,0.4) 0%, transparent 50%);
}
.dc-sk-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.dc-sk-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193,162,72,0.15);
  border: 1px solid rgba(193,162,72,0.3);
  color: #c1a248;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.dc-sk-hero__badge .material-symbols-outlined { font-size: 18px; }
.dc-sk-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}
.dc-sk-hero__subtitle {
  font-size: 1.15rem;
  color: #c1a248;
  font-weight: 600;
  margin-bottom: 16px;
}
.dc-sk-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
}
.dc-sk-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.dc-sk-hero__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.dc-sk-hero__stats > div { display: flex; flex-direction: column; }
.dc-sk-hero__stats strong { font-size: 1.6rem; font-weight: 800; color: #c1a248; }
.dc-sk-hero__stats span { font-size: 12px; color: rgba(255,255,255,0.5); }
.dc-sk-hero__visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.dc-sk-hero__visual-card img { width: 100%; border-radius: 20px; }
.dc-sk-hero__visual-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.dc-sk-hero__visual-badge-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(193,162,72,0.1);
  display: flex; align-items: center; justify-content: center;
}
.dc-sk-hero__visual-badge-icon .material-symbols-outlined { color: #c1a248; font-size: 22px; }

/* -- Treatment Cards -- */
.dc-sk-treatments {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.dc-sk-treatment-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.dc-sk-treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: #c1a248;
}
.dc-sk-treatment-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.dc-sk-treatment-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dc-sk-treatment-card:hover .dc-sk-treatment-card__image img { transform: scale(1.08); }
.dc-sk-treatment-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #c1a248;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.dc-sk-treatment-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.dc-sk-treatment-card__body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.dc-sk-treatment-card__body > p { font-size: 14px; color: #666; margin-bottom: 14px; line-height: 1.5; }
.dc-sk-treatment-card__meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.dc-sk-treatment-card__meta span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #555; }
.dc-sk-treatment-card__meta .material-symbols-outlined { font-size: 18px; color: #c1a248; }
.dc-sk-treatment-card__actions { display: flex; gap: 8px; margin-top: auto; }

/* -- Why Choose -- */
.dc-sk-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.dc-sk-why-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dc-sk-why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.dc-sk-why-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(193,162,72,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.dc-sk-why-card__icon .material-symbols-outlined { font-size: 28px; color: #c1a248; }
.dc-sk-why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.dc-sk-why-card p { font-size: 13px; color: #666; margin: 0; line-height: 1.5; }

/* -- Journey -- */
.dc-sk-journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.dc-sk-journey__step {
  text-align: center;
  position: relative;
  padding: 24px 16px;
}
.dc-sk-journey__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #c1a248;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}
.dc-sk-journey__icon { margin-bottom: 10px; }
.dc-sk-journey__icon .material-symbols-outlined { font-size: 32px; color: #1a2f5a; }
.dc-sk-journey__step h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.dc-sk-journey__step p { font-size: 13px; color: #666; margin: 0; line-height: 1.5; }

/* -- Suitable For -- */
.dc-sk-suitable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.dc-sk-suitable-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dc-sk-suitable-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.dc-sk-suitable-card .material-symbols-outlined { font-size: 36px; color: #c1a248; margin-bottom: 12px; }
.dc-sk-suitable-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.dc-sk-suitable-card p { font-size: 13px; color: #666; margin: 0; }

/* -- Before/After Tabs + Gallery -- */
.dc-sk-ba-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
  padding-bottom: 4px;
}
.dc-sk-ba-tab {
  padding: 8px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.dc-sk-ba-tab:hover { border-color: #c1a248; color: #c1a248; }
.dc-sk-ba-tab.is-active { background: #c1a248; border-color: #c1a248; color: #fff; }
.dc-sk-ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.dc-sk-ba-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.dc-sk-ba-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dc-sk-ba-item:hover img { transform: scale(1.06); }
.dc-sk-ba-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,30,61,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
  opacity: 0; transition: opacity 0.3s ease;
}
.dc-sk-ba-item:hover .dc-sk-ba-item__overlay { opacity: 1; }
.dc-sk-ba-item__tag { background: #c1a248; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-bottom: 4px; width: fit-content; }
.dc-sk-ba-item__label { color: #fff; font-size: 13px; font-weight: 600; }
.dc-sk-ba-item.is-hidden { display: none; }

/* -- Reviews Carousel -- */
.dc-sk-reviews-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}
.dc-sk-reviews-carousel::-webkit-scrollbar { display: none; }
.dc-sk-review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 24px;
  scroll-snap-align: start;
}
.dc-sk-review-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.dc-sk-review-card__header img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.dc-sk-review-card__header h5 { font-size: 15px; font-weight: 700; margin: 0; }
.dc-sk-review-card__header > div > span { font-size: 12px; color: #c1a248; font-weight: 600; }
.dc-sk-review-card__verified { margin-left: auto; color: #4caf50; display: flex; align-items: center; }
.dc-sk-review-card__verified .material-symbols-outlined { font-size: 18px; }
.dc-sk-review-card__rating { display: flex; gap: 2px; margin-bottom: 10px; }
.dc-sk-review-card__rating .material-symbols-outlined { color: #ffc107; font-size: 20px; }
.dc-sk-review-card p { font-size: 14px; color: #555; line-height: 1.6; margin: 0; }
.dc-sk-reviews-nav { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.dc-sk-reviews-prev, .dc-sk-reviews-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.dc-sk-reviews-prev:hover, .dc-sk-reviews-next:hover { background: #c1a248; border-color: #c1a248; color: #fff; }
.dc-sk-reviews-prev .material-symbols-outlined, .dc-sk-reviews-next .material-symbols-outlined { font-size: 24px; }

/* -- FAQ -- */
.dc-sk-faq__item { border: 1px solid #e8e8e8; border-radius: 12px; margin-bottom: 10px; overflow: hidden; transition: border-color 0.25s ease; }
.dc-sk-faq__item.is-open { border-color: #c1a248; }
.dc-sk-faq__question {
  width: 100%; padding: 16px 22px; border: none; background: #fff;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600; color: #1a2f5a; cursor: pointer; text-align: left;
}
.dc-sk-faq__icon { transition: transform 0.3s ease; color: #c1a248; }
.dc-sk-faq__item.is-open .dc-sk-faq__icon { transform: rotate(180deg); }
.dc-sk-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.dc-sk-faq__item.is-open .dc-sk-faq__answer { max-height: 300px; }
.dc-sk-faq__answer p { padding: 0 22px 16px; font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

/* -- Related -- */
.dc-sk-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.dc-sk-related-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dc-sk-related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.dc-sk-related-card__image { aspect-ratio: 16/10; overflow: hidden; }
.dc-sk-related-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dc-sk-related-card:hover .dc-sk-related-card__image img { transform: scale(1.06); }
.dc-sk-related-card__body { padding: 16px; }
.dc-sk-related-card__body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.dc-sk-related-card__body p { font-size: 13px; color: #c1a248; font-weight: 600; margin: 0; }

/* -- CTA -- */
.dc-sk-cta {
  background: linear-gradient(135deg, #0f1e3d 0%, #1a2f5a 100%);
  padding: 60px 0; text-align: center; position: relative; overflow: hidden;
}
.dc-sk-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(193,162,72,0.1) 0%, transparent 60%); }
.dc-sk-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.dc-sk-cta__inner h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.dc-sk-cta__inner p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.dc-sk-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* -- Responsive -- */
@media (max-width: 991px) {
  .dc-sk-hero__grid { grid-template-columns: 1fr; }
  .dc-sk-hero__visual { max-width: 400px; }
  .dc-sk-journey { grid-template-columns: repeat(3, 1fr); }
  .dc-sk-review-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 767px) {
  .dc-sk-hero { padding: 40px 0 50px; }
  .dc-sk-hero__stats { gap: 20px; }
  .dc-sk-hero__stats strong { font-size: 1.3rem; }
  .dc-sk-hero__actions { flex-direction: column; }
  .dc-sk-hero__actions a { width: 100%; text-align: center; }
  .dc-sk-treatments { grid-template-columns: 1fr; }
  .dc-sk-journey { grid-template-columns: 1fr 1fr; }
  .dc-sk-ba-grid { grid-template-columns: 1fr 1fr; }
  .dc-sk-review-card { flex: 0 0 85%; min-width: 260px; }
  .dc-sk-cta__buttons { flex-direction: column; }
  .dc-sk-cta__buttons a { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .dc-sk-journey { grid-template-columns: 1fr; }
  .dc-sk-ba-grid { grid-template-columns: 1fr; }
  .dc-sk-related-grid { grid-template-columns: 1fr 1fr; }
}
