/**
 * Page About - Giới thiệu Đặt Xe Việt Nam
 * E-E-A-T optimized layout, clean typography
 * @package OTA_DatXeViet_Theme
 */

/* Main container */
/* Page wrapper */
.dv-page-about {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 4rem;
}

.dv-page-about .ota-container {
  /* max-width: 1200px; */
  /* margin-left: auto; */
  /* margin-right: auto; */
  /* padding-left: 1.5rem; */
  /* padding-right: 1.5rem; */
  padding: 0 !important;
  margin: 0 !important;
}

@media (min-width: 768px) {
  .dv-page-about .ota-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* =========================================================
 * Section-by-section scroll layout (shared)
 * ========================================================= */
.dv-section-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  pointer-events: none;
}

.dv-section-content {
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  height: 100vh;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dv-section-content::-webkit-scrollbar {
  display: none;
}

.dv-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

/* Scroll fade-in effect */
.dv-section[data-scroll-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.dv-section[data-scroll-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .dv-section[data-scroll-fade] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.dv-section__inner,
.dv-section > * {
  width: 100%;
}

@media (max-width: 767.98px) {
  .dv-section-content {
    scroll-snap-type: y proximity;
    height: auto;
    overflow-y: visible;
  }

  .dv-section {
    min-height: auto;
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* Hero Section */
.dv-page-about__hero {
  text-align: center;
}

.dv-section--hero {
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh !important;
  background: linear-gradient(
    135deg,
    rgba(var(--primary) / 0.2) 0%,
    rgba(var(--gold) / 0.2) 100%
  );
}

/* Hero Slice – infinite horizontal auto-scroll */
.dv-hero-slice {
  overflow: hidden;
  width: 100%;
  height: auto; /* để chiều cao tự động theo ảnh */
  min-height: 0;
  margin-top: 2.5rem;
  padding: 1rem 0;
}

.dv-hero-slice__track {
  display: flex;
  gap: 1rem;
  align-items: end;
  animation: dv-hero-slice-marquee 40s linear infinite;
  width: max-content;
}

.dv-hero-slice__item {
  flex-shrink: 0; /* vẫn cần cho marquee, nhưng KHÔNG ép width/height để ảnh tự fit */
  border-radius: var(--ota-radius-md);
  overflow: hidden;
  box-shadow: var(--ota-shadow-soft);
  background: #f7f7f7;
}

.dv-hero-slice__item img {
  display: block;
  width: 280px;
  height: auto !important;
  object-fit: cover;
}

/* Bỏ hiệu ứng cao–thấp cố định chiều cao; để ảnh tự quyết định chiều cao */

@keyframes dv-hero-slice-marquee {
  0% {
    transform: translateX(0);
  }

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

@media (min-width: 600px) {
  .dv-hero-slice__item {
    width: 240px; /* chỉ khống chế chiều ngang, chiều cao theo ảnh */
  }
}

@media (min-width: 900px) {
  .dv-hero-slice__item {
    width: 280px; /* chỉ khống chế chiều ngang, chiều cao theo ảnh */
  }
}

@media (prefers-reduced-motion: reduce) {
  .dv-hero-slice__track {
    animation: none;
  }
}

.dv-page-about__section-team {
  padding: 1rem 2rem 1rem 2rem !important;
}

.dv-page-about__hero-title {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 700;
  color: rgb(var(--foreground));
  line-height: 1.3;
  margin: 0 0 0.75rem;
}

.dv-page-about__hero-subtitle {
  font-size: 1.05rem;
  color: rgba(var(--foreground) / 0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Section base */
.dv-page-about__section {
  margin-bottom: 2.5rem;
  flex-direction: column;
}

.dv-page-about__section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: rgb(var(--foreground));
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(var(--primary) / 0.3);
}

.dv-page-about__section-title--no-border {
  border-bottom: none;
  padding-bottom: 0;
}

.dv-page-about__content {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(var(--foreground) / 0.9);
}

.dv-page-about__content p {
  margin: 0 0 1rem;
}

.dv-page-about__content p:last-child {
  margin-bottom: 0;
}

/* Story block */
.dv-page-about__story-text {
  font-size: 1rem;
  line-height: 1.8;
}

/* Story section - blurred background using first carousel image (if exists) */
.dv-page-about__story-blur-wrapper {
  position: relative;
}

.dv-page-about__story-blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  transform: scale(1.1);
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
}

.dv-page-about__story-blur-inner {
  position: relative;
  z-index: 1;
}

/* Hero section blur */
.dv-page-about__hero-blur-wrapper {
  position: relative;
}

.dv-page-about__hero-blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  transform: scale(1.1);
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
}

.dv-page-about__hero-blur-inner {
  position: relative;
  z-index: 1;
}

/* Partners section blur */
.dv-page-about__partners-blur-wrapper {
  position: relative;
}

.dv-page-about__partners-blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  transform: scale(1.1);
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
}

.dv-page-about__partners-blur-inner {
  position: relative;
  z-index: 1;
}

/* Services & CTA blur wrappers */
.dv-page-about__services-blur-wrapper,
.dv-page-about__cta-blur-wrapper {
  position: relative;
}

.dv-page-about__cta-blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  transform: scale(1.1);
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
}

.dv-page-about__services-blur-inner,
.dv-page-about__cta-blur-inner {
  position: relative;
  z-index: 1;
}

/* =========================================================
 * Câu chuyện – Layout 2 cột (trái: tiêu đề + ảnh, phải: avatar + mô tả)
 * ========================================================= */
.dv-page-about__story {
  padding: 2rem 1rem 2rem 1rem;
}

.dv-page-about__story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .dv-page-about__hero-title {
    font-size: 2.5rem;
  }
  .dv-page-about__story-grid {
    grid-template-columns: 42% 1fr;
    gap: 3.5rem;
    align-items: start;
  }
  .dv-page-about__section-team {
    padding: 2rem 2rem 2rem 2rem !important;
  }
}

.dv-page-about__story-label {
  font-size: 0.9rem;
  color: rgba(var(--foreground) / 0.6);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.dv-page-about__story-heading {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 1.5rem;
}

.dv-page-about__story-heading--dark {
  color: rgb(var(--foreground));
}

.dv-page-about__story-heading--muted {
  color: rgba(var(--foreground) / 0.55);
}

.dv-page-about__story-image-wrap {
  position: relative;
  margin-top: 1rem;
  border-radius: var(--ota-radius-lg);
  overflow: visible;
}

.dv-page-about__story-image-wrap::before,
.dv-page-about__story-image-wrap::after {
  content: "";
  position: absolute;
  border-radius: var(--ota-radius-md);
  z-index: 0;
}

.dv-page-about__story-image-wrap::before {
  width: 100%;
  height: 100%;
  top: 12px;
  left: 12px;
  background: rgba(var(--primary) / 0.15);
  z-index: -1;
}

.dv-page-about__story-image-wrap::after {
  width: 100%;
  height: 100%;
  top: 6px;
  left: 6px;
  background: rgba(var(--primary) / 0.08);
  z-index: -2;
}

.dv-page-about__story-image-wrap img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--ota-radius-lg);
  box-shadow: var(--ota-shadow-soft);
  object-fit: cover;
}

.dv-page-about__story-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dv-page-about__story-avatars {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dv-page-about__story-avatar {
  flex-shrink: 0;
  min-width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.dv-page-about__story-avatar:nth-child(1) {
  background: #8b6914;
}

.dv-page-about__story-avatar:nth-child(2) {
  background: #c9a227;
  color: #1a1a1a;
}

.dv-page-about__story-avatar:nth-child(3) {
  background: #1e5a8a;
}

.dv-page-about__story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dv-page-about__story-avatar-placeholder,
.dv-page-about__story-avatar-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 4px;
  word-break: break-word;
}

.dv-page-about__story-avatar-placeholder {
  background: rgba(var(--primary) / 0.2);
  color: rgb(var(--primary));
  font-weight: 700;
  font-size: 1rem;
}

.dv-page-about__story-avatars-arrow {
  display: flex;
  align-items: center;
  color: rgba(var(--foreground) / 0.5);
}

.dv-page-about__story-content {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(var(--foreground) / 0.9);
}

.dv-page-about__story-content p {
  margin: 0;
}

.dv-page-about__story-highlight {
  color: rgb(var(--foreground));
  font-weight: 600;
}

/* =========================================================
 * Section Story – Câu chuyện Đặt Xe Việt Nam (layout như ảnh mẫu Our Story)
 * Label chấm xanh + tiêu đề lớn + subheading + đoạn văn căn giữa + carousel ảnh bo góc
 * ========================================================= */
.dv-page-about__section-story {
  margin-bottom: 3rem;
  text-align: center;
}

/* Header: label (chấm xanh) + heading + sub */
.dv-page-about__story-header {
  margin-bottom: 1.5rem;
}

.dv-page-about__story-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--foreground) / 0.85);
  margin: 0 0 0.75rem;
}

