/* ============================================================
   SimpleiTech — Pricing Page Styles
   Theme: Navy (#00275D) · Gold (#E29E21) · Blue (#007DBF)
   ============================================================ */

/* ---------- Hero Banner ---------- */
.pricing-hero {
  background: linear-gradient(135deg, #00275D 0%, #003d8f 50%, #007DBF 100%);
  padding: 200px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(226, 158, 33, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-2%, 2%);
  }
}

.pricing-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.pricing-hero h1 span {
  color: #E29E21;
}

.pricing-hero p {
  font-family: 'Open Sans', sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---------- Section Wrapper ---------- */
.pricing-section {
  padding: 60px 0;
}

.pricing-section:nth-child(odd) {
  background: #f6f9fe;
}

.pricing-section:nth-child(even) {
  background: #fff;
}

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

.pricing-section-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #00275D, #007DBF);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pricing-section-icon i {
  font-size: 28px;
  color: #fff;
}

.pricing-section-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.pricing-section-header h2 span {
  color: #00275D;
}

.pricing-section-header p {
  color: #666;
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Pricing Cards ---------- */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e4ecf5;
  border-radius: 16px;
  padding: 36px 30px 30px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 39, 93, 0.12);
  border-color: #007DBF;
}

/* Featured / Popular card */
.pricing-card.featured {
  border: 2px solid #E29E21;
  box-shadow: 0 8px 30px rgba(226, 158, 33, 0.15);
}

.pricing-card.featured:hover {
  box-shadow: 0 20px 60px rgba(226, 158, 33, 0.2);
  border-color: #E29E21;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #E29E21, #f0b84a);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(226, 158, 33, 0.3);
}

.pricing-card-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #eef2f8;
  margin-bottom: 24px;
}

.pricing-card-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #00275D;
  margin-bottom: 14px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00275D;
}

.pricing-price .amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #00275D;
  line-height: 1;
}

.pricing-price .period {
  font-size: 0.95rem;
  color: #888;
  font-weight: 400;
}

.pricing-price-note {
  font-size: 0.82rem;
  color: #999;
  margin-top: 6px;
}

.pricing-card-header .plan-type {
  display: inline-block;
  background: rgba(0, 39, 93, 0.06);
  color: #00275D;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 10px;
}

/* ---------- Feature List ---------- */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.5;
  font-family: 'Open Sans', sans-serif;
}

.pricing-features li .check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #00a854, #00c96b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pricing-features li .check-icon::after {
  content: '✓';
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.pricing-features li.not-included {
  color: #bbb;
  text-decoration: line-through;
}

.pricing-features li.not-included .check-icon {
  background: #ddd;
}

.pricing-features li.not-included .check-icon::after {
  content: '✕';
}

/* ---------- CTA Button ---------- */
.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px 0;
  margin-top: 28px;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pricing-cta-primary {
  background: linear-gradient(135deg, #00275D, #003d8f);
  color: #fff;
}

.pricing-cta-primary:hover {
  background: linear-gradient(135deg, #003d8f, #005bc5);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 39, 93, 0.3);
  text-decoration: none;
  transform: translateY(-2px);
}

.pricing-cta-featured {
  background: linear-gradient(135deg, #E29E21, #f0b84a);
  color: #fff;
}

.pricing-cta-featured:hover {
  background: linear-gradient(135deg, #c7880c, #E29E21);
  color: #fff;
  box-shadow: 0 6px 20px rgba(226, 158, 33, 0.3);
  text-decoration: none;
  transform: translateY(-2px);
}

.pricing-cta-outline {
  background: transparent;
  border: 2px solid #00275D;
  color: #00275D;
}

.pricing-cta-outline:hover {
  background: #00275D;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ---------- Custom Quote Banner ---------- */
.pricing-custom-quote {
  background: linear-gradient(135deg, #00275D 0%, #003d8f 100%);
  padding: 60px 0;
  text-align: center;
}

.pricing-custom-quote h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pricing-custom-quote p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.pricing-custom-quote .cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #E29E21;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.pricing-custom-quote .cta-btn:hover {
  background: #f0b84a;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(226, 158, 33, 0.4);
  transform: translateY(-2px);
}

/* ---------- Section Divider ---------- */
.pricing-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E29E21, #007DBF);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .pricing-hero {
    padding: 100px 0 50px;
  }

  .pricing-hero h1 {
    font-size: 2.2rem;
  }

  .pricing-section-header h2 {
    font-size: 1.7rem;
  }

  .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 90px 0 40px;
  }

  .pricing-hero h1 {
    font-size: 1.8rem;
  }

  .pricing-hero p {
    font-size: 0.95rem;
    padding: 0 20px;
  }

  .pricing-section {
    padding: 40px 0;
  }

  .pricing-section-header {
    margin-bottom: 30px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    padding: 0 20px;
  }

  .pricing-card {
    padding: 28px 24px 24px;
  }

  .pricing-price .amount {
    font-size: 2.4rem;
  }

  .pricing-custom-quote h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .pricing-hero h1 {
    font-size: 1.5rem;
  }

  .pricing-section-header h2 {
    font-size: 1.4rem;
  }

  .pricing-card {
    padding: 24px 18px 20px;
  }
}

/* ---------- CSS-only Animations (replaces AOS) ---------- */
@keyframes pricingFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-hero h1,
.pricing-hero p {
  animation: pricingFadeInUp 0.8s ease-out both;
}

.pricing-hero p {
  animation-delay: 0.15s;
}

.pricing-section-header {
  animation: pricingFadeInUp 0.7s ease-out both;
}

.pricing-card {
  animation: pricingFadeInUp 0.6s ease-out both;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

.pricing-custom-quote .container {
  animation: pricingFadeInUp 0.7s ease-out both;
}