/* Pricing Section Mobile Slider */
@media (max-width: 767px) {
  .pricing-cards-container {
    overflow: hidden;
  }

  #monthlyPricing,
  #annualPricing {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 15px;
    gap: 15px;
  }

  #monthlyPricing .col-lg-4,
  #annualPricing .col-lg-4 {
    min-width: 100%;
    scroll-snap-align: center;
  }

  .slider-controls {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .slider-arrow {
    background-color: var(--orange);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .slider-arrow:hover {
    background-color: var(--black);
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .slider-dot.active {
    background-color: var(--orange);
    transform: scale(1.2);
  }
}

/* Modal Styles */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-container {
  background-color: white;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-align: center;
  position: relative;
}

.modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 24px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.modal-body {
  padding: 20px;
}

/* Add these styles for the new option selector cards */

.option-selector {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.option-card {
  flex: 1;
  min-width: 280px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
}

.option-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.option-card.active {
  border-color: var(--orange);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.15);
}

.option-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.option-icon {
  margin-right: 15px;
}

.option-icon img {
  width: 50px;
  height: 50px;
}

.option-header h3 {
  margin: 0;
  color: #4a6fa1;
  font-size: 20px;
  font-weight: 600;
}

.option-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.check-icon {
  color: #4a6fa1;
  margin-right: 10px;
  font-weight: bold;
}

.feature-text {
  flex: 1;
  font-size: 14px;
  color: #555;
}

.feature-price {
  font-weight: bold;
  color: var(--orange);
  margin-left: 10px;
}

.option-selector-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #ddd;
}

.option-card.active .option-selector-indicator {
  border-color: var(--orange);
  background-color: var(--orange);
}

.option-card.active .option-selector-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
}

@media (max-width: 576px) {
  .option-card {
    flex-direction: column;
    width: 100%;
  }

  .option-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .option-selector-indicator {
    top: 10px;
    right: 10px;
  }
}

.extras-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.extras-section {
  flex: 1;
  min-width: 300px;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
}

.extras-section h3 {
  margin-top: 0;
  color: #333;
  font-size: 20px;
  margin-bottom: 15px;
}

.extras-section img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.extras-option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.extras-checkbox {
  margin-right: 10px;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.extras-label {
  font-size: 16px;
  cursor: pointer;
}

.extras-price {
  font-weight: bold;
  color: var(--orange);
  margin-left: auto;
}

.modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-continue-without {
  background-color: #f4f4f4;
  color: #333;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-continue-without:hover {
  background-color: #e0e0e0;
}

.btn-continue-with {
  background-color: var(--orange);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0.5;
  pointer-events: none;
}

.btn-continue-with.active {
  opacity: 1;
  pointer-events: auto;
}

.btn-continue-with.active:hover {
  background-color: var(--black);
}

@media (max-width: 767px) {
  .extras-container {
    flex-direction: column;
  }

  .option-card {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .extras-container {
    flex-direction: column;
  }

  .modal-footer {
    flex-direction: column;
  }

  .btn-continue-without,
  .btn-continue-with {
    width: 100%;
    text-align: center;
  }
}
