.ldcb-revamp-pricestru-container {
  position: relative;
  min-height: 100vh;
  padding: 60px 20px;
  background: white;
}

.ldcb-revamp-pricestru-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.ldcb-revamp-pricestru-bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
  opacity: 0.1;
  animation: ldcb-revamp-pricestru-float infinite ease-in-out;
}

.ldcb-revamp-pricestru-bubble:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  animation-duration: 8s;
  animation-delay: 0s;
}

.ldcb-revamp-pricestru-bubble:nth-child(2) {
  width: 120px;
  height: 120px;
  left: 70%;
  animation-duration: 10s;
  animation-delay: 2s;
}

.ldcb-revamp-pricestru-bubble:nth-child(3) {
  width: 60px;
  height: 60px;
  left: 30%;
  animation-duration: 12s;
  animation-delay: 4s;
}

.ldcb-revamp-pricestru-bubble:nth-child(4) {
  width: 100px;
  height: 100px;
  left: 85%;
  animation-duration: 9s;
  animation-delay: 1s;
}

.ldcb-revamp-pricestru-bubble:nth-child(5) {
  width: 140px;
  height: 140px;
  left: 5%;
  animation-duration: 11s;
  animation-delay: 3s;
}

.ldcb-revamp-pricestru-bubble:nth-child(6) {
  width: 90px;
  height: 90px;
  left: 50%;
  animation-duration: 13s;
  animation-delay: 5s;
}

@keyframes ldcb-revamp-pricestru-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.ldcb-revamp-pricestru-title {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.ldcb-revamp-pricestru-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ldcb-revamp-pricestru-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(30, 58, 138, 0.1);
  border: 2px solid white;
}

.ldcb-revamp-pricestru-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(30, 58, 138, 0.15);
}

.ldcb-revamp-pricestru-header {
  padding: 20px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid white;
}

.ldcb-revamp-pricestru-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: ldcb-revamp-pricestru-shine 3s infinite;
}

@keyframes ldcb-revamp-pricestru-shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
}

.ldcb-revamp-pricestru-silver {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
}

.ldcb-revamp-pricestru-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.ldcb-revamp-pricestru-platinum {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.ldcb-revamp-pricestru-pack-name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.ldcb-revamp-pricestru-price {
  font-size: 1.5rem;
  font-weight: 600;
}

.ldcb-revamp-pricestru-features {
  padding: 40px 30px 30px;
  color: white;
}

.ldcb-revamp-pricestru-feature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #ffffff;
}

.ldcb-revamp-pricestru-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
  font-weight: 800;
}

.ldcb-revamp-pricestru-silver .ldcb-revamp-pricestru-check {
  color: #334155;
  background: white;
}

.ldcb-revamp-pricestru-gold .ldcb-revamp-pricestru-check {
  color: #d97706;
  background: white;
}

.ldcb-revamp-pricestru-platinum .ldcb-revamp-pricestru-check {
  color: #5b21b6;
  background: white;
}

.ldcb-revamp-pricestru-button {
  margin: 0 30px 30px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  color: rgb(0, 0, 0);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ldcb-revamp-pricestru-button::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;
}

.ldcb-revamp-pricestru-button:hover::before {
  left: 100%;
}

.ldcb-revamp-pricestru-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ldcb-revamp-pricestru-silver .ldcb-revamp-pricestru-button {
  background: linear-gradient(135deg, #475569 0%, #ffffff 100%);
}

.ldcb-revamp-pricestru-gold .ldcb-revamp-pricestru-button {
  background: linear-gradient(135deg, #f59e0b 0%, #ffffff 100%);
}

.ldcb-revamp-pricestru-platinum .ldcb-revamp-pricestru-button {
  background: linear-gradient(135deg, #7c3aed 0%, #ffffff 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ldcb-revamp-pricestru-container {
    padding: 40px 15px;
  }

  .ldcb-revamp-pricestru-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .ldcb-revamp-pricestru-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ldcb-revamp-pricestru-pack-name {
    font-size: 1.8rem;
  }

  .ldcb-revamp-pricestru-price {
    font-size: 1.3rem;
  }

  .ldcb-revamp-pricestru-header {
    padding: 30px 20px;
  }

  .ldcb-revamp-pricestru-features {
    padding: 30px 20px 20px;
  }

  .ldcb-revamp-pricestru-button {
    margin: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .ldcb-revamp-pricestru-title {
    font-size: 2rem;
  }

  .ldcb-revamp-pricestru-pack-name {
    font-size: 1.5rem;
  }

  .ldcb-revamp-pricestru-price {
    font-size: 1.2rem;
  }

  .ldcb-revamp-pricestru-feature {
    font-size: 0.9rem;
  }
}
