 :root {
      --verde: #23219c; /* albastru  */
      --albastru: #feda4c;  /* galben  */
      --detaliu: #7f97aa;
    }


.price-section {
  background: #f9f9f9;
  padding: 3rem 1.5rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--verde);
  animation: fadeInDown 0.8s ease forwards;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.price-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.price-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.price-card h3 {
  font-size: 1.3rem;
  color: var(--albastru);
  margin-bottom: 0.5rem;
}

.price-card .price {
  font-size: 1.5rem;
  color: var(--verde);
  font-weight: bold;
  margin-bottom: 1rem;
}

.price-card p {
  color: var(--detaliu);
  font-size: 0.95rem;
  line-height: 1.5;
}

.price-card.highlight {
  background: linear-gradient(135deg, var(--verde), var(--albastru));
  color: white;
}

.price-card.highlight h3,
.price-card.highlight .price,
.price-card.highlight p {
  color: white;
}

.price-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* Animation triggered by JS */
.price-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
.svg-icon {
  width: 96px;
  height: 96px;
  color: #00a1d9; /* Albastrul tău */
  transition: transform 0.3s ease;
}

.svg-icon:hover {
  transform: scale(1.1);
}
