.section-pricing-1 {
  background-color: #020202;
}
.section-pricing-1 .pricing-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 18px;
  color: #fafafa;
  text-align: center;
}

.section-pricing-1 .pricing-desc {
  text-align: center;
  color: #a1a1aa;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
}

.section-pricing-1 .card.pricing-card {
  background: #18181b;
  border-radius: 12px;
  color: #fafafa;
  box-shadow: 0 2px 20px #0007;
  display: flex;
  flex-direction: column;
  padding: 44px 32px;
  min-height: 520px;
  position: relative;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-pricing-1 .card.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 28px #0009;
}

/* ===== Border Colors ===== */
.section-pricing-1 .white-border {
  border: 1px solid #7e7878; /* softer white */
  box-shadow: 0 3px 20px rgba(255, 255, 255, 0.05); /* subtle glow */
}
.section-pricing-1 .yellow-border {
  border: 2px solid #fde68a;
  box-shadow: 0 5px 32px #fde68a40;
}

/* === Badge === */
.section-pricing-1 .badge-plan {
  background: linear-gradient(145deg, #202024, #1a1a1f);
  color: #a3a3a7;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  line-height: 1.25;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.section-pricing-1 .badge-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.6);
}

.section-pricing-1 .yellow-border .badge-plan {
  background: #fde68a;
  color: #020202;
  font-weight: 600;
}

.section-pricing-1 .pricing-price {
  font-weight: bold;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 12px 0;
  color: #fafafa;
  letter-spacing: -1px;
}

.section-pricing-1 .pricing-description {
  color: #a1a1aa;
  margin-bottom: 0;
  font-size: 1.09rem;
}

.section-pricing-1 .pricing-divider {
  border-bottom: 1px solid #2e2e33;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.section-pricing-1 .pricing-card ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 28px;
  color: #a1a1aa;
}

.section-pricing-1 .pricing-card li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  font-size: 1.06rem;
}

/* ===== Tick Images ===== */
.section-pricing-1 .white-border li::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: url("/grapesjs/img/PricingSection/ImagePriceSection1/WhiteTick.png") no-repeat center center /
    70%;
  margin-right: 10px;
}

.section-pricing-1 .yellow-border li::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fde68a;
  background: url("/grapesjs/img/PricingSection/ImagePriceSection1/yellow-tick.png") no-repeat center center /
    70%;
  margin-right: 10px;
}

.section-pricing-1 .plan-btn {
  border-radius: 13px;
  width: 100%;
  height: 56px;
  font-size: 1.13rem;
  font-weight: 700;
  margin-top: auto;
}

.section-pricing-1 .btn-primary {
  background: #fde68a;
  color: #18181b;
  border: none;
}

.section-pricing-1 .btn-outline-light {
  border: 1.5px solid #a1a1aa;
  color: #fafafa;
  background: transparent;
}

/* === Responsive Improvements === */
@media (max-width: 992px) {
  .section-pricing-1 .card.pricing-card {
    min-height: 440px;
    padding: 28px 20px;
    margin-bottom: 32px;
  }

  .section-pricing-1 .pricing-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-pricing-1 .pricing-title {
    font-size: 1.8rem;
  }

  .section-pricing-1 .pricing-desc {
    font-size: 1rem;
    margin-bottom: 32px;
    padding: 0 12px;
  }

  .section-pricing-1 .pricing-card li {
    font-size: 1rem;
  }

  .section-pricing-1 .plan-btn {
    font-size: 1rem;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .card.pricing-card {
    min-height: 380px;
    padding: 22px 16px;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .pricing-card li {
    font-size: 0.95rem;
  }
}

.section-pricing2-2 {
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  color: #2c1463;
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-pricing2-2 .pricing-title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

.section-pricing2-2 .pricing-card {
  border-radius: 16px;
  border: 2px solid #2c0069; /* Added border */
  padding: 30px;
  transition: 0.3s;
  width: 460px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Optional soft shadow */
}

.section-pricing2-2 .pricing-card:hover {
  transform: translateY(-5px);
}

.section-pricing2-2 .standard {
  background-color: #e9f2ff;
  border-color: #ff7f2a; /* Purple border for Standard */
}

.section-pricing2-2 .premium {
  background-color: #2c0069;
  color: #fff;
  border-color: #ff7f2a; /* Orange border for Premium */
}

.section-pricing2-2 .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c0069;
}

.section-pricing2-2 .premium .price {
  color: #fff;
}

.section-pricing2-2 .old-price {
  text-decoration: line-through;
  color: #a19bc2;
  font-size: 2.5rem;
  margin-left: 8px;
  font-weight: 700;
}

.section-pricing2-2 .feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.section-pricing2-2 .feature-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.section-pricing2-2 .feature-list li::before {
  content: "✔";
  color: #ff7f2a;
  margin-right: 10px;
}

.section-pricing2-2 .btn-orange {
  background-color: #ff7f2a;
  border: 2px solid #ff7f2a; /* Added border */
  color: #fff;
  border-radius: 25px;
  padding: 12px;
  font-weight: 600;
  width: 100%;
  transition: 0.3s;
}

.section-pricing2-2 .btn-orange:hover {
  background-color: #fff;
  color: #ff7f2a;
  border-color: #ff7f2a;
}

.section-pricing2-2 .payment-icons img {
  height: 25px;
  margin: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-pricing2-2 .pricing-card {
    width: 100%;
    max-width: 400px;
  }
}

/* ===== Fitness Packages (pricing-3) ===== */
.fmp-section {
  background: #0a0d10;
  padding: 70px 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
@media (max-width: 767.98px) {
  .fmp-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.fmp-heading {
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
}
.fmp-subheading {
  color: #8a97a3;
  font-size: 1rem;
}
.fmp-card {
  background: #161b22;
  border: 1px solid #1f2937;
  border-radius: 1.75rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.fmp-card:hover {
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 10px 35px rgba(249, 115, 22, 0.12);
  transform: translateY(-4px);
}
.fmp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.fmp-plan-label {
  color: #8a97a3;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.fmp-badge {
  background: linear-gradient(180deg, #ff8a3d, #ff6a1a);
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 0 18px rgba(255, 106, 26, 0.55);
  white-space: nowrap;
  display: inline-block;
  animation: fmpBadgePop 1.6s ease-in-out infinite;
}
@keyframes fmpBadgePop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.fmp-old-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 1rem;
  margin-bottom: 8px;
}
.fmp-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}
.fmp-price-amount {
  color: #ffffff;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
}
.fmp-price-period {
  color: #64748b;
  font-size: 0.95rem;
}
.fmp-total-box {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.fmp-total-label {
  color: #94a3b8;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.fmp-total-sub {
  color: #7c8a95;
  font-size: 0.78rem;
}
.fmp-total-amount {
  color: #10b981;
  font-weight: 800;
  font-size: 1.5rem;
}
.fmp-save {
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.fmp-check-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
.fmp-check-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #0a0d10;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.fmp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}
.fmp-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
  font-size: 16px;
  padding: 2px 0;
}
.fmp-features li::before {
  content: "✔";
  color: #f97316;
  font-size: 0.9rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.fmp-btn-join {
  background: #f97316;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 0.85rem;
  padding: 1rem 0;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
  width: 100%;
  transition: background-color 0.2s ease;
}
.fmp-btn-join:hover {
  background: #e8630a;
  color: #fff;
}
.fmp-empty {
  color: #8a97a3;
  text-align: center;
  padding: 2rem 1rem;
}
