/* --- Page 'Điều trị da' Specific Styles --- */

.page-dieu-tri-da {
  background-color: var(--color-white);
  color: var(--color-text-primary);
}

/* ─── Pulse Animation ──────────────────────────────── */
@keyframes pulse-gentle {
  0% {
    transform: scale(1);
    box-shadow:
      inset 1px 1px 2px #E8D9A8,
      inset -1px -1px 2px #E8D9A8,
      0 0 0 0 rgba(191, 147, 78, 0.4);
  }

  50% {
    transform: scale(1.04);
    box-shadow:
      inset 1px 1px 2px #E8D9A8,
      inset -1px -1px 2px #E8D9A8,
      0 0 0 8px rgba(191, 147, 78, 0);
  }

  100% {
    transform: scale(1);
    box-shadow:
      inset 1px 1px 2px #E8D9A8,
      inset -1px -1px 2px #E8D9A8,
      0 0 0 0 rgba(191, 147, 78, 0);
  }
}

/* ═══════════ HERO BANNER ═══════════ */
.da-hero-banner {
  background-color: #f5f5f5;
  /* Light cream background */
  padding-top: 80px;
  /* Offset for desktop header */
  padding-bottom: 60px;
}

.da-hero-banner__grid {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.da-hero-banner__text img,
.da-hero-banner__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════ HERO DEAL BANNER ═══════════ */
.hero-deal-banner {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
  background: #ffffff;
  border: 1px solid #BF934E;
  border-radius: 26px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(191, 147, 78, 0.2);
}

.deal-deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.deal-deco--ribbon {
  top: 0;
  left: 50%;
  transform: translate(-50%, -101%);
  max-width: 180px;
}

.deal-deco--gift-left {
  bottom: -30px;
  left: -40px;
  max-width: 120px;
}

.deal-deco--gift-right {
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  max-width: 160px;
  z-index: 0;
}

.hero-deal-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.deal-title-img {
  display: block;
  max-width: 400px;
  margin-bottom: 20px;
}

.hero-deal-timer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.timer-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
}

.timer-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.time-box {
  background: #BF934E;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  border-radius: 6px;
  padding: 6px 10px;
  line-height: 1;
}

.time-sep {
  color: #BF934E;
  font-weight: bold;
  font-size: 18px;
}

.hero-deal-form {
  width: 100%;
  max-width: 900px;
}

.deal-form-fields {
  display: flex;
  gap: 15px;
  width: 100%;
  align-items: center;
}

.deal-form-fields br {
  display: none;
}

.deal-form-fields p {
  display: contents;
}