.dv-page-about__story-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(var(--primary));
  flex-shrink: 0;
}

.dv-page-about__story-heading-main {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: rgb(var(--foreground));
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.dv-page-about__story-sub {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(var(--foreground) / 0.6);
  margin: 0;
}

/* Đoạn văn: căn giữa, max-width để dễ đọc */
.dv-page-about__section-story .dv-page-about__story-text-block {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  max-width: 720px;
  text-align: center;
}

.dv-page-about__section-story .dv-page-about__story-text-block p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(var(--foreground) / 0.9);
}

.dv-page-about__section-story .dv-page-about__story-text-block p:last-child {
  margin-bottom: 0;
}

/* Story image carousel – thumbnail bo góc nhẹ, nhiều khoảng trống (clean) */
.dv-story-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  padding: 0 2.5rem;
}

.dv-story-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0;
}

.dv-story-carousel__track::-webkit-scrollbar {
  display: none;
}

.dv-story-carousel__slide {
  flex-shrink: 0;
  width: 300px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #f8f9fa;
}

.dv-story-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dv-story-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(var(--border) / 0.9);
  background: #fff;
  color: rgb(var(--foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.dv-story-carousel__nav:hover {
  background: rgba(var(--primary) / 0.1);
  color: rgb(var(--primary));
  border-color: rgb(var(--primary));
}

.dv-story-carousel__nav--prev {
  left: 0;
}

.dv-story-carousel__nav--next {
  right: 0;
}

@media (min-width: 600px) {
  .dv-story-carousel__slide {
    width: 340px;
    height: 240px;
  }
}

@media (max-width: 599.98px) {
  .dv-story-carousel {
    padding: 0 2.25rem;
  }

  .dv-story-carousel__nav {
    width: 36px;
    height: 36px;
  }

  .dv-story-carousel__nav--prev {
    left: 0.25rem;
  }

  .dv-story-carousel__nav--next {
    right: 0.25rem;
  }

  .dv-story-carousel__slide {
    width: 260px;
    height: 190px;
    border-radius: 10px;
  }
}

/* =========================================================
 * Section Our Team – Đội ngũ (layout như ảnh mẫu Our Team)
 * Header: chấm xanh + label + tiêu đề 2 dòng + nút Xem tất cả góc phải
 * Grid ảnh so le: 2 trên, 2 dưới lệch phải, bo góc, overlay chú thích
 * ========================================================= */
.dv-page-about__section-team {
  margin-bottom: 3rem;
}

.dv-page-about__team-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dv-page-about__team-header-left {
  flex: 1;
  min-width: 0;
}

.dv-page-about__team-label {
  display: flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--foreground) / 0.7);
  margin: 0 0 0.5rem;
}

