@import url('../../assets-custom/root.css');

body {
  margin: 0;
  background: #0a0a0a;
  color: #fff;
}

/* Hero Image */

.header-and-hero {
  height: 100px;
  background: url('../../assets-custom/img/pricing/pricing-hero.png') no-repeat center center/cover;
  height: 50vh;
}

/* Pricing Title Section */
.pricing-title-section {
  background: #0a0a0a;
  padding: 80px 20px 40px;
  text-align: center;
  margin-top: -50px;
}
.pricing-and-plan-heading {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pricing-and-plan-para {
  color: #ffffffcc;
  font-size: 1rem;
  line-height: 1.6;
}

/* Pricing Cards Section */
.pricing-section {
  background: #0a0a0a;
  padding: 60px 20px;
  text-align: center;
}
.pricing-cards {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-card-wrapper {
  background: #111;
  border: 1px solid #333;
  border-radius: 5px;
  flex: 1 1 30%;
  max-width: 360px;
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.pricing-card {
  padding: 40px 20px;
  text-align: center;
  width: 100%;
}
.plan-title {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.price {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.price span {
  color: #c4ff00;
  font-size: 2.5rem;
  font-family: var(--title-font);
}
.btn-choose-plan {
  display: inline-block;
  background: var(--btn-background-color);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 0.9rem;
  width: 100%;
}
.btn-choose-plan:hover {
 background: 
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    var(--btn-background-color);
  }
  
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ffffffcc;
  font-size: 0.9rem;
  line-height: 1.5;
}
.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.check-item {
  margin-right: 10px;
}

/* Featured plan highlight */
.featured {
  background: linear-gradient(to bottom, rgba(196, 255, 0, 0.15) 0%, #111111 100%);
  border-color: #c4ff00;
}

/* Responsive Styles */

/* Tablet (max-width:992px) */
@media (max-width: 992px) {
  .pricing-card-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 20px 0;
  }
  .pricing-and-plan-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 1200px) {
  .pricing-cards {
    flex-wrap: wrap;
  }
}

/* Small tablets and large phones (max-width:768px) */
@media (max-width: 768px) {
  .pricing-and-plan-heading {
    font-size: 1.5rem;
  }
  .plan-title {
    font-size: 1rem;
  }
  .price {
    font-size: 1.8rem;
  }
  .price span {
    font-size: 2rem;
  }
  .btn-choose-plan {
    font-size: 0.85rem;
    padding: 8px 20px;
  }
  .feature-list li {
    font-size: 0.85rem;
  }
}

/* Mobile (max-width:480px) */
@media (max-width: 480px) {
  .pricing-and-plan-heading {
    font-size: 1.4rem;
  }
  .plan-title {
    font-size: 0.9rem;
  }
  .price {
    font-size: 1.6rem;
  }
  .price span {
    font-size: 1.8rem;
  }
  .btn-choose-plan {
    padding: 8px 15px;
    font-size: 0.8rem;
  }
  .feature-list li {
    font-size: 0.8rem;
  }
}
