/* ==========================================================================
   INFINITIX INFOTECH - PRICING PAGE STYLESHEET (pricing.css)
   Inspired by Hostinger, Stripe, Vercel & Apple Design Aesthetics
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GLOBAL PAGE BACKGROUND & CANVAS
   -------------------------------------------------------------------------- */
body.pricing-page-body {
  background-color: #060913 !important;
  background-image: 
    radial-gradient(ellipse at 15% 10%, rgba(37, 99, 235, 0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 55%, rgba(139, 92, 246, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(rgba(255, 255, 255, 0.06) 1.2px, transparent 1.2px) !important;
  background-size: 100% 100%, 100% 100%, 100% 100%, 28px 28px !important;
  background-attachment: fixed !important;
  color: #e2e8f0;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   2. HERO BANNER & BREADCRUMB
   -------------------------------------------------------------------------- */
.pricing-hero-section {
  position: relative;
  padding: 150px 0 80px;
  background: radial-gradient(circle at 50% 25%, rgba(37, 99, 235, 0.25) 0%, rgba(10, 15, 30, 0.4) 60%, transparent 100%);
  overflow: hidden;
}

.pricing-hero-section::before {
  content: '';
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.15) 50%, transparent 75%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.pricing-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.pricing-visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(59, 130, 246, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #60a5fa;
  padding: 0.55rem 1.35rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
  margin-bottom: 1.5rem;
}

.pricing-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
}

.pricing-breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pricing-breadcrumb a:hover {
  color: #60a5fa;
}

/* --------------------------------------------------------------------------
   3. CATEGORY TABS & FILTER BAR
   -------------------------------------------------------------------------- */
.pricing-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  background: rgba(13, 19, 36, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  padding: 0.6rem 0.8rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.pricing-tab-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.35rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.pricing-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.pricing-tab-btn.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* --------------------------------------------------------------------------
   4. PRICING CARDS & GRID
   -------------------------------------------------------------------------- */
.pricing-card {
  background: rgba(13, 19, 36, 0.7);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  background: rgba(18, 26, 48, 0.88);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.25), 0 0 30px rgba(59, 130, 246, 0.15);
}

.pricing-card:hover::before {
  opacity: 1;
}

/* Popular / Featured Card Glow */
.pricing-card.featured-card {
  background: rgba(18, 28, 54, 0.85);
  border: 2px solid #3b82f6;
  box-shadow: 0 25px 65px rgba(37, 99, 235, 0.35);
}

.pricing-card.featured-card::before {
  opacity: 1;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.card-header-box {
  margin-bottom: 1.5rem;
}

.card-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.pricing-card:hover .card-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  border-color: transparent;
}

.package-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.package-desc {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.5;
  min-height: 42px;
  margin-bottom: 1.25rem;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-currency {
  font-size: 1.35rem;
  font-weight: 700;
  color: #60a5fa;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-family: var(--inf-font-title);
}

.price-period {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Tech Badges Row */
.tech-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tech-badge-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.pricing-card:hover .tech-badge-item {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.feature-item i.check-icon {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-item i.cross-icon {
  color: #64748b;
  font-size: 0.9rem;
  flex-shrink: 0;
  opacity: 0.5;
}

.feature-item.disabled {
  color: #64748b;
  text-decoration: line-through;
}

/* Action Button */
.btn-price-quote {
  width: 100%;
  padding: 0.95rem 1.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  text-decoration: none !important;
}

.btn-price-quote:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
  color: #ffffff !important;
}

.btn-price-quote i {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.btn-price-quote:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   5. COMPARISON TABLE SECTION
   -------------------------------------------------------------------------- */
.compare-table-card {
  background: rgba(13, 19, 36, 0.75);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  color: #e2e8f0;
  min-width: 750px;
}

.compare-table th,
.compare-table td {
  padding: 1.1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #ffffff;
  width: 28%;
}

.compare-table th {
  font-family: var(--inf-font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(15, 23, 42, 0.6);
}

.compare-table th.featured-col {
  color: #38bdf8;
  background: rgba(37, 99, 235, 0.15);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.compare-table td i.bi-check-circle-fill {
  color: #10b981;
  font-size: 1.2rem;
}

.compare-table td i.bi-dash-circle {
  color: #64748b;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   6. CUSTOM SOLUTION SECTION
   -------------------------------------------------------------------------- */
.custom-solution-card {
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.3) 0%, rgba(10, 15, 30, 0.95) 100%);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 30px;
  padding: 4.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(59, 130, 246, 0.15);
}

.custom-solution-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.25), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.btn-custom-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none !important;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.btn-custom-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
  color: #ffffff !important;
}

.btn-custom-call {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none !important;
  transition: all 0.35s ease;
}

.btn-custom-call:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   7. WHY CHOOSE US CARDS
   -------------------------------------------------------------------------- */
.why-pricing-card {
  background: rgba(13, 19, 36, 0.65);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.85rem 1.5rem;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.why-pricing-card:hover {
  transform: translateY(-6px);
  background: rgba(18, 26, 48, 0.85);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(59, 130, 246, 0.12);
}

.why-pricing-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.why-pricing-card:hover .why-pricing-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  border-color: transparent;
}

/* --------------------------------------------------------------------------
   8. PRICING FAQ ACCORDION
   -------------------------------------------------------------------------- */
.pricing-faq-item {
  background: rgba(13, 19, 36, 0.65);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px !important;
  margin-bottom: 1.1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-faq-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(18, 26, 48, 0.8);
}

.pricing-faq-button {
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.04rem;
  padding: 1.35rem 1.6rem;
  box-shadow: none !important;
}

.pricing-faq-button::after {
  filter: invert(1);
}

.pricing-faq-body {
  background: rgba(8, 12, 24, 0.5);
  color: #94a3b8;
  font-size: 0.94rem;
  line-height: 1.7;
  padding: 0 1.6rem 1.35rem 1.6rem;
}

/* --------------------------------------------------------------------------
   9. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .pricing-tabs-wrapper {
    border-radius: 20px;
    padding: 0.5rem;
  }
  .pricing-tab-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  .compare-table-card {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .pricing-hero-section {
    padding: 120px 0 60px;
  }
  .custom-solution-card {
    padding: 2.5rem 1.25rem;
  }
}