.dv-page-about__team-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(var(--primary));
  flex-shrink: 0;
}

.dv-page-about__team-title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.dv-page-about__team-title--dark {
  color: rgb(var(--foreground));
  text-transform: uppercase;
}

.dv-page-about__team-title--muted {
  color: rgba(var(--foreground) / 0.55);
  text-transform: uppercase;
}

.dv-page-about__team-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--border) / 0.9);
  background: rgba(var(--foreground) / 0.04);
  color: rgb(var(--foreground));
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.dv-page-about__team-view-all:hover {
  background: rgba(var(--primary) / 0.1);
  border-color: rgb(var(--primary));
  color: rgb(var(--primary));
}

.dv-page-about__team-view-all svg {
  flex-shrink: 0;
}

/* Grid ảnh so le: hàng 1 có 2 ảnh trái, hàng 2 có 2 ảnh lệch phải */
.dv-page-about__team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  max-width: 900px;
}

.dv-page-about__team-card {
  min-height: 0;
}

.dv-page-about__team-card--1 {
  grid-column: 1;
  grid-row: 1;
}

.dv-page-about__team-card--2 {
  grid-column: 2;
  grid-row: 1;
}

.dv-page-about__team-card--3 {
  grid-column: 2;
  grid-row: 2;
}

.dv-page-about__team-card--4 {
  grid-column: 3;
  grid-row: 2;
}

