.popup-slider {
    position: relative;
    height: 300px;
    overflow: hidden;
  }
  
  .popup-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .popup-slide.active {
    opacity: 1;
  }
  
  .popup-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slide-prev,
  .slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    transition: all 0.2s;
    z-index: 5;
  }
  
  .slide-prev {
    left: 1rem;
  }
  
  .slide-next {
    right: 1rem;
  }
  
  .slide-prev:hover,
  .slide-next:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
  }
  
  .popup-description {
    padding: 2rem;
  }
  
  .popup-section {
    margin-bottom: 1.5rem;
  }
  
  .popup-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
  }
  
  .popup-section h3 i {
    color: #dd7722;
  }
  
  .popup-section ul {
    padding-left: 1.5rem;
    margin: 0;
  }
  
  .popup-section li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
  }
  
  .popup-pricing {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 0.5rem;
    text-align: center;
  }
  
  .popup-pricing h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .popup-pricing p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  .popup-pricing strong {
    color: #dd7722;
    font-size: 1.25rem;
  }
  
  .popup-cta {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
  }
  
  .popup-quote-btn {
    background: linear-gradient(to right, #ffcf66, #f9a94a, #dd7722);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px -5px rgba(221, 119, 34, 0.3);
  }
  
  .popup-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(221, 119, 34, 0.4);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .popup-content {
      width: 95%;
    }
  
    .popup-header {
      padding: 1.5rem;
    }
  
    .popup-icon {
      width: 3rem;
      height: 3rem;
      font-size: 1.4rem;
    }
  
    .popup-header h2 {
      font-size: 1.4rem;
    }
  
    .popup-slider {
      height: 220px;
    }
  
    .popup-description {
      padding: 1.5rem;
    }
  
    .popup-section h3 {
      font-size: 1.1rem;
    }
  
    .popup-pricing strong {
      font-size: 1.1rem;
    }
  
    .popup-quote-btn {
      font-size: 1rem;
      padding: 0.9rem 2rem;
    }
  }
  
  /* Animation for first slide */
  .popup-slide:first-child {
    opacity: 1;
  }