/* =========================================
   GUIDED VIDEOS SECTION
========================================= */

.guided-videos-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background: #f8faf8;
}


/* =========================================
   CONTAINER
========================================= */

.guided-container {
  position: relative;
  z-index: 2;
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.guided-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.guided-glow-left {
  width: 500px;
  height: 500px;
  top: -160px;
  left: -160px;
  background: rgba(180, 220, 190, 0.30);
}

.guided-glow-right {
  width: 400px;
  height: 400px;
  right: -20px;
  bottom: -50px;
  background: rgba(230, 210, 170, 0.20);
}


/* =========================================
   SECTION HEADING
========================================= */

.guided-heading {
  margin-bottom: 56px;
}

.guided-heading h2 {
  margin: 0;
  color: #0f172a;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}

.guided-heading h2 span {
  color: #059669;
}

.guided-heading p {
  max-width: 680px;
  margin: 12px auto 0;
  color: #66736b;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================
   VIDEO CARD
========================================= */

.guided-video-card {
  height: 100%;
  overflow: hidden;
  cursor: pointer;

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.60);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.guided-video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}


/* =========================================
   VIDEO IMAGE
========================================= */

.guided-video-image {
  position: relative;
  overflow: hidden;
  height: 262px;
}

.guided-video-image img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.guided-video-card:hover .guided-video-image img {
  transform: scale(1.10);
}


/* =========================================
   VIDEO OVERLAY
========================================= */

.guided-video-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.20);

  opacity: 0;

  transition: opacity 0.3s ease;
}

.guided-video-card:hover .guided-video-overlay {
  opacity: 1;
}


/* =========================================
   PLAY BUTTON
========================================= */

.guided-play-btn {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-left: 3px;

  border-radius: 50%;

  background: #059669;;
  color: #ffffff;

  font-size: 20px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);

  animation: guidedBounce 2s infinite;
}


/* =========================================
   CARD CONTENT
========================================= */

.guided-video-content {
  padding: 20px;
}

.guided-video-content h3 {
  margin: 0;

  color: #0f172a;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;

  transition: color 0.3s ease;
}

.guided-video-card:hover .guided-video-content h3 {
  color: #059669;
}


.guided-video-content p {
  margin: 10px 0 0;

  color: #4d6054;

  font-size: 13px;
  line-height: 1.65;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.guided-video-link {
  display: block;
  text-decoration: none;
}

.guided-video-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.guided-video-image img {
  width: 100%;
  height: 257px;
  display: block;
  transition: transform 0.4s ease;
}

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

.guided-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  color: #053b2d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding-left: 4px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.guided-video-image:hover img {
  transform: scale(1.05);
}

.guided-video-image:hover .guided-video-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.guided-video-image:hover .guided-play-btn {
  transform: scale(1.1);
  background: #053b2d;
  color: #ffffff;
}

.guided-watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #053b2d;
  font-weight: 600;
  transition: all 0.3s ease;
}

.guided-watch span {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.guided-watch:hover {
  color: #000000;
}

.guided-watch:hover span {
  transform: translateX(5px);
}
.guide-youtube-icon {
  width: 85px;
  height: 60px;
  background: #ff0000;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 38px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  transition: all 0.3s ease;
}

.guide-youtube-link:hover .guide-youtube-icon {
  transform: scale(1.1);
  background: #ff0000;
}

/* =========================================
   WATCH NOW
========================================= */

.guided-watch {
  display: flex;
  align-items: center;
  gap: 5px;

  margin-top: 16px;

  color: #059669;

  font-size: 14px;
  font-weight: 600;

  transition: gap 0.3s ease;
}

.guided-watch span {
  font-size: 18px;
  line-height: 1;
}

.guided-video-card:hover .guided-watch {
  gap: 9px;
}


/* =========================================
   PLAY BUTTON ANIMATION
========================================= */

@keyframes guidedBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

  .guided-videos-section {
    padding: 70px 0;
  }

  .guided-heading {
    margin-bottom: 45px;
  }

  .guided-heading h2 {
    font-size: 34px;
  }

  .guided-video-image {
    height: 200px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

  .guided-videos-section {
    padding: 55px 0;
  }

  .guided-heading {
    margin-bottom: 35px;
    padding: 0 10px;
  }

  .guided-heading h2 {
    font-size: 28px;
  }

  .guided-heading p {
    font-size: 14px;
    line-height: 1.65;
  }

  .guided-video-card {
    border-radius: 20px;
  }

  .guided-video-image {
    height: 200px;
  }

  .guided-video-content {
    padding: 18px;
  }

  .guided-video-content h3 {
    font-size: 17px;
  }

  .guided-video-content p {
    font-size: 13px;
  }

  .guided-glow-left {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -120px;
  }

  .guided-glow-right {
    width: 280px;
    height: 280px;
  }

}


/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media (max-width: 375px) {

  .guided-heading h2 {
    font-size: 25px;
  }

  .guided-video-image {
    height: 180px;
  }

}

/* =========================================
   FULL SCREEN VIDEO MODAL
========================================= */

.guided-video-modal {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100vh;

  background: rgba(0, 0, 0, 0.92);

  display: none;

  align-items: center;
  justify-content: center;

  z-index: 99999;

  padding: 30px;
}


/* ACTIVE MODAL */

.guided-video-modal.active {
  display: flex;
}


/* MODAL CONTENT */

.guided-modal-content {
  position: relative;

  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}


/* FULL SCREEN BANNER */

.guided-modal-banner {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 18px;

  background: #000;
}


/* YOUTUBE LINK */

.guided-modal-youtube-link {
  position: relative;

  display: block;

  width: 100%;
  height: 100%;

  text-decoration: none;

  overflow: hidden;
}


/* THUMBNAIL */

.guided-modal-youtube-link img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;

  transition: transform 0.5s ease;
}


/* OVERLAY */

.guided-modal-overlay {
  position: absolute;

  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.25);

  transition: background 0.3s ease;
}


/* YOUTUBE ICON */

.guided-youtube-icon {
  width: 100px;
  height: 70px;

  border-radius: 18px;

  background: #ff0000;

  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 42px;

  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);

  transition: all 0.3s ease;
}


/* HOVER */

.guided-modal-youtube-link:hover img {
  transform: scale(1.03);
}


.guided-modal-youtube-link:hover
.guided-modal-overlay {
  background: rgba(0, 0, 0, 0.42);
}


.guided-modal-youtube-link:hover
.guided-youtube-icon {
  transform: scale(1.12);
}


/* CLOSE BUTTON */

.guided-modal-close {
  position: absolute;

  top: 20px;
  right: 20px;

  z-index: 10;

  width: 48px;
  height: 48px;

  border: 0;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.65);

  color: #ffffff;

  font-size: 34px;

  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition: all 0.3s ease;
}


.guided-modal-close:hover {
  background: #ff0000;

  transform: rotate(90deg);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .guided-video-modal {
    padding: 15px;
  }


  .guided-modal-banner {
    border-radius: 12px;
  }


  .guided-youtube-icon {
    width: 75px;
    height: 52px;

    border-radius: 13px;

    font-size: 30px;
  }


  .guided-modal-close {
    top: 10px;
    right: 10px;

    width: 42px;
    height: 42px;

    font-size: 28px;
  }

}