/* ==========================================================================
   Dedicated Testimonials Page Stylesheet (css/testimonials-page.css)
   Alternating Odd/Even Dark & Light Background Format Matching location.php
   Palette: Vivid Pink (#e01e5a / #ff528f), Deep Royal Purple / Navy (#2d1060 / #1e1534), Crisp White (#ffffff)
   ========================================================================== */

/* Root & Theme Variables */
:root {
  --oji-pink-primary: #e01e5a;
  --oji-pink-neon: #ff528f;
  --oji-pink-dark: #c4184c;
  --oji-pink-light: #fdf2f8;
  --oji-pink-border: #fce7f3;
  --oji-pink-pill: #fbcfe8;
  --oji-dark-navy: #1e1534;
  --oji-text-heading: #1e1534;
  --oji-text-body: #475569;
  --oji-text-muted: #64748b;
  --oji-text-light: #94a3b8;
  --oji-star-gold: #f59e0b;
  --oji-bg-soft: #fbfbfd;
  --oji-border-subtle: #f0e6f7;
  --oji-radius-card: 20px;
  --oji-radius-pill: 50px;
}

/* ==========================================================================
   SECTION 1: HERO SECTION (LIGHT / SOFT BLUSH GRADIENT)
   ========================================================================== */
.testimonials-hero-section {
  position: relative;
  background: radial-gradient(circle at 45% 20%, #fff0f4 0%, #fff7f9 45%, #ffffff 80%);
  padding: 40px 0 55px;
  overflow: hidden;
}

.testimonials-hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224, 30, 90, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.testimonials-breadcrumb {
  font-size: 13px;
  color: var(--oji-text-light);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonials-breadcrumb a {
  color: var(--oji-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.testimonials-breadcrumb a:hover {
  color: var(--oji-pink-primary);
}

.testimonials-breadcrumb .crumb-sep {
  color: #cbd5e1;
  font-size: 11px;
}

.testimonials-breadcrumb .crumb-active {
  color: var(--oji-dark-navy);
  font-weight: 600;
}

.testimonials-hero-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--oji-dark-navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.testimonials-hero-tagline {
  font-size: 19px;
  font-weight: 600;
  color: var(--oji-pink-primary);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.testimonials-hero-desc {
  font-size: 15px;
  color: var(--oji-text-muted);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 32px;
}

/* 4-Feature Trust Badges Strip */
.testimonials-trust-bar {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  padding: 18px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 580px;
  position: relative;
  z-index: 3;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4px 8px;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #f1f5f9;
}

.trust-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff5f8;
  border: 1.5px solid var(--oji-pink-border);
  color: var(--oji-pink-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon-box {
  background: var(--oji-pink-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(224, 30, 90, 0.25);
}

.trust-item-title {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
  margin-bottom: 0;
}

/* Hero Right Visual */
.testimonials-hero-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 380px;
}

.hero-heart-svg {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 180px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

.testimonials-hero-img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  filter: drop-shadow(0 15px 35px rgba(31, 20, 53, 0.08));
}

/* ==========================================================================
   COMMON SECTION HEADERS & PILL DIVIDERS
   ========================================================================== */
.section-main-heading {
  font-size: 34px;
  font-weight: 600;
  color: var(--oji-dark-navy);
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.section-pill-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px auto 12px;
}

.section-pill-divider::before,
.section-pill-divider::after {
  content: '';
  width: 32px;
  height: 1.5px;
  background-color: var(--oji-pink-pill);
}

.section-pill-divider .pill-dot {
  width: 16px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--oji-pink-primary);
}

.section-sub-heading {
  font-size: 15px;
  color: var(--oji-text-muted);
  text-align: center;
  margin-bottom: 40px;
}

/* Dark Theme Header Adjustments */
.dark-theme-section .section-main-heading {
  color: #ffffff !important;
}

.dark-theme-section .section-sub-heading {
  color: #cbd5e1 !important;
}

.dark-theme-section .section-pill-divider::before,
.dark-theme-section .section-pill-divider::after {
  background-color: rgba(255, 82, 143, 0.4);
}

.dark-theme-section .section-pill-divider .pill-dot {
  background-color: var(--oji-pink-neon);
}

/* Outline Pink Pill Buttons */
.btn-outline-pink-pill {
  border: 1.5px solid var(--oji-pink-primary);
  color: var(--oji-pink-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 32px;
  border-radius: var(--oji-radius-pill);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 2px 10px rgba(224, 30, 90, 0.06);
}

.btn-outline-pink-pill:hover {
  background: var(--oji-pink-primary);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(224, 30, 90, 0.28);
  transform: translateY(-2px);
}

.dark-theme-section .btn-outline-pink-pill {
  border-color: rgba(255, 82, 143, 0.6);
  color: #ffffff;
  background: rgba(255, 82, 143, 0.12);
  backdrop-filter: blur(8px);
}

.dark-theme-section .btn-outline-pink-pill:hover {
  background: var(--oji-pink-primary);
  border-color: var(--oji-pink-primary);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(224, 30, 90, 0.45);
}

/* ==========================================================================
   SECTION 2: "WHAT OUR PARENTS SAY" (DARK THEME - DEEP ROYAL PURPLE GRADIENT)
   ========================================================================== */
.parents-say-section {
  padding: 85px 0 75px;
  background:
    radial-gradient(rgba(224, 30, 90, 0.22) 1.5px, transparent 1.5px),
    radial-gradient(rgba(167, 71, 254, 0.20) 1.5px, transparent 1.5px),
    linear-gradient(135deg, #2d1060 0%, #3b0f7a 50%, #280d58 100%) !important;
  background-size: 32px 32px, 32px 32px, 100% 100% !important;
  background-position: 0 0, 16px 16px, 0 0 !important;
  position: relative;
  overflow: hidden;
}

.parents-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0 20px;
  width: 100%;
}

.parents-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.parent-slide-item {
  flex: 0 0 calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
  box-sizing: border-box;
}

@media (max-width: 1199px) {
  .parent-slide-item {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 991px) {
  .parent-slide-item {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 600px) {
  .parent-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Glassmorphic Dark Review Cards */
.parent-review-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 28px 24px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 290px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  box-sizing: border-box;
}

.parent-review-card:hover {
  transform: translateY(-4px);
  border-color: var(--oji-pink-neon);
  box-shadow: 0 16px 40px rgba(224, 30, 90, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-quote-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 82, 143, 0.2);
  border: 1px solid rgba(255, 82, 143, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-quote-circle svg {
  fill: var(--oji-pink-neon);
  width: 16px;
  height: 16px;
}

.review-star-rating {
  color: var(--oji-star-gold);
  font-size: 13.5px;
  display: flex;
  gap: 3.5px;
}

.review-card-body {
  font-size: 14px;
  color: #f1f5f9;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.review-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-author-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.review-author-city {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 0;
}

.review-heart-btn {
  background: transparent;
  border: none;
  color: var(--oji-pink-neon);
  font-size: 19px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.review-heart-btn:hover {
  transform: scale(1.2);
}

.review-heart-btn.liked i {
  font-weight: 600;
  color: var(--oji-pink-neon);
}

/* Dots Indicator */
.parent-reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.review-dot.active {
  background: var(--oji-pink-neon);
  transform: scale(1.25);
  box-shadow: 0 0 10px rgba(255, 82, 143, 0.6);
}

/* ==========================================================================
   SECTION 3: "VIDEO TESTIMONIALS" (LIGHT THEME - CRISP WHITE / BLUSH RADIAL)
   ========================================================================== */
.video-testimonials-section {
  padding: 80px 0 70px;
  background: radial-gradient(circle at 50% 10%, #fff0f4 0%, #ffffff 80%);
  position: relative;
}

.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-thumb-container {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(31, 20, 53, 0.08);
  aspect-ratio: 16/10;
  margin-bottom: 14px;
  background-color: #0f0728;
  border: 1.5px solid var(--oji-pink-border);
  cursor: pointer;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-thumb-container:hover .video-thumb-img {
  transform: scale(1.06);
}

.video-play-btn-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--oji-pink-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 22px rgba(224, 30, 90, 0.48);
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

.video-thumb-container:hover .video-play-btn-circle {
  transform: translate(-50%, -50%) scale(1.14);
  background: #ffffff;
  color: var(--oji-pink-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.video-duration-badge {
  position: absolute;
  bottom: 11px;
  right: 11px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3.5px 9px;
  border-radius: 6px;
  z-index: 2;
  letter-spacing: 0.4px;
}

.video-author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--oji-text-heading);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.video-author-city {
  font-size: 13px;
  color: var(--oji-text-light);
  margin-bottom: 0;
}

/* ==========================================================================
   SECTION 4: "PHOTO GALLERY" (DARK THEME - DEEP ROYAL PURPLE GRADIENT)
   ========================================================================== */
.photo-gallery-section {
  padding: 85px 0 75px;
  background:
    radial-gradient(rgba(224, 30, 90, 0.22) 1.5px, transparent 1.5px),
    radial-gradient(rgba(167, 71, 254, 0.20) 1.5px, transparent 1.5px),
    linear-gradient(135deg, #2d1060 0%, #3b0f7a 50%, #280d58 100%) !important;
  background-size: 32px 32px, 32px 32px, 100% 100% !important;
  background-position: 0 0, 16px 16px, 0 0 !important;
  position: relative;
  overflow: hidden;
}

.photo-gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gallery-photo-card {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  position: relative;
  background-color: rgba(255, 255, 255, 0.06);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(224, 30, 90, 0.4) 0%, rgba(31, 20, 53, 0.2) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-photo-card:hover {
  transform: translateY(-4px);
  border-color: var(--oji-pink-neon);
  box-shadow: 0 16px 40px rgba(224, 30, 90, 0.3);
}

.gallery-photo-card:hover .gallery-photo-img {
  transform: scale(1.08);
}

.gallery-photo-card:hover .gallery-photo-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--oji-pink-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   SECTION 5: "CONSULTATION CTA" (LIGHT THEME - CLEAN WHITE BANNER)
   ========================================================================== */
.testimonials-cta-section {
  padding: 50px 0 80px;
  background: #ffffff;
  position: relative;
}

.testimonials-cta-banner {
  background: #ffffff;
  border: 1.5px solid var(--oji-pink-border);
  border-radius: 24px;
  padding: 28px 38px;
  box-shadow: 0 12px 35px rgba(224, 30, 90, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all 0.3s ease;
}

.testimonials-cta-banner:hover {
  box-shadow: 0 16px 45px rgba(224, 30, 90, 0.12);
  border-color: var(--oji-pink-pill);
}

.cta-left-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff5f8;
  border: 1.5px solid var(--oji-pink-pill);
  color: var(--oji-pink-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.cta-banner-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--oji-text-heading);
  margin-bottom: 4px;
}

.cta-banner-desc {
  font-size: 14px;
  color: var(--oji-text-muted);
  margin-bottom: 0;
}

.btn-consultation-solid {
  background: linear-gradient(135deg, var(--oji-pink-primary) 0%, var(--oji-pink-dark) 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 6px 20px rgba(224, 30, 90, 0.32);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-consultation-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 30, 90, 0.42);
  color: #ffffff;
}

/* ==========================================================================
   MODAL STYLES (Video Player & Custom Lightbox)
   ========================================================================== */
.testimonials-modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.testimonials-modal-body {
  padding: 0;
  background: #000000;
  position: relative;
}

.testimonials-video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* Custom Fullscreen Lightbox with Next & Prev Buttons */
.custom-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 7, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.custom-lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.custom-lightbox-header {
  position: absolute;
  top: 24px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.custom-lightbox-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-lightbox-tag {
  background: #e01e5a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.custom-lightbox-caption {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.custom-lightbox-counter {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-left: 8px;
}

.custom-lightbox-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-lightbox-close:hover {
  background: #e01e5a;
  border-color: #e01e5a;
  transform: rotate(90deg) scale(1.1);
}

.custom-lightbox-body {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lightboxZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.custom-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.custom-lightbox-nav:hover {
  background: #e01e5a;
  border-color: #e01e5a;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(224, 30, 90, 0.4);
}

.custom-lightbox-nav.prev {
  left: 30px;
}

.custom-lightbox-nav.next {
  right: 30px;
}

@keyframes lightboxZoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1199px) {
  .testimonials-hero-title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .testimonials-hero-section {
    padding: 24px 0 45px !important;
    background: linear-gradient(to bottom, #fde8ef 0%, #fff2f6 30%, #ffffff 65%, #f1e4fc 100%) !important;
    min-height: auto !important;
    text-align: left;
  }
  .testimonials-breadcrumb {
    justify-content: flex-start;
  }
  .testimonials-hero-desc {
    margin-left: 0;
    margin-right: 0;
  }
  .testimonials-trust-bar {
    margin: 0 0 25px 0;
  }
  .testimonials-hero-visual-wrap {
    margin-top: 20px;
    min-height: auto;
  }
  .video-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .photo-gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 26px 20px;
  }
  .cta-left-content {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .testimonials-hero-title {
    font-size: 34px;
  }
  .testimonials-hero-tagline {
    font-size: 16px;
  }
  .testimonials-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .trust-item:nth-child(2)::after {
    display: none;
  }
  .video-cards-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .photo-gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-main-heading {
    font-size: 26px;
  }
  .custom-lightbox-nav.prev {
    left: 10px;
  }
  .custom-lightbox-nav.next {
    right: 10px;
  }
  .custom-lightbox-header {
    top: 15px;
    left: 15px;
    right: 15px;
  }
}
