.section-view-all {
  text-align: center;
  margin-top: 36px;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-outline-dark:hover {
  border-color: #bbb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.happy-customers {
  background: #fff;
}

.happy-customers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.happy-customers-grid-page {
  margin-top: 32px;
}

.happy-customers-item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.happy-customers-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.happy-customers-item figcaption {
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.customer-reviews {
  background: var(--silver-light, #f4f6f8);
}

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

.customer-reviews-grid-page {
  margin-top: 32px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.review-card-media {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: none;
  background: #111;
  cursor: pointer;
}

.review-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.92;
}

.review-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.review-play-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

.review-card-body {
  padding: 18px 18px 20px;
}

.review-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111;
}

.review-date {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #888;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.review-author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef1f4;
  color: #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.video-modal[hidden] {
  display: none !important;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 92vw);
  margin: 6vh auto 0;
}

.video-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.video-modal-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .happy-customers-grid,
  .customer-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .happy-customers-grid,
  .customer-reviews-grid {
    grid-template-columns: 1fr;
  }
}