.wpcf7-form-control-wrap {
  flex: 1;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select {
  width: 100%;
  padding: 14px 30px;
  border-radius: 99px;
  border: none;
  background: #E8E8E8;
  font-family: 'Roboto';
  font-size: 15px;
  color: #333;
  outline: none;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.deal-form-submit-wrapper .wpcf7-submit {
  font-size: 21px;
  padding: 12px 36px;
  white-space: nowrap;
  font-weight: 400;
  border-radius: 50px;
  position: relative;
  box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #E8D9A8, inset -1px -1px 2px #E8D9A8;
  top: -9px;
  cursor: pointer;
  transition: all 0.4s ease;
  color: #FFFFFF;
  font-family: 'Geomanist';
  background: linear-gradient(90deg, #A88143 0%, #D4AE70 50%, #A88143 100%);
  background-size: 200% auto;
  border: none;
}

.deal-form-submit-wrapper .wpcf7-submit:hover {
  background-position: right center;
  box-shadow: 0 15px 30px rgba(168, 129, 67, 0.6);
  transform: translateY(-2px);
}

.deal-form-submit-wrapper {
  position: absolute;
  bottom: -73px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* ═══════════ MARQUEE ANIMATION ═══════════ */
.marquee {
  background: var(--color-primary-alpha);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__content {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.marquee__text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════ MOBILE RESPONSIVE HERO ═══════════ */
@media screen and (max-width: 768px) {
  .timer-title {
    font-size: 13px;
  }

  .da-hero-banner {
    padding-top: 130px;
  }

  .da-hero-banner__grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 20px;
  }

  .da-hero-banner__text {
    order: 1;
  }

  .da-hero-banner__image {
    order: 2;
  }

  .hero-deal-banner {
    order: 3;
    padding: 30px 20px;
    margin-top: 30px;
  }

  .deal-title-img {
    max-width: 260px;
  }

  .wpcf7-form .deal-form-fields {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .deal-deco--gift-right {
    display: none;
  }

  .deal-deco--gift-left {
    max-width: 80px;
    left: -20px;
  }
}

/* ═══════════ SECTION: SKIN ISSUES ═══════════ */
.issues-title-top {
  font-family: var(--font-accent-art);
  font-size: 121px;
  font-weight: 300;
  color: #B69655;
  margin-bottom: -3px;
  margin-right: 60px;
  opacity: 0.9;
}

.issues-title-middle {
  font-family: var(--font-heading-lux);
  font-size: 49px;
  color: #7F6337;
  border: 1px solid var(--color-primary);
  border-radius: 99px;
  padding: 10px 40px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2;
  position: relative;
  box-shadow: 0 5px 15px rgba(191, 147, 78, 0.15);
  font-weight: 300;
}

.issues-title-bottom {
  font-family: var(--font-heading-lux);
  font-size: 70px;
  background: linear-gradient(360deg, #b69655 0%, #e3c871 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 11px;
  margin-left: 100px;
  font-weight: 400;
  display: block;
}


.da-skin-issues {
  position: relative;
  padding: 35px 0;
  background-color: #f5f5f5;
  overflow: hidden;
  margin-bottom: -80px;
}

.da-skin-issues__decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.da-skin-issues__decor--light-left {
  top: 10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(191 147 78 / 50%) 0%, transparent 70%);
  filter: blur(60px);
}

.da-skin-issues__decor--light-right {
  bottom: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(191 147 78 / 50%) 0%, transparent 70%);
  filter: blur(80px);
}

.da-skin-issues__decor--star {
  top: -5%;
  right: -4%;
  width: 770px;
  opacity: 0.6;
}

@media screen and (max-width:768px) {
  .issues-title-top {
    font-size: 55px;

  }

  .issues-title-middle {
    font-size: 35px;

  }

  .issues-title-bottom {
    font-size: 42px;
  }

  .da-skin-issues {
    margin-bottom: -6px;
  }

  .da-skin-issues__decor.da-skin-issues__decor--light-left {
    display: none;
  }

  .da-skin-issues__decor.da-skin-issues__decor--light-right {
    display: none;
  }

  .da-skin-issues__decor.da-skin-issues__decor--star {
    display: none;
  }
}

.da-skin-issues__header {
  margin-bottom: 30px;
  text-align: center;
}

.da-skin-issues__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.da-title-top {
  font-family: var(--font-accent-art);
  font-size: 110px;
  color: #B69655;
  margin-bottom: 25px;
  opacity: 0.9;
  font-weight: 300;
}

.da-title-middle {
  font-family: var(--font-heading-lux);
  font-size: 45px;
  color: #7F6337;
  border: 1px solid #BF934E;
  border-radius: 999px;
  padding: 10px 40px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  z-index: 2;
  position: relative;
  font-weight: 300;
  box-shadow: 0 5px 13px 2px rgba(191, 147, 78, 0.23);
}

.da-skin-issues__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 3;
}

.da-skin-issues__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.da-skin-issues__list--left {
  align-items: flex-end;
}

.da-skin-issues__list--right {
  align-items: flex-start;
}

.skin-btn {
  padding: 15px 35px;
  border-radius: 23px;
  border: none;
  width: 227px;
  height: 80px;
  background: #ffffff;
  color: #7F6337;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(127, 99, 55, 0.12);
  white-space: nowrap;
  position: relative;
  text-wrap-mode: wrap;
}

.skin-btn:hover,
.skin-btn.is-active {
  background: linear-gradient(145deg, #D4AE70, #B88A44);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(191, 147, 78, 0.45), inset 2px 2px 5px rgba(255, 255, 255, 0.5), inset -3px -3px 8px rgb(255 255 255 / 40%);
  transform: translateY(-2px) scale(1.02);
}

.da-skin-issues__visual {
  position: relative;
  width: 100%;
}

.model-base {
  width: 100%;
  display: block;
}

.skin-tooltip {
  position: absolute;
  width: 257px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skin-tooltip.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* --- Logic Ẩn/Hiện ảnh Tooltip theo thiết bị --- */
.skin-tooltip .img-mobile {
  display: none;
}

.skin-tooltip .img-desktop {
  display: block;
}

/* Tooltip positioning omitted for brevity, assuming existing ones are fine */
.skin-tooltip[data-issue="mun"] {
  top: 6%;
  left: 0%;
}

.skin-tooltip[data-issue="nam"] {
  top: 17%;
  right: 4%;
}

.skin-tooltip[data-issue="tan-nhang"] {
  top: 6%;
  left: -1%;
}

.skin-tooltip[data-issue="tham-sam"] {
  top: 14%;
  left: 59%;
}

.skin-tooltip[data-issue="ran-da"] {
  top: 31%;
  left: 2%;
  width: 150px;
}

.skin-tooltip[data-issue="seo"] {
  top: 13%;
  left: 60%;
}

.skin-tooltip[data-issue="not-ruoi"] {
  top: 31%;
  right: 1%;
}

.skin-tooltip[data-issue="mao-mach"] {
  top: 8%;
  right: 62%;
}

.skin-tooltip[data-issue="da-kho"] {
  top: 25%;
  right: 53%;
}

@media screen and (max-width: 768px) {
  .model-base {
    position: relative;
    left: 32px;
  }

  .da-title-middle {
    font-size: 35px;
  }

  .da-skin-issues__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .da-skin-issues__visual {
    order: 1;
    margin-bottom: -35px;
  }

  .da-skin-issues__list {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: stretch !important;
  }

  .skin-btn {
    padding: 13px 17px;
    font-size: 16px;
    width: inherit;
    height: auto;
  }

  .skin-tooltip {
    width: 145px;
  }

  .skin-tooltip[data-issue="mun"] {
    top: 14% !important;
    left: 6% !important;
  }

  .skin-tooltip[data-issue="nam"] {
    top: 4% !important;
    left: 2% !important;
  }

  .skin-tooltip[data-issue="tan-nhang"] {
    top: 23% !important;
    left: 4% !important;
  }

  .skin-tooltip[data-issue="tham-sam"] {
    top: 12% !important;
    left: 4% !important;
  }

  .skin-tooltip[data-issue="ran-da"] {
    top: 23% !important;
    left: 5% !important;
  }

  .skin-tooltip[data-issue="seo"] {
    top: 24% !important;
    left: 3% !important;
  }

  .skin-tooltip[data-issue="not-ruoi"] {
    top: 23% !important;
    left: 4% !important;
  }

  .skin-tooltip[data-issue="mao-mach"] {
    top: 16% !important;
    left: 5% !important;
  }

  .skin-tooltip[data-issue="da-kho"] {
    top: 20% !important;
    left: 11% !important;
  }
}

/* ═══════════ SECTION: SOLUTIONS ═══════════ */
.da-solutions {
  background-color: #f5f5f5;
}

.da-solutions__header {
  text-align: center;
  margin-bottom: 60px;
}

.da-solutions__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 20px;
}

.sol-title-top {
  font-family: var(--font-accent-art);
  font-size: 121px;
  font-weight: 300;
  color: #B69655;
  margin-bottom: 26px;
  margin-right: 60px;
  opacity: 0.9;
}

.sol-title-middle {
  font-family: var(--font-heading-lux);
  font-size: 49px;
  color: #7F6337;
  border: 1px solid var(--color-primary);
  border-radius: 99px;
  padding: 10px 40px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2;
  position: relative;
  box-shadow: 0 5px 15px rgba(191, 147, 78, 0.15);
  font-weight: 300;
}

.sol-title-bottom {
  font-family: var(--font-heading-lux);
  font-size: 70px;
  background: linear-gradient(360deg, #b69655 0%, #e3c871 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 11px;
  margin-left: 100px;
  font-weight: 400;
  display: block;
}


.da-solutions__subtitle {
  font-size: 16px;
  color: #7F6337;
  margin: 0 auto;
  text-align: center;
}

.da-solutions__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.da-sol-card {
  width: calc(33.333% - 27px);
  position: relative;
  display: flex;
  flex-direction: column;
}

.da-sol-card__image {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.da-sol-card__main-img-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.da-sol-card__main-img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.da-sol-card:hover .da-sol-card__main-img {
  transform: scale(1.05);
}

.da-sol-card__content {
  position: absolute;
  bottom: -64px;
  left: 0;
  width: 100%;
  padding: 47px 124px 22px 29px;
  color: white;
  pointer-events: auto;
  z-index: 2;
}

.da-sol-card__title {
  font-family: 'Geomanist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #fff;
}

.da-sol-card__desc {
  font-family: var(--font-body);
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
  line-height: 1.4;
}


.da-sol-card__detail {
  position: absolute;
  bottom: 14px;
  right: 11px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

.da-sol-card__detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-cta--sol {
  display: inline-block;
  padding: 10px 26px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  background: linear-gradient(90deg, #A88143 0%, #D4AE70 50%, #A88143 100%);
  background-size: 200% auto;
  border-radius: 99px;
  border: none;
  box-shadow: 0 4px 12px rgba(168, 129, 67, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  position: relative;
  margin-top: 25px;
  animation: pulse-gentle 2.5s ease-in-out infinite;
}

.btn-cta--sol:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(168, 129, 67, 0.6);
}

/* ═══════════ MOBILE SOLUTIONS ZIGZAG ═══════════ */
@media screen and (max-width: 768px) {
  .da-solutions.section .container {
    padding: 0;
  }

  .da-solutions {
    padding: 15px 0;
  }

  .sol-title-top {
    font-size: 60px;
    position: relative;
    left: 40px;
    margin-bottom: 15px;
  }

  .sol-title-middle {
    font-size: 35px;
    padding: 8px 25px;
  }

  .sol-title-bottom {
    font-size: 45px;
    margin-left: 40px;
  }

  .da-solutions__subtitle {
    font-size: 14px;
    padding: 0 20px;
  }

  .da-solutions__grid {
    flex-direction: column;
    gap: 15px;
  }

  .da-sol-card {
    width: 100%;
    flex-direction: row;
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .da-sol-card:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
  }

  .da-sol-card__image {
    width: 45%;
    flex-shrink: 0;
  }

  .da-sol-card__main-img {
    height: 140px;
    border-radius: 15px;
  }

  .da-sol-card__detail {
    width: 45px;
    height: 45px;
    bottom: -5px;
    right: -5px;
  }

  .da-sol-card:nth-child(even) .da-sol-card__detail {
    right: auto;
    left: 131px;
  }

  .da-sol-card__content {
    position: static;
    width: 55%;
    padding: 0;
    background: none;
    color: inherit;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
  }

  .da-sol-card:nth-child(even) .da-sol-card__content {
    align-items: flex-end;
  }

  .da-sol-card__title {
    color: #7F6337;
    font-size: 16px;
    margin-bottom: 5px;
  }

  .da-sol-card__desc {
    color: #7F6337;
    font-size: 13px;
    opacity: 1;
    margin-bottom: 10px;
  }

  .da-sol-card__content .btn-cta--sol {
    display: inline-block;
    position: relative;
    margin-top: 15px;
    pointer-events: auto;
    padding: 6px 15px;
    font-size: 12px;
    width: 100%;
  }
}

/* ═══════════ PHƯƠNG PHÁP ĐIỀU TRỊ NỔI BẬT (TAB SECTION) ═══════════ */
.da-methods {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.da-methods__header {
  margin-bottom: 30px;
}

.da-methods__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Tab Nav (Trái) */
.da-methods__nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-bottom: none;
  padding: 0;
}

.da-methods__nav-item {
  width: 100%;
  justify-content: center;
  padding: 18px 20px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #efe5cc;
  color: #7F6337;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  white-space: normal;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.da-methods__nav-item:hover,
.da-methods__nav-item.is-active {
  color: white;
  border-color: transparent;
  font-weight: 500;
  background: linear-gradient(145deg, #D4AE70, #B88A44);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(191, 147, 78, 0.45), inset 2px 2px 5px rgba(255, 255, 255, 0.5), inset -3px -3px 8px rgb(255 255 255 / 40%);
}

/* Tab Content (Phải) */
.da-methods__content {
  padding-top: 0;
}

/*
.da-method-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  padding: 40px;
  background-color: #f5eedf;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
  /* Adding shadow to mimic the card feel */

/* Fallback for background blur using a semi-transparent inner card */
.da-method-card__inner {
  display: flex;
  gap: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 20px 70px 20px;
  align-items: center;
  background: linear-gradient(176deg, rgb(255 255 255 / 31%) 0%, rgb(255 255 255 / 32%) 100%);
  border: 1px solid rgb(255, 255, 255);
  border-radius: var(--radius-xl);
  overflow: visible;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: 0 2px 5px rgba(127, 99, 55, 0.3);
}

.da-method-card__img {
  width: 45%;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* The image appears with a white border possibly */
  border: 4px solid #fff;
}

.da-method-card__img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.da-method-card__info {
  width: 55%;
}

.da-method-card__info strong {
  font-weight: 700;
}

.da-method-card__desc p,
.da-method-card__service p {
  font-family: var(--font-body);
  font-size: 16px;
  color: #7F6337;
  line-height: 1.5;
  margin-bottom: 5px;
}

.da-method-card__service p {
  background: linear-gradient(145deg, #D4AE70, #B88A44);
  color: #ffffff !important;
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.5), inset -3px -3px 8px rgb(255 255 255 / 40%);
  transform: translateY(-2px) scale(1.02);
  padding: 10px;
  width: 139px;
  text-align: center;
  border-radius: 99px;
  padding: 0.3rem 1.5rem;
}

.da-method-card__service {
  margin-top: 15px;
}

.da-method-card__service ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.da-method-card__service li {
  position: relative;
  padding-left: 10px;
  font-size: 16px;
  color: #7F6337;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.da-method-card__service li::before {
  display: none;
}

.da-method-card__footer {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.da-method-promo {
  max-width: 320px;
  display: block;
  position: relative;
  z-index: 2;
  top: -47px;
}

.da-method-card__footer .btn-cta {
  font-size: 21px;
  padding: 12px 36px;
  white-space: nowrap;
  font-weight: 400;
  border-radius: 50px;
  position: relative;
  box-shadow: 0 4px 15px rgba(127, 99, 55, 0.3), inset 1px 1px 2px #E8D9A8, inset -1px -1px 2px #E8D9A8;
  top: -9px;
  cursor: pointer;
  transition: all 0.4s ease;
  color: #FFFFFF;
  font-family: 'Geomanist';
  background: linear-gradient(90deg, #A88143 0%, #D4AE70 50%, #A88143 100%);
  background-size: 200% auto;
  border: none;
  animation: pulse-gentle 2.5s ease-in-out infinite;
}

.da-method-card__footer .btn-cta:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(168, 129, 67, 0.6);
}

/* ═══════════ MOBILE RESPONSIVE ĐIỀU TRỊ NỔI BẬT ═══════════ */
@media screen and (max-width: 768px) {
  .da-methods {
    padding: 50px 0;
  }

  .da-methods__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .da-methods__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .tabs__nav-item.da-methods__nav-item {
    width: calc(40% - -24px);
    padding: 7px 6px;
    font-size: 15px;
    line-height: 1.3;
  }

  .tabs__nav-item.da-methods__nav-item:last-child:nth-child(odd) {
    width: 60%;
  }

  .da-method-card {
    padding: 20px 15px;
    border-radius: 20px;
  }

  .da-method-card__inner {
    flex-direction: column;
    padding: 15px 15px 58px;
    gap: 20px;
    border-radius: 16px;
  }

  .da-method-card__img {
    width: 100%;
  }

  .da-method-card__img img {
    aspect-ratio: 16 / 11;
  }

  .da-method-card__info {
    width: 100%;
  }

  .da-method-card__desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .da-method-card__footer {
    text-align: center;
    margin-top: 10px;
    margin-right: 0;
    /* Stretch CTA to full width */
  }

  .da-method-promo {
    max-width: 250px;
    margin: 0 auto -10px auto;
    align-self: center;
  }

  .da-method-card__footer .btn-cta {
    margin-right: 0;
    margin-top: 15px;
    font-size: 16px;
    padding: 12px 20px;
  }
}

/* ═══════════ KẾT QUẢ KHÁCH HÀNG ═══════════ */
.da-customer-results {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.da-result-card {
  background: linear-gradient(176deg, rgb(255 255 255 / 31%) 0%, rgb(255 255 255 / 32%) 100%);
  border: 1px solid rgb(255, 255, 255);
  border-radius: var(--radius-xl);
  overflow: visible;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: 0 2px 5px rgba(127, 99, 55, 0.3);
  flex: 0 0 445px;
  width: 445px;
  display: flex;
  flex-direction: column;
}

.da-results-list {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding-bottom: 20px;
  padding-top: 10px;
  scrollbar-width: thin;
  scrollbar-color: #BF934E #EBEBEB;
}

.da-results-list::-webkit-scrollbar {
  height: 8px;
}

.da-results-list::-webkit-scrollbar-track {
  background: #EBEBEB;
  border-radius: 10px;
}

.da-results-list::-webkit-scrollbar-thumb {
  background: #BF934E;
  border-radius: 10px;
}


/* Hide Show More on Desktop by default */
@media (min-width: 769px) {

  .show-more__btn,
  .show-more__fade,
  .show-more__label-less {
    display: none !important;
  }
}

.da-result-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 420 / 238;
}

.da-result-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.da-result-card__info {
  padding: 20px 25px 30px;
  text-align: center;
  flex-grow: 1;
}

.da-result-client {
  font-family: 'SVN-famous';
  font-size: 32px;
  color: #7F6337;
  margin-bottom: 0;
  line-height: 1.2;
}

.da-result-name {
  font-family: 'SVN-famous';
  font-size: 32px;
  color: #BF934E;
  line-height: 1.2;
  font-weight: 300;
  background: #fff;
  border-radius: 999px;
  padding: 5px 20px 5px 20px;
  width: max-content;
  margin: 0 auto;
}

.da-result-desc {
  font-family: 'Geomanist';
  font-size: 18px;
  color: #7F6337;
  text-align: left;
  line-height: 1.6;
  margin-top: 20px;
}

.da-result-desc p {
  margin-bottom: 0px;
}

/* Video Shorts from Trang chủ */
.video-shorts {
  margin-top: 50px;
}

.video-shorts__grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.video-short-item {
  flex: 0 0 240px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-color: #000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-short-item .js-video-inline {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-short-item iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-short-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.4s ease;
}

.video-short-item:hover img {
  transform: scale(1.05);
}

.video-short-item .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.video-short-item:hover .play-overlay {
  background: rgba(0, 0, 0, 0);
}

.video-short-item .play-overlay svg {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .da-customer-results {
    background-color: #f5f5f5;
    padding: 10px 0;
  }


  /* 1. Ép danh sách hiển thị theo chiều dọc và tắt cuộn ngang */
  .show-more__content .da-results-list {
    flex-direction: column;
    overflow-x: hidden;
    gap: 20px;
    /* Khoảng cách giữa các card khi xếp dọc */
    padding-bottom: 0;
    /* Xóa khoảng trống của thanh cuộn cũ */
  }

  /* 2. Trả lại chiều rộng cho từng Card để nó tràn màn hình Mobile (bỏ fix cứng 445px của desktop) */
  .show-more__content .da-result-card {
    flex: auto;
    width: 100%;
    max-width: 380px;
    /* Bạn có thể tùy chỉnh độ rộng tối đa cho đẹp */
    margin: 0 auto;
    /* Căn giữa card nếu màn hình to hơn 380px */
  }

  .nc-title-pill {
    font-size: 48px;
    padding: 0 20px;
    padding-top: 0.3rem;
    left: 11px;
  }

  .nc-title-script {
    font-size: 60px;
    padding-top: 15px;
    right: -26px;
    position: relative;
  }

  .nc-title-bottom {
    font-size: 40px;
    margin-left: 0;
    text-align: center;
    margin-top: 25px;
  }

  .nam-customers {
    padding-block: 40px;
  }

  .nam-customers__gallery {
    margin-bottom: 40px;
  }

  /* ── CSS Core Show More (Mobile Only) ────────────────────── */
  .show-more {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .show-more__content {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Hiện lại Show More trên Mobile */
  .show-more__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 20px auto 0;
    background: #FFFFFF;
    border: 1px solid #BF934E;
    border-radius: 99px;
    color: #BF934E;
    font-family: 'Geomanist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(191, 147, 78, 0.15);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .nc-title-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .show-more__btn:active {
    transform: scale(0.95);
  }

  .show-more__fade {
    display: block;
    position: absolute;
    bottom: 55px;
    left: 0;
    right: 0;
    height: 189px;
    background: linear-gradient(to bottom, rgb(253 250 245 / 0%), rgba(245, 245, 245, 1));
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
  }

  /* Trạng thái mở rộng (is-expanded dùng class từ JS) */
  .show-more.is-expanded .show-more__fade {
    opacity: 0;
    visibility: hidden;
  }

  /* Toggle labels */
  .show-more.is-expanded .show-more__label-more {
    display: none;
  }

  .show-more.is-expanded .show-more__label-less {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Gallery Grid Mobile: 1 col vertical stack */
  .nc-gallery-grid {
    flex-direction: column;
    overflow-x: hidden;
    gap: 16px;
    padding-bottom: 0;
  }

  .nc-gallery-item {
    flex: auto;
    width: 100%;
    max-width: 345px;
    margin: 0 auto;
  }

  /* Video Shorts Mobile: 1 col stack */
  .video-shorts__grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .video-short-item {
    width: 100%;
    max-width: 260px;
    flex: none;
  }
}

/* Removed specific override since global handles it */

/* ═══════════ MOBILE RESPONSIVE (<768px): DA BẠN GẶP VẤN ĐỀ GÌ ═══════════ */
@media screen and (max-width: 768px) {
  .da-skin-issues__title .da-title-top {
    margin-bottom: 17px;
  }

  /* --- 1. Header --- */
  .da-title-top {
    font-size: 63px;
    margin-bottom: -30px;
  }

  .da-title-middle {
    font-size: 26px;
    padding: 10px 25px;
  }

  /* --- 2. Khối Visual (Model + Tooltips) --- */
  /* Định vị lại khối chứa hình ảnh */
  .da-skin-issues__visual {
    position: relative;
    width: 100%;
    margin-bottom: -86px;
    display: flex;
    justify-content: flex-end;
  }

  .da-skin-issues__model {
    width: 85%;
    object-fit: contain;
    object-position: right bottom;
  }

  /* Đảo ngược logic ảnh Tooltip */
  .skin-tooltip .img-desktop {
    display: none !important;
  }

  .skin-tooltip .img-mobile {
    display: block !important;
    width: 79%;
    height: auto;
  }

  /* CỐ ĐỊNH TẤT CẢ TOOLTIP VỀ BÊN TRÁI */
  .skin-tooltip {
    /* Ghi đè toàn bộ tọa độ % của Desktop */
    top: 15% !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;

    width: 200px;
    /* Độ rộng của ảnh popup mobile (bao gồm cả đường kẻ nếu có) */
    height: auto;
    border-radius: 0;
    /* Bỏ bo tròn vì ảnh mobile thường là dạng hình chữ nhật chứa hình tròn + đường kẻ */
    border: none;
    box-shadow: none;
    background: transparent;
  }

  /* --- 3. Dàn Layout Nút Bấm (Wrap Style) --- */
  .da-skin-issues__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Khoảng cách dọc 12px, ngang 8px để các nút sát lại nhau hơn trên hàng ngang */
    gap: 12px 8px;
  }

  /* Bắt buộc đẩy khối Visual lên trên cùng */
  .da-skin-issues__visual {
    order: -1;
  }

  /* MAGIC TRICK: Dùng display: contents để xóa bỏ rào cản của 2 cột trái/phải, 
       giúp tất cả các nút tràn ra và wrap chung với nhau như 1 list duy nhất */
  .da-skin-issues__list {
    display: contents;
  }

  /* SẮP XẾP LẠI THỨ TỰ (ORDER) GIỐNG 100% BẢN THIẾT KẾ */
  /* Hàng 1 */
  .skin-btn[data-issue="mun"] {
    order: 1;
  }

  .skin-btn[data-issue="nam"] {
    order: 2;
  }

  .skin-btn[data-issue="tan-nhang"] {
    order: 3;
  }

  .skin-btn[data-issue="seo"] {
    order: 4;
  }

  /* Hàng 2 */
  .skin-btn[data-issue="ran-da"] {
    order: 5;
  }

  .skin-btn[data-issue="not-ruoi"] {
    order: 6;
  }

  .skin-btn[data-issue="mao-mach"] {
    order: 7;
  }

  /* Hàng 3 */
  .skin-btn[data-issue="tham-sam"] {
    order: 8;
  }

  .skin-btn[data-issue="da-kho"] {
    order: 9;
  }

  /* Tinh chỉnh lại kích thước nút cho vừa vặn với Mobile */
  .skin-btn {
    padding: 10px 18px;
    font-size: 16px;
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
    z-index: 20;
    pointer-events: auto;
    touch-action: manipulation;

  }

  .skin-btn:hover,
  .skin-btn.is-active {
    transform: translateY(-1px) scale(1.02) !important;
  }
}

/* ═══════════════════════════════════════════════════════════
  dẤU ẤN PHÒNG KHÁM — Section
   ═══════════════════════════════════════════════════════════ */
/* ═══════════ SECTION: DẤU ẤN (MILESTONES) ═══════════ */
.da-milestones {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: url(/wp-content/uploads/2026/04/bg-cot-moc.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.da-milestones .da-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

/* Tùy chỉnh lại khoảng cách giữa chữ "Dấu ấn" và khung pill cho cân đối */
.da-milestones .da-title-top {
  margin-bottom: 15px;
  /* Xóa margin âm nếu bị đè nhau */
  line-height: 1;
}

/* --- Xử lý Tiêu đề (Responsive) --- */
.ms-title-sub {
  text-transform: uppercase;
  margin-left: 5px;
}


/* --- Layout Grid Desktop --- */
.da-milestones__layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 15px;
  max-width: 1238px;
  margin: 0 auto;
  align-items: center;
}

.da-milestone-cta__action {
  text-align: center;
  margin-top: 30px;
}

.da-milestone-cta__action button {
  font-size: 20px;
}

@media screen and (max-width:768px) {
  .da-milestone-cta__action button {
    font-size: 16px;
  }
}

/* Style chung cho Item */
.da-ms-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* 1. KHẮC PHỤC LỖI ẢNH KHỔNG LỒ: Giới hạn max-width theo từng kiểu ảnh */
.da-ms-pic {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  flex-shrink: 0;
  width: 100%;
}

.da-ms-item--1 .da-ms-pic {
  max-width: 368px;
}

/* Ảnh dọc */
.da-ms-item--2 .da-ms-pic {
  max-width: 373px;
}

/* Ảnh ngang lớn */
.da-ms-item--3 .da-ms-pic {
  max-width: 269px;
}

/* Ảnh vuông vuông */
.da-ms-item--4 .da-ms-pic {
  max-width: 321px;
}

/* Ảnh dọc */


/* 2. CHUẨN HÓA VỊ TRÍ THEO FIGMA (Sử dụng justify-self để dồn cụm vào giữa trục) */

/* Item 1 (10 Năm): Text Trái, Ảnh Phải. Dồn dính vào trục giữa (end) */
.da-ms-item--1 {
  flex-direction: row;
  justify-content: flex-end;
  text-align: right;
  justify-self: end;
  transform: translateY(30px);
  /* Đẩy nhẹ xuống để so le với Item 2 */
}

/* Item 2 (8000+): Text Trên, Ảnh Dưới. Dồn dính vào trục giữa (start) */
.da-ms-item--2 {
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-self: start;
  transform: translateY(-20px);
  /* Kéo nhẹ lên trên */
}

/* Item 3 (100% Bác sĩ): Text Trái, Ảnh Phải. Dồn dính vào trục giữa (end) */
.da-ms-item--3 {
  flex-direction: row;
  justify-content: flex-end;
  text-align: right;
  justify-self: end;
}

/* Item 4 (100+ Đối tác): Ảnh Trái, Text Phải. Dồn dính vào trục giữa (start) */
.da-ms-item--4 {
  flex-direction: row-reverse;
  /* Row-reverse đẩy ảnh qua Trái */
  justify-content: flex-start;
  text-align: left;
  justify-self: start;
}

/* --- Typography Content --- */
.da-ms-number {
  font-family: 'SVN-Famous', var(--font-accent-art, serif);
  font-size: 84px;
  font-weight: normal;
  line-height: 1;
  display: inline-block;
  background: linear-gradient(360deg, #b69655 0%, #e3c871 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.da-ms-desc {
  font-family: var(--font-body, sans-serif);
  font-size: 20px;
  color: #7F6337;
  display: block;
}

/* --- Style Background Decor lệch --- */
.da-ms-pic img {
  display: block;
  width: 100%;
  border-radius: inherit;
  position: relative;
  z-index: 2;
}

.da-ms-pic__decor {
  position: absolute;
  z-index: 1;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Đảm bảo không cản trở việc click vào ảnh chính */
}

.decor-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Hoặc 'cover' tùy thuộc vào hình dáng decor của bạn */
  display: block;
}

/* Mặc định: Hiện Desktop, Ẩn Mobile */
.decor-img--mobile {
  display: none !important;
}

.decor-img--desktop {
  display: block !important;
}



/* ═══════════ MOBILE RESPONSIVE (<768px) ═══════════ */
@media screen and (max-width: 768px) {
  .da-milestones {
    padding: 30px 0;
    background: url(/wp-content/uploads/2026/04/bg-cot-moc-mob.webp) !important;
  }

  .decor-img--desktop {
    display: none !important;
  }

  .decor-img--mobile {
    display: block !important;
  }

  /* Nếu bạn muốn ảnh decor trên mobile có độ lệch (offset) khác đi, 
       hãy điều chỉnh transform tại đây */
  .da-ms-item--1 .da-ms-pic__decor {
    transform: translate(-8px, 8px);
  }

  .da-ms-item--2 .da-ms-pic__decor {
    transform: translate(-8px, 8px);
  }

  /* 1. Reset Title */
  .da-title-middle--milestone {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 !important;
  }

  .ms-title-main {
    border: 1px solid #BF934E;
    border-radius: 999px;
    padding: 5px 20px;
    font-size: 35px;
    color: #7F6337;
    background: rgba(255, 255, 255, 0.6);
  }

  .ms-title-sub {
    font-family: var(--font-accent-art);
    font-size: 50px;
    text-transform: none;
    color: #B69655;
    margin-top: -10px;
    margin-left: 0;
  }

  /* 2. Reset Grid sang Flex Box đơn cột */
  .da-milestones__layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: -66px;
  }

  .da-ms-item {
    gap: 15px;
  }

  .da-ms-number {
    font-size: 50px;
  }

  .da-ms-desc {
    font-size: 13px;
    max-width: 150px;
    margin-top: 5px;
  }

  .da-ms-pic {
    width: 50%;
    flex-shrink: 0;
  }

  /* 3. Logic Đảo vị trí (Order) & Zigzag Layout (Đã Fix chuẩn theo cấu trúc DOM) */

  /* Item 1 (10 Năm): Ảnh Trái, Text Phải */
  .da-ms-item--1 {
    order: 1;
    flex-direction: row-reverse;
    text-align: left;
  }

  /* Item 3 (100% Bác sĩ): Text Trái, Ảnh Phải */
  .da-ms-item--3 {
    order: 2;
    flex-direction: row;
    text-align: right;
  }

  /* Item 2 (8000+ Khách): Ảnh Trái, Text Phải */
  .da-ms-item--2 {
    order: 3;
    flex-direction: row-reverse;
    text-align: left;
  }

  /* Item 4 (100+ Đối tác): Text Trái, Ảnh Phải */
  .da-ms-item--4 {
    order: 4;
    flex-direction: row;
    text-align: right;
    margin-top: -28px;
  }

  /* 4. Giảm tỷ lệ offset decor trên mobile */
  .da-ms-item--1 .da-ms-pic__decor {
    transform: translate(-10px, 10px);
  }

  .da-ms-item--2 .da-ms-pic__decor {
    transform: translate(-10px, 10px);
  }

  .da-ms-item--3 .da-ms-pic__decor {
    transform: translate(10px, 10px);
  }

  .da-ms-item--4 .da-ms-pic__decor {
    transform: translate(-10px, 10px);
  }
}



/* ═══════════════════════════════════════════════════════════
   LÝ DO LỰA CHỌN LINH ANH — Section
   ═══════════════════════════════════════════════════════════ */
.da-why-us {
  background: #f5f5f5;
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture
.da-why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(191, 147, 78, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 90% 30%, rgba(191, 147, 78, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ── 2-Column Grid ────────────────────────────────────────── */
.da-why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}

/* ── Left Column: Title + List ────────────────────────────── */
.da-why-us__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.da-why-us__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.da-why-us__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
  margin: 0;
}

/* Override sol-title-middle margin for this section */
.da-why-us__pill {
  align-self: flex-start;
}

/* Override sol-title-top placement for this section */
.da-why-us__script {
  font-size: 100px;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 8px;
  order: -1;
  /* Script font goes first (top) in the title stack */
}

/* Override sol-title-bottom margin for this section */
.da-why-us__gradient {
  font-size: 65px;
  margin-left: 0;
  margin-top: 10px;
}

/* ── Reason List ──────────────────────────────────────────── */
.da-why-us__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.da-why-us__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.da-why-us__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.da-why-us__text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: #7F6337;
  line-height: 1.5;
}

/* ── Right Column: Building Image ─────────────────────────── */
.da-why-us__image {
  position: relative;
}

.da-why-us__image-wrap {
  aspect-ratio: 1 / 1;
}

.da-why-us__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.da-why-us__image-wrap:hover img {
  transform: scale(1.04);
}

/* ── RESPONSIVE — Mobile (≤ 768px) ───────────────────────── */
@media (max-width: 768px) {
  .da-why-us {
    padding-block: 30px;
  }

  /* Stack to single column: title → image → list */
  .da-why-us__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Reorder: content (title) → image → list */
  .da-why-us__content {
    order: 1;
    gap: 24px;
  }

  .da-why-us__image {
    order: 2;
  }

  /* Move list below image */
  .da-why-us__list {
    order: 3;
  }

  /* Reorder inside content: only header visible first, list moves below image */
  .da-why-us__content {
    display: contents;
    /* Flatten so children participate in grid-level ordering */
  }

  .da-why-us__header {
    order: 1;
    align-items: center;
    text-align: center;
  }

  .da-why-us__image {
    order: 2;
  }

  .da-why-us__list {
    order: 3;
    gap: 14px;
  }

  /* Title font-size adjustments mobile */
  .da-why-us__pill {
    font-size: 35px;
    padding: 8px 22px;
  }

  .da-why-us__script {
    font-size: 90px;
    margin-bottom: 16px;
    width: 100%;
  }

  .da-why-us__gradient {
    font-size: 44px;
  }


  .da-why-us__text {
    font-size: 15px;
  }
}

/* ── RESPONSIVE — Tablet (769px – 1024px) ────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .da-why-us__grid {
    gap: 40px;
  }

  .da-why-us__pill {
    font-size: 32px;
  }

  .da-why-us__script {
    font-size: 80px;
  }

  .da-why-us__gradient {
    font-size: 55px;
  }

  .da-why-us__text {
    font-size: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   ĐỘI NGŨ BÁC SĨ — Section (Task 1)
   Copied & scoped from home.css — safe on dieu-tri-da page
   ═══════════════════════════════════════════════════════════ */
.da-doctor-section {
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
}

/* ── Title typography ───────────────────────────────────── */
.da-doctor-section .doctor-team__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.da-doctor-section .dt-title-top {
  font-family: var(--font-accent-art);
  font-size: 120px;
  font-weight: normal;
  color: var(--color-primary);
  margin-bottom: -50px;
  margin-right: 79px;
  opacity: 0.9;
}

.da-doctor-section .dt-title-middle {
  font-family: var(--font-heading-lux);
  font-size: 49px;
  color: #7F6337;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  padding: 0.8rem 30px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-weight: 500;
  position: relative;
  left: 18%;
  top: -15px;
  box-shadow: 0 5px 13px 2px rgba(191, 147, 78, 0.23);
}

.da-doctor-section .dt-title-bottom {
  font-family: var(--font-heading-lux);
  font-size: 70px;
  background: linear-gradient(360deg, #B69655 0%, #E3C871 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 6px;
  margin-left: 80px;
}

.da-doctor-section .doctor-team__header {
  margin-bottom: 20px;
}

/* ── Slider ─────────────────────────────────────────────── */
.da-doctor-section .doctor-slider {
  position: relative;
}

.da-doctor-section .doctor-slider .splide__track {
  overflow: hidden;
  z-index: 1;
}

.da-doctor-section .doctor-slider .splide__slide {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  opacity: 0.5;
  transform: scale(0.85);
  display: flex;
  justify-content: center;
}

.da-doctor-section .doctor-slider .splide__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.da-doctor-section .doctor-slider {
  position: relative;
  z-index: 1;
}

/* ── Liquid Glass arrows ─────────────────────────────────── */
.da-doctor-section .doctor-slider__arrows {
  display: flex !important;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 20;
  padding: 0 10px;
}

.da-doctor-section .splide__arrow {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.da-doctor-section .splide__arrow--prev {
  left: 20px;
}

.da-doctor-section .splide__arrow--next {
  right: 20px;
}

.da-doctor-section .liquid-glass-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow:
    inset 0 0 15px rgba(255, 255, 255, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.05);
  font-size: 1.2rem;
}

.da-doctor-section .liquid-glass-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #a07a38;
}

/* --- Tối ưu UX cho Slider Đội ngũ Bác sĩ --- */

/* 1. Đổi con trỏ chuột thành hình bàn tay (kéo thả) khi rê vào vùng slider */
.da-doctor-section .splide__track {
  cursor: grab;
}

/* 2. Đổi thành bàn tay nắm lại khi đang giữ chuột để kéo */
.da-doctor-section .splide__track:active {
  cursor: grabbing;
}

/* 3. Hiển thị con trỏ 'Click' (bàn tay chỉ ngón) khi rê chuột vào các bác sĩ đang bị mờ ở 2 bên */
.da-doctor-section .splide__slide:not(.is-active) {
  cursor: pointer;
}

/* ── Background pattern ──────────────────────────────────── */
.da-doctor-section .doctor-team__bg-pattern {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  max-width: 1400px;
  z-index: 0;
  pointer-events: none;
}

.da-doctor-section .doctor-team__bg-pattern--desktop {
  display: block;
}

.da-doctor-section .doctor-team__bg-pattern--mobile {
  display: none;
}

.da-doctor-section .doctor-team__bg-pattern img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

/* ── Doctor Card ─────────────────────────────────────────── */
.da-doctor-section .doctor-card {
  width: 100%;
  max-width: 404px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.da-doctor-section .doctor-card__image-arch {
  width: 100%;
  overflow: hidden;
  margin-bottom: -40px;
  position: relative;
  z-index: 1;
}

.da-doctor-section .doctor-card__image-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.da-doctor-section .doctor-card__info-box {
  width: 90%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 36px;
  padding: 24px 16px;
  box-shadow: -1px 3px 10px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.da-doctor-section .doctor-card__name {
  font-family: 'Geomanist', sans-serif;
  font-size: 22px;
  color: #B69655;
  margin-bottom: 8px;
  font-weight: 500;
}

.da-doctor-section .doctor-card__title {
  font-size: 21px;
  color: #7F6337;
  line-height: 1.2;
  margin: 0;
  font-family: 'SVN-Famous', serif;
}

.da-doctor-section .doctor-card__career-box {
  width: 85%;
  padding: 0 16px;
  background: #fff;
  box-shadow: -1px 3px 10px 2px rgba(0, 0, 0, 0.05);
  padding-top: 3rem;
  position: relative;
  top: -5%;
  border-radius: 36px;
}

.da-doctor-section .doctor-card__experience {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.da-doctor-section .doctor-card__experience li {
  font-size: 16px;
  color: #7F6337;
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
  font-family: 'Geomanist', sans-serif;
  font-weight: 300;
  padding-left: 16px;
}

.da-doctor-section .doctor-card__experience li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* ── Pagination ──────────────────────────────────────────── */
.da-doctor-section .doctor-slider .splide__pagination {
  bottom: -10px;
}

.da-doctor-section .doctor-slider .splide__pagination__page {
  width: 8px;
  height: 8px;
  background: #E2E2E2;
  opacity: 1;
  transition: 0.3s;
}

.da-doctor-section .doctor-slider .splide__pagination__page.is-active {
  width: 32px;
  background: var(--color-primary);
  border-radius: 999px;
}

/* ── CTA ─────────────────────────────────────────────────── */
.da-doctor__cta {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* ── Responsive Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
  .da-doctor-section .doctor-team__bg-pattern--desktop {
    display: none;
  }

  .da-doctor-section .doctor-team__bg-pattern--mobile {
    display: block;
    width: 150%;
    top: 50%;
  }

  .da-doctor-section .doctor-slider .splide__slide {
    transform: scale(1);
    opacity: 1;
  }

  .da-doctor-section .doctor-slider .splide__slide.is-active {
    transform: scale(1);
  }

  .da-doctor-section .dt-title-top {
    font-size: 70px;
    margin-bottom: -30px;
  }

  .da-doctor-section .dt-title-middle {
    font-size: 26px;
    left: 122px;
    padding: 10px 27px;
  }

  .da-doctor-section .dt-title-bottom {
    font-size: 40px;
    margin-left: 0;
  }

  .da-doctor-section .doctor-card__name {
    font-size: 18px;
  }

  .da-doctor-section .doctor-card__image-arch {
    margin-bottom: -30px;
  }

  .da-doctor-section .liquid-glass-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   DẢI BẰNG CẤP / CHỨNG CHỈ BÁC SĨ — Section (Task 2)
   Copied & scoped from dieu-tri-nam.css
   ═══════════════════════════════════════════════════════════ */
.da-doctor-section .nam-doctor__certs,
.da-doctor-section .da-doctor__certs {
  margin-top: 60px;
  max-width: 100%;
}

.da-doctor-section .ndc-certs-gallery {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #BF934E #EBEBEB;
}

.da-doctor-section .ndc-certs-gallery::-webkit-scrollbar {
  height: 8px;
}

.da-doctor-section .ndc-certs-gallery::-webkit-scrollbar-track {
  background: #EBEBEB;
  border-radius: 10px;
}

.da-doctor-section .ndc-certs-gallery::-webkit-scrollbar-thumb {
  background: #BF934E;
  border-radius: 10px;
}

.da-doctor-section .ndc-cert-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 310px;
  width: 310px;
}

.da-doctor-section .ndc-cert-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.da-doctor-section .ndc-cert-item:hover img {
  transform: scale(1.05);
}

.da-doctor-section .cert-zoom-icon {
  position: absolute;
  inset: 0;
  background: rgba(191, 147, 78, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.da-doctor-section .ndc-cert-item:hover .cert-zoom-icon {
  opacity: 1;
}

/* Mobile — horizontal scroll for certs */
@media (max-width: 768px) {
  .da-doctor-section .da-doctor__certs {
    margin-inline: -20px;
    margin-top: 40px;
  }

  .da-doctor-section .ndc-certs-gallery {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 10px 20px 25px;
    scroll-snap-type: x mandatory;
    gap: 15px;
    scrollbar-width: thin;
    scrollbar-color: #BF934E transparent;
  }

  .da-doctor-section .ndc-certs-gallery::-webkit-scrollbar {
    height: 4px;
  }

  .da-doctor-section .ndc-certs-gallery::-webkit-scrollbar-thumb {
    background: #BF934E;
    border-radius: 10px;
  }

  .da-doctor-section .ndc-cert-item {
    flex: 0 0 260px;
    width: 260px;
    max-width: none;
    scroll-snap-align: center;
  }
}



/* ═══════════ SECTION: DOCTOR CTA ═══════════ */
.da-doctor-cta {
  padding: 208px 0 30px 0;
  background-color: #f5f5f5;
}

@media screen and (max-width:768px) {
  .da-doctor-cta {
    padding: 52px 0 30px 0;
    background-color: #f5f5f5;
  }
}

/* Card Background: Glassmorphism nhẹ */
.da-doctor-cta__card {
  background: linear-gradient(176deg, rgb(255 255 255 / 31%) 0%, rgb(255 255 255 / 32%) 100%);
  border: 1px solid rgb(255, 255, 255);
  border-radius: var(--radius-xl);
  overflow: visible;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: 0 2px 5px rgba(127, 99, 55, 0.3);
  display: flex;
  align-items: center;
  /* Dành một khoảng trống 300px bên trái để nhường chỗ cho ảnh bác sĩ */
  padding: 40px 40px 40px 320px;
  position: relative;
}

/* Hình ảnh bác sĩ - Định vị Desktop */
.da-doctor-cta__image {
  position: absolute;
  bottom: 0;
  /* Gắn sát đáy card */
  left: 20px;
  width: 280px;
  z-index: 2;
}

.da-doctor-cta__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Layout nội dung */
.da-doctor-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex: 1;
  z-index: 3;
  position: relative;
  align-items: stretch;
}

/* Text Giới thiệu */
.da-doctor-cta__info {
  flex: 1.2;
}

.cta-title {
  font-family: 'SVN-Famous', var(--font-accent-art, serif);
  font-size: 32px;
  font-weight: normal;
  color: #BF934E;
  line-height: 1.2;
  margin-bottom: 10px;
  display: inline-block;
}

.cta-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: #7F6337;
  line-height: 1.5;
  margin: 0;
}

/* Text Hotline */
.da-doctor-cta__contact {
  display: flex;
  flex-direction: column;
  text-align: left;
  border-left: 1px solid rgba(191, 147, 78, 0.3);
  border-right: 1px solid rgba(191, 147, 78, 0.3);
  padding: 0 30px;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 20px;
  color: #B69655;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-phone {
  font-family: var(--font-body);
  font-size: 26px;
  color: #7F6337;
  font-weight: bold;
  line-height: 1;
}

/* Nút CTA (Hiệu ứng Bevel 3D) */
.cta-btn-bevel {
  display: inline-block;
  padding: 10px 26px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  background: linear-gradient(90deg, #A88143 0%, #D4AE70 50%, #A88143 100%);
  background-size: 200% auto;
  border-radius: 99px;
  border: none;
  box-shadow: 0 4px 12px rgba(168, 129, 67, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  position: relative;
  margin-top: 25px;
  animation: pulse-gentle 2.5s ease-in-out infinite;
}

.cta-btn-bevel:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(168, 129, 67, 0.6);

}


/* ═══════════ MOBILE RESPONSIVE (<768px) ═══════════ */
@media screen and (max-width: 768px) {
  .da-doctor-cta__card {
    padding: 30px 20px 30px;
    border-radius: 20px;
  }

  /* Định vị lại ảnh bác sĩ (Góc trên Phải) */
  .da-doctor-cta__image {
    left: auto;
    right: -10px;
    /* Tràn nhẹ ra mép phải */
    bottom: auto;
    top: -45px;
    /* Trồi lên trên viền box */
    width: 180px;
    /* Thu nhỏ ảnh trên mobile */
  }

  .da-doctor-cta__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* Bóp chiều rộng thẻ Title để không bị đè lên mặt bác sĩ */
  .da-doctor-cta__info {
    max-width: 100%;
  }

  .cta-title {
    max-width: 51%;
    font-size: 34px;
    line-height: 1;
  }

  .cta-desc {
    margin-top: 44px;
    font-size: 15px;
  }

  /* Layout lại khối Hotline */
  .da-doctor-cta__contact {
    border: none;
    padding: 0;
    text-align: left;
  }

  .da-doctor-cta__action {
    margin: 0 auto;
  }

  .cta-btn-bevel {
    padding: 10px 40px;
    margin: 0 auto;
  }

  /* Nút full-width dễ bấm trên Mobile */
}

/* ═══════════ SECTION: JOURNEY ═══════════ */
.da-journey {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.da-journey__header {
  margin-bottom: 50px;
}

.da-journey__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.da-journey__title .da-why-us__script {
  margin-right: 0;
  margin-bottom: -66px;
  position: relative;
  z-index: 2;
}

.da-journey__title .da-why-us__pill {
  font-family: var(--font-heading-lux);
  font-size: 49px;
  color: #7F6337;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  padding: 10px 40px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-weight: 500;
  position: relative;
  left: 20%;
  top: 79px;
  box-shadow: 0 5px 13px 2px rgba(191, 147, 78, 0.23);
}

.da-journey__title .da-why-us__gradient {
  font-size: 55px;
  margin-top: 10px;
  position: relative;
  right: -185px;
}

.da-journey__content {
  background: #eeeeee;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  max-width: 1408px;
  margin: 0 auto;
}

.da-journey__pane {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.da-journey__pane.is-active {
  display: block;
  opacity: 1;
}

.da-journey__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.da-journey__img-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.da-journey__img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.da-journey__img-item:hover img {
  transform: scale(1.03);
}

.da-journey__img-item .cert-zoom-icon {
  position: absolute;
  inset: 0;
  background: rgba(191, 147, 78, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.da-journey__img-item:hover .cert-zoom-icon {
  opacity: 1;
}

.da-journey__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  position: absolute;
  left: 40%;
  background: #eeeeee52;
  z-index: 5;
  padding: 0.8rem 2.3rem;
  border-radius: 99px;
  border: 1px solid #fff;
  backdrop-filter: blur(14px);
}

.da-journey__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(191, 147, 78, 0.2);
  background: #fff;
  color: #7F6337;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

@media screen and (max-width:768px) {
  .da-journey__nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    left: auto;
    right: auto;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.da-journey__nav-btn.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(191, 147, 78, 0.4);
}

@media screen and (max-width: 768px) {
  .da-journey {
    padding: 30px 0px 30px 0;
  }

  .da-journey__content {
    padding: 15px;
  }

  .da-journey__grid {
    gap: 10px;
  }

  .da-journey__title .da-why-us__script {
    font-size: 70px;
    margin-bottom: -25px;
    left: 17px;
  }

  .da-journey__title .da-why-us__pill {
    top: 26px;
    left: 39px;
    font-size: 35px;
    padding: 8px 24px;
    margin-top: 0;
  }

  .da-journey__title .da-why-us__gradient {
    font-size: 32px;
    font-size: 32px;
    right: 0;
    bottom: -29px;
  }
}

/* ══════════════════════════════════════════════════════════
   BÁO CHÍ NÓI VỀ LINH ANH
   ══════════════════════════════════════════════════════════ */
.nam-press {
  padding-top: 30px;
  /* Bỏ padding bottom để podium chạm đáy */
  background-color: #f5f5f5;
  overflow: hidden;
}

/* ── Hàng 1 (Tiêu đề & Slider) ── */
.nam-press__top {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.nam-press__title-col {
  flex: 0 0 400px;
  text-align: center;
}

.npr-title-script {
  font-family: var(--font-accent-art);
  font-size: 115px;
  color: #B69655;
  line-height: 0.6;
  margin-bottom: 33px;
  z-index: 1;
  position: relative;
  font-weight: 400;
}

.npr-title-pill {
  display: inline-block;
  font-family: var(--font-heading-lux);
  font-size: 42px;
  color: #7F6337;
  border: 1px solid #BF934E;
  border-radius: 999px;
  padding: 0px 40px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(127, 99, 55, 0.05);
  font-weight: 500;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.npr-desc {
  font-family: 'Geomanist', sans-serif;
  font-size: 18px;
  color: #7F6337;
  line-height: 1.5;
}

/* ── Slider Báo chí ── */
.nam-press__slider-col {
  flex: 1;
  min-width: 0;
}

.js-splide-press .splide__slide img {
  width: 100%;
  display: block;
}

/* Nút liquid glass Splide */
.js-splide-press .splide__arrow {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 44px;
  height: 44px;
  opacity: 1;
  /* Hiển thị luôn thay vì mờ */
  transition: all 0.3s ease;
}

.js-splide-press .splide__arrow:hover {
  background: rgba(255, 255, 255, 0.9);
}

.js-splide-press .splide__arrow svg {
  fill: #7F6337;
}

/* Kéo nút lùi ra rìa slider */
.js-splide-press .splide__arrow--prev {
  left: -1em;
}

.js-splide-press .splide__arrow--next {
  right: -1em;
}

/* ── Hàng 2 (Chứng nhận & Podium) ── */
.nam-press__bottom {
  position: relative;
  padding-bottom: 40px;
}

@media screen and (min-width:768px) {
  .nam-press__bottom .container {
    z-index: 10;
    position: relative;
  }

  .npr-podium-bg {
    position: absolute;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    max-width: 100%;
    height: auto;
    z-index: 4;
    pointer-events: none;
  }
}

/* Podium Background - Container scale ra biên */


.npr-awards {
  display: flex;
  justify-content: center;
}

.npr-awards__track {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.npr-awards__group {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.npr-award-item {
  padding: 0 15px;
}

.npr-award-item img {
  height: auto;
  width: auto;
  max-height: 400px;
  object-fit: contain;
}

/* Ultilities */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none !important;
}

/* Ẩn thẻ clone track cho marquee css */

/* ── Mobile Responsive ── */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }

  .nam-press {
    padding-top: 100px;
  }

  .nam-press__top {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .nam-press__title-col {
    flex: auto;
    width: 100%;
  }

  .npr-title-script {
    font-size: 90px;
    margin-bottom: 29px;
  }

  .npr-title-pill {
    font-size: 38px;
    padding: 0px 36px;
    margin-bottom: 20px;
  }

  .npr-desc {
    font-size: 16px;
  }

  /* Trên mobile slider giãn rộng full */
  .nam-press__slider-col {
    width: 100%;
  }

  /* Đưa nút slider vào lồng bên trong viền */
  .js-splide-press .splide__arrow--prev {
    left: 0.5em;
  }

  .js-splide-press .splide__arrow--next {
    right: 0.5em;
  }

  /* ── Marquee CSS cho phần Chứng nhận Mobile ── */
  .npr-awards {
    overflow: hidden;
    /* Áp dụng mờ lề trái/phải 10% như section đối tác */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .npr-awards__track {
    display: flex;
    width: max-content;
    flex-wrap: nowrap;
    justify-content: flex-start;
    animation: npr-marquee 10s linear infinite;
  }

  .npr-awards__group {
    display: flex;
    gap: 15px;
    /* Giảm gap chứng nhận trên mobile */
    padding-right: 15px;
    /* Cân bằng loop */
    flex: 0 0 auto;
  }

  .npr-award-item img {
    height: 200px;
    /* Thu nhỏ chứng nhận */
  }

  /* Keyframe Loop vô hạn */
  @keyframes npr-marquee {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }

  }
}

/* ══════════════════════════════════════════════════════════
   PARTNERS SECTION — "Đối tác của Linh Anh"
   ══════════════════════════════════════════════════════════ */
.container--full {
  width: 100%;
  padding-inline: var(--space-4);
}

.partners {
  padding-block: var(--space-8);
  background-color: #f5f5f5;
  overflow: hidden;
}


.partners__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pt-title-top {
  font-family: var(--font-accent-art);
  font-size: 100px;
  font-weight: 400;
  color: #B69655;
  line-height: 0.8;
}

.pt-title-bottom {
  font-family: var(--font-heading-lux);
  font-size: 80px;
  background: linear-gradient(360deg, rgba(182, 150, 85, 1) 0%, rgba(227, 200, 113, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

/* Marquee Implementation */
.marquee {
  --marquee-duration: 8s;
  overflow: hidden;
  user-select: none;
  display: flex;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee__content {
  display: flex;
  gap: var(--space-12);
  min-width: 100%;
  padding-block: var(--space-4);
  animation: marquee var(--marquee-duration) linear infinite;
}

.marquee__item {
  flex: 0 0 auto;
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.6;
  transition: all 0.3s ease;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .pt-title-top {
    font-size: 64px;
  }

  .pt-title-bottom {
    font-size: 44px;
  }

  .marquee__item {
    width: 120px;
  }

  .marquee__content {
    gap: var(--space-8);
  }
}