.dv-page-about__team-card-inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dv-page-about__team-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dv-page-about__team-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  color: #fff;
  display: flex;
  align-items: flex-end;
}

.dv-page-about__team-card-caption {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .dv-page-about__team-header {
    flex-direction: column;
    align-items: stretch;
  }

  .dv-page-about__team-view-all {
    align-self: flex-start;
  }

  .dv-page-about__team-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .dv-page-about__team-card--1 {
    grid-column: 1;
    grid-row: 1;
  }

  .dv-page-about__team-card--2 {
    grid-column: 2;
    grid-row: 1;
  }

  .dv-page-about__team-card--3 {
    grid-column: 1;
    grid-row: 2;
  }

  .dv-page-about__team-card--4 {
    grid-column: 2;
    grid-row: 2;
  }

  .dv-page-about__team-card-inner {
    aspect-ratio: 3 / 4;
  }
}

/* Core Values Grid */
.dv-page-about__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 600px) {
  .dv-page-about__values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .dv-page-about__values {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dv-page-about__value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(var(--border) / 0.8);
  border-radius: var(--ota-radius-md);
  box-shadow: var(--ota-shadow-soft);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.dv-page-about__value-card:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.dv-page-about__value-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary) / 0.1);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  color: rgb(var(--primary));
}

.dv-page-about__value-icon svg {
  width: 22px;
  height: 22px;
}

.dv-page-about__value-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgb(var(--foreground));
  margin: 0 0 0.35rem;
}

.dv-page-about__value-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(var(--foreground) / 0.75);
  margin: 0;
}

/* USP Section */
.dv-page-about__usp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dv-page-about__usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-left: 0;
}

.dv-page-about__usp-list li::before {
  content: none;
}

.dv-page-about__usp-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--primary));
}

.dv-page-about__usp-icon svg {
  width: 20px;
  height: 20px;
}

.dv-page-about__usp-text {
  margin: 0;
}

/* Services grid - internal links */
.dv-page-about__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.dv-page-about__service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(var(--primary) / 0.08);
  color: rgb(var(--primary));
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.dv-page-about__service-link:hover {
  background: rgba(var(--primary) / 0.15);
  color: rgb(var(--secondary));
}

.dv-page-about__service-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =========================================================
 * CTA + Cam kết (1 section – layout như ảnh mẫu)
 * Label • CTA, tiêu đề tách màu, tagline, nút (chữ đen nền sáng + icon xanh), gallery ảnh ngang
 * ========================================================= */
.dv-page-about__cta-block {
  text-align: center;
  padding-bottom: 2rem;
}

.dv-cta {
  margin-bottom: 2rem;
}

.dv-cta__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--primary));
  margin: 0 0 0.5rem;
}

.dv-cta__label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(var(--primary));
  flex-shrink: 0;
}

.dv-cta__title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  align-items: center;
  text-align: center;
}

.dv-cta__title--dark {
  color: rgb(var(--foreground));
  text-transform: uppercase;
}

.dv-cta__title--muted {
  color: rgba(var(--foreground) / 0.55);
  text-transform: uppercase;
}

.dv-cta__tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(var(--foreground) / 0.85);
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.dv-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.dv-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.dv-cta__btn--primary {
  background: #fff;
  color: rgb(var(--foreground)) !important;
  border: 1px solid rgba(var(--border) / 0.9);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.dv-cta__btn--primary:hover {
  background: rgba(var(--foreground) / 0.04);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.dv-cta__btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dv-cta__btn-icon svg {
  width: 20px;
  height: 20px;
}

.dv-cta__btn--outline {
  background: transparent;
  color: rgb(var(--primary)) !important;
  border: 2px solid rgb(var(--primary));
}

.dv-cta__btn--outline:hover {
  background: rgba(var(--primary) / 0.08);
  transform: translateY(-1px);
}

.dv-cta__btn--outline svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Gallery ảnh ngang (5 thẻ bo góc) */
.dv-cta-gallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0;
}

.dv-cta-gallery::-webkit-scrollbar {
  display: none;
}

.dv-cta-gallery__item {
  flex-shrink: 0;
  width: 200px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #f5f5f5;
}

.dv-cta-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 600px) {
  .dv-cta-gallery__item {
    width: 240px;
    height: 190px;
    border-radius: 20px;
  }
}

