/* Pricing Page Styles */

/* General Container Styling */
.pricing_block {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
}

.pricing_block:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
}

/* Header Styling */
.table_head {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.pricing_price_value {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: inline-block;
  box-shadow: 0px 4px 15px rgba(102, 126, 234, 0.3);
}

.pricing_price {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 5px;
}

.pricing_period {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.9;
  margin-left: 8px;
}

.pricing_package_title {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin: 15px 0 10px 0;
}

.pricing_package_description {
  font-size: 16px;
  color: #6c757d;
  margin-top: 10px;
  line-height: 1.6;
}

/* Badge Styling */
.oneT {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 5px 12px;
  border-radius: 20px;
  margin-left: 10px;
  vertical-align: middle;
  display: inline-block;
  box-shadow: 0px 2px 8px rgba(245, 87, 108, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.starts-h {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* List Styling */
.icon_list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.icon_list li {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  color: #444444;
  margin: 12px 0;
  line-height: 1.6;
}

.icon_list_icon {
  color: #28a745;
  margin-right: 12px;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.li-color {
  color: #2c3e50 !important;
}

/* Support Plan Note */
.support_plan_note {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 20px;
  border-radius: 10px;
  margin-top: 25px;
  font-size: 14px;
  color: #2c3e50;
  border-left: 4px solid #667eea;
}

.support_plan_note p {
  margin: 0 0 12px;
  font-weight: 600;
  color: #2c3e50;
}

.support_plan_note ul {
  padding-left: 20px;
  margin: 0;
}

.support_plan_note ul li {
  margin-bottom: 8px;
  color: #444444;
  line-height: 1.6;
}

.note-span {
  color: #e74c3c;
  font-weight: 700;
}

/* Button Styling */
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  width: 100%;
  margin-top: 20px;
  box-shadow: 0px 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-light:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px rgba(102, 126, 234, 0.4);
}

.btn_icon {
  font-size: 16px;
  margin-left: 10px;
}

.btn_label {
  font-weight: 600;
}

/* Service Selection Dropdown */
.pricing-select {
  border: 2px solid #667eea;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.pricing-select:focus {
  border-color: #764ba2;
  box-shadow: 0px 0px 0px 3px rgba(102, 126, 234, 0.1);
  outline: none;
}

.pricing-select optgroup {
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
}

.pricing-select option {
  padding: 10px;
  font-size: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .pricing_block {
    padding: 25px;
  }

  .pricing_price_value {
    font-size: 24px;
    padding: 12px 20px;
  }

  .pricing_price {
    font-size: 28px;
  }

  .pricing_package_title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .pricing_block {
    padding: 20px;
    margin-bottom: 25px;
  }

  .pricing_price_value {
    font-size: 22px;
    padding: 10px 18px;
  }

  .pricing_price {
    font-size: 26px;
  }

  .pricing_package_title {
    font-size: 20px;
  }

  .pricing_package_description {
    font-size: 15px;
  }

  .icon_list li {
    font-size: 14px;
  }

  .pricing-select {
    width: 100% !important;
    font-size: 15px;
  }

  .support_plan_note {
    padding: 15px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .pricing_block {
    padding: 18px;
  }

  .pricing_price_value {
    font-size: 20px;
    padding: 10px 15px;
  }

  .pricing_price {
    font-size: 24px;
  }

  .pricing_package_title {
    font-size: 18px;
  }

  .oneT {
    font-size: 10px;
    padding: 4px 10px;
    margin-left: 8px;
  }

  .starts-h {
    font-size: 12px;
  }

  .btn-light {
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* Animation for cards */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing_block {
  animation: fadeIn 0.5s ease-out;
}

/* Support Plans Comparison Table */
.support-plans-table-container {
  overflow-x: auto;
  margin: 20px 0;
}

.support-plans-table {
  width: 100%;
  margin-bottom: 0;
  background: #ffffff;
  border-collapse: separate;
  border-spacing: 0;
}

.support-plans-table thead th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-weight: 600;
  padding: 20px 15px;
  border: 2px solid #667eea;
  vertical-align: middle;
}

.support-plans-table thead th.plan-basic {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  border-color: #6c757d;
}

.support-plans-table thead th.plan-advanced {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border-color: #ffc107;
}

.support-plans-table thead th.plan-premium {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-color: #28a745;
}

.plan-header h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 10px 0;
}

.plan-period {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.support-plans-table tbody td {
  padding: 15px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #e0e0e0;
}

.support-plans-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.support-plans-table tbody tr:hover {
  background-color: #e9ecef;
}

.support-plans-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  background-color: #f8f9fa;
  color: #2c3e50;
}

.support-plans-table .badge {
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
}

.support-plans-table small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #6c757d;
  line-height: 1.4;
}

.support-plans-table .fa-circle-check {
  font-size: 20px;
  color: #28a745;
}

.support-plans-table .fa-circle-xmark {
  font-size: 20px;
  color: #dc3545;
}

/* Responsive Table */
@media (max-width: 992px) {
  .support-plans-table {
    font-size: 14px;
  }

  .plan-header h4 {
    font-size: 16px;
  }

  .plan-price {
    font-size: 20px;
  }

  .support-plans-table thead th,
  .support-plans-table tbody td {
    padding: 12px 10px;
  }
}

@media (max-width: 768px) {
  .support-plans-table-container {
    margin: 15px -15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .support-plans-table {
    font-size: 11px;
    min-width: 700px;
    display: table;
  }

  .plan-header h4 {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .plan-price {
    font-size: 16px;
  }

  .plan-period {
    font-size: 10px;
  }

  .support-plans-table thead th {
    padding: 12px 6px;
    font-size: 11px;
  }

  .support-plans-table tbody td {
    padding: 10px 6px;
    font-size: 11px;
  }

  .support-plans-table tbody td:first-child {
    font-size: 10px;
    padding: 10px 8px;
    min-width: 120px;
  }

  .support-plans-table .badge {
    padding: 5px 8px;
    font-size: 10px;
    white-space: nowrap;
  }

  .support-plans-table small {
    font-size: 9px;
    line-height: 1.3;
  }

  .support-plans-table .fa-circle-check,
  .support-plans-table .fa-circle-xmark {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .support-plans-table-container {
    margin: 15px -20px;
  }

  .support-plans-table {
    font-size: 10px;
    min-width: 650px;
  }

  .plan-header h4 {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .plan-price {
    font-size: 14px;
  }

  .plan-period {
    font-size: 9px;
  }

  .support-plans-table thead th {
    padding: 10px 4px;
    font-size: 10px;
  }

  .support-plans-table tbody td {
    padding: 8px 4px;
    font-size: 10px;
  }

  .support-plans-table tbody td:first-child {
    font-size: 9px;
    padding: 8px 6px;
    min-width: 100px;
  }

  .support-plans-table .badge {
    padding: 4px 6px;
    font-size: 9px;
  }

  .support-plans-table small {
    font-size: 8px;
    line-height: 1.2;
  }

  .support-plans-table .fa-circle-check,
  .support-plans-table .fa-circle-xmark {
    font-size: 14px;
  }

  /* Make buttons stack vertically on mobile */
  .support-plan-buttons .col-md-4,
  .support-plan-buttons .col-md-6,
  .support-plan-buttons .col-md-12 {
    margin-bottom: 10px;
  }

  .support-plan-buttons .btn-light {
    font-size: 14px;
    padding: 12px 20px;
  }

  /* Improve table scrolling on mobile */
  .support-plans-table-container {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .support-plans-table-container::-webkit-scrollbar {
    height: 8px;
  }

  .support-plans-table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .support-plans-table-container::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
  }

  .support-plans-table-container::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
  }
}

