/* Pricing Page Styles */
.pricing {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.pricing .title {
  margin-bottom: 50px;
  color: #0d1615;
  font-size: 42px;
  font-weight: 700;
}

.pricing-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid #9cee69;
  position: relative;
}

.pricing-card.featured:before {
  content: 'Популярний';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #9cee69;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0d1615;
}

.pricing-header .price {
  font-size: 36px;
  font-weight: 700;
  color: #9cee69;
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 30px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features ul li {
  padding: 10px 0;
  color: #606060;
  position: relative;
  padding-left: 30px;
}

.pricing-features ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9cee69;
  font-weight: bold;
}

.pricing-footer {
  text-align: center;
}

.pricing-footer .btn {
  background: #9cee69;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
}

.pricing-footer .btn:hover {
  background: #8adc58;
  transform: translateY(-2px);
}

/* Party Packages Section */
.party-packages {
  padding: 80px 0;
  background-color: #ffffff;
}

.package-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.package-header {
  text-align: center;
  margin-bottom: 30px;
}

.package-header h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0d1615;
}

.package-header .price {
  font-size: 36px;
  font-weight: 700;
  color: #9cee69;
}

.package-features {
  flex-grow: 1;
  margin-bottom: 30px;
}

.package-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features ul li {
  padding: 10px 0;
  color: #606060;
  position: relative;
  padding-left: 30px;
}

.package-features ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9cee69;
  font-weight: bold;
}

.package-footer {
  text-align: center;
}

.package-footer .btn {
  background: #9cee69;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
}

.package-footer .btn:hover {
  background: #8adc58;
  transform: translateY(-2px);
}

/* Subscriptions Section */
.subscriptions {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.subscription-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.subscription-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.subscription-card.featured {
  border: 2px solid #9cee69;
  position: relative;
}

.subscription-card.featured:before {
  content: 'Найкраща ціна';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #9cee69;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.subscription-header {
  text-align: center;
  margin-bottom: 30px;
}

.subscription-header h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0d1615;
}

.subscription-header .price {
  font-size: 36px;
  font-weight: 700;
  color: #9cee69;
}

.subscription-features {
  flex-grow: 1;
  margin-bottom: 30px;
}

.subscription-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subscription-features ul li {
  padding: 10px 0;
  color: #606060;
  position: relative;
  padding-left: 30px;
}

.subscription-features ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9cee69;
  font-weight: bold;
}

.subscription-footer {
  text-align: center;
}

.subscription-footer .btn {
  background: #9cee69;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
}

.subscription-footer .btn:hover {
  background: #8adc58;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq .title {
  margin-bottom: 50px;
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #0d1615;
  background-color: #ffffff;
  border: none;
  text-align: left;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: #9cee69;
  background-color: #ffffff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239cee69'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px 30px;
  background-color: #ffffff;
  color: #606060;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .pricing .title,
  .party-packages .title,
  .subscriptions .title {
    font-size: 36px;
  }
  
  .pricing-card,
  .package-card,
  .subscription-card {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .pricing,
  .party-packages,
  .subscriptions {
    padding: 60px 0;
  }
  
  .pricing .title,
  .party-packages .title,
  .subscriptions .title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  
  .pricing-header .price,
  .package-header .price,
  .subscription-header .price {
    font-size: 30px;
  }
  
  .faq {
    padding: 60px 0;
  }
  
  .accordion-button {
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .accordion-body {
    padding: 15px 20px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .pricing-card,
  .package-card,
  .subscription-card {
    margin-bottom: 20px;
  }
  
  .pricing-header h4,
  .package-header h4,
  .subscription-header h4 {
    font-size: 20px;
  }
} 