/* Pricing Cards Styles */
.plan {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
  border-color: rgba(0, 102, 255, 0.2);
}

.plan:hover::before {
  opacity: 1;
}

.plan-title {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.plan:hover .plan-title {
  color: #0066ff;
}

.plan-sub {
  color: #7f8c8d;
  font-size: 15px;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

.plan-price {
  font-size: 36px;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}

.plan:hover .plan-price {
  transform: scale(1.05);
}

.plan-price-sub {
  color: #95a5a6;
  font-size: 14px;
  margin-bottom: 30px;
}

.theme-btns.--fill-primary {
  background: #0066ff;
  color: white;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.theme-btn.--fill-primary:hover {
  background: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.features-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #34495e;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
  color: #0066ff;
}

.feature-item img {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.feature-item:hover img {
  transform: scale(1.1);
}

/* Side Plan Styles */
.side-plan {
  background: linear-gradient(135deg, #0066ff, #0052cc);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.side-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.25);
}

.side-plan::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 50%);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
}

.side-plan:hover::after {
  transform: rotate(45deg) translate(50%, 50%);
}

.side-plan .title-1 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.side-plan:hover .title-1 {
  transform: translateX(5px);
}

.side-plan .title-2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.side-plan:hover .title-2 {
  transform: translateX(5px);
}

.side-plan .para-1 {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
  transition: opacity 0.3s ease;
}

.side-plan:hover .para-1 {
  opacity: 1;
}

.side-plan .theme-btn.--fill-primary {
  background: rgb(0, 0, 0);
  color: #0066ff;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-plan .theme-btn.--fill-primary:hover {
  background: rgb(74 71 71 / 90%);
  transform: rotate(90deg);
}

/* Filter Navigation Styles */
#filter-nav-i .tab {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  color: #2c3e50;
  position: relative;
  overflow: hidden;
}

#filter-nav-i .tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

#filter-nav-i .tab:hover::before {
  left: 100%;
}

#filter-nav-i .tab:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

#filter-nav-i .tab.active {
  background: #0066ff;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

#filter-nav-i .tab.active:hover {
  transform: translateY(-2px);
}