/* How Place Order Section */
.how-place-order-section {
  padding: 80px 0;
  background: white;
}

/* Order Content Wrapper */
.order-content-wrapper {
  max-width: 1100px;
  margin: 70px auto 0;
  gap: 30px;
  padding: 0 20px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
    border: 1px solid #CFDEF0;
  box-shadow: 0px 0px 16px 0px #469FDF33;
border-radius: 20px;
padding: 30px;
}

/* Order Video Wrapper (Left Side) */
.order-video-wrapper {
  position: relative;
  max-width: 580px;
  /* height: 440px; */

  width: 100%;
}

/* Order Steps Content (Right Side) */
.order-steps-content {
  position: relative;
    max-width: 400px;
  width: 100%;
 
}

.contentVideo{
  width: 580px;
  /* height: 440px; */
background-color: transparent;
}
/* Video Skeleton Loader */
.video-skeleton-loader {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Skeleton Play Button */
.skeleton-play-button {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.skeleton-play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 24px solid #0654E6;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}

/* Responsive skeleton loader */
@media (max-width: 768px) {
  .skeleton-play-button {
    width: 60px;
    height: 60px;
  }

  .skeleton-play-button::after {
    border-left: 18px solid #0654E6;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
  }
}
/* Place Order Swiper */
.place-order-swiper {
  padding-bottom: 66px;
  min-height: 300px;
}

.place-order-swiper .swiper-wrapper {
 
}
.order-steps-content{

}
/* Place Order Card */
.place-order-card {
  background: #fff;
  text-align: left;
  width: 100%;
  padding: 12px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
 
/* Place Order Step Badge */
.place-order-step-badge {

  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #0654E6;
  margin-bottom: 24px;
box-shadow: 0px 3px 6.9px 0px #D1DAE2;

  
}

/* Step Name */
.place-order-card .step-name {
  
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
    text-align: left;
  color: #464860;
  margin-bottom: 16px;
}

/* Step Description */
.place-order-card .step-description {
  
  font-weight: 400;
  font-size: 15px;
    text-align: left;
  line-height: 200%;
  color: #60738A;
  flex: 1;
}

.place-order-card .step-description p {
  margin: 0;
}

/* Step Navigation Buttons */
.step-navigation {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #D2E3F8;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.step-nav-btn:hover {
  border-color: #0654E6;
  background: #F8FBFF;
}

.step-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.step-nav-btn svg {
  width: 13px;
  height: 10px;
}

/* Swiper Navigation */
.place-order-swiper .swiper-button-prev,
.place-order-swiper .swiper-button-next {
  width: 45px;
  height: 45px;
  background: white;
border: 1px solid #0654E6;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.place-order-swiper .swiper-button-prev:after,
.place-order-swiper .swiper-button-next:after {
  content: '';
  display: none;
}

.place-order-swiper .swiper-button-prev,
.place-order-swiper .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
}

.place-order-swiper .swiper-button-prev::before {
  content: '';
  width: 13px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 5L0.5 5M0.5 5L5 9.5M0.5 5L5 0.5' stroke='%23A1B8D5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(16%) sepia(93%) saturate(5859%) hue-rotate(219deg) brightness(97%) contrast(95%);
}

.place-order-swiper .swiper-button-next::before {
  content: '';
  width: 13px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 5L12.5 5M12.5 5L8 0.5M12.5 5L8 9.5' stroke='%235F728B' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(16%) sepia(93%) saturate(5859%) hue-rotate(219deg) brightness(97%) contrast(95%);
}

.place-order-swiper .swiper-button-prev:hover,
.place-order-swiper .swiper-button-next:hover {
  border-color: #0654E6;
  background: white;
}

.place-order-swiper .swiper-button-prev {
    left: 13px;
    transform: translateX(0);
    top: auto;
    bottom: 0;
}

.place-order-swiper .swiper-button-next {
    right: auto;
    left: 90px;
    transform: translateX(0);
    top: auto;
    bottom: 0;
}

/* Swiper Pagination */
.place-order-swiper .swiper-pagination {
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.place-order-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #E5E7EB;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.place-order-swiper .swiper-pagination-bullet-active {
  background: #0554E6;
  width: 30px;
  height: 9px;
  border-radius: 5px;
}

/* Order Bottom Description */
.order-bottom-desc {
  max-width: 900px;
  margin: 50px auto 0;
  text-align: center;
  
  font-weight: 400;
  font-size: 15px;
  line-height: 170%;
  color: #60738A;
}

.order-bottom-desc p {
  margin: 0;
}

/* Order CTA Button */
.order-cta-wrapper {
  text-align: center;
  margin-top: 70px;
}

.order-cta-btn {
  display:flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  max-width: max-content;
  width: 100%;
  margin: auto;
  padding: 0px 15px;
  background: #0654E6;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 16px rgba(6, 84, 230, 0.3);
}

.order-cta-btn:hover {
  background: #0543C1;
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px rgba(6, 84, 230, 0.4);
}

/* Vista Video Section */
.vista-video-section {
  width: 100%;
}

.vista-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 8px 24px rgba(6, 84, 230, 0.15);
  background: #F8FBFF;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .order-content-wrapper {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .how-place-order-section {
    padding: 60px 20px;
  }

  .order-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .order-video-wrapper {
    order: 2;
  }

  .order-steps-content {
    order: 1;
  }

  .step-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .step-heading {
    font-size: 18px;
  }

  .step-description {
    font-size: 14px;
  }

  .step-nav-btn {
    width: 38px;
    height: 38px;
  }

  .order-content-swiper {
    margin-bottom: 24px;
  }
    .place-order-card{
      padding-left: 6px;
    }
        .place-order-swiper .swiper-button-prev{
          left: 7px;
        }
                .place-order-swiper .swiper-button-next{
                  left: 77px;
                }
.place-order-card .step-name{
  font-size: 20px;
}
                                .place-order-card .step-description {
                                  font-size: 14px;
                                  height: 321px;
                                }
}

@media (max-width: 480px) {
  .how-place-order-section {
    padding: 40px 16px;
  }

  .order-content-wrapper {
    margin-top: 30px;
    gap: 30px;
  }

  .step-number {
    width: 38px;
    height: 38px;
    font-size: 14px;
    margin-bottom: 16px;
  }

  .step-heading {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .step-description {
    font-size: 13px;
  }

  .step-nav-btn {
    width: 36px;
    height: 36px;
  }

  .order-cta-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .order-content-swiper {
    margin-bottom: 20px;
  }
  .order-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}
}
