/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}

/* Brand Colors & Variables */
:root {
  --primary-color: #6a5acd; /* Blue-Purple mix */
  --secondary-color: #4169e1; /* Accent Blue */
  --text-color: #333;
  --light-gray: #f1f1f1;
  --shadow-color: rgba(0, 0, 0, 0.15);
}

/* Page Header */
.page-header {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
.page-header h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  display: inline-flex;
}
.breadcrumb li {
  margin: 0 5px;
}
.breadcrumb li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb li a:hover {
  color: var(--light-gray);
}

/* Cards & Containers */
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px var(--shadow-color);
  margin-bottom: 20px;
}
.card-body {
  padding: 20px;
}

/* Pricing Cards */
.price-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px var(--shadow-color);
}
.price-card-border {
  border: 2px solid var(--primary-color);
}

/* Plan Details */
.plan {
  text-align: center;
  padding: 15px;
}
.plan-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.plan-cost-wrapper {
  padding: 10px;
  background: var(--light-gray);
  border-radius: 8px;
  margin-bottom: 15px;
}
.plan-cost {
  font-size: 2rem;
  font-weight: 700;
}

/* Buttons */
.btn-primary-pricing {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 6px var(--shadow-color);
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.btn-primary-pricing:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Action Button Container */
.action-button {
  margin-top: 20px;
}

/* Responsive Table Styles */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
table thead {
  background: var(--primary-color);
  color: #fff;
}
table th, table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
table tbody tr:hover {
  background: #f1f1f1;
  transition: background 0.3s ease;
}

/* Tab Menu Styles */
.tabs-menu {
  margin-bottom: 20px;
  text-align: center;
}
.tabs-menu ul {
  list-style: none;
  display: inline-flex;
  padding: 0;
}
.tabs-menu ul li {
  margin: 0 10px;
}
.tabs-menu ul li a {
  display: block;
  padding: 10px 20px;
  background: var(--light-gray);
  border-radius: 4px;
  color: var(--text-color);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.tabs-menu ul li a.active,
.tabs-menu ul li a:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.5s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-header h4 {
    font-size: 1.5rem;
  }
  .plan-title {
    font-size: 1.3rem;
  }
  .plan-cost {
    font-size: 1.8rem;
  }
  .btn-primary-pricing {
    padding: 8px 16px;
  }
}
