.packages-section {
  padding: 90px 0;
  background: #fff;
  position: relative;
}

.packages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff, #fff8fb, #fff);
  z-index: 0;
}
.custom-container {
  max-width: 1500px;
  width: 100%;
  margin: auto;
}
.packages-section .custom-container {
  position: relative;
  z-index: 2;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: auto auto 60px;
}

.sub-title {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.section-heading p {
  color: #666;
  line-height: 1.8;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.package-card {
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  position: relative;
  overflow: hidden;

  border: 1px solid #eee;

  transition: 0.35s;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.package-card:hover {
  transform: translateY(-12px);

  border-color: var(--primary);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.package-active {
  transform: scale(1.05);

  border: 2px solid var(--secondary);

  box-shadow: 0 20px 60px rgba(243, 167, 0, 0.25);
}

.popular-tag {
  position: absolute;

  top: 18px;

  right: -35px;

  background: var(--secondary);

  color: #fff;

  padding: 8px 40px;

  transform: rotate(45deg);

  font-size: 12px;

  font-weight: 600;

  text-transform: uppercase;
}
.plan-icon {
  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: rgba(240, 0, 82, 0.08);

  display: flex;
  justify-content: center;
  align-items: center;

  margin: auto;

  color: var(--primary);

  font-size: 20px;

  transition: 0.4s;
}

.package-card:hover .plan-icon {
  background: var(--primary);

  color: #fff;
}
.package-card h3 {
  margin: 6px 0 10px;
  text-align: center;
  font-size: 20px;
  color: #222;
}

.price {
  text-align: center;

  font-size: 40px;

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 25px;
}

.price span {
  display: block;

  color: #777;

  font-size: 16px;

  font-weight: 500;
}
.features {
  list-style: none;

  padding: 0;

  margin: 0 0 35px;
}

.features li {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 12px;

  color: #444;
}

.features i {
  width: 28px;

  height: 28px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(240, 0, 82, 0.08);

  color: var(--primary);

  font-size: 12px;
}

.features .disable {
  color: #aaa;
}

.features .disable i {
  background: #f2f2f2;

  color: #999;
}
.package-btn {
  display: block;

  text-align: center;

  padding: 15px;

  border-radius: 50px;

  background: var(--primary);

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: 0.35s;
}

.package-btn:hover {
  background: var(--secondary);

  color: #fff;
}
@media (max-width: 1199px) {
  .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .packages-section {
    padding: 70px 0;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .package-grid {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .package-active {
    transform: none;
  }

  .price {
    font-size: 40px;
  }

  .package-card {
    padding: 30px;
  }
}
