/* Pricing Section Styles */
.software-pricing {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2d3436;
}

.section-header p {
  font-size: 1.1rem;
  color: #636e72;
  max-width: 800px;
  margin: 0 auto;
}

/* Pricing Filters */
.pricing-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  background: #fff;
  color: #2d3436;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.filter-btn.active {
  background: #0984e3;
  color: #fff;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

/* Pricing Cards */
.pricing-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-header {
  padding: 25px;
  background: #f8f9fa;
  position: relative;
  padding-top: 45px;
}

.card-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #2d3436;
  position: relative;
  z-index: 1;
}

.badge {
  position: absolute;
  top: 10px;
  left: 25px;
  background: #00b894;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 2;
}

.card-body {
  padding: 25px;
}

.price-range {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0984e3;
  margin-bottom: 20px;
}

.price-range span {
  font-size: 1rem;
  color: #636e72;
  font-weight: 400;
}

.description {
  color: #636e72;
  margin-bottom: 20px;
  line-height: 1.6;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  margin-bottom: 12px;
  color: #2d3436;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li i {
  color: #00b894;
  font-size: 1rem;
}

.card-footer {
  padding: 25px;
  background: #f8f9fa;
  text-align: center;
}

.pricing-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #0984e3;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: #0866b3;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .pricing-filters {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Animation for filtering */
.pricing-card {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-page {
  padding: 8rem 0 4rem;
  min-height: calc(100vh - 80px - 400px);
  background: #f8f9fa;
}

.pricing-page h1 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3436;
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
}

.pricing-page h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #38bfec;
  border-radius: 2px;
}

.pricing-table-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin: 0 auto;
  max-width: 100%;
  overflow-x: auto;
}

/* DataTables Customization */
.dataTables_wrapper {
  margin-top: 1rem;
}

table.dataTable {
  border-collapse: collapse !important;
  width: 100% !important;
}

table.dataTable thead th {
  background-color: #38bfec;
  color: white;
  font-weight: 600;
  padding: 12px 15px;
  border: none;
}

table.dataTable tbody td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  color: #333;
}

table.dataTable tbody tr:hover {
  background-color: #f8f9fa;
}

.dataTables_filter input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  margin-left: 8px;
}

.dataTables_filter input:focus {
  outline: none;
  border-color: #38bfec;
  box-shadow: 0 0 0 2px rgba(56, 191, 236, 0.2);
}

.dataTables_length select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 8px;
  margin: 0 4px;
}

.dataTables_info {
  color: #666;
  padding-top: 1rem;
}

.dataTables_paginate {
  padding-top: 1rem;
}

.dataTables_paginate .paginate_button {
  padding: 6px 12px;
  margin: 0 2px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333 !important;
  cursor: pointer;
}

.dataTables_paginate .paginate_button.current {
  background: #38bfec !important;
  border-color: #38bfec;
  color: white !important;
}

.dataTables_paginate .paginate_button:hover {
  background: #f0f0f0 !important;
  border-color: #ddd;
}

.dataTables_paginate .paginate_button.current:hover {
  background: #38bfec !important;
  border-color: #38bfec;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-page {
    padding: 2rem 0;
  }

  .pricing-page h1 {
    font-size: 2rem;
  }

  .pricing-table-container {
    padding: 1rem;
  }

  table.dataTable thead th,
  table.dataTable tbody td {
    padding: 8px 10px;
  }
}

/* Loading State */
.dataTables_processing {
  background: rgba(255, 255, 255, 0.9);
  color: #38bfec;
  font-weight: 600;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Remove conflicting navbar styles */
/* .nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-actions .contact-us {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid #38bdf8;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-actions .contact-us:hover {
  background: #38bdf8;
}

.nav-actions .get-support {
  padding: 0.75rem 1.5rem;
  background: #38bdf8;
  color: #15395b;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #38bdf8;
}

.nav-actions .get-support:hover {
  background: #fff;
  color: #15395b;
} */ 