 /* ── VIDEO TESTIMONIALS ─────────────────────── */
 :root {
    --blue-primary: #4B77C0;
    --blue-accent:  #1E73BE;
    --blue-light:   #E6EFFE;
    --blue-dark:    #1a4f8a;
    --text:         #1a1a1a;
    --text-muted:   #555;
    --white:        #ffffff;
    --radius:       10px;
  }
  
 .video-section {
    margin-top: 56px;
  }

  .video-section-header {
    text-align: center;
    margin-bottom: 32px;
  }

  .video-section-header h3 {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
  }

  .video-section-header p {
    font-size: 16px;
    color: var(--text-muted);
  }

  /* New-content badge */
  .new-badge {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
  }

  .video-grid:not(.js-video-slider) {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  @media( min-width : 768px ) {
    .video-grid:not(.js-video-slider) {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
  }

  @media( min-width : 1200px ) {
    .video-grid:not(.js-video-slider) {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
  }

  .js-video-slider .slick-slide {
    margin: 0 12px;
  }

  .js-video-slider .slick-list {
    margin: 0 -12px;
  }

  /* Video card */
  .video-card {
    background: var(--blue-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30,115,190,0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }

  .video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(30,115,190,0.2);
  }

  /* Thumbnail */
  .video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Play button overlay — matches Lyon Financial global .video-bttn */
  .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 10, 25, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease-in-out;
  }

  .video-card:hover .play-overlay {
    background: rgba(1, 10, 25, 0.55);
  }

  .play-btn {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px 0 rgba(1, 10, 25, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .video-card:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 4px 44px rgba(0, 0, 0, 0.3);
  }

  .play-btn svg {
    margin-left: 5px;
    width: 36px;
    height: 36px;
  }

  /* Video card body */
  .video-card-body {
    padding: 18px 20px 20px;
    background: var(--blue-light);
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .video-card-body .quote {
    font-size: 15px;
    color: #2a2a2a;
    line-height: 1.65;
    margin-bottom: 12px;
    font-style: italic;
  }

  .video-card-body .author {
    font-weight: 600;
    color: var(--blue-accent);
    font-size: 14.5px;
  }

  .video-card-body .duration {
    display: inline-block;
    align-self: flex-start;
    font-size: 12px;
    background: var(--blue-accent);
    color: #fff;
    border-radius: 4px;
    padding: 2px 8px;
    margin-top: 8px;
    font-weight: 500;
    white-space: nowrap;
  }

  /* ── CAROUSEL ARROWS — matches Lyon Financial .slick-arrow ── */
  .carousel-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 32px;
    position: relative;
    z-index: 1;
  }

  .video-section .slick-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 2px solid #4B77C0;
    color: #4B77C0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    flex-shrink: 0;
    position: relative;
  }

  .video-section .slick-arrow:hover {
    background: #4B77C0;
    color: #fff;
  }

  .video-section .slick-arrow:hover svg {
    stroke: #fff;
  }

  .video-section .slick-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #4B77C0;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease-in-out;
  }

  .video-section .slick-next {
    margin-left: 20px;
  }

  /* ── VIDEO MODAL ── */
  .video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .video-modal.is-active {
    visibility: visible;
    opacity: 1;
  }

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

  .video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 1;
  }

  .video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    transition: opacity 0.2s ease;
  }

  .video-modal-close:hover {
    opacity: 0.7;
  }

  .video-modal-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
  }

  .video-modal-iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* ── SATISFACTION SECTION ───────────────────── */
  .satisfaction {
    background: var(--blue-dark);
    color: var(--white);
    text-align: center;
    padding: 60px 30px;
    margin-top: 0;
  }

  .satisfaction h3 {
    font-family: 'Lora', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
  }

  .badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
  }

  .badges img {
    height: 80px;
    object-fit: contain;
    background: var(--white);
    border-radius: 8px;
    padding: 8px 16px;
  }

  .testimonials__video {
    height: 100%;
  }