@media (max-width: 599.98px) {
  .dv-cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .dv-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .dv-cta-gallery__item {
    width: 180px;
    height: 140px;
  }
}

/* =========================================================
 * Đội ngũ nhân sự & Đối tác: Review (3/4) + slice logo infinity
 * ========================================================= */
.dv-page-about__partners .dv-partners__top {
  /* flex: 1; */
  min-height: 0;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.dv-page-about__partners {
  /* padding: 0 !important; */
  margin-top: 3rem !important;
}

.dv-testimonials {
  width: 100%;
}

/* Header: 2 chấm xanh + ĐÁNH GIÁ + tiêu đề 2 dòng (như ảnh Testimonials) */
.dv-testimonials__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.dv-testimonials__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--foreground));
  margin: 0 0 0.5rem;
}

/* Hai chấm xanh phía trước (như ảnh Testimonials) */
.dv-testimonials__label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(var(--primary));
  flex-shrink: 0;
  box-shadow: 8px 0 0 0 rgb(var(--primary));
}

.dv-testimonials__title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  align-items: center;
  text-align: center;
}

.dv-testimonials__title--dark {
  color: rgb(var(--foreground));
  text-transform: uppercase;
}

.dv-testimonials__title--muted {
  color: rgba(var(--foreground) / 0.55);
  text-transform: uppercase;
}

/* Body: 2 card trái + ảnh lớn phải */
.dv-testimonials__body {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.dv-testimonials__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  flex: 1;
  min-width: 0;
  align-content: start;
}

.dv-testimonials__card {
  background: #fff;
  border: 1px solid rgba(var(--border) / 0.8);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.dv-testimonials__card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.dv-testimonials__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.dv-testimonials__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary) / 0.2);
  color: rgb(var(--primary));
  font-weight: 700;
  font-size: 1rem;
}

.dv-testimonials__name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(var(--foreground));
  flex: 1;
}

.dv-testimonials__rating {
  font-size: 0.9rem;
  font-weight: 600;
  color: #c9a227;
}

.dv-testimonials__headline {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgb(var(--foreground));
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.dv-testimonials__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(var(--foreground) / 0.75);
  margin: 0 0 0.75rem;
  flex: 1;
}

.dv-testimonials__date {
  font-size: 0.8rem;
  color: rgba(var(--foreground) / 0.5);
  margin: 0;
}

.dv-testimonials__image-wrap {
  flex-shrink: 0;
  width: 280px;
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(var(--primary) / 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dv-testimonials__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

/* Slice logo đối tác chạy infinity (như hero slice) */
.dv-partners-slice {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  margin-top: 0.5rem;
}

.dv-partners-slice__track {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: dv-partners-slice-marquee 35s linear infinite;
  width: max-content;
}

.dv-partners-slice__item {
  flex-shrink: 0;
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dv-partners-slice__item a,
.dv-partners-slice__item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.4);
  opacity: 0.85;
  transition:
    filter 0.2s ease,
    opacity 0.2s ease;
}

.dv-partners-slice__item a:hover img,
.dv-partners-slice__item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes dv-partners-slice-marquee {
  0% {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .dv-partners-slice__track {
    animation: none;
  }
}

@media (max-width: 767.98px) {
  .dv-testimonials__body {
    flex-direction: column;
    align-items: stretch;
  }

  .dv-testimonials__cards {
    grid-template-columns: 1fr;
  }

  .dv-testimonials__image-wrap {
    width: 100%;
    min-height: 280px;
    order: -1;
  }

  .dv-testimonials__image-wrap img {
    min-height: 280px;
  }

  .dv-partners-slice__item {
    width: 100px;
    height: 50px;
  }
}
